In [ ]:
. ./nbs_header.ps1
. ./core.ps1
In [ ]:
{ . "$ScriptDir/../apps/builder/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # DibParser (Polyglot)                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsec.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsecCS.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Runtime.fs

#!import ../nbs/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        let getLocals () =

            $"tempFolder:...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FParsec



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## escapeCell (test)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline escapeCell input =

    input

    |> String.split [[| '\n' |]]

    |> Array.map (function

        | line when line |> String.startsWith "\\#!" || line |> 

String.startsWith "\\#r" ->

            System.Text.RegularExpressions.Regex.Replace (line, "^\\\\#", "#")

        | line -> line

    )

    |> String.concat "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



$"a{nl}\\#!magic{nl}b{nl}"

|> escapeCell

|> _equal (

    $"a{nl}#!magic{nl}b{nl}"

)



╭─[ 52.93ms - stdout ]─────────────────────────────────────────────────────────╮

│ a                                                                            │

│ #!magic                                                                      │

│ b                                                                            │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicMarker                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicMarker : Parser<string, unit> = pstring "#!"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic"

|> run magicMarker

|> _equal (

    Success ("#!", (), Position ("", 2, 1, 3))

)



╭─[ 49.35ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!                                                              │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 2                                                             │

│         Line: 1                                                              │

│         Column: 3                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"##!magic"

|> run magicMarker

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl}##!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 52.51ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│ ##!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicCommand                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicCommand =

    magicMarker

    >>. manyTill anyChar newline

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic



a"

|> run magicCommand

|> _equal (

    Success ("magic", (), Position ("", 8, 2, 1))

)



╭─[ 31.51ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: magic                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 8                                                             │

│         Line: 2                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



" #!magic



a"

|> run magicCommand

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl} #!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 36.56ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│  #!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## content                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let content =

    (newline >>. magicMarker) <|> (eof >>. preturn "")

    |> attempt

    |> lookAhead

    |> manyTill anyChar

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run content

|> _equal (

    Success ("#!magic





a", (), Position ("", 14, 7, 1))

)



╭─[ 34.18ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!magic                                                         │

│                                                                              │

│                                                                              │

│ a                                                                            │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Block =

    {

        magic : string

        content : string

    }



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let block =

    pipe2

        magicCommand

        content

        (fun magic content ->

            {

                magic = magic

                content = content

            })



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run block

|> _equal (

    Success (

        { magic = "magic"; content = "a" },

        (),

        Position ("", 14, 7, 1)

    )

)



╭─[ 32.95ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: Block                                                           │

│         magic: magic                                                         │

│         content: a                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## blocks                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let blocks =

    skipMany newline

    >>. sepEndBy block (skipMany1 newline)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test





"#!magic1



a



\#!magic2



b



"

|> escapeCell

|> run blocks

|> _equal (

    Success (

        [[

            { magic = "magic1"; content = "a" }

            { magic = "magic2"; content = "b" }

        ]],

        (),

        Position ("", 26, 9, 1)

    )

)



╭─[ 47.18ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: FSharpList<Block>                                               │

│         - magic: magic1                                                      │

│           content: a                                                         │

│         - magic: magic2                                                      │

│           content: b                                                         │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 26                                                            │

│         Line: 9                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Output                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Output =

    | Fs

    | Md

    | Spi

    | Spir



let inline kernelOutputs magic =

    match magic with

    | "fsharp" -> [[ Fs ]]

    | "markdown" -> [[ Md ]]

    | "spiral" -> [[ Spi; Spir ]]

    | _ -> [[]]



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlock                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlock output (block : Block) =

    match output, block with

    | output, { magic = "markdown"; content = content } ->

        let markdownComment =

            match output with

            | Spi | Spir -> "// // "

            | Fs -> "/// "

            | _ -> ""

        content

        |> String.split [[| '\n' |]]

        |> Array.map (String.trimEnd [[||]])

        |> Array.filter (String.endsWith " (test)" >> not)

        |> Array.map (function

            | "" -> markdownComment |> String.trim

            | line -> System.Text.RegularExpressions.Regex.Replace (line, 

"^\\s*", $"$&{markdownComment}")

        )

        |> String.concat "\n"

    | Fs, { magic = "fsharp"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "//// test" || trimmedContent |> 

String.startsWith "//// ignore"

        then ""

        else

            content

            |> String.split [[| '\n' |]]

            |> Array.filter (String.trimStart [[||]] >> String.startsWith "#r" 

>> not)

            |> String.concat "\n"

    | (Spi | Spir), { magic = "spiral"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "// // test" || trimmedContent |>

String.startsWith "// // ignore"

        then ""

        else content

    | _ -> ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



    b



c





\#!markdown





c





\#!fsharp





let a = 1"

|> escapeCell

|> run block

|> function

    | Success (block, _, _) -> formatBlock Fs block

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

    /// b

///

/// c"



╭─[ 67.37ms - stdout ]─────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│     /// b                                                                    │

│ ///                                                                          │

│ /// c                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlocks                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlocks output blocks =

    blocks

    |> List.map (formatBlock output)

    |> List.filter ((<>) "")

    |> String.concat "\n\n"

    |> fun s -> s + "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



b





\#!markdown





c





\#!fsharp





let a = 1



\#!markdown



d (test)



\#!fsharp



//// test



let a = 2



\#!markdown



e



\#!fsharp



let a = 3"

|> escapeCell

|> run blocks

|> function

    | Success (blocks, _, _) -> formatBlocks Fs blocks

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

/// b



/// c



let a = 1



/// e



let a = 3

"



╭─[ 60.83ms - stdout ]─────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│ /// b                                                                        │

│                                                                              │

│ /// c                                                                        │

│                                                                              │

│ let a = 1                                                                    │

│                                                                              │

│ /// e                                                                        │

│                                                                              │

│ let a = 3                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parse                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parse output input =

    match run blocks input with

    | Success (blocks, _, _) ->

        let blocks =

            blocks

            |> List.filter (fun block ->

                block.magic |> kernelOutputs |> List.contains output || 

block.magic = "markdown"

            )

        

        match blocks with

        | { magic = "markdown"; content = content } :: _

            when output = Fs

            && content |> String.startsWith "# "

            && content |> String.endsWith ")"

            ->

            let inline indentBlock (block : Block) =

                { block with

                    content =

                        block.content

                        |> String.split [[| '\n' |]]

                        |> Array.fold

                            (fun (lines, isMultiline) line ->

                                let trimmedLine = line |> String.trim

                                if trimmedLine = ""

                                then "" :: lines, isMultiline

                                else

                                    let inline singleQuoteLine () =

                                        trimmedLine |> Seq.sumBy ((=) '"' >> 

System.Convert.ToInt32) = 1

                                        && trimmedLine |> String.contains 

@"'""'" |> not

                                        && trimmedLine |> String.endsWith "{" |>

not

                                        && trimmedLine |> String.endsWith "{|" 

|> not

                                        && trimmedLine |> String.startsWith "}" 

|> not

                                        && trimmedLine |> String.startsWith "|}"

|> not



                                    match isMultiline, trimmedLine |> 

String.splitString [[| $"{q}{q}{q}" |]] with

                                    | false, [[| _; _ |]] ->

                                        $"    {line}" :: lines, true



                                    | true, [[| _; _ |]] ->

                                        line :: lines, false



                                    | false, _ when singleQuoteLine () ->

                                        $"    {line}" :: lines, true



                                    | false, _ when line |> String.startsWith 

"#" && block.magic = "fsharp" ->

                                        line :: lines, false



                                    | false, _ ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () && line |>

String.startsWith "    " ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () ->

                                        line :: lines, false



                                    | true, _ ->

                                        line :: lines, true

                            )

                            ([[]], false)

                        |> fst

                        |> List.rev

                        |> String.concat "\n"

                }



            let moduleName, namespaceName =

                System.Text.RegularExpressions.Regex.Match (content, @"# (.*) 

\((.*)\)$")

                |> fun m -> m.Groups.[[1]].Value, m.Groups.[[2]].Value



            let moduleBlock =

                {

                    magic = "fsharp"

                    content =

                        $"#if !INTERACTIVE

namespace {namespaceName}

#endif



module {moduleName} ="

                }



            blocks

            |> List.indexed

            |> List.fold

                (fun blocks (index, block) ->

                    match index with

                    | 0 -> blocks

                    | 1 -> indentBlock block :: moduleBlock :: blocks

                    | _ -> indentBlock block :: blocks

                )

                [[]]

            |> List.rev

        | _ -> blocks

        |> Result.Ok

    | Failure (errorMsg, _, _) -> Result.Error errorMsg



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example1 =

    $"""#!meta



{{"kernelInfo":{{"defaultKernelName":"fsharp","items":[[{{"aliases":[[]],"name":

"fsharp"}},{{"aliases":[[]],"name":"fsharp"}}]]}}}}



\#!markdown



# TestModule (TestNamespace)



\#!fsharp



\#!import file.dib



\#!fsharp



\#r "nuget:Expecto"



\#!markdown



## ParserLibrary



\#!fsharp



open System



\#!markdown



## x (test)



\#!fsharp



//// ignore



let x = 1



\#!spiral



// // test



inl x = 0i32



\#!spiral



inl x = 0i32



\#!markdown



### TextInput



\#!fsharp



let str1 = "abc

def"



let str2 =

    "abc\

def"



let str3 =

    $"1{{

        1

    }}1"



let str4 =

    $"1{{({{|

        a = 1

    |}}).a}}1"



let str5 =

    "abc \

        def"



let x =

    match '"' with

    | '"' -> true

    | _ -> false



let long1 = {q}{q}{q}a{q}{q}{q}



let long2 =

    {q}{q}{q}

a

{q}{q}{q}



\#!fsharp



type Position =

    {{

#if INTERACTIVE

        line : string

#else

        line : int

#endif

        column : int

    }}"""

    |> escapeCell



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Fs

|> Result.toOption

|> Option.get

|> (formatBlocks Fs)

|> _equal $"""#if !INTERACTIVE

namespace TestNamespace

#endif



module TestModule =



    /// ## ParserLibrary



    open System



    /// ### TextInput



    let str1 = "abc

def"



    let str2 =

        "abc\

def"



    let str3 =

        $"1{{

            1

        }}1"



    let str4 =

        $"1{{({{|

            a = 1

        |}}).a}}1"



    let str5 =

        "abc \

            def"



    let x =

        match '"' with

        | '"' -> true

        | _ -> false



    let long1 = {q}{q}{q}a{q}{q}{q}



    let long2 =

        {q}{q}{q}

a

{q}{q}{q}



    type Position =

        {{

#if INTERACTIVE

            line : string

#else

            line : int

#endif

            column : int

        }}

"""



╭─[ 150.81ms - stdout ]────────────────────────────────────────────────────────╮

│ #if !INTERACTIVE                                                             │

│ namespace TestNamespace                                                      │

│ #endif                                                                       │

│                                                                              │

│ module TestModule =                                                          │

│                                                                              │

│     /// ## ParserLibrary                                                     │

│                                                                              │

│     open System                                                              │

│                                                                              │

│     /// ### TextInput                                                        │

│                                                                              │

│     let str1 = "abc                                                          │

│ def"                                                                         │

│                                                                              │

│     let str2 =                                                               │

│         "abc\                                                                │

│ def"                                                                         │

│                                                                              │

│     let str3 =                                                               │

│         $"1{                                                                 │

│             1                                                                │

│         }1"                                                                  │

│                                                                              │

│     let str4 =                                                               │

│         $"1{({|                                                              │

│             a = 1                                                            │

│         |}).a}1"                                                             │

│                                                                              │

│     let str5 =                                                               │

│         "abc \                                                               │

│             def"                                                             │

│                                                                              │

│     let x =                                                                  │

│         match '"' with                                                       │

│         | '"' -> true                                                        │

│         | _ -> false                                                         │

│                                                                              │

│     let long1 = """a"""                                                      │

│                                                                              │

│     let long2 =                                                              │

│         """                                                                  │

│ a                                                                            │

│ """                                                                          │

│                                                                              │

│     type Position =                                                          │

│         {                                                                    │

│ #if INTERACTIVE                                                              │

│             line : string                                                    │

│ #else                                                                        │

│             line : int                                                       │

│ #endif                                                                       │

│             column : int                                                     │

│         }                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Md

|> Result.toOption

|> Option.get

|> (formatBlocks Md)

|> _equal "# TestModule (TestNamespace)



## ParserLibrary



### TextInput

"



╭─[ 189.14ms - stdout ]────────────────────────────────────────────────────────╮

│ # TestModule (TestNamespace)                                                 │

│                                                                              │

│ ## ParserLibrary                                                             │

│                                                                              │

│ ### TextInput                                                                │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Spi

|> Result.toOption

|> Option.get

|> (formatBlocks Spi)

|> _equal "// // # TestModule (TestNamespace)



// // ## ParserLibrary



inl x = 0i32



// // ### TextInput

"



╭─[ 194.89ms - stdout ]────────────────────────────────────────────────────────╮

│ // // # TestModule (TestNamespace)                                           │

│                                                                              │

│ // // ## ParserLibrary                                                       │

│                                                                              │

│ inl x = 0i32                                                                 │

│                                                                              │

│ // // ### TextInput                                                          │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parseDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseDibCode output file = async {

    let getLocals () = $"output: {output} / file: {file} / {getLocals ()}"

    trace Debug (fun () -> "parseDibCode") getLocals

    let! input = file |> FileSystem.readAllTextAsync

    match parse output input with

    | Result.Ok blocks -> return blocks |> formatBlocks output

    | Result.Error msg -> return failwith msg

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeDibCode output path = async {

    let getLocals () = $"output: {output} / path: {path} / {getLocals ()}"

    trace Debug (fun () -> "writeDibCode") getLocals

    let! result = parseDibCode output path

    let outputPath = path |> String.replace ".dib" $".{output |> string |> 

String.toLower}"

    do! result |> FileSystem.writeAllTextAsync outputPath

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.Mandatory>]]

        File of file : string * Output



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | File _ -> nameof File



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let files =

        argsMap.[[nameof Arguments.File]]

        |> List.map (function

            | Arguments.File (path, output) -> path, output

        )



    files

    |> List.map (fun (path, output) -> path |> writeDibCode output)

    |> Async.Parallel

    |> Async.Ignore

    |> Async.runWithTimeout 30000

    |> function

        | Some () -> 0

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 219.77ms - return value ]──────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 231.50ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] writeDibCode / output: Fs / path: Builder.dib            │

│ 00:00:00 #2 [Debug] parseDibCode / output: Fs / file: Builder.dib            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Builder (Polyglot)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Networking.fs

#!import ../nbs/Runtime.fs

#!import ../nbs/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Networking =



    open Common



    /// ## testPortOpen



    let inline testPortOpen port = async {

        let! ct = Async.CancellationToken

        use client = new System.Net.Sockets.TcpClient ()

        try

            do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

            return true

        with ex ->

            trace Verbose (fun () -> $"testPortOpen / ex: {ex |> 

printException}") getLocals

            return false

    }



    let inline testPortOpenTimeout timeout port = async {

        let! result =

            testPortOpen port

            |> Async.runWithTimeoutAsync timeout

        return

            match result with

            | None -> false

 ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        let getLocals () =

            $"tempFolder:...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FileSystem.Operators



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildProject                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildProject runtime path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let fileDir = fullPath |> System.IO.Path.GetDirectoryName

    let extension = fullPath |> System.IO.Path.GetExtension



    let getLocals () = $"fullPath: {fullPath} / {getLocals ()}"

    trace Debug (fun () -> "buildProject") getLocals



    match extension with

    | ".fsproj" -> ()

    | _ -> failwith "Invalid project file"



    let runtimes =

        runtime

        |> Option.map List.singleton

        |> Option.defaultValue [[ "linux-x64"; "win-x64" ]]



    return!

        runtimes

        |> List.map (fun runtime -> async {

            let! exitCode, _result =

                Runtime.executeWithOptionsAsync

                    {

                        Command = $"dotnet publish -c release -o ../dist -r 

{runtime}"

                        CancellationToken = None

                        OnLine = None

                        WorkingDirectory = Some fileDir

                    }



            return exitCode

        })

        |> Async.Sequential

        |> Async.map Array.sum

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## persistCodeProject                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline persistCodeProject packages modules path name code = async {

    let getLocals () = $"packages: {packages} / modules: {modules} / path: 

{path} / name: {name} / code.Length: {code |> String.length} / {getLocals ()}"

    trace Debug (fun () -> "persistCodeProject") getLocals



    let targetPath = path </> "target"

    System.IO.Directory.CreateDirectory targetPath |> ignore



    let filePath = targetPath </> $"{name}.fs" |> System.IO.Path.GetFullPath

    do! code |> FileSystem.writeAllTextExists filePath



    let repositoryRoot = FileSystem.getSourceDirectory () |> 

FileSystem.findParent ".paket" false



    let modulesCode =

        modules

        |> List.map (fun path -> $"""<Compile Include="{repositoryRoot </> 

path}" />""")

        |> String.concat "\n        "



    let fsprojPath = targetPath </> $"{name}.fsproj"

    let fsprojCode = $"""<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>

        <TargetFramework>net8.0</TargetFramework>

        <LangVersion>preview</LangVersion>

        <RollForward>Major</RollForward>

        <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>

        <PublishAot>false</PublishAot>

        <PublishTrimmed>false</PublishTrimmed>

        <PublishSingleFile>true</PublishSingleFile>

        <SelfContained>true</SelfContained>

        <Version>0.0.1-alpha.1</Version>

        <OutputType>Exe</OutputType>

    </PropertyGroup>



    <ItemGroup>

        {modulesCode}

        <Compile Include="{filePath}" />

    </ItemGroup>



    <Import Project="{repositoryRoot}/.paket/Paket.Restore.targets" />

</Project>

"""

    do! fsprojCode |> FileSystem.writeAllTextExists fsprojPath



    let paketReferencesPath = targetPath </> "paket.references"

    let paketReferencesCode =

        "FSharp.Core" :: packages

        |> String.concat "\n"

    do! paketReferencesCode |> FileSystem.writeAllTextExists paketReferencesPath



    return fsprojPath

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildCode                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildCode runtime packages modules path name code = async {

    let! fsprojPath = persistCodeProject packages modules path name code

    return! fsprojPath |> buildProject runtime

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.getSourceDirectory () </> "target/test"



"1 + 1"

|> buildCode None [[]] [[]] tempFolder "test"

|> Async.runWithTimeout 60000

|> _equal (Some 0)



╭─[ 21.29s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] persistCodeProject / packages: [] / modules: [] / path:  │

│ C:\home\git\polyglot\apps\builder\target/test / name: test / code.Length: 5  │

│ 00:00:00 #2 [Debug] buildProject / fullPath:                                 │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj             │

│ 00:00:00 #3 [Debug] executeAsync / options: { Command = "dotnet publish -c   │

│ release -o ../dist -r linux-x64"                                             │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\apps\builder\target\test\target"                       │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:00 #4 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for  │

│ .NET                                                                         │

│ 00:00:01 #5 [Debug] >   Determining projects to restore...                   │

│ 00:00:03 #6 [Debug] >   Restored                                             │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj (in 1.69    │

│ sec).                                                                        │

│ 00:00:03 #7 [Debug] > C:\Program                                             │

│ Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microso │

│ ft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You    │

│ are using a preview version of .NET. See:                                    │

│ https://aka.ms/dotnet-support-policy [                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]            │

│ 00:00:06 #8 [Debug] >                                                        │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fs(1,1): warning   │

│ FS0020: The result of this expression has type 'int' and is implicitly       │

│ ignored. Consider using 'ignore' to discard this value explicitly, e.g.      │

│ 'expr |> ignore', or 'let' to bind the result to a name, e.g. 'let result =  │

│ expr'. [C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]    │

│ 00:00:07 #9 [Debug] >                                                        │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fs(1,6): warning   │

│ FS0988: Main module of program is empty: nothing will happen when it is run  │

│ [C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]           │

│ 00:00:08 #10 [Debug] >   test ->                                             │

│ C:\home\git\polyglot\apps\builder\target\test\target\bin\release\net8.0\linu │

│ x-x64\test.dll                                                               │

│ 00:00:09 #11 [Debug] >   test ->                                             │

│ C:\home\git\polyglot\apps\builder\target\test\dist\                          │

│ 00:00:09 #12 [Debug] executeAsync / exitCode: 0 / proc.Id: 75992 /           │

│ output.Length: 1242                                                          │

│ 00:00:09 #13 [Debug] executeAsync / options: { Command = "dotnet publish -c  │

│ release -o ../dist -r win-x64"                                               │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\apps\builder\target\test\target"                       │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:10 #14 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for │

│ .NET                                                                         │

│ 00:00:10 #15 [Debug] >   Determining projects to restore...                  │

│ 00:00:11 #16 [Debug] >   Restored                                            │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj (in 317     │

│ ms).                                                                         │

│ 00:00:11 #17 [Debug] > C:\Program                                            │

│ Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microso │

│ ft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You    │

│ are using a preview version of .NET. See:                                    │

│ https://aka.ms/dotnet-support-policy [                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]            │

│ 00:00:13 #18 [Debug] >                                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fs(1,1): warning   │

│ FS0020: The result of this expression has type 'int' and is implicitly       │

│ ignored. Consider using 'ignore' to discard this value explicitly, e.g.      │

│ 'expr |> ignore', or 'let' to bind the result to a name, e.g. 'let result =  │

│ expr'. [C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]    │

│ 00:00:13 #19 [Debug] >                                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fs(1,6): warning   │

│ FS0988: Main module of program is empty: nothing will happen when it is run  │

│ [C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]           │

│ 00:00:14 #20 [Debug] >   test ->                                             │

│ C:\home\git\polyglot\apps\builder\target\test\target\bin\release\net8.0\win- │

│ x64\test.dll                                                                 │

│ 00:00:20 #21 [Debug] >   test ->                                             │

│ C:\home\git\polyglot\apps\builder\target\test\dist\                          │

│ 00:00:20 #22 [Debug] executeAsync / exitCode: 0 / proc.Id: 66220 /           │

│ output.Length: 1238                                                          │

│ FSharpOption<Int32>                                                          │

│       Value: 0                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.getSourceDirectory () </> "target/test"



"1 + a"

|> buildCode None [[]] [[]] tempFolder "test"

|> Async.runWithTimeout 60000

|> _equal (Some 2)



╭─[ 7.12s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:21 #23 [Debug] persistCodeProject / packages: [] / modules: [] / path: │

│ C:\home\git\polyglot\apps\builder\target/test / name: test / code.Length: 5  │

│ 00:00:21 #24 [Debug] buildProject / fullPath:                                │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj             │

│ 00:00:21 #25 [Debug] executeAsync / options: { Command = "dotnet publish -c  │

│ release -o ../dist -r linux-x64"                                             │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\apps\builder\target\test\target"                       │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:21 #26 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for │

│ .NET                                                                         │

│ 00:00:22 #27 [Debug] >   Determining projects to restore...                  │

│ 00:00:22 #28 [Debug] >   Restored                                            │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj (in 335     │

│ ms).                                                                         │

│ 00:00:22 #29 [Debug] > C:\Program                                            │

│ Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microso │

│ ft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You    │

│ are using a preview version of .NET. See:                                    │

│ https://aka.ms/dotnet-support-policy [                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]            │

│ 00:00:24 #30 [Debug] >                                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fs(1,5): error     │

│ FS0039: The value or constructor 'a' is not defined. [                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]            │

│ 00:00:24 #31 [Debug] executeAsync / exitCode: 1 / proc.Id: 70312 /           │

│ output.Length: 684                                                           │

│ 00:00:24 #32 [Debug] executeAsync / options: { Command = "dotnet publish -c  │

│ release -o ../dist -r win-x64"                                               │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\apps\builder\target\test\target"                       │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:24 #33 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for │

│ .NET                                                                         │

│ 00:00:25 #34 [Debug] >   Determining projects to restore...                  │

│ 00:00:26 #35 [Debug] >   Restored                                            │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj (in 338     │

│ ms).                                                                         │

│ 00:00:26 #36 [Debug] > C:\Program                                            │

│ Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microso │

│ ft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You    │

│ are using a preview version of .NET. See:                                    │

│ https://aka.ms/dotnet-support-policy [                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]            │

│ 00:00:27 #37 [Debug] >                                                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fs(1,5): error     │

│ FS0039: The value or constructor 'a' is not defined. [                       │

│ C:\home\git\polyglot\apps\builder\target\test\target\test.fsproj]            │

│ 00:00:27 #38 [Debug] executeAsync / exitCode: 1 / proc.Id: 69956 /           │

│ output.Length: 684                                                           │

│ FSharpOption<Int32>                                                          │

│       Value: 2                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildFile                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildFile runtime packages modules path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let dir = fullPath |> System.IO.Path.GetDirectoryName

    let fileName = fullPath |> System.IO.Path.GetFileNameWithoutExtension

    let! code = fullPath |> FileSystem.readAllTextAsync



    let code = System.Text.RegularExpressions.Regex.Replace (

        code,

        @"( *)(let\s+main\s+.*?\s*=)",

        fun m -> m.Groups.[[1]].Value + "[[<EntryPoint>]]\n" + 

m.Groups.[[1]].Value + m.Groups.[[2]].Value

    )



    return! code |> buildCode runtime packages modules dir fileName

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.ExactlyOnce>]] 

Path of path : string

    | [[<Argu.ArguAttributes.Unique>]] Packages of packages : string list

    | [[<Argu.ArguAttributes.Unique>]] Modules of modules : string list

    | [[<Argu.ArguAttributes.Unique>]] Runtime of runtime : string



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Path _ -> nameof Path

            | Packages _ -> nameof Packages

            | Modules _ -> nameof Modules

            | Runtime _ -> nameof Runtime



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let path =

        match argsMap.[[nameof Arguments.Path]] with

        | [[ Arguments.Path path ]] -> Some path

        | _ -> None

        |> Option.get



    let packages =

        match argsMap |> Map.tryFind (nameof Arguments.Packages) with

        | Some [[ Arguments.Packages packages ]] -> packages

        | _ -> [[]]



    let modules =

        match argsMap |> Map.tryFind (nameof Arguments.Modules) with

        | Some [[ Arguments.Modules modules ]] -> modules

        | _ -> [[]]



    let runtime =

        match argsMap |> Map.tryFind (nameof Arguments.Runtime) with

        | Some [[ Arguments.Runtime runtime ]] -> Some runtime

        | _ -> None



    path

    |> buildFile runtime packages modules

    |> Async.runWithTimeout 60000

    |> function

        | Some exitCode -> exitCode

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 24.01s - return value ]────────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 24.02s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:29 #39 [Debug] persistCodeProject / packages: [Argu;                   │

│ FSharp.Control.AsyncSeq; System.CommandLine; ... ] / modules: [              │

│ nbs/Common.fs; nbs/CommonFSharp.fs; nbs/Async.fs; ... ] / path:              │

│ C:\home\git\polyglot\apps\builder / name: Builder / code.Length: 5979        │

│ 00:00:29 #40 [Debug] buildProject / fullPath:                                │

│ C:\home\git\polyglot\apps\builder\target\Builder.fsproj                      │

│ 00:00:29 #41 [Debug] executeAsync / options: { Command = "dotnet publish -c  │

│ release -o ../dist -r linux-x64"                                             │

│   WorkingDirectory = Some "C:\home\git\polyglot\apps\builder\target"         │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:29 #42 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for │

│ .NET                                                                         │

│ 00:00:30 #43 [Debug] >   Determining projects to restore...                  │

│ 00:00:30 #44 [Debug] >   Restored                                            │

│ C:\home\git\polyglot\apps\builder\target\Builder.fsproj (in 423 ms).         │

│ 00:00:31 #45 [Debug] > C:\Program                                            │

│ Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microso │

│ ft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You    │

│ are using a preview version of .NET. See:                                    │

│ https://aka.ms/dotnet-support-policy [                                       │

│ C:\home\git\polyglot\apps\builder\target\Builder.fsproj]                     │

│ 00:00:37 #46 [Debug] >   Builder ->                                          │

│ C:\home\git\polyglot\apps\builder\target\bin\release\net8.0\linux-x64\Builde │

│ r.dll                                                                        │

│ 00:00:38 #47 [Debug] >   Builder -> C:\home\git\polyglot\apps\builder\dist\  │

│ 00:00:38 #48 [Debug] executeAsync / exitCode: 0 / proc.Id: 54688 /           │

│ output.Length: 621                                                           │

│ 00:00:38 #49 [Debug] executeAsync / options: { Command = "dotnet publish -c  │

│ release -o ../dist -r win-x64"                                               │

│   WorkingDirectory = Some "C:\home\git\polyglot\apps\builder\target"         │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:38 #50 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for │

│ .NET                                                                         │

│ 00:00:39 #51 [Debug] >   Determining projects to restore...                  │

│ 00:00:39 #52 [Debug] >   Restored                                            │

│ C:\home\git\polyglot\apps\builder\target\Builder.fsproj (in 397 ms).         │

│ 00:00:40 #53 [Debug] > C:\Program                                            │

│ Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microso │

│ ft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You    │

│ are using a preview version of .NET. See:                                    │

│ https://aka.ms/dotnet-support-policy [                                       │

│ C:\home\git\polyglot\apps\builder\target\Builder.fsproj]                     │

│ 00:00:45 #54 [Debug] >   Builder ->                                          │

│ C:\home\git\polyglot\apps\builder\target\bin\release\net8.0\win-x64\Builder. │

│ dll                                                                          │

│ 00:00:52 #55 [Debug] >   Builder -> C:\home\git\polyglot\apps\builder\dist\  │

│ 00:00:53 #56 [Debug] executeAsync / exitCode: 0 / proc.Id: 46296 /           │

│ output.Length: 619                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Builder.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 317879 bytes to Builder.dib.html

In [ ]:
{ . "$ScriptDir/../apps/parser/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # DibParser (Polyglot)                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsec.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsecCS.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Runtime.fs

#!import ../nbs/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        let getLocals () =

            $"tempFolder:...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FParsec



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## escapeCell (test)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline escapeCell input =

    input

    |> String.split [[| '\n' |]]

    |> Array.map (function

        | line when line |> String.startsWith "\\#!" || line |> 

String.startsWith "\\#r" ->

            System.Text.RegularExpressions.Regex.Replace (line, "^\\\\#", "#")

        | line -> line

    )

    |> String.concat "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



$"a{nl}\\#!magic{nl}b{nl}"

|> escapeCell

|> _equal (

    $"a{nl}#!magic{nl}b{nl}"

)



╭─[ 55.89ms - stdout ]─────────────────────────────────────────────────────────╮

│ a                                                                            │

│ #!magic                                                                      │

│ b                                                                            │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicMarker                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicMarker : Parser<string, unit> = pstring "#!"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic"

|> run magicMarker

|> _equal (

    Success ("#!", (), Position ("", 2, 1, 3))

)



╭─[ 49.70ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!                                                              │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 2                                                             │

│         Line: 1                                                              │

│         Column: 3                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"##!magic"

|> run magicMarker

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl}##!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 57.49ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│ ##!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicCommand                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicCommand =

    magicMarker

    >>. manyTill anyChar newline

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic



a"

|> run magicCommand

|> _equal (

    Success ("magic", (), Position ("", 8, 2, 1))

)



╭─[ 34.60ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: magic                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 8                                                             │

│         Line: 2                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



" #!magic



a"

|> run magicCommand

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl} #!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 36.29ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│  #!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## content                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let content =

    (newline >>. magicMarker) <|> (eof >>. preturn "")

    |> attempt

    |> lookAhead

    |> manyTill anyChar

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run content

|> _equal (

    Success ("#!magic





a", (), Position ("", 14, 7, 1))

)



╭─[ 34.92ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!magic                                                         │

│                                                                              │

│                                                                              │

│ a                                                                            │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Block =

    {

        magic : string

        content : string

    }



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let block =

    pipe2

        magicCommand

        content

        (fun magic content ->

            {

                magic = magic

                content = content

            })



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run block

|> _equal (

    Success (

        { magic = "magic"; content = "a" },

        (),

        Position ("", 14, 7, 1)

    )

)



╭─[ 42.56ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: Block                                                           │

│         magic: magic                                                         │

│         content: a                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## blocks                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let blocks =

    skipMany newline

    >>. sepEndBy block (skipMany1 newline)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test





"#!magic1



a



\#!magic2



b



"

|> escapeCell

|> run blocks

|> _equal (

    Success (

        [[

            { magic = "magic1"; content = "a" }

            { magic = "magic2"; content = "b" }

        ]],

        (),

        Position ("", 26, 9, 1)

    )

)



╭─[ 48.54ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: FSharpList<Block>                                               │

│         - magic: magic1                                                      │

│           content: a                                                         │

│         - magic: magic2                                                      │

│           content: b                                                         │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 26                                                            │

│         Line: 9                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Output                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Output =

    | Fs

    | Md

    | Spi

    | Spir



let inline kernelOutputs magic =

    match magic with

    | "fsharp" -> [[ Fs ]]

    | "markdown" -> [[ Md ]]

    | "spiral" -> [[ Spi; Spir ]]

    | _ -> [[]]



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlock                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlock output (block : Block) =

    match output, block with

    | output, { magic = "markdown"; content = content } ->

        let markdownComment =

            match output with

            | Spi | Spir -> "// // "

            | Fs -> "/// "

            | _ -> ""

        content

        |> String.split [[| '\n' |]]

        |> Array.map (String.trimEnd [[||]])

        |> Array.filter (String.endsWith " (test)" >> not)

        |> Array.map (function

            | "" -> markdownComment |> String.trim

            | line -> System.Text.RegularExpressions.Regex.Replace (line, 

"^\\s*", $"$&{markdownComment}")

        )

        |> String.concat "\n"

    | Fs, { magic = "fsharp"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "//// test" || trimmedContent |> 

String.startsWith "//// ignore"

        then ""

        else

            content

            |> String.split [[| '\n' |]]

            |> Array.filter (String.trimStart [[||]] >> String.startsWith "#r" 

>> not)

            |> String.concat "\n"

    | (Spi | Spir), { magic = "spiral"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "// // test" || trimmedContent |>

String.startsWith "// // ignore"

        then ""

        else content

    | _ -> ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



    b



c





\#!markdown





c





\#!fsharp





let a = 1"

|> escapeCell

|> run block

|> function

    | Success (block, _, _) -> formatBlock Fs block

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

    /// b

///

/// c"



╭─[ 62.09ms - stdout ]─────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│     /// b                                                                    │

│ ///                                                                          │

│ /// c                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlocks                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlocks output blocks =

    blocks

    |> List.map (formatBlock output)

    |> List.filter ((<>) "")

    |> String.concat "\n\n"

    |> fun s -> s + "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



b





\#!markdown





c





\#!fsharp





let a = 1



\#!markdown



d (test)



\#!fsharp



//// test



let a = 2



\#!markdown



e



\#!fsharp



let a = 3"

|> escapeCell

|> run blocks

|> function

    | Success (blocks, _, _) -> formatBlocks Fs blocks

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

/// b



/// c



let a = 1



/// e



let a = 3

"



╭─[ 66.11ms - stdout ]─────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│ /// b                                                                        │

│                                                                              │

│ /// c                                                                        │

│                                                                              │

│ let a = 1                                                                    │

│                                                                              │

│ /// e                                                                        │

│                                                                              │

│ let a = 3                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parse                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parse output input =

    match run blocks input with

    | Success (blocks, _, _) ->

        let blocks =

            blocks

            |> List.filter (fun block ->

                block.magic |> kernelOutputs |> List.contains output || 

block.magic = "markdown"

            )

        

        match blocks with

        | { magic = "markdown"; content = content } :: _

            when output = Fs

            && content |> String.startsWith "# "

            && content |> String.endsWith ")"

            ->

            let inline indentBlock (block : Block) =

                { block with

                    content =

                        block.content

                        |> String.split [[| '\n' |]]

                        |> Array.fold

                            (fun (lines, isMultiline) line ->

                                let trimmedLine = line |> String.trim

                                if trimmedLine = ""

                                then "" :: lines, isMultiline

                                else

                                    let inline singleQuoteLine () =

                                        trimmedLine |> Seq.sumBy ((=) '"' >> 

System.Convert.ToInt32) = 1

                                        && trimmedLine |> String.contains 

@"'""'" |> not

                                        && trimmedLine |> String.endsWith "{" |>

not

                                        && trimmedLine |> String.endsWith "{|" 

|> not

                                        && trimmedLine |> String.startsWith "}" 

|> not

                                        && trimmedLine |> String.startsWith "|}"

|> not



                                    match isMultiline, trimmedLine |> 

String.splitString [[| $"{q}{q}{q}" |]] with

                                    | false, [[| _; _ |]] ->

                                        $"    {line}" :: lines, true



                                    | true, [[| _; _ |]] ->

                                        line :: lines, false



                                    | false, _ when singleQuoteLine () ->

                                        $"    {line}" :: lines, true



                                    | false, _ when line |> String.startsWith 

"#" && block.magic = "fsharp" ->

                                        line :: lines, false



                                    | false, _ ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () && line |>

String.startsWith "    " ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () ->

                                        line :: lines, false



                                    | true, _ ->

                                        line :: lines, true

                            )

                            ([[]], false)

                        |> fst

                        |> List.rev

                        |> String.concat "\n"

                }



            let moduleName, namespaceName =

                System.Text.RegularExpressions.Regex.Match (content, @"# (.*) 

\((.*)\)$")

                |> fun m -> m.Groups.[[1]].Value, m.Groups.[[2]].Value



            let moduleBlock =

                {

                    magic = "fsharp"

                    content =

                        $"#if !INTERACTIVE

namespace {namespaceName}

#endif



module {moduleName} ="

                }



            blocks

            |> List.indexed

            |> List.fold

                (fun blocks (index, block) ->

                    match index with

                    | 0 -> blocks

                    | 1 -> indentBlock block :: moduleBlock :: blocks

                    | _ -> indentBlock block :: blocks

                )

                [[]]

            |> List.rev

        | _ -> blocks

        |> Result.Ok

    | Failure (errorMsg, _, _) -> Result.Error errorMsg



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example1 =

    $"""#!meta



{{"kernelInfo":{{"defaultKernelName":"fsharp","items":[[{{"aliases":[[]],"name":

"fsharp"}},{{"aliases":[[]],"name":"fsharp"}}]]}}}}



\#!markdown



# TestModule (TestNamespace)



\#!fsharp



\#!import file.dib



\#!fsharp



\#r "nuget:Expecto"



\#!markdown



## ParserLibrary



\#!fsharp



open System



\#!markdown



## x (test)



\#!fsharp



//// ignore



let x = 1



\#!spiral



// // test



inl x = 0i32



\#!spiral



inl x = 0i32



\#!markdown



### TextInput



\#!fsharp



let str1 = "abc

def"



let str2 =

    "abc\

def"



let str3 =

    $"1{{

        1

    }}1"



let str4 =

    $"1{{({{|

        a = 1

    |}}).a}}1"



let str5 =

    "abc \

        def"



let x =

    match '"' with

    | '"' -> true

    | _ -> false



let long1 = {q}{q}{q}a{q}{q}{q}



let long2 =

    {q}{q}{q}

a

{q}{q}{q}



\#!fsharp



type Position =

    {{

#if INTERACTIVE

        line : string

#else

        line : int

#endif

        column : int

    }}"""

    |> escapeCell



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Fs

|> Result.toOption

|> Option.get

|> (formatBlocks Fs)

|> _equal $"""#if !INTERACTIVE

namespace TestNamespace

#endif



module TestModule =



    /// ## ParserLibrary



    open System



    /// ### TextInput



    let str1 = "abc

def"



    let str2 =

        "abc\

def"



    let str3 =

        $"1{{

            1

        }}1"



    let str4 =

        $"1{{({{|

            a = 1

        |}}).a}}1"



    let str5 =

        "abc \

            def"



    let x =

        match '"' with

        | '"' -> true

        | _ -> false



    let long1 = {q}{q}{q}a{q}{q}{q}



    let long2 =

        {q}{q}{q}

a

{q}{q}{q}



    type Position =

        {{

#if INTERACTIVE

            line : string

#else

            line : int

#endif

            column : int

        }}

"""



╭─[ 172.41ms - stdout ]────────────────────────────────────────────────────────╮

│ #if !INTERACTIVE                                                             │

│ namespace TestNamespace                                                      │

│ #endif                                                                       │

│                                                                              │

│ module TestModule =                                                          │

│                                                                              │

│     /// ## ParserLibrary                                                     │

│                                                                              │

│     open System                                                              │

│                                                                              │

│     /// ### TextInput                                                        │

│                                                                              │

│     let str1 = "abc                                                          │

│ def"                                                                         │

│                                                                              │

│     let str2 =                                                               │

│         "abc\                                                                │

│ def"                                                                         │

│                                                                              │

│     let str3 =                                                               │

│         $"1{                                                                 │

│             1                                                                │

│         }1"                                                                  │

│                                                                              │

│     let str4 =                                                               │

│         $"1{({|                                                              │

│             a = 1                                                            │

│         |}).a}1"                                                             │

│                                                                              │

│     let str5 =                                                               │

│         "abc \                                                               │

│             def"                                                             │

│                                                                              │

│     let x =                                                                  │

│         match '"' with                                                       │

│         | '"' -> true                                                        │

│         | _ -> false                                                         │

│                                                                              │

│     let long1 = """a"""                                                      │

│                                                                              │

│     let long2 =                                                              │

│         """                                                                  │

│ a                                                                            │

│ """                                                                          │

│                                                                              │

│     type Position =                                                          │

│         {                                                                    │

│ #if INTERACTIVE                                                              │

│             line : string                                                    │

│ #else                                                                        │

│             line : int                                                       │

│ #endif                                                                       │

│             column : int                                                     │

│         }                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Md

|> Result.toOption

|> Option.get

|> (formatBlocks Md)

|> _equal "# TestModule (TestNamespace)



## ParserLibrary



### TextInput

"



╭─[ 147.42ms - stdout ]────────────────────────────────────────────────────────╮

│ # TestModule (TestNamespace)                                                 │

│                                                                              │

│ ## ParserLibrary                                                             │

│                                                                              │

│ ### TextInput                                                                │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Spi

|> Result.toOption

|> Option.get

|> (formatBlocks Spi)

|> _equal "// // # TestModule (TestNamespace)



// // ## ParserLibrary



inl x = 0i32



// // ### TextInput

"



╭─[ 145.56ms - stdout ]────────────────────────────────────────────────────────╮

│ // // # TestModule (TestNamespace)                                           │

│                                                                              │

│ // // ## ParserLibrary                                                       │

│                                                                              │

│ inl x = 0i32                                                                 │

│                                                                              │

│ // // ### TextInput                                                          │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parseDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseDibCode output file = async {

    let getLocals () = $"output: {output} / file: {file} / {getLocals ()}"

    trace Debug (fun () -> "parseDibCode") getLocals

    let! input = file |> FileSystem.readAllTextAsync

    match parse output input with

    | Result.Ok blocks -> return blocks |> formatBlocks output

    | Result.Error msg -> return failwith msg

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeDibCode output path = async {

    let getLocals () = $"output: {output} / path: {path} / {getLocals ()}"

    trace Debug (fun () -> "writeDibCode") getLocals

    let! result = parseDibCode output path

    let outputPath = path |> String.replace ".dib" $".{output |> string |> 

String.toLower}"

    do! result |> FileSystem.writeAllTextAsync outputPath

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.Mandatory>]]

        File of file : string * Output



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | File _ -> nameof File



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let files =

        argsMap.[[nameof Arguments.File]]

        |> List.map (function

            | Arguments.File (path, output) -> path, output

        )



    files

    |> List.map (fun (path, output) -> path |> writeDibCode output)

    |> Async.Parallel

    |> Async.Ignore

    |> Async.runWithTimeout 30000

    |> function

        | Some () -> 0

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 210.11ms - return value ]──────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 223.06ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] writeDibCode / output: Fs / path: DibParser.dib          │

│ 00:00:00 #2 [Debug] parseDibCode / output: Fs / file: DibParser.dib          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook DibParser.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 363952 bytes to DibParser.dib.html

01:54:55 #1 [Debug] persistCodeProject / packages: [Argu; FParsec; FSharp.Control.AsyncSeq; ... ] / modules: [nbs/Common.fs; nbs/CommonFSharp.fs; nbs/Async.fs; ... ] / path: C:\home\git\polyglot\apps\parser / name: DibParser / code.Length: 9066

01:54:55 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\apps\parser\target\DibParser.fsproj

01:54:55 #3 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r linux-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\parser\target"

  CancellationToken = None

  OnLine = None }

01:54:55 #4 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

01:54:56 #5 [Debug] >   Determining projects to restore...

01:54:57 #6 [Debug] >   Restored C:\home\git\polyglot\apps\parser\target\DibParser.fsproj (in 409 ms).

01:54:57 #7 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\parser\target\DibParser.fsproj]

01:55:03 #8 [Debug] >   DibParser -> C:\home\git\polyglot\apps\parser\target\bin\release\net8.0\linux-x64\DibParser.dll

01:55:04 #9 [Debug] >   DibParser -> C:\home\git\polyglot\apps\parser\dist\

01:55:04 #10 [Debug] executeAsync / exitCode: 0 / proc.Id: 66436 / output.Length: 627

01:55:04 #11 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r win-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\parser\target"

  CancellationToken = None

  OnLine = None }

01:55:04 #12 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

01:55:05 #13 [Debug] >   Determining projects to restore...

01:55:06 #14 [Debug] >   Restored C:\home\git\polyglot\apps\parser\target\DibParser.fsproj (in 360 ms).

01:55:06 #15 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\parser\target\DibParser.fsproj]

01:55:12 #16 [Debug] >   DibParser -> C:\home\git\polyglot\apps\parser\target\bin\release\net8.0\win-x64\DibParser.dll

01:55:19 #17 [Debug] >   DibParser -> C:\home\git\polyglot\apps\parser\dist\

01:55:19 #18 [Debug] executeAsync / exitCode: 0 / proc.Id: 50520 / output.Length: 625



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # JsonParser (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import Parser.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Parser =



    open Common



    /// ### TextInput



    type Position =

        {

            line : int

            column : int

        }



    let initialPos = { line = 0; column = 0 }



    let inline incrCol (pos : Position) =

        { pos with column = pos.column + 1 }



    let inline incrLine pos =

        { line = pos.line + 1; column = 0 }



    type InputState =

        {

            lines : string[[]]

            position : Position

        }



    let inline fromStr str =

        {

            lines =

                if str |> String.IsNullOrEmpty

                then [[||]]

                else str |> String.splitString [[| "\r\n"; "\n" |]]

            position = initialPos

        }



   ...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open Parser



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## JsonParser                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

(*

// --------------------------------

JSON spec from http://www.json.org/

// --------------------------------



The JSON spec is available at [[json.org]](http://www.json.org/). I'll paraphase

it here:



* A `value` can be a `string` or a `number` or a `bool` or `null` or an `object`

or an `array`.

  * These structures can be nested.

* A `string` is a sequence of zero or more Unicode characters, wrapped in double

quotes, using backslash escapes.

* A `number` is very much like a C or Java number, except that the octal and 

hexadecimal formats are not used.

* A `boolean` is the literal `true` or `false`

* A `null` is the literal `null`

* An `object` is an unordered set of name/value pairs.

  * An object begins with { (left brace) and ends with } (right brace).

  * Each name is followed by : (colon) and the name/value pairs are separated by

, (comma).

* An `array` is an ordered collection of values.

  * An array begins with [[ (left bracket) and ends with ]] (right bracket).

  * Values are separated by , (comma).

* Whitespace can be inserted between any pair of tokens.



*)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline parserEqual (expected : ParseResult<'a>) (actual : ParseResult<'a * 

Input>) =

    match actual, expected with

    | Success (_actual, _), Success _expected ->

        printResult actual

        _actual |> _equal _expected

    | Failure (l1, e1, p1), Failure (l2, e2, p2) when l1 = l2 && e1 = e2 && p1 =

p2 ->

        printResult actual

    | _ ->

        printfn $"Actual: {actual}"

        printfn $"Expected: {expected}"

        failwith "Parse failed"

    actual



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### JValue                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type JValue =

    | JString of string

    | JNumber of float

    | JBool   of bool

    | JNull

    | JObject of Map<string, JValue>

    | JArray  of JValue list



── fsharp ──────────────────────────────────────────────────────────────────────

let jValue, jValueRef = createParserForwardedToRef<JValue> ()



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jNull                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jNull =

    pstring "null"

    >>% JNull

    <?> "null"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jValue "null"

|> parserEqual (Success JNull)



╭─[ 234.37ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNull, { lines = [                      │

│ |&quot;null&quot;|]<br/>                  position = { line = 0<br/>         │

│ column = 4 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNull, { lines = [|&quot;null&quot;|]<br/>      │

│ position = { line = 0<br/>               column = 4 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNull</code></span></summary><div><table><thead> │

│ <tr></tr></thead><tbody></tbody></table></div></details></td></tr><tr><td>It │

│ em2</td><td><details class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>{ lines = [|&quot;null&quot;|]<br/>  position =  │

│ { line = 0<br/>               column = 4 }                                   │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ null                         │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 4                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 259.31ms - stdout ]────────────────────────────────────────────────────────╮

│ JNull                                                                        │

│ JNull                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNull "nulp"

|> parserEqual (

    Failure (

        "null",

        "Unexpected 'p'",

        { currentLine = "nulp"; line = 0; column = 3 }

    )

)



╭─[ 53.97ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;null&quot;, &quot;Unexpected      │

│ &#39;p&#39;&quot;, { currentLine = &quot;nulp&quot;<br/>                     │

│ line = 0<br/>                                     column = 3                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>null</pre></div></td></tr><tr><td>Item2</td><td>< │

│ div class="dni-plaintext"><pre>Unexpected                                    │

│ &#39;p&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;nulp&quot;<br/>  line = 0<br/>  column = 3               │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div                                                     │

│ class="dni-plaintext"><pre>nulp</pre></div></td></tr><tr><td>line</td><td><d │

│ iv                                                                           │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 73.84ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:3 Error parsing null                                              │

│ nulp                                                                         │

│    ^Unexpected 'p'                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jBool                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jBool =

    let jtrue =

        pstring "true"

        >>% JBool true

    let jfalse =

        pstring "false"

        >>% JBool false



    jtrue <|> jfalse

    <?> "bool"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jBool "true"

|> parserEqual (Success (JBool true))



╭─[ 56.28ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JBool true, { lines = [                 │

│ |&quot;true&quot;|]<br/>                       position = { line = 0<br/>    │

│ column = 4 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JBool true, { lines = [|&quot;true&quot;|]<br/> │

│ position = { line = 0<br/>               column = 4 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JBool                                            │

│ true</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><div                                                         │

│ class="dni-plaintext"><pre>True</pre></div></td></tr></tbody></table></div>< │

│ /details></td></tr><tr><td>Item2</td><td><details                            │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;true&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 4 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ true                         │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 4                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 80.44ms - stdout ]─────────────────────────────────────────────────────────╮

│ JBool true                                                                   │

│ JBool                                                                        │

│       Item: True                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jBool "false"

|> parserEqual (Success (JBool false))



╭─[ 49.44ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JBool false, { lines = [                │

│ |&quot;false&quot;|]<br/>                        position = { line = 0<br/>  │

│ column = 5 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JBool false, { lines = [                        │

│ |&quot;false&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 5 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JBool                                            │

│ false</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

│ <td>Item</td><td><div                                                        │

│ class="dni-plaintext"><pre>False</pre></div></td></tr></tbody></table></div> │

│ </details></td></tr><tr><td>Item2</td><td><details                           │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;false&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 5 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ false                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 5                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>5</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 73.74ms - stdout ]─────────────────────────────────────────────────────────╮

│ JBool false                                                                  │

│ JBool                                                                        │

│       Item: False                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jBool "truX"

|> parserEqual (

    Failure (

        "bool",

        "Unexpected 't'",

        { currentLine = "truX"; line = 0; column = 0 }

    )

)



╭─[ 24.16ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;bool&quot;, &quot;Unexpected      │

│ &#39;t&#39;&quot;, { currentLine = &quot;truX&quot;<br/>                     │

│ line = 0<br/>                                     column = 0                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>bool</pre></div></td></tr><tr><td>Item2</td><td>< │

│ div class="dni-plaintext"><pre>Unexpected                                    │

│ &#39;t&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;truX&quot;<br/>  line = 0<br/>  column = 0               │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div                                                     │

│ class="dni-plaintext"><pre>truX</pre></div></td></tr><tr><td>line</td><td><d │

│ iv                                                                           │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 45.58ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:0 Error parsing bool                                              │

│ truX                                                                         │

│ ^Unexpected 't'                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jUnescapedChar                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jUnescapedChar =

    satisfy (fun ch -> ch <> '\\' && ch <> '\"') "char"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jUnescapedChar "a"

|> parserEqual (Success 'a')



╭─[ 64.67ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;a&#39;, { lines = [                │

│ |&quot;a&quot;|]<br/>                position = { line = 0<br/>              │

│ column = 1 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(a, { lines = [|&quot;a&quot;|]<br/>  position = │

│ { line = 0<br/>               column = 1 }                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>a</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;a&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 1 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ a                            │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 1                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 86.32ms - stdout ]─────────────────────────────────────────────────────────╮

│ 'a'                                                                          │

│ a                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jUnescapedChar "\\"

|> parserEqual (

    Failure (

        "char",

        "Unexpected '\\'",

        { currentLine = "\\"; line = 0; column = 0 }

    )

)



╭─[ 33.40ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;char&quot;, &quot;Unexpected      │

│ &#39;\&#39;&quot;, { currentLine = &quot;\&quot;<br/>                        │

│ line = 0<br/>                                     column = 0                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>char</pre></div></td></tr><tr><td>Item2</td><td>< │

│ div class="dni-plaintext"><pre>Unexpected                                    │

│ &#39;\&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;\&quot;<br/>  line = 0<br/>  column = 0                  │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div                                                     │

│ class="dni-plaintext"><pre>\</pre></div></td></tr><tr><td>line</td><td><div  │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 53.07ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:0 Error parsing char                                              │

│ \                                                                            │

│ ^Unexpected '\'                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jEscapedChar                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jEscapedChar =

    [[

        ("\\\"",'\"')

        ("\\\\",'\\')

        ("\\/",'/')

        ("\\b",'\b')

        ("\\f",'\f')

        ("\\n",'\n')

        ("\\r",'\r')

        ("\\t",'\t')

    ]]

    |> List.map (fun (toMatch, result) ->

        pstring toMatch >>% result

    )

    |> choice

    <?> "escaped char"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar "\\\\"

|> parserEqual (Success '\\')



╭─[ 38.65ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\\&#39;, { lines = [               │

│ |&quot;\\&quot;|]<br/>                 position = { line = 0<br/>            │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(\, { lines = [|&quot;\\&quot;|]<br/>  position  │

│ = { line = 0<br/>               column = 2 }                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>\</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;\\&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 2 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ \\                           │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 2                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 62.44ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\\'                                                                         │

│ \                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar "\\t"

|> parserEqual (Success '\t')



╭─[ 33.66ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\009&#39;, { lines = [             │

│ |&quot;\t&quot;|]<br/>                   position = { line = 0<br/>          │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(	, { lines = [|&quot;\t&quot;|]<br/>  position =  │

│ { line = 0<br/>               column = 2 }                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>	                               │

│ </pre></div></td></tr><tr><td>Item2</td><td><details                         │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;\t&quot;|]<br/>  position = { line = 0<br/>               column = 2  │

│ }                                                                            │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ \t                           │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 2                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 57.10ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\009'                                                                       │

│ 	                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar @"\\"

|> parserEqual (Success '\\')



╭─[ 36.99ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\\&#39;, { lines = [               │

│ |&quot;\\&quot;|]<br/>                 position = { line = 0<br/>            │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(\, { lines = [|&quot;\\&quot;|]<br/>  position  │

│ = { line = 0<br/>               column = 2 }                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>\</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;\\&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 2 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ \\                           │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 2                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 63.33ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\\'                                                                         │

│ \                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar @"\n"

|> parserEqual (Success '\n')



╭─[ 34.74ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\010&#39;, { lines = [             │

│ |&quot;<br/>&quot;|]<br/>                   position = { line = 0<br/>       │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(<br/>, { lines = [|&quot;<br/>&quot;|]<br/>     │

│ position = { line = 0<br/>               column = 2 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>                              │

│ </pre></div></td></tr><tr><td>Item2</td><td><details                         │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;<br/>&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 2 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ <br/>                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 2                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 56.79ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\010'                                                                       │

│                                                                              │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar "a"

|> parserEqual (

    Failure (

        "escaped char",

        "Unexpected 'a'",

        { currentLine = "a"; line = 0; column = 0 }

    )

)



╭─[ 27.41ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;escaped char&quot;,               │

│ &quot;Unexpected &#39;a&#39;&quot;, { currentLine = &quot;a&quot;<br/>       │

│ line = 0<br/>                                             column = 0         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>escaped                       │

│ char</pre></div></td></tr><tr><td>Item2</td><td><div                         │

│ class="dni-plaintext"><pre>Unexpected                                        │

│ &#39;a&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;a&quot;<br/>  line = 0<br/>  column = 0                  │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div                                                     │

│ class="dni-plaintext"><pre>a</pre></div></td></tr><tr><td>line</td><td><div  │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 46.33ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:0 Error parsing escaped char                                      │

│ a                                                                            │

│ ^Unexpected 'a'                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jUnicodeChar                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jUnicodeChar =

    let backslash = pchar '\\'

    let uChar = pchar 'u'

    let hexdigit = anyOf ([[ '0' .. '9' ]] @ [[ 'A' .. 'F' ]] @ [[ 'a' .. 'f' 

]])

    let fourHexDigits = hexdigit .>>. hexdigit .>>. hexdigit .>>. hexdigit



    let inline convertToChar (((h1, h2), h3), h4) =

        let str = $"%c{h1}%c{h2}%c{h3}%c{h4}"

        Int32.Parse (str, Globalization.NumberStyles.HexNumber) |> char



    backslash >>. uChar >>. fourHexDigits

    |>> convertToChar



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jUnicodeChar "\\u263A"

|> parserEqual (Success '☺')



╭─[ 44.77ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;☺&#39;, { lines = [                │

│ |&quot;\u263A&quot;|]<br/>                position = { line = 0<br/>         │

│ column = 6 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(☺, { lines = [|&quot;\u263A&quot;|]<br/>        │

│ position = { line = 0<br/>               column = 6 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>☺</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;\u263A&quot;|]<br/>  position = { line = 0<br/>                    │

│ column = 6 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ \u263A                       │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 6                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>6</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 70.08ms - stdout ]─────────────────────────────────────────────────────────╮

│ '☺'                                                                          │

│ ☺                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jString                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let quotedString =

    let quote = pchar '\"' <?> "quote"

    let jchar = jUnescapedChar <|> jEscapedChar <|> jUnicodeChar



    quote >>. manyChars jchar .>> quote



── fsharp ──────────────────────────────────────────────────────────────────────

let jString =

    quotedString

    |>> JString

    <?> "quoted string"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"\""

|> parserEqual (Success (JString ""))



╭─[ 50.00ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;&quot;, { lines = [       │

│ |&quot;&quot;&quot;&quot;|]<br/>                       position = { line =   │

│ 0<br/>                                    column = 2 }                       │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;&quot;, { lines = [               │

│ |&quot;&quot;&quot;&quot;|]<br/>  position = { line = 0<br/>                 │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;&quot;</code></span></summary><div><table><thead><tr></tr></thead><tbo │

│ dy><tr><td>Item</td><td><div                                                 │

│ class="dni-plaintext"><pre></pre></div></td></tr></tbody></table></div></det │

│ ails></td></tr><tr><td>Item2</td><td><details                                │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;&quot;&quot;&quot;|]<br/>  position = { line = 0<br/>                 │

│ column = 2 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ &quot;&quot;                 │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 2                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 77.97ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString ""                                                                   │

│ JString                                                                      │

│       Item:                                                                  │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"a\""

|> parserEqual (Success (JString "a"))



╭─[ 38.98ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;a&quot;, { lines = [      │

│ |&quot;&quot;a&quot;&quot;|]<br/>                        position = { line = │

│ 0<br/>                                     column = 3 }                      │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;a&quot;, { lines = [              │

│ |&quot;&quot;a&quot;&quot;|]<br/>  position = { line = 0<br/>                │

│ column = 3 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;a&quot;</code></span></summary><div><table><thead><tr></tr></thead><tb │

│ ody><tr><td>Item</td><td><div                                                │

│ class="dni-plaintext"><pre>a</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr><tr><td>Item2</td><td><details                               │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;&quot;a&quot;&quot;|]<br/>  position = { line = 0<br/>                │

│ column = 3 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ &quot;a&quot;                │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 3                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 62.99ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "a"                                                                  │

│ JString                                                                      │

│       Item: a                                                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"ab\""

|> parserEqual (Success (JString "ab"))



╭─[ 39.89ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;ab&quot;, { lines = [     │

│ |&quot;&quot;ab&quot;&quot;|]<br/>                         position = { line │

│ = 0<br/>                                      column = 4 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;ab&quot;, { lines = [             │

│ |&quot;&quot;ab&quot;&quot;|]<br/>  position = { line = 0<br/>               │

│ column = 4 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;ab&quot;</code></span></summary><div><table><thead><tr></tr></thead><t │

│ body><tr><td>Item</td><td><div                                               │

│ class="dni-plaintext"><pre>ab</pre></div></td></tr></tbody></table></div></d │

│ etails></td></tr><tr><td>Item2</td><td><details                              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;&quot;ab&quot;&quot;|]<br/>  position = { line = 0<br/>               │

│ column = 4 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ &quot;ab&quot;               │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 4                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 66.55ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "ab"                                                                 │

│ JString                                                                      │

│       Item: ab                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"ab\\tde\""

|> parserEqual (Success (JString "ab\tde"))



╭─[ 34.82ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;ab	de&quot;, { lines = [    │

│ |&quot;&quot;ab\tde&quot;&quot;|]<br/>                            position = │

│ { line = 0<br/>                                         column = 8 }         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;ab	de&quot;, { lines = [            │

│ |&quot;&quot;ab\tde&quot;&quot;|]<br/>  position = { line = 0<br/>           │

│ column = 8 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString &quot;ab	                                  │

│ de&quot;</code></span></summary><div><table><thead><tr></tr></thead><tbody>< │

│ tr><td>Item</td><td><div class="dni-plaintext"><pre>ab	                        │

│ de</pre></div></td></tr></tbody></table></div></details></td></tr><tr><td>It │

│ em2</td><td><details class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>{ lines = [                                      │

│ |&quot;&quot;ab\tde&quot;&quot;|]<br/>  position = { line = 0<br/>           │

│ column = 8 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ &quot;ab\tde&quot;           │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 8                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>8</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 62.30ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "ab	de"                                                                │

│ JString                                                                      │

│       Item: ab	de                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"ab\\u263Ade\""

|> parserEqual (Success (JString "ab☺de"))



╭─[ 37.22ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;ab☺de&quot;, { lines = [  │

│ |&quot;&quot;ab\u263Ade&quot;&quot;|]<br/>                                   │

│ position = { line = 0<br/>                                         column =  │

│ 12 }                                                                         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;ab☺de&quot;, { lines = [          │

│ |&quot;&quot;ab\u263Ade&quot;&quot;|]<br/>  position = { line = 0<br/>       │

│ column = 12 }                                                                │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;ab☺de&quot;</code></span></summary><div><table><thead><tr></tr></thead │

│ ><tbody><tr><td>Item</td><td><div                                            │

│ class="dni-plaintext"><pre>ab☺de</pre></div></td></tr></tbody></table></div> │

│ </details></td></tr><tr><td>Item2</td><td><details                           │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;&quot;ab\u263Ade&quot;&quot;|]<br/>  position = { line = 0<br/>       │

│ column = 12 }                                                                │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ &quot;ab\u263Ade&quot;       │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 12                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>12</pre></div></td></tr></tbody></table></div></d │

│ etails></td></tr></tbody></table></div></details></td></tr></tbody></table>< │

│ /div></details></td></tr></tbody></table></div></details><style>             │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 62.68ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "ab☺de"                                                              │

│ JString                                                                      │

│       Item: ab☺de                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jNumber                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jNumber =

    let optSign = opt (pchar '-')



    let zero = pstring "0"



    let digitOneNine =

        satisfy (fun ch -> Char.IsDigit ch && ch <> '0') "1-9"



    let digit =

        satisfy Char.IsDigit "digit"



    let point = pchar '.'



    let e = pchar 'e' <|> pchar 'E'



    let optPlusMinus = opt (pchar '-' <|> pchar '+')



    let nonZeroInt =

        digitOneNine .>>. manyChars digit

        |>> fun (first, rest) -> string first + rest



    let intPart = zero <|> nonZeroInt



    let fractionPart = point >>. manyChars1 digit



    let exponentPart = e >>. optPlusMinus .>>. manyChars1 digit



    let inline (|>?) opt f =

        match opt with

        | None -> ""

        | Some x -> f x



    let inline convertToJNumber (((optSign, intPart), fractionPart), expPart) =

        let signStr =

            optSign

            |>? string



        let fractionPartStr =

            fractionPart

            |>? (fun digits -> "." + digits)



        let expPartStr =

            expPart

            |>? fun (optSign, digits) ->

                let sign = optSign |>? string

                "e" + sign + digits



        (signStr + intPart + fractionPartStr + expPartStr)

        |> float

        |> JNumber



    optSign .>>. intPart .>>. opt fractionPart .>>. opt exponentPart

    |>> convertToJNumber

    <?> "number"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

            jNumber

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "123"

|> parserEqual (Success (JNumber 123.0))



╭─[ 70.39ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.0, { lines = [              │

│ |&quot;123&quot;|]<br/>                          position = { line = 0<br/>  │

│ column = 3 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.0, { lines = [                      │

│ |&quot;123&quot;|]<br/>  position = { line = 0<br/>               column = 3 │

│ }                                                                            │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

│ <td>Item</td><td><div                                                        │

│ class="dni-plaintext"><pre>123</pre></div></td></tr></tbody></table></div></ │

│ details></td></tr><tr><td>Item2</td><td><details                             │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123&quot;|]<br/>  position = { line = 0<br/>               column = 3 │

│ }                                                                            │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123                          │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 3                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 94.87ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.0                                                                │

│ JNumber                                                                      │

│       Item: 123                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "-123"

|> parserEqual (Success (JNumber -123.0))



╭─[ 48.43ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber -123.0, { lines = [             │

│ |&quot;-123&quot;|]<br/>                           position = { line =       │

│ 0<br/>                                        column = 4 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber -123.0, { lines = [                     │

│ |&quot;-123&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 4 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ -123.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr │

│ ><td>Item</td><td><div                                                       │

│ class="dni-plaintext"><pre>-123</pre></div></td></tr></tbody></table></div>< │

│ /details></td></tr><tr><td>Item2</td><td><details                            │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;-123&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 4 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ -123                         │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 4                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 73.62ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber -123.0                                                               │

│ JNumber                                                                      │

│       Item: -123                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "123.4"

|> parserEqual (Success (JNumber 123.4))



╭─[ 37.13ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.4, { lines = [              │

│ |&quot;123.4&quot;|]<br/>                          position = { line =       │

│ 0<br/>                                       column = 5 }                    │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.4, { lines = [                      │

│ |&quot;123.4&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 5 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.4</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

│ <td>Item</td><td><div                                                        │

│ class="dni-plaintext"><pre>123.4</pre></div></td></tr></tbody></table></div> │

│ </details></td></tr><tr><td>Item2</td><td><details                           │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123.4&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 5 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123.4                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 5                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>5</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 61.48ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.4                                                                │

│ JNumber                                                                      │

│       Item: 123.4                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "-123."

|> parserEqual (Success (JNumber -123.0))



╭─[ 36.68ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber -123.0, { lines = [             │

│ |&quot;-123.&quot;|]<br/>                           position = { line =      │

│ 0<br/>                                        column = 4 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber -123.0, { lines = [                     │

│ |&quot;-123.&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 4 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ -123.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr │

│ ><td>Item</td><td><div                                                       │

│ class="dni-plaintext"><pre>-123</pre></div></td></tr></tbody></table></div>< │

│ /details></td></tr><tr><td>Item2</td><td><details                            │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;-123.&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 4 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ -123.                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 4                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 58.76ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber -123.0                                                               │

│ JNumber                                                                      │

│       Item: -123                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "00.1"

|> parserEqual (Success (JNumber 0.0))



╭─[ 38.30ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 0.0, { lines = [                │

│ |&quot;00.1&quot;|]<br/>                        position = { line = 0<br/>   │

│ column = 1 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 0.0, { lines = [                        │

│ |&quot;00.1&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 1 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 0.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><div                                                          │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr><tr><td>Item2</td><td><details                               │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;00.1&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 1 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 00.1                         │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 0<br/>  column = 1                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 63.68ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 0.0                                                                  │

│ JNumber                                                                      │

│       Item: 0                                                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let jNumber_ = jNumber .>> spaces1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123"

|> parserEqual (Success (JNumber 123.0))



╭─[ 42.44ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.0, { lines = [              │

│ |&quot;123&quot;|]<br/>                          position = { line = 1<br/>  │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.0, { lines = [                      │

│ |&quot;123&quot;|]<br/>  position = { line = 1<br/>               column = 0 │

│ }                                                                            │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

│ <td>Item</td><td><div                                                        │

│ class="dni-plaintext"><pre>123</pre></div></td></tr></tbody></table></div></ │

│ details></td></tr><tr><td>Item2</td><td><details                             │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123&quot;|]<br/>  position = { line = 1<br/>               column = 0 │

│ }                                                                            │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123                          │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 67.55ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.0                                                                │

│ JNumber                                                                      │

│       Item: 123                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "-123"

|> parserEqual (Success (JNumber -123.0))



╭─[ 35.03ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber -123.0, { lines = [             │

│ |&quot;-123&quot;|]<br/>                           position = { line =       │

│ 1<br/>                                        column = 0 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber -123.0, { lines = [                     │

│ |&quot;-123&quot;|]<br/>  position = { line = 1<br/>               column =  │

│ 0 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ -123.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr │

│ ><td>Item</td><td><div                                                       │

│ class="dni-plaintext"><pre>-123</pre></div></td></tr></tbody></table></div>< │

│ /details></td></tr><tr><td>Item2</td><td><details                            │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;-123&quot;|]<br/>  position = { line = 1<br/>               column =  │

│ 0 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ -123                         │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 58.78ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber -123.0                                                               │

│ JNumber                                                                      │

│       Item: -123                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "-123."

|> parserEqual (

    Failure (

        "number andThen many1 whitespace",

        "Unexpected '.'",

        { currentLine = "-123."; line = 0; column = 4 }

    )

)



╭─[ 27.70ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure<br/>  (&quot;number andThen many1        │

│ whitespace&quot;, &quot;Unexpected &#39;.&#39;&quot;, { currentLine =        │

│ &quot;-123.&quot;<br/>                                                       │

│ line = 0<br/>                                                                │

│ column = 4                                                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>number andThen many1          │

│ whitespace</pre></div></td></tr><tr><td>Item2</td><td><div                   │

│ class="dni-plaintext"><pre>Unexpected                                        │

│ &#39;.&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;-123.&quot;<br/>  line = 0<br/>  column = 4              │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div                                                     │

│ class="dni-plaintext"><pre>-123.</pre></div></td></tr><tr><td>line</td><td>< │

│ div                                                                          │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 47.28ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:4 Error parsing number andThen many1 whitespace                   │

│ -123.                                                                        │

│     ^Unexpected '.'                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123.4"

|> parserEqual (Success (JNumber 123.4))



╭─[ 37.95ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.4, { lines = [              │

│ |&quot;123.4&quot;|]<br/>                          position = { line =       │

│ 1<br/>                                       column = 0 }                    │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.4, { lines = [                      │

│ |&quot;123.4&quot;|]<br/>  position = { line = 1<br/>               column = │

│ 0 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.4</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

│ <td>Item</td><td><div                                                        │

│ class="dni-plaintext"><pre>123.4</pre></div></td></tr></tbody></table></div> │

│ </details></td></tr><tr><td>Item2</td><td><details                           │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123.4&quot;|]<br/>  position = { line = 1<br/>               column = │

│ 0 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123.4                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 62.75ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.4                                                                │

│ JNumber                                                                      │

│       Item: 123.4                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "00.4"

|> parserEqual (

    Failure (

        "number andThen many1 whitespace",

        "Unexpected '0'",

        { currentLine = "00.4"; line = 0; column = 1 }

    )

)



╭─[ 30.26ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure<br/>  (&quot;number andThen many1        │

│ whitespace&quot;, &quot;Unexpected &#39;0&#39;&quot;, { currentLine =        │

│ &quot;00.4&quot;<br/>                                                        │

│ line = 0<br/>                                                                │

│ column = 1                                                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>number andThen many1          │

│ whitespace</pre></div></td></tr><tr><td>Item2</td><td><div                   │

│ class="dni-plaintext"><pre>Unexpected                                        │

│ &#39;0&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;00.4&quot;<br/>  line = 0<br/>  column = 1               │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div                                                     │

│ class="dni-plaintext"><pre>00.4</pre></div></td></tr><tr><td>line</td><td><d │

│ iv                                                                           │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 52.16ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:1 Error parsing number andThen many1 whitespace                   │

│ 00.4                                                                         │

│  ^Unexpected '0'                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123e4"

|> parserEqual (Success (JNumber 1230000.0))



╭─[ 37.83ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 1230000.0, { lines = [          │

│ |&quot;123e4&quot;|]<br/>                              position = { line =   │

│ 1<br/>                                           column = 0 }                │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 1230000.0, { lines = [                  │

│ |&quot;123e4&quot;|]<br/>  position = { line = 1<br/>               column = │

│ 0 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 1230000.0</code></span></summary><div><table><thead><tr></tr></thead><tbody> │

│ <tr><td>Item</td><td><div                                                    │

│ class="dni-plaintext"><pre>1230000</pre></div></td></tr></tbody></table></di │

│ v></details></td></tr><tr><td>Item2</td><td><details                         │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123e4&quot;|]<br/>  position = { line = 1<br/>               column = │

│ 0 }                                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123e4                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 65.61ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 1230000.0                                                            │

│ JNumber                                                                      │

│       Item: 1230000                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123.4e5"

|> parserEqual (Success (JNumber 12340000.0))



╭─[ 34.97ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 12340000.0, { lines = [         │

│ |&quot;123.4e5&quot;|]<br/>                               position = { line  │

│ = 1<br/>                                            column = 0 }             │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 12340000.0, { lines = [                 │

│ |&quot;123.4e5&quot;|]<br/>  position = { line = 1<br/>               column │

│ = 0 }                                                                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 12340000.0</code></span></summary><div><table><thead><tr></tr></thead><tbody │

│ ><tr><td>Item</td><td><div                                                   │

│ class="dni-plaintext"><pre>12340000</pre></div></td></tr></tbody></table></d │

│ iv></details></td></tr><tr><td>Item2</td><td><details                        │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123.4e5&quot;|]<br/>  position = { line = 1<br/>               column │

│ = 0 }                                                                        │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123.4e5                      │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 58.15ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 12340000.0                                                           │

│ JNumber                                                                      │

│       Item: 12340000                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123.4e-5"

|> parserEqual (Success (JNumber 0.001234))



╭─[ 36.64ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 0.001234, { lines = [           │

│ |&quot;123.4e-5&quot;|]<br/>                             position = { line = │

│ 1<br/>                                          column = 0 }                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 0.001234, { lines = [                   │

│ |&quot;123.4e-5&quot;|]<br/>  position = { line = 1<br/>                     │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 0.001234</code></span></summary><div><table><thead><tr></tr></thead><tbody>< │

│ tr><td>Item</td><td><div                                                     │

│ class="dni-plaintext"><pre>0.001234</pre></div></td></tr></tbody></table></d │

│ iv></details></td></tr><tr><td>Item2</td><td><details                        │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;123.4e-5&quot;|]<br/>  position = { line = 1<br/>                     │

│ column = 0 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ 123.4e-5                     │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 60.19ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 0.001234                                                             │

│ JNumber                                                                      │

│       Item: 0.001234                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jArray                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jArray =

    let left = pchar '[[' .>> spaces

    let right = pchar ']]' .>> spaces

    let comma = pchar ',' .>> spaces

    let value = jValue .>> spaces



    let values = sepBy value comma



    between left values right

    |>> JArray

    <?> "array"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

            jNumber

            jArray

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jArray "[[ 1, 2 ]]"

|> parserEqual (Success (JArray [[ JNumber 1.0; JNumber 2.0 ]]))



╭─[ 84.05ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JArray [JNumber 1.0; JNumber 2.0], {    │

│ lines = [|&quot;[ 1, 2 ]&quot;|]<br/>                                        │

│ position = { line = 1<br/>                                                   │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JArray [JNumber 1.0; JNumber 2.0], { lines = [  │

│ |&quot;[ 1, 2 ]&quot;|]<br/>  position = { line = 1<br/>                     │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JArray [JNumber 1.0; JNumber                     │

│ 2.0]</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><table><thead><tr><th><i>index</i></th><th>value</th></tr></ │

│ thead><tbody><tr><td>0</td><td><details class="dni-treeview"><summary><span  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 1.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><div                                                          │

│ class="dni-plaintext"><pre>1</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr><tr><td>1</td><td><details                                   │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>JNumber      │

│ 2.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><div                                                          │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></td></tr></tbody></table></div></details></ │

│ td></tr><tr><td>Item2</td><td><details class="dni-treeview"><summary><span   │

│ class="dni-code-hint"><code>{ lines = [|&quot;[ 1, 2 ]&quot;|]<br/>          │

│ position = { line = 1<br/>               column = 0 }                        │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ [ 1, 2 ]                     │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 111.39ms - stdout ]────────────────────────────────────────────────────────╮

│ JArray [JNumber 1.0; JNumber 2.0]                                            │

│ JArray                                                                       │

│       Item: FSharpList<JValue>                                               │

│         - Item: 1                                                            │

│         - Item: 2                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jArray "[[ 1, 2, ]]"

|> parserEqual (

    Failure (

        "array",

        "Unexpected ','",

        { currentLine = "[[ 1, 2, ]]"; line = 0; column = 6 }

    )

)



╭─[ 40.16ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;array&quot;, &quot;Unexpected     │

│ &#39;,&#39;&quot;, { currentLine = &quot;[ 1, 2, ]&quot;<br/>                │

│ line = 0<br/>                                      column = 6                │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>array</pre></div></td></tr><tr><td>Item2</td><td> │

│ <div class="dni-plaintext"><pre>Unexpected                                   │

│ &#39;,&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;[ 1, 2, ]&quot;<br/>  line = 0<br/>  column = 6          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div class="dni-plaintext"><pre>[ 1, 2,                  │

│ ]</pre></div></td></tr><tr><td>line</td><td><div                             │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>6</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 58.92ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:6 Error parsing array                                             │

│ [ 1, 2, ]                                                                    │

│       ^Unexpected ','                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jObject                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jObject =

    let left = spaces >>. pchar '{' .>> spaces

    let right = pchar '}' .>> spaces

    let colon = pchar ':' .>> spaces

    let comma = pchar ',' .>> spaces

    let key = quotedString .>> spaces

    let value = jValue .>> spaces



    let keyValue = (key .>> colon) .>>. value

    let keyValues = sepBy keyValue comma



    between left keyValues right

    |>> Map.ofList

    |>> JObject

    <?> "object"



── fsharp ──────────────────────────────────────────────────────────────────────

jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

            jNumber

            jArray

            jObject

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jObject """{ "a":1, "b"  :  2 }"""

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "a", JNumber 1.0

                "b", JNumber 2.0

            ]]

        )

    )

)



╭─[ 101.75ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject (map [(&quot;a&quot;,     │

│ JNumber 1.0); (&quot;b&quot;, JNumber 2.0)]),<br/>   { lines = [|&quot;{     │

│ &quot;a&quot;:1, &quot;b&quot;  :  2 }&quot;|]<br/>     position = { line =  │

│ 1<br/>                  column = 0 }                                         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JObject (map [(&quot;a&quot;, JNumber 1.0);     │

│ (&quot;b&quot;, JNumber 2.0)]), { lines = [|&quot;{ &quot;a&quot;:1,         │

│ &quot;b&quot;  :  2 }&quot;|]<br/>  position = { line = 1<br/>               │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JObject (map [(&quot;a&quot;, JNumber 1.0);      │

│ (&quot;b&quot;, JNumber                                                      │

│ 2.0)])</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr │

│ ><td>Item</td><td><table><thead><tr><th><i>key</i></th><th>value</th></tr></ │

│ thead><tbody><tr><td><div                                                    │

│ class="dni-plaintext"><pre>a</pre></div></td><td><details                    │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>JNumber      │

│ 1.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><div                                                          │

│ class="dni-plaintext"><pre>1</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr><tr><td><div                                                 │

│ class="dni-plaintext"><pre>b</pre></div></td><td><details                    │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>JNumber      │

│ 2.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><div                                                          │

│ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></td></tr></tbody></table></div></details></ │

│ td></tr><tr><td>Item2</td><td><details class="dni-treeview"><summary><span   │

│ class="dni-code-hint"><code>{ lines = [|&quot;{ &quot;a&quot;:1,             │

│ &quot;b&quot;  :  2 }&quot;|]<br/>  position = { line = 1<br/>               │

│ column = 0 }                                                                 │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ lines</td><td><div class="dni-plaintext"><pre>[ { &quot;a&quot;:1,           │

│ &quot;b&quot;  :  2 }                                                        │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 1<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 130.62ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject (map [("a", JNumber 1.0); ("b", JNumber 2.0)])                       │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: a                                                             │

│           Value: JNumber                                                     │

│             Item: 1                                                          │

│         - Key: b                                                             │

│           Value: JNumber                                                     │

│             Item: 2                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jObject """{ "a":1, "b"  :  2, }"""

|> parserEqual (

    Failure (

        "object",

        "Unexpected ','",

        { currentLine = """{ "a":1, "b"  :  2, }"""; line = 0; column = 18 }

    )

)



╭─[ 32.23ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;object&quot;, &quot;Unexpected    │

│ &#39;,&#39;&quot;, { currentLine = &quot;{ &quot;a&quot;:1, &quot;b&quot;  : │

│ 2, }&quot;<br/>                                       line = 0<br/>          │

│ column = 18                                                                  │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>object</pre></div></td></tr><tr><td>Item2</td><td │

│ ><div class="dni-plaintext"><pre>Unexpected                                  │

│ &#39;,&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;{ &quot;a&quot;:1, &quot;b&quot;  :  2, }&quot;<br/>     │

│ line = 0<br/>  column = 18                                                   │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ currentLine</td><td><div class="dni-plaintext"><pre>{ &quot;a&quot;:1,       │

│ &quot;b&quot;  :  2, }</pre></div></td></tr><tr><td>line</td><td><div        │

│ class="dni-plaintext"><pre>0</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>18</pre></div></td></tr></tbody></table></div></d │

│ etails></td></tr></tbody></table></div></details><style>                     │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 51.05ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:18 Error parsing object                                           │

│ { "a":1, "b"  :  2, }                                                        │

│                   ^Unexpected ','                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jValue                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example1 = """{

    "name" : "Scott",

    "isMale" : true,

    "bday" : {"year":2001, "month":12, "day":25 },

    "favouriteColors" : [["blue", "green"]],

    "emptyArray" : [[]],

    "emptyObject" : {}

}"""

run jValue example1

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "name", JString "Scott"

                "isMale", JBool true

                "bday", JObject (

                    Map.ofList [[

                        "year", JNumber 2001.0

                        "month", JNumber 12.0

                        "day", JNumber 25.0

                    ]]

                )

                "favouriteColors", JArray [[ JString "blue"; JString "green" ]]

                "emptyArray", JArray [[]]

                "emptyObject", JObject Map.empty

            ]]

        )

    )

)



╭─[ 177.39ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject<br/>     (map<br/>        │

│ [(&quot;bday&quot;,<br/>          JObject<br/>            (map<br/>          │

│ [(&quot;day&quot;, JNumber 25.0); (&quot;month&quot;, JNumber 12.0);<br/>    │

│ (&quot;year&quot;, JNumber 2001.0)])); (&quot;emptyArray&quot;, JArray [     │

│ ]);<br/>         (&quot;emptyObject&quot;, JObject (map []));<br/>           │

│ (&quot;favouriteColors&quot;,                                                │

│ ...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>(JObject<br/>  (map<br/>     [                   │

│ (&quot;bday&quot;,<br/>       JObject<br/>         (map<br/>            [    │

│ (&quot;day&quot;, JNumber 25.0); (&quot;month&quot;, JNumber 12.0);<br/>     │

│ (&quot;year&quot;, JNumber 2001.0)])); (&quot;emptyArray&quot;, JArray [     │

│ ]);<br/>      (&quot;emptyObject&quot;, JObject (map []));<br/>              │

│ (&quot;favouriteColors&quot;, JArray [JString &quot;blue&quot;; JString      │

│ &quot;gr...</code></span></summary><div><table><thead><tr></tr></thead><tbod │

│ y><tr><td>Item1</td><td><details class="dni-treeview"><summary><span         │

│ class="dni-code-hint"><code>JObject<br/>  (map<br/>     [                    │

│ (&quot;bday&quot;,<br/>       JObject<br/>         (map<br/>            [    │

│ (&quot;day&quot;, JNumber 25.0); (&quot;month&quot;, JNumber 12.0);<br/>     │

│ (&quot;year&quot;, JNumber 2001.0)])); (&quot;emptyArray&quot;, JArray [     │

│ ]);<br/>      (&quot;emptyObject&quot;, JObject (map []));<br/>              │

│ (&quot;favouriteColors&quot;, JArray [JString &quot;blue&quot;; JString      │

│ &quot;gre...</code></span></summary><div><table><thead><tr></tr></thead><tbo │

│ dy><tr><td>Item</td><td><table><thead><tr><th><i>key</i></th><th><i>type</i> │

│ </th><th>value</th></tr></thead><tbody><tr><td><div                          │

│ class="dni-plaintext"><pre>bday</pre></div></td><td>FSI_0012+JValue+JObject< │

│ /td><td><details class="dni-treeview"><summary><span                         │

│ class="dni-code-hint"><code>JObject<br/>  (map<br/>     [(&quot;day&quot;,   │

│ JNumber 25.0); (&quot;month&quot;, JNumber 12.0); (&quot;year&quot;, JNumber │

│ 2001.0)])</code></span></summary><div><table><thead><tr></tr></thead><tbody> │

│ <tr><td>Item</td><td><table><thead><tr><th><i>key</i></th><th>value</th></tr │

│ ></thead><tbody><tr><td><div                                                 │

│ class="dni-plaintext"><pre>day</pre></div></td><td>JNumber                   │

│ 25.0</td></tr><tr><td><div                                                   │

│ class="dni-plaintext"><pre>month</pre></div></td><td>JNumber                 │

│ 12.0</td></tr><tr><td><div                                                   │

│ class="dni-plaintext"><pre>year</pre></div></td><td>JNumber                  │

│ 2001.0</td></tr></tbody></table></td></tr></tbody></table></div></details></ │

│ td></tr><tr><td><div                                                         │

│ class="dni-plaintext"><pre>emptyArray</pre></div></td><td>FSI_0012+JValue+JA │

│ rray</td><td><details class="dni-treeview"><summary><span                    │

│ class="dni-code-hint"><code>JArray [                                         │

│ ]</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ Item</td><td><i>(empty)</i></td></tr></tbody></table></div></details></td></ │

│ tr><tr><td><div                                                              │

│ class="dni-plaintext"><pre>emptyObject</pre></div></td><td>FSI_0012+JValue+J │

│ Object</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JObject (map [                                   │

│ ])</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><i>(empty)</i></td></tr></tbody></table></div></details></td>< │

│ /tr><tr><td><div                                                             │

│ class="dni-plaintext"><pre>favouriteColors</pre></div></td><td>FSI_0012+JVal │

│ ue+JArray</td><td><details class="dni-treeview"><summary><span               │

│ class="dni-code-hint"><code>JArray [JString &quot;blue&quot;; JString        │

│ &quot;green&quot;]</code></span></summary><div><table><thead><tr></tr></thea │

│ d><tbody><tr><td>Item</td><td><table><thead><tr><th><i>index</i></th><th>val │

│ ue</th></tr></thead><tbody><tr><td>0</td><td>JString                         │

│ "blue"</td></tr><tr><td>1</td><td>JString                                    │

│ "green"</td></tr></tbody></table></td></tr></tbody></table></div></details>< │

│ /td></tr><tr><td><div                                                        │

│ class="dni-plaintext"><pre>isMale</pre></div></td><td>FSI_0012+JValue+JBool< │

│ /td><td><details class="dni-treeview"><summary><span                         │

│ class="dni-code-hint"><code>JBool                                            │

│ true</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><div                                                         │

│ class="dni-plaintext"><pre>True</pre></div></td></tr></tbody></table></div>< │

│ /details></td></tr><tr><td><div                                              │

│ class="dni-plaintext"><pre>name</pre></div></td><td>FSI_0012+JValue+JString< │

│ /td><td><details class="dni-treeview"><summary><span                         │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;Scott&quot;</code></span></summary><div><table><thead><tr></tr></thead │

│ ><tbody><tr><td>Item</td><td><div                                            │

│ class="dni-plaintext"><pre>Scott</pre></div></td></tr></tbody></table></div> │

│ </details></td></tr></tbody></table></td></tr></tbody></table></div></detail │

│ s></td></tr><tr><td>Item2</td><td><details                                   │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines      │

│ =<br/>   [|&quot;{&quot;; &quot;    &quot;name&quot; :                       │

│ &quot;Scott&quot;,&quot;; &quot;    &quot;isMale&quot; : true,&quot;;<br/>   │

│ &quot;    &quot;bday&quot; : {&quot;year&quot;:2001, &quot;month&quot;:12,   │

│ &quot;day&quot;:25 },&quot;;<br/>     &quot;    &quot;favouriteColors&quot;  │

│ : [&quot;blue&quot;, &quot;green&quot;],&quot;; &quot;                       │

│ &quot;emptyArray&quot; : [],&quot;;<br/>     &quot;                          │

│ &quot;emptyObject&quot; : {}&quot;; &quot;}&quot;|]<br/>  position = { line  │

│ = 8<br/>               column = 0 }                                          │

│ ...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>lines</td><td><div class="dni-plaintext"><pre>[ {,     &quot;name&quot; :  │

│ &quot;Scott&quot;,,     &quot;isMale&quot; : true,,     &quot;bday&quot; :   │

│ {&quot;year&quot;:2001, &quot;month&quot;:12, &quot;day&quot;:25 },,         │

│ &quot;favouriteColors&quot; : [&quot;blue&quot;, &quot;green&quot;],,        │

│ &quot;emptyArray&quot; : [],,     &quot;emptyObject&quot; : {}, }            │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 8<br/>  column = 0                                                           │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>8</pre></div></td></tr><tr><td>column</td><td><di │

│ v                                                                            │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 227.72ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject                                                                      │

│   (map                                                                       │

│      [("bday",                                                               │

│        JObject                                                               │

│          (map                                                                │

│             [("day", JNumber 25.0); ("month", JNumber 12.0);                 │

│              ("year", JNumber 2001.0)])); ("emptyArray", JArray []);         │

│       ("emptyObject", JObject (map []));                                     │

│       ("favouriteColors", JArray [JString "blue"; JString "green"]);         │

│       ("isMale", JBool true); ("name", JString "Scott")])                    │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: bday                                                          │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│               - Key: day                                                     │

│                 Value: JNumber 25.0                                          │

│               - Key: month                                                   │

│                 Value: JNumber 12.0                                          │

│               - Key: year                                                    │

│                 Value: JNumber 2001.0                                        │

│         - Key: emptyArray                                                    │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│                                                                              │

│         - Key: emptyObject                                                   │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│                                                                              │

│         - Key: favouriteColors                                               │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: blue                                                   │

│               - Item: green                                                  │

│         - Key: isMale                                                        │

│           Value: JBool                                                       │

│             Item: True                                                       │

│         - Key: name                                                          │

│           Value: JString                                                     │

│             Item: Scott                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example2 = """{"widget": {

    "debug": "on",

    "window": {

        "title": "Sample Konfabulator Widget",

        "name": "main_window",

        "width": 500,

        "height": 500

    },

    "image": {

        "src": "Images/Sun.png",

        "name": "sun1",

        "hOffset": 250,

        "vOffset": 250,

        "alignment": "center"

    },

    "text": {

        "data": "Click Here",

        "size": 36,

        "style": "bold",

        "name": "text1",

        "hOffset": 250,

        "vOffset": 100,

        "alignment": "center",

        "onMouseUp": "sun1.opacity = (sun1.opacity / 100) * 90;"

    }

}}"""



run jValue example2

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "widget", JObject (

                    Map.ofList [[

                        "debug", JString "on"

                        "window", JObject (

                            Map.ofList [[

                                "title", JString "Sample Konfabulator Widget"

                                "name", JString "main_window"

                                "width", JNumber 500.0

                                "height", JNumber 500.0

                            ]]

                        )

                        "image", JObject (

                            Map.ofList [[

                                "src", JString "Images/Sun.png"

                                "name", JString "sun1"

                                "hOffset", JNumber 250.0

                                "vOffset", JNumber 250.0

                                "alignment", JString "center"

                            ]]

                        )

                        "text", JObject (

                            Map.ofList [[

                                "data", JString "Click Here"

                                "size", JNumber 36.0

                                "style", JString "bold"

                                "name", JString "text1"

                                "hOffset", JNumber 250.0

                                "vOffset", JNumber 100.0

                                "alignment", JString "center"

                                "onMouseUp", JString "sun1.opacity = 

(sun1.opacity / 100) * 90;"

                            ]]

                        )

                    ]]

                )

            ]]

        )

    )

)



╭─[ 333.04ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject<br/>     (map<br/>        │

│ [(&quot;widget&quot;,<br/>          JObject<br/>            (map<br/>        │

│ [(&quot;debug&quot;, JString &quot;on&quot;);<br/>                           │

│ (&quot;image&quot;,<br/>                 JObject<br/>                        │

│ (map<br/>                      [(&quot;alignment&quot;, JString              │

│ &quot;center&quot;);<br/>                                                    │

│ (&quot;hOffset&quot;...</code></span></summary><div><table><thead><tr></tr>< │

│ /thead><tbody><tr><td>Item</td><td><details                                  │

│ class="dni-treeview"><summary><span                                          │

│ class="dni-code-hint"><code>(JObject<br/>  (map<br/>     [                   │

│ (&quot;widget&quot;,<br/>       JObject<br/>         (map<br/>            [  │

│ (&quot;debug&quot;, JString &quot;on&quot;);<br/>                            │

│ (&quot;image&quot;,<br/>              JObject<br/>                (map<br/>  │

│ [(&quot;alignment&quot;, JString &quot;center&quot;); (&quot;hOffset&quot;,  │

│ JNumber 250.0);<br/>                    (&quot;name&quot;, JString           │

│ &quot;sun1&quot;...</code></span></summary><div><table><thead><tr></tr></the │

│ ad><tbody><tr><td>Item1</td><td><details class="dni-treeview"><summary><span │

│ class="dni-code-hint"><code>JObject<br/>  (map<br/>     [                    │

│ (&quot;widget&quot;,<br/>       JObject<br/>         (map<br/>            [  │

│ (&quot;debug&quot;, JString &quot;on&quot;);<br/>                            │

│ (&quot;image&quot;,<br/>              JObject<br/>                (map<br/>  │

│ [(&quot;alignment&quot;, JString &quot;center&quot;); (&quot;hOffset&quot;,  │

│ JNumber 250.0);<br/>                    (&quot;name&quot;, JString           │

│ &quot;sun1&quot;)...</code></span></summary><div><table><thead><tr></tr></th │

│ ead><tbody><tr><td>Item</td><td><table><thead><tr><th><i>key</i></th><th>val │

│ ue</th></tr></thead><tbody><tr><td><div                                      │

│ class="dni-plaintext"><pre>widget</pre></div></td><td><details               │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>JObject<br/> │

│ (map<br/>     [(&quot;debug&quot;, JString &quot;on&quot;);<br/>             │

│ (&quot;image&quot;,<br/>       JObject<br/>         (map<br/>            [   │

│ (&quot;alignment&quot;, JString &quot;center&quot;); (&quot;hOffset&quot;,   │

│ JNumber 250.0);<br/>             (&quot;name&quot;, JString                  │

│ &quot;sun1&quot;); (&quot;src&quot;, JString                                 │

│ &quot;Images/Sun.png&quot;);<br/>             (&quot;vOffset&quot;, JNumber  │

│ 250.0)]));<br/>                                                              │

│ (&quot;...</code></span></summary><div><table><thead><tr></tr></thead><tbody │

│ ><tr><td>Item</td><td><table><thead><tr><th><i>key</i></th><th><i>type</i></ │

│ th><th>value</th></tr></thead><tbody><tr><td><div                            │

│ class="dni-plaintext"><pre>debug</pre></div></td><td>FSI_0012+JValue+JString │

│ </td><td>JString "on"</td></tr><tr><td><div                                  │

│ class="dni-plaintext"><pre>image</pre></div></td><td>FSI_0012+JValue+JObject │

│ </td><td>JObject                                                             │

│   (map                                                                       │

│      [("alignment", JString "center"); ("hOffset", JNumber 250.0);           │

│       ("name", JString "sun1"); ("src", JString "Images/Sun.png");           │

│       ("vOffset", JNumber 250.0)])</td></tr><tr><td><div                     │

│ class="dni-plaintext"><pre>text</pre></div></td><td>FSI_0012+JValue+JObject< │

│ /td><td>JObject                                                              │

│   (map                                                                       │

│      [("alignment", JString "center"); ("data", JString "Click Here");       │

│       ("hOffset", JNumber 250.0); ("name", JString "text1");                 │

│       ("onMouseUp", JString "sun1.opacity = (sun1.opacity / 100) * 90;");    │

│       ("size", JNumber 36.0); ("style", JString "bold");                     │

│       ("vOffset", JNumber 100.0)])</td></tr><tr><td><div                     │

│ class="dni-plaintext"><pre>window</pre></div></td><td>FSI_0012+JValue+JObjec │

│ t</td><td>JObject                                                            │

│   (map                                                                       │

│      [("height", JNumber 500.0); ("name", JString "main_window");            │

│       ("title", JString "Sample Konfabulator Widget"); ("width", JNumber     │

│ 500.0)])</td></tr></tbody></table></td></tr></tbody></table></div></details> │

│ </td></tr></tbody></table></td></tr></tbody></table></div></details></td></t │

│ r><tr><td>Item2</td><td><details class="dni-treeview"><summary><span         │

│ class="dni-code-hint"><code>{ lines =<br/>   [|&quot;{&quot;widget&quot;:    │

│ {&quot;; &quot;    &quot;debug&quot;: &quot;on&quot;,&quot;; &quot;          │

│ &quot;window&quot;: {&quot;;<br/>     &quot;        &quot;title&quot;:       │

│ &quot;Sample Konfabulator Widget&quot;,&quot;;<br/>     &quot;               │

│ &quot;name&quot;: &quot;main_window&quot;,&quot;; &quot;                     │

│ &quot;width&quot;: 500,&quot;;<br/>     &quot;        &quot;height&quot;:    │

│ 500&quot;; &quot;    },&quot;; &quot;    &quot;image&quot;: {&quot;;<br/>    │

│ &quot;        &quot;src&quot;: &quot;Images/Sun.png&quot;,&quot;; &quot;     │

│ ...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>lines</td><td><div class="dni-plaintext"><pre>[ {&quot;widget&quot;: {,    │

│ &quot;debug&quot;: &quot;on&quot;,,     &quot;window&quot;: {,               │

│ &quot;title&quot;: &quot;Sample Konfabulator Widget&quot;,,                  │

│ &quot;name&quot;: &quot;main_window&quot;,,         &quot;width&quot;: 500,, │

│ &quot;height&quot;: 500,     },,     &quot;image&quot;: {,                   │

│ &quot;src&quot;: &quot;Images/Sun.png&quot;,,         &quot;name&quot;:      │

│ &quot;sun1&quot;,,         &quot;hOffset&quot;: 250,,                        │

│ &quot;vOffset&quot;: 250,,         &quot;alignment&quot;:                    │

│ &quot;center&quot;,     },,     &quot;text&quot;: {,                         │

│ &quot;data&quot;: &quot;Click Here&quot;,,         &quot;size&quot;: 36,,    │

│ &quot;style&quot;: &quot;bold&quot;,,         &quot;name&quot;:              │

│ &quot;text1&quot;,,         &quot;hOffset&quot;: 250,,                       │

│ &quot;vOffset&quot;: 100,,         &quot;alignment&quot;:                    │

│ &quot;center&quot;,,         &quot;onMouseUp&quot;: &quot;sun1.opacity =     │

│ (sun1.opacity / 100) * 90;&quot;,     }, }}                                  │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 26<br/>  column = 0                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>26</pre></div></td></tr><tr><td>column</td><td><d │

│ iv                                                                           │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 381.77ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject                                                                      │

│   (map                                                                       │

│      [("widget",                                                             │

│        JObject                                                               │

│          (map                                                                │

│             [("debug", JString "on");                                        │

│              ("image",                                                       │

│               JObject                                                        │

│                 (map                                                         │

│                    [("alignment", JString "center"); ("hOffset", JNumber     │

│ 250.0);                                                                      │

│                     ("name", JString "sun1"); ("src", JString                │

│ "Images/Sun.png");                                                           │

│                     ("vOffset", JNumber 250.0)]));                           │

│              ("text",                                                        │

│               JObject                                                        │

│                 (map                                                         │

│                    [("alignment", JString "center");                         │

│                     ("data", JString "Click Here"); ("hOffset", JNumber      │

│ 250.0);                                                                      │

│                     ("name", JString "text1");                               │

│                     ("onMouseUp",                                            │

│                      JString "sun1.opacity = (sun1.opacity / 100) * 90;");   │

│                     ("size", JNumber 36.0); ("style", JString "bold");       │

│                     ("vOffset", JNumber 100.0)]));                           │

│              ("window",                                                      │

│               JObject                                                        │

│                 (map                                                         │

│                    [("height", JNumber 500.0); ("name", JString              │

│ "main_window");                                                              │

│                     ("title", JString "Sample Konfabulator Widget");         │

│                     ("width", JNumber 500.0)]))]))])                         │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: widget                                                        │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│               - Key: debug                                                   │

│                 Value: JString "on"                                          │

│               - Key: image                                                   │

│                 Value: JObject                                               │

│   (map                                                                       │

│      [("alignment", JString "center"); ("hOffset", JNumber 250.0);           │

│       ("name", JString "sun1"); ("src", JString "Images/Sun.png");           │

│       ("vOffset", JNumber 250.0)])                                           │

│               - Key: text                                                    │

│                 Value: JObject                                               │

│   (map                                                                       │

│      [("alignment", JString "center"); ("data", JString "Click Here");       │

│       ("hOffset", JNumber 250.0); ("name", JString "text1");                 │

│       ("onMouseUp", JString "sun1.opacity = (sun1.opacity / 100) * 90;");    │

│       ("size", JNumber 36.0); ("style", JString "bold");                     │

│       ("vOffset", JNumber 100.0)])                                           │

│               - Key: window                                                  │

│                 Value: JObject                                               │

│   (map                                                                       │

│      [("height", JNumber 500.0); ("name", JString "main_window");            │

│       ("title", JString "Sample Konfabulator Widget"); ("width", JNumber     │

│ 500.0)])                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example3 = """{

  "string": "Hello, \"World\"!",

  "escapedString": "This string contains \\/\\\\\\b\\f\\n\\r\\t\\\"\\'",

  "number": 42,

  "scientificNumber": 3.14e-10,

  "boolean": true,

  "nullValue": null,

  "array": [[1, 2, 3, 4, 5]],

  "unicodeString1": "프리마",

  "unicodeString2": "\u0048\u0065\u006C\u006C\u006F, 

\u0022\u0057\u006F\u0072\u006C\u0064\u0022!",

  "specialCharacters": "!@#$%^&*()",

  "emptyArray": [[]],

  "emptyObject": {},

  "nestedArrays": [[[[1, 2, 3]], [[4, 5, 6]]]],

  "object": {

    "nestedString": "Nested Value",

    "nestedNumber": 3.14,

    "nestedBoolean": false,

    "nestedNull": null,

    "nestedArray": [["a", "b", "c"]],

    "nestedObject": {

      "nestedProperty": "Nested Object Value"

    }

  },

  "nestedObjects": [[

    {"name": "Alice", "age": 25},

    {"name": "Bob", "age": 30}

  ]]

}"""

run jValue example3

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "string", JString @"Hello, ""World""!"

                "escapedString", JString @"This string contains 

\/\\\b\f\n\r\t\""\'"

                "number", JNumber 42.0

                "scientificNumber", JNumber 3.14e-10

                "boolean", JBool true

                "nullValue", JNull

                "array", JArray [[

                    JNumber 1.0; JNumber 2.0; JNumber 3.0; JNumber 4.0; JNumber 

5.0

                ]]

                "unicodeString1", JString "프리마"

                "unicodeString2", JString @"Hello, ""World""!"

                "specialCharacters", JString "!@#$%^&*()"

                "emptyArray", JArray [[]]

                "emptyObject", JObject Map.empty

                "nestedArrays", JArray [[

                    JArray [[ JNumber 1.0; JNumber 2.0; JNumber 3.0 ]]

                    JArray [[ JNumber 4.0; JNumber 5.0; JNumber 6.0 ]]

                ]]

                "object", JObject (

                    Map.ofList [[

                        "nestedString", JString "Nested Value"

                        "nestedNumber", JNumber 3.14

                        "nestedBoolean", JBool false

                        "nestedNull", JNull

                        "nestedArray", JArray [[JString "a"; JString "b"; 

JString "c"]]

                        "nestedObject", JObject (

                            Map.ofList [[

                                "nestedProperty", JString "Nested Object Value"

                            ]]

                        )

                    ]]

                )

                "nestedObjects", JArray [[

                  JObject (Map.ofList [[ "name", JString "Alice"; "age", JNumber

25.0 ]])

                  JObject (Map.ofList [[ "name", JString "Bob"; "age", JNumber 

30.0 ]])

                ]]

            ]]

        )

    )

)



╭─[ 426.42ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject<br/>     (map<br/>        │

│ [(&quot;array&quot;,<br/>          JArray<br/>            [JNumber 1.0;      │

│ JNumber 2.0; JNumber 3.0; JNumber 4.0; JNumber 5.0]);<br/>                   │

│ (&quot;boolean&quot;, JBool true); (&quot;emptyArray&quot;, JArray []);<br/> │

│ (&quot;emptyObject&quot;, JObject (map []));<br/>                            │

│ (&quot;escapedString&quot;, JString &quot;This                               │

│ s...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><details class="dni-treeview"><summary><span                 │

│ class="dni-code-hint"><code>(JObject<br/>  (map<br/>     [                   │

│ (&quot;array&quot;,<br/>       JArray [JNumber 1.0; JNumber 2.0; JNumber     │

│ 3.0; JNumber 4.0; JNumber 5.0]);<br/>      (&quot;boolean&quot;, JBool       │

│ true); (&quot;emptyArray&quot;, JArray []);<br/>                             │

│ (&quot;emptyObject&quot;, JObject (map []));<br/>                            │

│ (&quot;escapedString&quot;, JString &quot;This string contains               │

│ \/\\\b\f<br/>\r\t\&quot;\&#39;&quot;);<br/>                                  │

│ ...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item1</td><td><details class="dni-treeview"><summary><span                 │

│ class="dni-code-hint"><code>JObject<br/>  (map<br/>     [                    │

│ (&quot;array&quot;,<br/>       JArray [JNumber 1.0; JNumber 2.0; JNumber     │

│ 3.0; JNumber 4.0; JNumber 5.0]);<br/>      (&quot;boolean&quot;, JBool       │

│ true); (&quot;emptyArray&quot;, JArray []);<br/>                             │

│ (&quot;emptyObject&quot;, JObject (map []));<br/>                            │

│ (&quot;escapedString&quot;, JString &quot;This string contains               │

│ \/\\\b\f<br/>\r\t\&quot;\&#39;&quot;);<br/>                                  │

│ ...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><table><thead><tr><th><i>key</i></th><th><i>type</i></th><th> │

│ value</th></tr></thead><tbody><tr><td><div                                   │

│ class="dni-plaintext"><pre>array</pre></div></td><td>FSI_0012+JValue+JArray< │

│ /td><td><details class="dni-treeview"><summary><span                         │

│ class="dni-code-hint"><code>JArray [JNumber 1.0; JNumber 2.0; JNumber 3.0;   │

│ JNumber 4.0; JNumber                                                         │

│ 5.0]</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><table><thead><tr><th><i>index</i></th><th>value</th></tr></ │

│ thead><tbody><tr><td>0</td><td>JNumber                                       │

│ 1.0</td></tr><tr><td>1</td><td>JNumber                                       │

│ 2.0</td></tr><tr><td>2</td><td>JNumber                                       │

│ 3.0</td></tr><tr><td>3</td><td>JNumber                                       │

│ 4.0</td></tr><tr><td>4</td><td>JNumber                                       │

│ 5.0</td></tr></tbody></table></td></tr></tbody></table></div></details></td> │

│ </tr><tr><td><div                                                            │

│ class="dni-plaintext"><pre>boolean</pre></div></td><td>FSI_0012+JValue+JBool │

│ </td><td><details class="dni-treeview"><summary><span                        │

│ class="dni-code-hint"><code>JBool                                            │

│ true</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><div                                                         │

│ class="dni-plaintext"><pre>True</pre></div></td></tr></tbody></table></div>< │

│ /details></td></tr><tr><td><div                                              │

│ class="dni-plaintext"><pre>emptyArray</pre></div></td><td>FSI_0012+JValue+JA │

│ rray</td><td><details class="dni-treeview"><summary><span                    │

│ class="dni-code-hint"><code>JArray [                                         │

│ ]</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ Item</td><td><i>(empty)</i></td></tr></tbody></table></div></details></td></ │

│ tr><tr><td><div                                                              │

│ class="dni-plaintext"><pre>emptyObject</pre></div></td><td>FSI_0012+JValue+J │

│ Object</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JObject (map [                                   │

│ ])</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><i>(empty)</i></td></tr></tbody></table></div></details></td>< │

│ /tr><tr><td><div                                                             │

│ class="dni-plaintext"><pre>escapedString</pre></div></td><td>FSI_0012+JValue │

│ +JString</td><td><details class="dni-treeview"><summary><span                │

│ class="dni-code-hint"><code>JString &quot;This string contains               │

│ \/\\\b\f<br/>\r\t\&quot;\&#39;&quot;</code></span></summary><div><table><the │

│ ad><tr></tr></thead><tbody><tr><td>Item</td><td><div                         │

│ class="dni-plaintext"><pre>This string contains                              │

│ \/\\\b\f<br/>\r\t\&quot;\&#39;</pre></div></td></tr></tbody></table></div></ │

│ details></td></tr><tr><td><div                                               │

│ class="dni-plaintext"><pre>nestedArrays</pre></div></td><td>FSI_0012+JValue+ │

│ JArray</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JArray<br/>  [JArray [JNumber 1.0; JNumber 2.0;  │

│ JNumber 3.0];<br/>   JArray [JNumber 4.0; JNumber 5.0; JNumber               │

│ 6.0]]</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

│ <td>Item</td><td><table><thead><tr><th><i>index</i></th><th>value</th></tr>< │

│ /thead><tbody><tr><td>0</td><td>JArray [JNumber 1.0; JNumber 2.0; JNumber    │

│ 3.0]</td></tr><tr><td>1</td><td>JArray [JNumber 4.0; JNumber 5.0; JNumber    │

│ 6.0]</td></tr></tbody></table></td></tr></tbody></table></div></details></td │

│ ></tr><tr><td><div                                                           │

│ class="dni-plaintext"><pre>nestedObjects</pre></div></td><td>FSI_0012+JValue │

│ +JArray</td><td><details class="dni-treeview"><summary><span                 │

│ class="dni-code-hint"><code>JArray<br/>  [JObject (map [(&quot;age&quot;,    │

│ JNumber 25.0); (&quot;name&quot;, JString &quot;Alice&quot;)]);<br/>         │

│ JObject (map [(&quot;age&quot;, JNumber 30.0); (&quot;name&quot;, JString    │

│ &quot;Bob&quot;)])]</code></span></summary><div><table><thead><tr></tr></the │

│ ad><tbody><tr><td>Item</td><td><table><thead><tr><th><i>index</i></th><th>va │

│ lue</th></tr></thead><tbody><tr><td>0</td><td>JObject (map [("age", JNumber  │

│ 25.0); ("name", JString "Alice")])</td></tr><tr><td>1</td><td>JObject (map [ │

│ ("age", JNumber 30.0); ("name", JString                                      │

│ "Bob")])</td></tr></tbody></table></td></tr></tbody></table></div></details> │

│ </td></tr><tr><td><div                                                       │

│ class="dni-plaintext"><pre>nullValue</pre></div></td><td>FSI_0012+JValue</td │

│ ><td><details class="dni-treeview"><summary><span                            │

│ class="dni-code-hint"><code>JNull</code></span></summary><div><table><thead> │

│ <tr></tr></thead><tbody></tbody></table></div></details></td></tr><tr><td><d │

│ iv                                                                           │

│ class="dni-plaintext"><pre>number</pre></div></td><td>FSI_0012+JValue+JNumbe │

│ r</td><td><details class="dni-treeview"><summary><span                       │

│ class="dni-code-hint"><code>JNumber                                          │

│ 42.0</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><div                                                         │

│ class="dni-plaintext"><pre>42</pre></div></td></tr></tbody></table></div></d │

│ etails></td></tr><tr><td><div                                                │

│ class="dni-plaintext"><pre>object</pre></div></td><td>FSI_0012+JValue+JObjec │

│ t</td><td><details class="dni-treeview"><summary><span                       │

│ class="dni-code-hint"><code>JObject<br/>  (map<br/>     [                    │

│ (&quot;nestedArray&quot;, JArray [JString &quot;a&quot;; JString             │

│ &quot;b&quot;; JString &quot;c&quot;]);<br/>                                 │

│ (&quot;nestedBoolean&quot;, JBool false); (&quot;nestedNull&quot;,           │

│ JNull);<br/>      (&quot;nestedNumber&quot;, JNumber 3.14);<br/>             │

│ (&quot;nestedObject&quot;,<br/>       JObject (map [                         │

│ (&quot;nestedProperty&quot;, JString &quot;Nested Object                     │

│ Value&quot;)]));<br/>                                                        │

│ (&quot;ne...</code></span></summary><div><table><thead><tr></tr></thead><tbo │

│ dy><tr><td>Item</td><td><table><thead><tr><th><i>key</i></th><th><i>type</i> │

│ </th><th>value</th></tr></thead><tbody><tr><td><div                          │

│ class="dni-plaintext"><pre>nestedArray</pre></div></td><td>FSI_0012+JValue+J │

│ Array</td><td>JArray [JString "a"; JString "b"; JString                      │

│ "c"]</td></tr><tr><td><div                                                   │

│ class="dni-plaintext"><pre>nestedBoolean</pre></div></td><td>FSI_0012+JValue │

│ +JBool</td><td>JBool false</td></tr><tr><td><div                             │

│ class="dni-plaintext"><pre>nestedNull</pre></div></td><td>FSI_0012+JValue</t │

│ d><td>JNull</td></tr><tr><td><div                                            │

│ class="dni-plaintext"><pre>nestedNumber</pre></div></td><td>FSI_0012+JValue+ │

│ JNumber</td><td>JNumber 3.14</td></tr><tr><td><div                           │

│ class="dni-plaintext"><pre>nestedObject</pre></div></td><td>FSI_0012+JValue+ │

│ JObject</td><td>JObject (map [("nestedProperty", JString "Nested Object      │

│ Value")])</td></tr><tr><td><div                                              │

│ class="dni-plaintext"><pre>nestedString</pre></div></td><td>FSI_0012+JValue+ │

│ JString</td><td>JString "Nested                                              │

│ Value"</td></tr></tbody></table></td></tr></tbody></table></div></details></ │

│ td></tr><tr><td><div                                                         │

│ class="dni-plaintext"><pre>scientificNumber</pre></div></td><td>FSI_0012+JVa │

│ lue+JNumber</td><td><details class="dni-treeview"><summary><span             │

│ class="dni-code-hint"><code>JNumber                                          │

│ 3.14e-10</code></span></summary><div><table><thead><tr></tr></thead><tbody>< │

│ tr><td>Item</td><td><div                                                     │

│ class="dni-plaintext"><pre>3.14E-10</pre></div></td></tr></tbody></table></d │

│ iv></details></td></tr><tr><td><div                                          │

│ class="dni-plaintext"><pre>specialCharacters</pre></div></td><td>FSI_0012+JV │

│ alue+JString</td><td><details class="dni-treeview"><summary><span            │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;!@#$%^&amp;*()&quot;</code></span></summary><div><table><thead><tr></t │

│ r></thead><tbody><tr><td>Item</td><td><div                                   │

│ class="dni-plaintext"><pre>!@#$%^&amp;*()</pre></div></td></tr></tbody></tab │

│ le></div></details></td></tr><tr><td><div                                    │

│ class="dni-plaintext"><pre>string</pre></div></td><td>FSI_0012+JValue+JStrin │

│ g</td><td><details class="dni-treeview"><summary><span                       │

│ class="dni-code-hint"><code>JString &quot;Hello,                             │

│ &quot;World&quot;!&quot;</code></span></summary><div><table><thead><tr></tr> │

│ </thead><tbody><tr><td>Item</td><td><div class="dni-plaintext"><pre>Hello,   │

│ &quot;World&quot;!</pre></div></td></tr></tbody></table></div></details></td │

│ ></tr><tr><td><div                                                           │

│ class="dni-plaintext"><pre>unicodeString1</pre></div></td><td>FSI_0012+JValu │

│ e+JString</td><td><details class="dni-treeview"><summary><span               │

│ class="dni-code-hint"><code>JString                                          │

│ &quot;프리마&quot;</code></span></summary><div><table><thead><tr></tr></thea │

│ d><tbody><tr><td>Item</td><td><div                                           │

│ class="dni-plaintext"><pre>프리마</pre></div></td></tr></tbody></table></div │

│ ></details></td></tr><tr><td><div                                            │

│ class="dni-plaintext"><pre>unicodeString2</pre></div></td><td>FSI_0012+JValu │

│ e+JString</td><td><details class="dni-treeview"><summary><span               │

│ class="dni-code-hint"><code>JString &quot;Hello,                             │

│ &quot;World&quot;!&quot;</code></span></summary><div><table><thead><tr></tr> │

│ </thead><tbody><tr><td>Item</td><td><div class="dni-plaintext"><pre>Hello,   │

│ &quot;World&quot;!</pre></div></td></tr></tbody></table></div></details></td │

│ ></tr></tbody></table></td></tr></tbody></table></div></details></td></tr><t │

│ r><td>Item2</td><td><details class="dni-treeview"><summary><span             │

│ class="dni-code-hint"><code>{ lines =<br/>   [|&quot;{&quot;; &quot;         │

│ &quot;string&quot;: &quot;Hello, \&quot;World\&quot;!&quot;,&quot;;<br/>     │

│ &quot;  &quot;escapedString&quot;: &quot;This string contains                │

│ \\/\\\\\\b\\f\<br/>\\r\\t\\\&quot;\\&#39;&quot;,&quot;;<br/>     &quot;      │

│ &quot;number&quot;: 42,&quot;; &quot;  &quot;scientificNumber&quot;:         │

│ 3.14e-10,&quot;; &quot;  &quot;boolean&quot;: true,&quot;;<br/>     &quot;   │

│ &quot;nullValue&quot;: null,&quot;; &quot;  &quot;array&quot;: [1, 2, 3, 4,  │

│ 5],&quot;;<br/>     &quot;                                                   │

│ &quot;unicodeS...</code></span></summary><div><table><thead><tr></tr></thead │

│ ><tbody><tr><td>lines</td><td><div class="dni-plaintext"><pre>[ {,           │

│ &quot;string&quot;: &quot;Hello, \&quot;World\&quot;!&quot;,,                │

│ &quot;escapedString&quot;: &quot;This string contains                        │

│ \\/\\\\\\b\\f\<br/>\\r\\t\\\&quot;\\&#39;&quot;,,   &quot;number&quot;: 42,, │

│ &quot;scientificNumber&quot;: 3.14e-10,,   &quot;boolean&quot;: true,,       │

│ &quot;nullValue&quot;: null,,   &quot;array&quot;: [1, 2, 3, 4, 5],,         │

│ &quot;unicodeString1&quot;: &quot;프리마&quot;,,                             │

│ &quot;unicodeString2&quot;: &quot;\u0048\u0065\u006C\u006C\u006F,            │

│ \u0022\u0057\u006F\u0072\u006C\u0064\u0022!&quot;,,                          │

│ &quot;specialCharacters&quot;: &quot;!@#$%^&amp;*()&quot;,,                  │

│ &quot;emptyArray&quot;: [],,   &quot;emptyObject&quot;: {},,                 │

│ &quot;nestedArrays&quot;: [[1, 2, 3], [4, 5, 6]],,   &quot;object&quot;: {,  │

│ &quot;nestedString&quot;: &quot;Nested Value&quot;,,                         │

│ &quot;nestedNumber&quot;: 3.14,,     &quot;nestedBoolean&quot;: false,,      │

│ &quot;nestedNull&quot;: null,,     &quot;nestedArray&quot;: [&quot;a&quot;,  │

│ &quot;b&quot;, &quot;c&quot;],,     &quot;nestedObject&quot;: {,             │

│ &quot;nestedProperty&quot;: &quot;Nested Object Value&quot;,     },   },,    │

│ &quot;nestedObjects&quot;: [,     {&quot;name&quot;: &quot;Alice&quot;,      │

│ &quot;age&quot;: 25},,     {&quot;name&quot;: &quot;Bob&quot;,               │

│ &quot;age&quot;: 30},   ], }                                                 │

│ ]</pre></div></td></tr><tr><td>position</td><td><details                     │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ line =     │

│ 29<br/>  column = 0                                                          │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td> │

│ line</td><td><div                                                            │

│ class="dni-plaintext"><pre>29</pre></div></td></tr><tr><td>column</td><td><d │

│ iv                                                                           │

│ class="dni-plaintext"><pre>0</pre></div></td></tr></tbody></table></div></de │

│ tails></td></tr></tbody></table></div></details></td></tr></tbody></table></ │

│ div></details></td></tr></tbody></table></div></details><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 517.46ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject                                                                      │

│   (map                                                                       │

│      [("array",                                                              │

│        JArray [JNumber 1.0; JNumber 2.0; JNumber 3.0; JNumber 4.0; JNumber   │

│ 5.0]);                                                                       │

│       ("boolean", JBool true); ("emptyArray", JArray []);                    │

│       ("emptyObject", JObject (map []));                                     │

│       ("escapedString", JString "This string contains \/\\\b\f\n\r\t\"\'");  │

│       ("nestedArrays",                                                       │

│        JArray                                                                │

│          [JArray [JNumber 1.0; JNumber 2.0; JNumber 3.0];                    │

│           JArray [JNumber 4.0; JNumber 5.0; JNumber 6.0]]);                  │

│       ("nestedObjects",                                                      │

│        JArray                                                                │

│          [JObject (map [("age", JNumber 25.0); ("name", JString "Alice")]);  │

│           JObject (map [("age", JNumber 30.0); ("name", JString "Bob")])]);  │

│       ("nullValue", JNull); ("number", JNumber 42.0); ...])                  │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: array                                                         │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: 1                                                      │

│               - Item: 2                                                      │

│               - Item: 3                                                      │

│               - Item: 4                                                      │

│               - Item: 5                                                      │

│         - Key: boolean                                                       │

│           Value: JBool                                                       │

│             Item: True                                                       │

│         - Key: emptyArray                                                    │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│                                                                              │

│         - Key: emptyObject                                                   │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│                                                                              │

│         - Key: escapedString                                                 │

│           Value: JString                                                     │

│             Item: This string contains \/\\\b\f\n\r\t\"\'                    │

│         - Key: nestedArrays                                                  │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: [ JNumber 1.0, JNumber 2.0, JNumber 3.0 ]              │

│               - Item: [ JNumber 4.0, JNumber 5.0, JNumber 6.0 ]              │

│         - Key: nestedObjects                                                 │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: [ [age, JNumber 25.0], [name, JString "Alice"] ]       │

│               - Item: [ [age, JNumber 30.0], [name, JString "Bob"] ]         │

│         - Key: nullValue                                                     │

│           Value: JNull                                                       │

│         - Key: number                                                        │

│           Value: JNumber                                                     │

│             Item: 42                                                         │

│         - Key: object                                                        │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│               - Key: nestedArray                                             │

│                 Value: JArray [JString "a"; JString "b"; JString "c"]        │

│               - Key: nestedBoolean                                           │

│                 Value: JBool false                                           │

│               - Key: nestedNull                                              │

│                 Value: JNull                                                 │

│               - Key: nestedNumber                                            │

│                 Value: JNumber 3.14                                          │

│               - Key: nestedObject                                            │

│                 Value: JObject (map [("nestedProperty", JString "Nested      │

│ Object Value")])                                                             │

│               - Key: nestedString                                            │

│                 Value: JString "Nested Value"                                │

│         - Key: scientificNumber                                              │

│           Value: JNumber                                                     │

│             Item: 3.14E-10                                                   │

│         - Key: specialCharacters                                             │

│           Value: JString                                                     │

│             Item: !@#$%^&*()                                                 │

│         - Key: string                                                        │

│           Value: JString                                                     │

│             Item: Hello, "World"!                                            │

│         - Key: unicodeString1                                                │

│           Value: JString                                                     │

│             Item: 프리마                                                     │

│         - Key: unicodeString2                                                │

│           Value: JString                                                     │

│             Item: Hello, "World"!                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook JsonParser.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 502725 bytes to JsonParser.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Parser (Polyglot)                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### TextInput                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Position =

    {

        line : int

        column : int

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let initialPos = { line = 0; column = 0 }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline incrCol (pos : Position) =

    { pos with column = pos.column + 1 }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline incrLine pos =

    { line = pos.line + 1; column = 0 }



── fsharp ──────────────────────────────────────────────────────────────────────

type InputState =

    {

        lines : string[[]]

        position : Position

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline fromStr str =

    {

        lines =

            if str |> String.IsNullOrEmpty

            then [[||]]

            else str |> String.splitString [[| "\r\n"; "\n" |]]

        position = initialPos

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fromStr "" |> _equal {

    lines = [[||]]

    position = { line = 0; column = 0 }

}



╭─[ 49.43ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [  ]                                                            │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fromStr "Hello \n World" |> _equal {

    lines = [[| "Hello "; " World" |]]

    position = { line = 0; column = 0 }

}



╭─[ 30.18ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [ Hello ,  World ]                                              │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline currentLine inputState =

    let linePos = inputState.position.line

    if linePos < inputState.lines.Length

    then inputState.lines.[[linePos]]

    else "end of file"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline nextChar input =

    let linePos = input.position.line

    let colPos = input.position.column



    if linePos >= input.lines.Length

    then input, None

    else

        let currentLine = currentLine input

        if colPos < currentLine.Length then

            let char = currentLine.[[colPos]]

            let newPos = incrCol input.position

            let newState = { input with position = newPos }

            newState, Some char

        else

            let char = '\n'

            let newPos = incrLine input.position

            let newState = { input with position = newPos }

            newState, Some char



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let newInput, charOpt = fromStr "Hello World" |> nextChar



newInput |> _equal {

    lines = [[| "Hello World" |]]

    position = { line = 0; column = 1 }

}

charOpt |> _equal (Some 'H')



╭─[ 43.18ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [ Hello World ]                                                 │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 1                                                            │

│ FSharpOption<Char>                                                           │

│       Value: H                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let newInput, charOpt = fromStr "Hello\n\nWorld" |> nextChar



newInput |> _equal {

    lines = [[| "Hello"; ""; "World" |]]

    position = { line = 0; column = 1 }

}

charOpt |> _equal (Some 'H')



╭─[ 28.88ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [ Hello, , World ]                                              │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 1                                                            │

│ FSharpOption<Char>                                                           │

│       Value: H                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### Parser                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Input = InputState

type ParserLabel = string

type ParserError = string



type ParserPosition =

    {

        currentLine : string

        line : int

        column : int

    }



type ParseResult<'a> =

    | Success of 'a

    | Failure of ParserLabel * ParserError * ParserPosition



type Parser<'a> =

    {

        label : ParserLabel

        parseFn : Input -> ParseResult<'a * Input>

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline printResult result =

    match result with

    | Success (value, input) ->

        printfn $"%A{value}"

    | Failure (label, error, parserPos) ->

        let errorLine = parserPos.currentLine

        let colPos = parserPos.column

        let linePos = parserPos.line

        let failureCaret = $"{' ' |> string |> String.replicate colPos}^{error}"

        printfn $"Line:%i{linePos} Col:%i{colPos} Error parsing 

%s{label}\n%s{errorLine}\n%s{failureCaret}"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runOnInput parser input =

    parser.parseFn input



── fsharp ──────────────────────────────────────────────────────────────────────

let inline run parser inputStr =

    runOnInput parser (fromStr inputStr)



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parserPositionFromInputState (inputState : Input) =

    {

        currentLine = currentLine inputState

        line = inputState.position.line

        column = inputState.position.column

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getLabel parser =

    parser.label



── fsharp ──────────────────────────────────────────────────────────────────────

let inline setLabel parser newLabel =

    {

        label = newLabel

        parseFn = fun input ->

            match parser.parseFn input with

            | Success s -> Success s

            | Failure (oldLabel, err, pos) -> Failure (newLabel, err, pos)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let (<?>) = setLabel



── fsharp ──────────────────────────────────────────────────────────────────────

let inline satisfy predicate label =

    {

        label = label

        parseFn = fun input ->

            let remainingInput, charOpt = nextChar input

            match charOpt with

            | None ->

                let err = "No more input"

                let pos = parserPositionFromInputState input

                Failure (label, err, pos)

            | Some first ->

                if predicate first

                then Success (first, remainingInput)

                else

                    let err = $"Unexpected '%c{first}'"

                    let pos = parserPositionFromInputState input

                    Failure (label, err, pos)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

runOnInput parser input |> _equal (

    Success (

        'H',

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 37.29ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - H                                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "World"

let parser = satisfy (fun c -> c = 'H') "H"

runOnInput parser input |> _equal (

    Failure (

        "H",

        "Unexpected 'W'",

        {

            currentLine = "World"

            line = 0

            column = 0

        }

    )

)



╭─[ 28.89ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: H                                                               │

│       Item2: Unexpected 'W'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: World                                                   │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline bindP f p =

    {

        label = "unknown"

        parseFn = fun input ->

            match runOnInput p input with

            | Failure (label, err, pos) -> Failure (label, err, pos)

            | Success (value1, remainingInput) -> runOnInput (f value1) 

remainingInput

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (>>=) p f = bindP f p



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = parser >>= fun c -> satisfy (fun c -> c = 'e') "e"

runOnInput parser2 input |> _equal (

    Success (

        'e',

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 40.67ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - e                                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "World"

let parser = satisfy (fun c -> c = 'W') "W"

let parser2 = parser >>= fun c -> satisfy (fun c -> c = 'e') "e"

runOnInput parser2 input |> _equal (

    Failure (

        "e",

        "Unexpected 'o'",

        {

            currentLine = "World"

            line = 0

            column = 1

        }

    )

)



╭─[ 33.75ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: e                                                               │

│       Item2: Unexpected 'o'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: World                                                   │

│         line: 0                                                              │

│         column: 1                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline returnP x =

    {

        label = $"%A{x}"

        parseFn = fun input -> Success (x, input)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = returnP "Hello"

runOnInput parser input |> _equal (

    Success (

        "Hello",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 0 }

        }

    )

)



╭─[ 33.15ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - Hello                                                    │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline mapP f =

    bindP (f >> returnP)



── fsharp ──────────────────────────────────────────────────────────────────────

let (<!>) = mapP



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (|>>) x f = f <!> x



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = parser |>> string

runOnInput parser2 input |> _equal (

    Success (

        "H",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 33.27ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - H                                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline applyP fP xP =

    fP >>=

        fun f ->

            xP >>=

                fun x ->

                    returnP (f x)



── fsharp ──────────────────────────────────────────────────────────────────────

let (<*>) = applyP



── fsharp ──────────────────────────────────────────────────────────────────────

let inline lift2 f xP yP =

    returnP f <*> xP <*> yP



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'e') "e"

let parser3 = lift2 (fun c1 c2 -> string c1 + string c2) parser parser2

runOnInput parser3 input |> _equal (

    Success (

        "He",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 68.50ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - He                                                       │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline andThen p1 p2 =

    p1 >>=

        fun p1Result ->

            p2 >>=

                fun p2Result ->

                    returnP (p1Result, p2Result)

    <?> $"{getLabel p1} andThen {getLabel p2}"



── fsharp ──────────────────────────────────────────────────────────────────────

let (.>>.) = andThen



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'e') "e"

let parser3 = parser .>>. parser2

runOnInput parser3 input |> _equal (

    Success (

        ('H', 'e'),

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 51.83ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - ( H, e )                                                 │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline orElse p1 p2 =

    {

        label = $"{getLabel p1} orElse {getLabel p2}"

        parseFn = fun input ->

            match runOnInput p1 input with

            | Success _ as result -> result

            | Failure _ -> runOnInput p2 input

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let (<|>) = orElse



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'h') "h"

let parser3 = parser <|> parser2

runOnInput parser3 input |> _equal (

    Success (

        'h',

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 38.48ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - h                                                        │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline choice listOfParsers =

    listOfParsers |> List.reduce (<|>)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'h') "h"

let parser3 = choice [[ parser; parser2 ]]

runOnInput parser3 input |> _equal (

    Success (

        'h',

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 33.10ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - h                                                        │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let rec sequence parserList =

    match parserList with

    | [[]] -> returnP [[]]

    | head :: tail -> (lift2 cons) head (sequence tail)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'e') "e"

let parser3 = sequence [[ parser; parser2 ]]

runOnInput parser3 input |> _equal (

    Success (

        [[ 'H'; 'e' ]],

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 57.82ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [ H, e ]                                                 │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let rec parseZeroOrMore parser input =

    match runOnInput parser input with

    | Failure (_, _, _) ->

        [[]], input

    | Success (firstValue, inputAfterFirstParse) ->

        let subsequentValues, remainingInput = parseZeroOrMore parser 

inputAfterFirstParse

        firstValue :: subsequentValues, remainingInput



── fsharp ──────────────────────────────────────────────────────────────────────

let inline many parser =

    {

        label = $"many {getLabel parser}"

        parseFn = fun input -> Success (parseZeroOrMore parser input)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = many parser

runOnInput parser2 input |> _equal (

    Success (

        [[]],

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 0 }

        }

    )

)



╭─[ 32.56ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [  ]                                                     │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline many1 p =

    p >>=

        fun head ->

            many p >>=

                fun tail ->

                    returnP (head :: tail)

    <?> $"many1 {getLabel p}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = many1 parser

runOnInput parser2 input |> _equal (

    Failure (

        "many1 H",

        "Unexpected 'h'",

        {

            currentLine = "hello"

            line = 0

            column = 0

        }

    )

)



╭─[ 42.27ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: many1 H                                                         │

│       Item2: Unexpected 'h'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: hello                                                   │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline opt p =

    let some = p |>> Some

    let none = returnP None

    (some <|> none)

    <?> $"opt {getLabel p}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = opt parser

runOnInput parser2 input |> _equal (

    Success (

        None,

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 0 }

        }

    )

)



╭─[ 48.99ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - <null>                                                   │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (.>>) p1 p2 =

    p1 .>>. p2

    |> mapP fst



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (>>.) p1 p2 =

    p1 .>>. p2

    |> mapP snd



── fsharp ──────────────────────────────────────────────────────────────────────

let inline between p1 p2 p3 =

    p1 >>. p2 .>> p3



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "[[Hello]]"

let parser =

    between

        (satisfy (fun c -> c = '[[') "[[")

        (many (satisfy (fun c -> [[ 'a' .. 'z' ]] @ [[ 'A' .. 'Z' ]] |> 

List.contains c) "letter"))

        (satisfy (fun c -> c = ']]') "]]")

runOnInput parser input |> _equal (

    Success (

        [[ 'H'; 'e'; 'l'; 'l'; 'o' ]],

        {

            lines = [[| "[[Hello]]" |]]

            position = { line = 0; column = 7 }

        }

    )

)



╭─[ 105.48ms - stdout ]────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [ H, e, l, l, o ]                                        │

│       - InputState                                                           │

│           lines: [ [Hello] ]                                                 │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 7                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sepBy1 p sep =

    let sepThenP = sep >>. p

    p .>>. many sepThenP

    |>> fun (p, pList) -> p :: pList



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sepBy p sep =

    sepBy1 p sep <|> returnP [[]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello,World"

let parser = sepBy (many (satisfy (fun c -> c <> ',') "not comma")) (satisfy 

(fun c -> c = ',') "comma")

runOnInput parser input |> _equal (

    Success (

        [[ [[ 'H'; 'e'; 'l'; 'l'; 'o' ]]; [[ 'W'; 'o'; 'r'; 'l'; 'd'; '\n' ]] 

]],

        {

            lines = [[| "Hello,World" |]]

            position = { line = 1; column = 0 }

        }

    )

)



╭─[ 81.36ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - FSharpList<FSharpList<Char>>                             │

│ [ H, e, l, l, o ]                                                            │

│ [ W, o, r, l, d,                                                             │

│  ]                                                                           │

│       - InputState                                                           │

│           lines: [ Hello,World ]                                             │

│           position: Position                                                 │

│             line: 1                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline pchar charToMatch =

    satisfy ((=) charToMatch) $"%c{charToMatch}"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline anyOf listOfChars =

    listOfChars

    |> List.map pchar

    |> choice

    <?> $"anyOf %A{listOfChars}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = anyOf [[ 'H'; 'e'; 'l'; 'o' ]] |> many

runOnInput parser input |> _equal (

    Success (

        [[ 'H'; 'e'; 'l'; 'l'; 'o' ]],

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 5 }

        }

    )

)



╭─[ 38.53ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [ H, e, l, l, o ]                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 5                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline charListToStr charList =

    charList |> List.toArray |> String



── fsharp ──────────────────────────────────────────────────────────────────────

let inline manyChars cp =

    many cp

    |>> charListToStr



── fsharp ──────────────────────────────────────────────────────────────────────

let inline manyChars1 cp =

    many1 cp

    |>> charListToStr



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = manyChars1 (anyOf [[ 'H'; 'e'; 'l'; 'o' ]])

runOnInput parser input |> _equal (

    Success (

        "Hello",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 5 }

        }

    )

)



╭─[ 55.21ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - Hello                                                    │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 5                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline pstring str =

    str

    |> List.ofSeq

    |> List.map pchar

    |> sequence

    |> mapP charListToStr

    <?> str



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = pstring "Hello"

runOnInput parser input |> _equal (

    Success (

        "Hello",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 5 }

        }

    )

)



╭─[ 43.38ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - Hello                                                    │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 5                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let whitespaceChar =

    satisfy Char.IsWhiteSpace "whitespace"



── fsharp ──────────────────────────────────────────────────────────────────────

let spaces = many whitespaceChar



── fsharp ──────────────────────────────────────────────────────────────────────

let spaces1 = many1 whitespaceChar



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "  Hello"

let parser = spaces1 .>>. pstring "Hello"

runOnInput parser input |> _equal (

    Success (

        ([[ ' '; ' ' ]], "Hello"),

        {

            lines = [[| "  Hello" |]]

            position = { line = 0; column = 7 }

        }

    )

)



╭─[ 57.31ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       -         - [  ,   ]                                       │

│         - Hello                                                              │

│       - InputState                                                           │

│           lines: [   Hello ]                                                 │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 7                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let digitChar =

    satisfy Char.IsDigit "digit"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = digitChar

runOnInput parser input |> _equal (

    Failure (

        "digit",

        "Unexpected 'H'",

        {

            currentLine = "Hello"

            line = 0

            column = 0

        }

    )

)



╭─[ 22.89ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: digit                                                           │

│       Item2: Unexpected 'H'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: Hello                                                   │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let pint =

    let inline resultToInt (sign, digits) =

        let i = int digits

        match sign with

        | Some ch -> -i

        | None -> i



    let digits = manyChars1 digitChar



    opt (pchar '-') .>>. digits

    |> mapP resultToInt

    <?> "integer"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run pint "-123"

|> _equal (

    Success (

        -123,

        {

            lines = [[| "-123" |]]

            position = { line = 0; column = 4 }

        }

    )

)



╭─[ 31.85ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - -123                                                     │

│       - InputState                                                           │

│           lines: [ -123 ]                                                    │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 4                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let pfloat =

    let inline resultToFloat (((sign, digits1), point), digits2) =

        let fl = float $"{digits1}.{digits2}"

        match sign with

        | Some ch -> -fl

        | None -> fl



    let digits = manyChars1 digitChar



    opt (pchar '-') .>>. digits .>>. pchar '.' .>>. digits

    |> mapP resultToFloat

    <?> "float"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run pfloat "-123.45"

|> _equal (

    Success (

        -123.45,

        {

            lines = [[| "-123.45" |]]

            position = { line = 0; column = 7 }

        }

    )

)



╭─[ 40.91ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - -123.45                                                  │

│       - InputState                                                           │

│           lines: [ -123.45 ]                                                 │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 7                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline createParserForwardedToRef<'a> () =

    let mutable parserRef : Parser<'a> =

        {

            label = "unknown"

            parseFn = fun _ -> failwith "unfixed forwarded parser"

        }



    let wrapperParser =

        { parserRef with

            parseFn = fun input -> runOnInput parserRef input

        }



    wrapperParser, (fun v -> parserRef <- v)



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (>>%) p x =

    p

    |>> fun _ -> x

[NbConvertApp] Converting notebook Parser.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 412907 bytes to Parser.dib.html

01:55:52 #1 [Debug] writeDibCode / output: Fs / path: JsonParser.dib

01:55:52 #1 [Debug] writeDibCode / output: Fs / path: Parser.dib

01:55:52 #3 [Debug] parseDibCode / output: Fs / file: JsonParser.dib

01:55:52 #3 [Debug] parseDibCode / output: Fs / file: Parser.dib

In [ ]:
{ . "$ScriptDir/../nbs/build.ps1" } | Invoke-Block

── csharp ──────────────────────────────────────────────────────────────────────





── csharp - import ─────────────────────────────────────────────────────────────



using static Microsoft.DotNet.Interactive.Kernel;





── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Async (Polyglot)                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## choice                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline choice asyncs = async {

    let e = Event<_> ()

    use cts = new System.Threading.CancellationTokenSource ()

    let fn =

        asyncs

        |> Seq.map (fun a -> async {

            let! x = a

            e.Trigger x

        })

        |> Async.Parallel

        |> Async.Ignore

    Async.Start (fn, cts.Token)

    let! result = Async.AwaitEvent e.Publish

    cts.Cancel ()

    return result

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## map                                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline map fn a = async {

    let! x = a

    return fn x

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## catch                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline catch a =

    a

    |> Async.Catch

    |> map (function

        | Choice1Of2 result -> Ok result

        | Choice2Of2 ex -> Error ex

    )



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## runWithTimeoutAsync                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutAsync (timeout : int) fn =

    let getLocals () = $"timeout: {timeout} / {getLocals ()}"



    let timeoutTask = async {

        do! Async.Sleep timeout

        trace Debug (fun () -> "runWithTimeoutAsync") getLocals

        return None

    }



    let task = async {

        try

            let! result = fn

            return Some result

        with

        | :? System.AggregateException as ex when

            ex.InnerExceptions

            |> Seq.exists (function :? 

System.Threading.Tasks.TaskCanceledException -> true | _ -> false)

            ->

            let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

            trace Warning (fun () -> "runWithTimeoutAsync") getLocals

            return None

        | ex ->

            trace Critical (fun () -> $"runWithTimeoutAsync** / ex: {ex |> 

printException}") getLocals

            return None

    }



    [[ timeoutTask; task ]]

    |> choice



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeout timeout fn =

    fn

    |> runWithTimeoutAsync timeout

    |> Async.RunSynchronously



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 60

|> runWithTimeout 10

|> _equal None



╭─[ 138.58ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 10                        │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 10

|> runWithTimeout 60

|> _equal (Some ())



╭─[ 107.85ms - stdout ]────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



async {

    raise (exn "error")

}

|> runWithTimeout 60

|> _equal None



╭─[ 124.36ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Critical] runWithTimeoutAsync** / ex: System.Exception: error / │

│ timeout: 60                                                                  │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## runWithTimeoutChildAsync                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutChildAsync (timeout : int) fn = async {

    let getLocals () = $"timeout: {timeout} / {getLocals ()}"

    let! child = Async.StartChild (fn, timeout)

    return!

        child

        |> catch

        |> map (function

            | Ok result -> Some result

            | Error (:? System.TimeoutException as ex) ->

                trace Debug (fun () -> $"runWithTimeoutChildAsync") getLocals

                None

            | Error ex ->

                trace Critical (fun () -> $"runWithTimeoutChildAsync** / ex: {ex

|> printException}") getLocals

                None

        )

}



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutChild timeout fn =

    fn

    |> runWithTimeoutChildAsync timeout

    |> Async.RunSynchronously



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 60

|> runWithTimeoutChild 10

|> _equal None



╭─[ 106.55ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #3 [Debug] runWithTimeoutChildAsync / timeout: 10                   │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 10

|> runWithTimeoutChild 60

|> _equal (Some ())



╭─[ 71.62ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



async {

    raise (exn "error")

}

|> runWithTimeoutChild 60

|> _equal None



╭─[ 113.97ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #4 [Critical] runWithTimeoutChildAsync** / ex: System.Exception:    │

│ error / timeout: 60                                                          │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## runWithTimeoutStrict                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutStrict (timeout : int) fn =

    let getLocals () = $"timeout: {timeout} / {getLocals ()}"



    let timeoutTask = async {

        do! Async.Sleep timeout

        return None, getLocals

    }

    

    let task = async {

        try

            return Async.RunSynchronously (fn, timeout) |> Some, getLocals

        with

        | :? System.TimeoutException as ex ->

            let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

            return None, getLocals

        | ex ->

            trace Critical (fun () -> $"runWithTimeoutStrict / ex: {ex |> 

printException}") getLocals

            return raise ex

    }



    try

        [[| timeoutTask; task |]]

        |> Array.map Async.StartAsTask

        |> System.Threading.Tasks.Task.WhenAny

        |> fun task ->

            match task.Result.Result with

            | None, getLocals ->

                trace Debug (fun () -> "runWithTimeoutStrict") getLocals

                None

            | result, _ -> result

    with

    | :? System.AggregateException as ex when

        ex.InnerExceptions

        |> Seq.exists (function :? System.Threading.Tasks.TaskCanceledException 

-> true | _ -> false)

        ->

        let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

        trace Warning (fun () -> "runWithTimeoutStrict") getLocals

        None

    | ex ->

        let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

        trace Critical (fun () -> "runWithTimeoutStrict**") getLocals

        None



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 60

|> runWithTimeoutStrict 10

|> _equal None



╭─[ 110.53ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #5 [Debug] runWithTimeoutStrict / ex: System.TimeoutException: The  │

│ operation has timed out. / timeout: 10                                       │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 10

|> runWithTimeoutStrict 60

|> _equal (Some ())



╭─[ 104.00ms - stdout ]────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



async {

    raise (exn "error")

}

|> runWithTimeoutStrict 60

|> _equal None



╭─[ 87.02ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:01 #6 [Critical] runWithTimeoutStrict / ex: System.Exception: error /  │

│ timeout: 60                                                                  │

│ 00:00:01 #7 [Critical] runWithTimeoutStrict** / ex:                          │

│ System.AggregateException: One or more errors occurred. (error) / timeout:   │

│ 60                                                                           │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## awaitValueTask                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline awaitValueTaskUnit (task : System.Threading.Tasks.ValueTask) =

    task.AsTask () |> Async.AwaitTask



let inline awaitValueTask (task : System.Threading.Tasks.ValueTask<_>) =

    task.AsTask () |> Async.AwaitTask



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## init                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline init x = async {

    return x

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



init 1

|> Async.RunSynchronously

|> _equal 1



╭─[ 26.95ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## mergeCancellationTokenWithDefaultAsync                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline mergeCancellationTokenWithDefaultAsync (token : 

System.Threading.CancellationToken) = async {

    let! ct = Async.CancellationToken

    let dct = Async.DefaultCancellationToken

    let cts = System.Threading.CancellationTokenSource.CreateLinkedTokenSource 

[[| ct; dct; token |]]

    return cts.Token

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## withCancellationToken                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline withCancellationToken (ct : System.Threading.CancellationToken) fn =

    Async.StartImmediateAsTask (fn, ct)

    |> Async.AwaitTask



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let cts = new System.Threading.CancellationTokenSource ()



async {

    let run = async {

        do! Async.Sleep 100

        return 1

    }



    let! child =

        run

        |> withCancellationToken cts.Token

        |> catch

        |> Async.StartChild



    do! Async.Sleep 50

    cts.Cancel ()

    return! child

}

|> Async.RunSynchronously

|> Result.mapError (fun x -> x.Message)

|> _equal (Error ("A task was canceled."))



╭─[ 205.43ms - stdout ]────────────────────────────────────────────────────────╮

│ FSharpResult<Int32,String>                                                   │

│       ResultValue: 0                                                         │

│       ErrorValue: A task was canceled.                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## withTraceLevel                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline withTraceLevel level fn = async {

    let oldTraceLevel = traceLevel

    try

        traceLevel <- level

        return! fn

    finally

        traceLevel <- oldTraceLevel

}

[NbConvertApp] Converting notebook Async.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 323725 bytes to Async.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # AsyncSeq (Polyglot)                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/Async.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## subscribeEvent                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline subscribeEvent (event: IEvent<'H, 'A>) map =

    let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

    System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

    |> FSharp.Control.AsyncSeq.ofObservableBuffered



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



type TestEvent () as self =

    member val Calls = [[]] with get, set

    member val Event = Event<ErrorEventHandler, ErrorEventArgs> () with get



    member _.AddCall text =

        self.Calls <- self.Calls @ [[ text ]]



    member _.EventInterface =

        { new IEvent<ErrorEventHandler, ErrorEventArgs> with

            member _.AddHandler handler =

                self.AddCall "AddHandler"

                self.Event.Publish.AddHandler handler



            member _.RemoveHandler handler =

                self.AddCall "RemoveHandler"

                self.Event.Publish.RemoveHandler handler



            member _.Subscribe observer =

                self.AddCall "IObservable.Subscribe"

                let disposable = self.Event.Publish.Subscribe observer

                newDisposable (fun () ->

                    self.AddCall "IObservable.Dispose"

                    disposable.Dispose ()

                )

        }



    member _.Subscribe () =

        subscribeEvent

            self.EventInterface

            (fun args ->

                let result = args.GetException () |> printException

                self.AddCall $"TestEvent.Subscribe({result})"

                result

            )



    member _.Iter subscription =

        subscription

        |> FSharp.Control.AsyncSeq.iteriAsync (fun i error -> async {

            self.AddCall $"TestEvent.Iter({i}: {error})"

        })



    member _.WaitCall text = async {

        while self.Calls |> List.last <> text do

            do! Async.SwitchToThreadPool ()

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testEvent = TestEvent ()



async {

    testEvent.AddCall "1"

    let! child = testEvent.Subscribe () |> testEvent.Iter |> Async.StartChild

    do! testEvent.WaitCall "AddHandler"

    testEvent.AddCall "2"

    do! child

    testEvent.AddCall "3"

}

|> Async.runWithTimeout 300

|> _equal None



testEvent.Calls

|> Seq.toList

|> _equal [[ "1"; "AddHandler"; "2"; "RemoveHandler" ]]



╭─[ 507.54ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 300                       │

│ <null>                                                                       │

│ [ 1, AddHandler, 2, RemoveHandler ]                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testEvent = TestEvent ()



async {

    testEvent.AddCall "1"

    let! child = testEvent.Subscribe () |> testEvent.Iter |> Async.StartChild

    do! testEvent.WaitCall "AddHandler"

    testEvent.AddCall "2"

    use _ = testEvent.EventInterface.Subscribe (fun args ->

        testEvent.AddCall $"testEvent.EventInterface.Subscribe({args})"

    )

    testEvent.AddCall "3"

    do! child

    testEvent.AddCall "4"

}

|> Async.runWithTimeout 300

|> _equal None



testEvent.Calls

|> _equal [[ "1"; "AddHandler"; "2"; "IObservable.Subscribe"; "3"; 

"RemoveHandler"; "IObservable.Dispose" ]]



╭─[ 453.61ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Debug] runWithTimeoutAsync / timeout: 300                       │

│ <null>                                                                       │

│ [ 1, AddHandler, 2, IObservable.Subscribe, 3, RemoveHandler,                 │

│ IObservable.Dispose ]                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testEvent = TestEvent ()



async {

    testEvent.AddCall "1"

    let! child = testEvent.Subscribe () |> testEvent.Iter |> Async.StartChild

    do! testEvent.WaitCall "AddHandler"

    testEvent.AddCall "2"

    use _ = testEvent.EventInterface.Subscribe (fun args ->

        async {

            do! testEvent.WaitCall "TestEvent.Iter(0: System.Exception: error)"

            testEvent.AddCall 

$"testEvent.EventInterface.Subscribe({args.GetException () |> printException})"

        }

        |> Async.RunSynchronously

    )

    testEvent.AddCall "3"

    testEvent.Event.Trigger (null, ErrorEventArgs (Exception "error"))

    testEvent.AddCall "4"

    do! child

    testEvent.AddCall "5"

}

|> Async.runWithTimeout 300

|> _equal None



testEvent.Calls

|> _equal [[

    "1"

    "AddHandler"

    "2"

    "IObservable.Subscribe"

    "3"

    "TestEvent.Subscribe(System.Exception: error)"

    "TestEvent.Iter(0: System.Exception: error)"

    "testEvent.EventInterface.Subscribe(System.Exception: error)"

    "4"

    "RemoveHandler"

    "IObservable.Dispose"

]]



╭─[ 482.46ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #3 [Debug] runWithTimeoutAsync / timeout: 300                       │

│ <null>                                                                       │

│ [ 1, AddHandler, 2, IObservable.Subscribe, 3,                                │

│ TestEvent.Subscribe(System.Exception: error), TestEvent.Iter(0:              │

│ System.Exception: error),                                                    │

│ testEvent.EventInterface.Subscribe(System.Exception: error), 4,              │

│ RemoveHandler, IObservable.Dispose ]                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let subscribeToken (token : System.Threading.CancellationToken) =

    let tcs = new System.Threading.Tasks.TaskCompletionSource ()

    System.Action tcs.SetResult |> token.Register |> ignore

    let start = System.DateTime.Now.Ticks

    FSharp.Control.AsyncSeq.unfoldAsync

        (fun () -> async {

            do! tcs.Task |> Async.AwaitTask

            return Some (System.DateTime.Now.Ticks - start, ())

        })

        ()



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let cts = new System.Threading.CancellationTokenSource ()



async {

    let! child =

        cts.Token

        |> subscribeToken

        |> FSharp.Control.AsyncSeq.tryFirst

        |> Async.StartChild



    do! Async.Sleep 100

    cts.Cancel ()

    return! child

}

|> Async.RunSynchronously

|> Option.get

|> _isGreaterThan 1000000



╭─[ 171.08ms - stdout ]────────────────────────────────────────────────────────╮

│ 1043788                                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook AsyncSeq.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 300346 bytes to AsyncSeq.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Common (Polyglot)                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

let nl = System.Environment.NewLine

let q = @""""



── fsharp ──────────────────────────────────────────────────────────────────────

let inline cons head tail = head :: tail



── fsharp ──────────────────────────────────────────────────────────────────────

module String =

    let inline contains (value : string) (input : string) =

        input.Contains value



    let inline endsWith (value : string) (input : string) =

        input.EndsWith value



    let inline padLeft totalWidth paddingChar (input : string) =

        input.PadLeft (totalWidth, paddingChar)



    let inline replace (oldValue : string) (newValue : string) (input : string) 

=

        input.Replace (oldValue, newValue)



    let inline split separator (input : string) =

        input.Split separator



    let inline splitString (separator : string array) (input : string) =

        input.Split (separator, System.StringSplitOptions.None)



    let inline startsWith (value : string) (input : string) =

        input.StartsWith value



    let inline substring startIndex length (input : string) =

        input.Substring (startIndex, length)



    let inline toLower (input : string) =

        input.ToLower ()



    let inline toUpper (input : string) =

        input.ToUpper ()



    let inline trim (input : string) =

        input.Trim ()

    

    let inline trimEnd (trimChars : char array) (input : string) =

        input.TrimEnd trimChars



    let inline trimStart (trimChars : char array) (input : string) =

        input.TrimStart trimChars



── fsharp ──────────────────────────────────────────────────────────────────────

type TicksGuid = System.Guid

type DateTimeGuid = System.Guid



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testGuid = Guid "FEDCBA98-7654-3210-FEDC-BA9876543210"



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## dateTimeGuidFromDateTime                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline dateTimeGuidFromDateTime (guid: System.Guid) (dateTime: 

System.DateTime) =

    let guid = guid |> string

    let prefix = dateTime.ToString "yyyyMMdd-HHmm-ssff-ffff-f"

    DateTimeGuid $"{prefix}{guid.[[prefix.Length..]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeGuidFromDateTime testGuid DateTime.MinValue

|> _equal (DateTimeGuid "00010101-0000-0000-0000-0a9876543210")



╭─[ 67.39ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00010101-0000-0000-0000-0a9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeGuidFromDateTime testGuid DateTime.MaxValue

|> _equal (DateTimeGuid $"99991231-2359-5999-9999-9{(testGuid |> 

string).[[^10..]]}")



╭─[ 39.25ms - stdout ]─────────────────────────────────────────────────────────╮

│ 99991231-2359-5999-9999-9a9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeGuidFromDateTime testGuid DateTime.UnixEpoch

|> _equal (DateTimeGuid $"19700101-0000-0000-0000-0{(testGuid |> 

string).[[^10..]]}")



╭─[ 38.57ms - stdout ]─────────────────────────────────────────────────────────╮

│ 19700101-0000-0000-0000-0a9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## dateTimeFromGuid                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline dateTimeFromGuid (dateTimeGuid: DateTimeGuid) =

    let dateTimeGuid = dateTimeGuid |> string

    System.DateTime.ParseExact (dateTimeGuid.[[..24]] |> String.replace "-" "", 

"yyyyMMddHHmmssfffffff", null)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeFromGuid (DateTimeGuid "00010101-0000-0000-0000-0a9876543210")

|> _equal DateTime.MinValue



╭─[ 34.81ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0001-01-01 00:00:00Z                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeFromGuid (DateTimeGuid $"99991231-2359-5999-9999-9{(testGuid |> 

string).[[^10..]]}")

|> _equal DateTime.MaxValue



╭─[ 33.82ms - stdout ]─────────────────────────────────────────────────────────╮

│ 9999-12-31 23:59:59Z                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeFromGuid (DateTimeGuid $"19700101-0000-0000-0000-0{(testGuid |> 

string).[[^10..]]}")

|> _equal DateTime.UnixEpoch



╭─[ 31.28ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1970-01-01 00:00:00Z                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## ticksGuidFromTicks                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline ticksGuidFromTicks (guid: System.Guid) (ticks: int64) =

    let guid = guid |> string

    let ticks = ticks |> string |> String.padLeft 18 '0'

    TicksGuid 

$"{ticks.[[0..7]]}-{ticks.[[8..11]]}-{ticks.[[12..15]]}-{ticks.[[16..17]]}{guid.

[[21..]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksGuidFromTicks testGuid 0L

|> _equal (TicksGuid "00000000-0000-0000-00dc-ba9876543210")



╭─[ 33.89ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00000000-0000-0000-00dc-ba9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksGuidFromTicks testGuid 999999999999999999L

|> _equal (TicksGuid $"99999999-9999-9999-99dc-b{(testGuid |> 

string).[[^10..]]}")



╭─[ 43.29ms - stdout ]─────────────────────────────────────────────────────────╮

│ 99999999-9999-9999-99dc-ba9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## ticksFromGuid                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline ticksFromGuid (ticksGuid: DateTimeGuid) =

    let ticks = ticksGuid |> string

    int64 

$"{ticks.[[0..7]]}{ticks.[[9..12]]}{ticks.[[14..17]]}{ticks.[[19..20]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksFromGuid (TicksGuid "00000000-0000-0000-00dc-ba9876543210")

|> _equal 0L



╭─[ 32.67ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksFromGuid (TicksGuid $"99999999-9999-9999-99{(testGuid |> 

string).[[^14..]]}")

|> _equal 999999999999999999L



╭─[ 40.13ms - stdout ]─────────────────────────────────────────────────────────╮

│ 999999999999999999                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newGuidFromDateTime                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newGuidFromDateTime (dateTime: System.DateTime) =

    let guid = System.Guid.NewGuid ()

    dateTimeGuidFromDateTime guid dateTime



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



newGuidFromDateTime System.DateTime.UtcNow

|> dateTimeFromGuid

|> fun dateTime -> (dateTime - System.DateTime.UtcNow).TotalSeconds |> int

|> _equal 0



╭─[ 65.70ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newGuidFromTicks                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newGuidFromTicks (ticks: int64) =

    let guid = System.Guid.NewGuid ()

    ticksGuidFromTicks guid ticks



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



newGuidFromTicks System.DateTime.UtcNow.Ticks

|> ticksFromGuid

|> fun ticks -> (ticks - System.DateTime.UtcNow.Ticks) / 100000L

|> _equal 0L



╭─[ 53.27ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## memoize                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline memoize fn =

    let result = lazy fn ()

    fun () -> result.Value



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable count = 0

let add =

    fun () -> count <- count + 1

    |> memoize



add ()

add ()

add ()



count

|> _equal 1



╭─[ 25.78ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## printException                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline printException (ex : System.Exception) =

    $"{ex.GetType ()}: {ex.Message}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fun () -> failwith "test"

|> _throwsC (fun ex _ ->

    printException ex

    |> _equal "System.Exception: test"

)



╭─[ 61.85ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSI_0034+it@3-1                                                              │

│ System.Exception: test                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## trace                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type TraceLevel =

    | Verbose

    | Debug

    | Info

    | Warning

    | Critical



let inline getLocals () = ""



let mutable traceEnabled = true

let mutable traceCount = 0

let mutable traceLevel = Verbose

let mutable traceDump = false



let private replStart =

#if INTERACTIVE

    fun () ->

        if System.Reflection.Assembly.GetEntryAssembly().GetName().Name = 

"dotnet-repl"

        then Some System.DateTime.Now.Ticks

        else None

    |> memoize

#else

    fun () -> None : int64 option

#endif



let rec trace level fn getLocals =

    if traceEnabled && level >= traceLevel then

        traceCount <- traceCount + 1

        let time =

#if CHAIN

            ""

#else

            match replStart () with

            | Some replStart ->

                let t = System.DateTime.Now.Ticks - replStart |> System.TimeSpan

                System.DateTime (1, 1, 1, t.Hours, t.Minutes, t.Seconds, 

t.Milliseconds, t.Microseconds)

            | None -> System.DateTime.Now

            |> fun dateTime ->

#if FABLE_COMPILER_RUST

                "hh:mm:ss"

#else

                "HH:mm:ss"

#endif

                |> dateTime.ToString

#endif

        let text =

            $"{time} #{traceCount} [[%A{level}]] %s{fn ()} / %s{getLocals ()}"

            |> String.trimStart [[||]]

            |> String.trimEnd [[| ' '; '/' |]]



        System.Console.WriteLine text

#if !CHAIN && !FABLE_COMPILER

        if traceDump then

            try

                let tmpPath = System.IO.Path.GetTempPath ()

                let logDir = System.IO.Path.Combine (tmpPath, "!polyglot")

                System.IO.Directory.CreateDirectory logDir |> ignore

                let logFile = System.IO.Path.Combine (logDir, 

$"{newGuidFromDateTime System.DateTime.Now}.txt")

                System.IO.File.WriteAllTextAsync (logFile, text) |> 

Async.AwaitTask |> Async.RunSynchronously

            with ex ->

                trace Critical (fun () -> $"trace / ex: {ex |> printException}")

getLocals

#endif



let inline withTrace enabled fn =

    let oldTraceEnabled = traceEnabled

    try

        traceEnabled <- enabled

        fn ()

    finally

        traceEnabled <- oldTraceEnabled



let inline withTraceEnabled fn =

    withTrace true fn



let inline withTraceDisabled fn =

    withTrace false fn



let inline withTraceLevel level fn =

    let oldTraceLevel = traceLevel

    try

        traceLevel <- level

        fn ()

    finally

        traceLevel <- oldTraceLevel



let inline withTraceDump dump fn =

    let oldTraceDump = traceDump

    try

        traceDump <- dump

        fn ()

    finally

        traceDump <- oldTraceDump



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



trace Debug (fun () -> "test") getLocals



╭─[ 29.73ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] test                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newDisposable                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newDisposable fn =

    { new System.IDisposable with

        member _.Dispose () = fn ()

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

|> fun x -> x.Dispose ()

newDisposableTest |> _equal 1



╭─[ 20.88ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

fun () -> task {

    use x = newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

    ()

}

|> fun x -> x () |> Async.AwaitTask |> Async.RunSynchronously

newDisposableTest |> _equal 1



╭─[ 123.04ms - stdout ]────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

async {

    use x = newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

    ()

}

|> Async.RunSynchronously

newDisposableTest |> _equal 1



╭─[ 35.84ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

async {

    let x = newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

    ()

}

|> Async.RunSynchronously

newDisposableTest |> _equal 0



╭─[ 35.05ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## retryFn                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline retryFn retries fn =

    let rec loop retry =

        try

            if retry < retries

            then fn () |> Some

            else None

        with ex ->

            let getLocals () = $"retry: {retry} / ex: {ex |> printException} / 

{getLocals ()}"

            trace Warning (fun () -> "retryFn") getLocals

            System.Threading.Thread.Sleep 1

            loop (retry + 1)

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable retryFnTest = 0

fun () ->

    retryFnTest <- retryFnTest + 1

    retryFnTest

|> retryFn 3

|> _equal (Some 1)



╭─[ 27.95ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpOption<Int32>                                                          │

│       Value: 1                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fun () -> failwith "test"

|> retryFn 3

|> _equal None



╭─[ 72.15ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Warning] retryFn / retry: 0 / ex: System.Exception: test        │

│ 00:00:00 #3 [Warning] retryFn / retry: 1 / ex: System.Exception: test        │

│ 00:00:00 #4 [Warning] retryFn / retry: 2 / ex: System.Exception: test        │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable retryFnTest = 0

fun () ->

    if retryFnTest >= 2

    then retryFnTest

    else

        retryFnTest <- retryFnTest + 1

        failwith "test"

|> retryFn 3

|> _equal (Some 2)



╭─[ 68.87ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #5 [Warning] retryFn / retry: 0 / ex: System.Exception: test        │

│ 00:00:00 #6 [Warning] retryFn / retry: 1 / ex: System.Exception: test        │

│ FSharpOption<Int32>                                                          │

│       Value: 2                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Common.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 347390 bytes to Common.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # CommonFSharp (Polyglot)                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getUnionCaseName                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getUnionCaseName<'T> (x: 'T) =

    match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

    | case, _ -> case.Name



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



TraceLevel.Critical

|> getUnionCaseName

|> _equal (nameof TraceLevel.Critical)



╭─[ 58.50ms - stdout ]─────────────────────────────────────────────────────────╮

│ Critical                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook CommonFSharp.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 274474 bytes to CommonFSharp.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Threading (Polyglot)                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newDisposableToken                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newDisposableToken (mergeToken: System.Threading.CancellationToken 

option) =

    let cts = new System.Threading.CancellationTokenSource ()

    let cts =

        match mergeToken with

        | None -> cts

        | Some mergeToken ->

            System.Threading.CancellationTokenSource.CreateLinkedTokenSource [[|

cts.Token; mergeToken |]]

    let disposable = newDisposable cts.Cancel

    cts.Token, disposable



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable counter = 0



let inline run fn =

    let token, disposable = newDisposableToken None

    use _ = disposable

    fn token

    async {

        fn token

    }

    |> Async.Start



let inline fn (token : System.Threading.CancellationToken) =

    counter <- counter + (if token.IsCancellationRequested then 10 else 1)



async {

    run fn

    do! Async.Sleep 1

    return counter

}

|> Async.RunSynchronously

|> _equal 11



╭─[ 167.03ms - stdout ]────────────────────────────────────────────────────────╮

│ 11                                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Threading.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 277490 bytes to Threading.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Crypto (Polyglot)                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## hashText                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let hashText (input : string) =

    use sha256 = System.Security.Cryptography.SHA256.Create ()

    input

    |> System.Text.Encoding.UTF8.GetBytes

    |> sha256.ComputeHash

    |> Array.map (fun b -> b.ToString "x2")

    |> String.concat ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



""

|> hashText

|> _equal "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"



╭─[ 51.16ms - stdout ]─────────────────────────────────────────────────────────╮

│ e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



" "

|> hashText

|> _equal "36a9e7f1c95b82ffb99743e0c5c4ce95d83c9a430aac59f84ef3cbfab6145068"



╭─[ 17.01ms - stdout ]─────────────────────────────────────────────────────────╮

│ 36a9e7f1c95b82ffb99743e0c5c4ce95d83c9a430aac59f84ef3cbfab6145068             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Crypto.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 276308 bytes to Crypto.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # FileSystem (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Runtime.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Operators                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

module Operators =

    let inline (</>) a b =

        System.IO.Path.Combine (a, b)



── fsharp ──────────────────────────────────────────────────────────────────────

open Operators



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## createTempDirectoryName                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline createTempDirectoryName () =

    let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



    System.IO.Path.GetTempPath ()

    </> $"!{root}"

    </> string (newGuidFromDateTime System.DateTime.Now)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



createTempDirectoryName ()

|> _contains System.IO.Path.DirectorySeparatorChar



╭─[ 47.63ms - stdout ]─────────────────────────────────────────────────────────╮

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1880-8001-83591 │

│ d2a5a91                                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## createTempDirectory                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline createTempDirectory () =

    let tempFolder = createTempDirectoryName ()

    let result = System.IO.Directory.CreateDirectory tempFolder



    let getLocals () =

        $"tempFolder: {tempFolder} / result: {({|

            Exists = result.Exists

            CreationTime = result.CreationTime

        |})} {getLocals ()}"



    trace Debug (fun () -> "createTempDirectory") getLocals



    tempFolder



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempDirectory = createTempDirectory ()



Directory.Exists tempDirectory

|> _equal true



╭─[ 70.47ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] createTempDirectory / tempFolder:                        │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1893-9316-9d291 │

│ 85acb04 / result: { CreationTime = 2023-10-21 1:57:18 AM                     │

│   Exists = true }                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getSourceDirectory                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let getSourceDirectory =

    fun () -> __SOURCE_DIRECTORY__

    |> memoize



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getSourceDirectory ()

|> System.IO.DirectoryInfo

|> fun dir -> dir.Name

|> _equal "nbs"



╭─[ 35.61ms - stdout ]─────────────────────────────────────────────────────────╮

│ nbs                                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## findParent                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline findParent name isFile rootDir =

    let rec loop dir =

        if dir </> name |> (if isFile then System.IO.File.Exists else 

System.IO.Directory.Exists)

        then dir

        else

            dir

            |> System.IO.Directory.GetParent

            |> function

                | null -> failwith $"""No parent for {if isFile then "file" else

"dir"} '{name}' at '{rootDir}'"""

                | parent -> parent.FullName |> loop

    loop rootDir



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getSourceDirectory () |> findParent ".paket" false

|> System.IO.DirectoryInfo

|> fun dir -> dir.Name

|> _equal "polyglot"



╭─[ 43.14ms - stdout ]─────────────────────────────────────────────────────────╮

│ polyglot                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getSourceDirectory () |> findParent "paket.dependencies" true

|> System.IO.DirectoryInfo

|> fun dir -> dir.Name

|> _equal "polyglot"



╭─[ 24.43ms - stdout ]─────────────────────────────────────────────────────────╮

│ polyglot                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## readAllTextAsync                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline readAllTextAsync path =

    path |> System.IO.File.ReadAllTextAsync |> Async.AwaitTask



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## fileExistsContent                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline fileExistsContent path content = async {

    if path |> System.IO.File.Exists |> not

    then return false

    else

        let! existingContent = path |> readAllTextAsync

        return content = existingContent

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeAllTextAsync                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeAllTextAsync path contents =

    System.IO.File.WriteAllTextAsync (path, contents) |> Async.AwaitTask



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeAllTextExists                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeAllTextExists path contents = async {

    let! exists = contents |> fileExistsContent path

    if not exists

    then do! contents |> writeAllTextAsync path

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## waitForFileAccess                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline waitForFileAccess access path =

    let fileAccess, fileShare =

        access

        |> Option.defaultValue (System.IO.FileAccess.ReadWrite, 

System.IO.FileShare.Read)



    let rec loop retry = async {

        try

            use _ = new System.IO.FileStream (

                path,

                System.IO.FileMode.Open,

                fileAccess,

                fileShare

            )

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () = $"path: {path} / ex: {ex |> printException} /

{getLocals ()}"

                trace Debug (fun () -> "waitForFileAccess") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test.txt"



let inline lockFile () = async {

    trace Debug (fun () -> "_1") getLocals

    use stream = new System.IO.FileStream (

        path,

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

    stream.Seek (0L, SeekOrigin.Begin) |> ignore

    trace Debug (fun () -> "_4") getLocals

    stream.WriteByte 49uy

    trace Debug (fun () -> "_5") getLocals

    stream.Flush ()

    trace Debug (fun () -> "_6") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    do! "0" |> writeAllTextAsync path

    trace Debug (fun () -> "2") getLocals

    let! child = lockFile () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "4") getLocals

    let! retries = path |> waitForFileAccess None

    trace Debug (fun () -> "5") getLocals

    let! text = path |> readAllTextAsync

    trace Debug (fun () -> "6") getLocals

    do! child

    trace Debug (fun () -> "7") getLocals

    return retries, text

}

|> Async.runWithTimeout 3000

|> function

    | Some (retries, text) ->

        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 100)

            (if Runtime.isWindows () then 150 else 200)

        

        text |> _equal "1"

        

        true

    | _ -> false

|> _equal true



╭─[ 2.39s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Debug] createTempDirectory / tempFolder:                        │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1963-6395-6e8b9 │

│ 02eb5aa / result: { CreationTime = 2023-10-21 1:57:19 AM                     │

│   Exists = true }                                                            │

│ 00:00:00 #3 [Debug] 1                                                        │

│ 00:00:00 #4 [Debug] 2                                                        │

│ 00:00:00 #5 [Debug] _1                                                       │

│ 00:00:00 #6 [Debug] 3                                                        │

│ 00:00:00 #7 [Debug] _2                                                       │

│ 00:00:00 #8 [Debug] 4                                                        │

│ 00:00:00 #9 [Debug] waitForFileAccess / path:                                │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1963-6395-6e8b9 │

│ 02eb5aa\test.txt / ex: System.IO.IOException: The process cannot access the  │

│ file                                                                         │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1963-6395-6e8b │

│ 902eb5aa\test.txt' because it is being used by another process.              │

│ 00:00:02 #10 [Debug] waitForFileAccess / path:                               │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1963-6395-6e8b9 │

│ 02eb5aa\test.txt / ex: System.IO.IOException: The process cannot access the  │

│ file                                                                         │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-1963-6395-6e8b │

│ 902eb5aa\test.txt' because it is being used by another process.              │

│ 00:00:02 #11 [Debug] _3                                                      │

│ 00:00:02 #12 [Debug] _4                                                      │

│ 00:00:02 #13 [Debug] _5                                                      │

│ 00:00:02 #14 [Debug] _6                                                      │

│ 00:00:02 #15 [Debug] 5                                                       │

│ 00:00:02 #16 [Debug] 6                                                       │

│ 00:00:02 #17 [Debug] 7                                                       │

│ 128                                                                          │

│ 128                                                                          │

│ 128                                                                          │

│ 1                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## readAllTextRetryAsync                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline readAllTextRetryAsync fullPath =

    let rec loop retry = async {

        try

            if retry > 0

            then do!

                fullPath

                |> waitForFileAccess (Some (

                    System.IO.FileAccess.Read,

                    System.IO.FileShare.Read

                ))

                |> Async.runWithTimeoutAsync 1000

                |> Async.Ignore

            return! fullPath |> readAllTextAsync |> Async.map Some

        with ex ->

            let getLocals () = $"retry: {retry} / ex: {ex |> printException} / 

{getLocals ()}"

            trace Debug (fun () -> $"watchWithFilter / readContent") getLocals

            if retry = 0

            then return! loop (retry + 1)

            else return None

    }

    loop 0



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## deleteDirectoryAsync                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline deleteDirectoryAsync path =

    let rec loop retry = async {

        try

            System.IO.Directory.Delete (path, true)

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () = $"path: {path} / ex: {ex |> printException} /

{getLocals ()}"

                trace Debug (fun () -> "deleteDirectoryAsync") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test"



let inline lockDirectory () = async {

    trace Debug (fun () -> "_1") getLocals

    System.IO.File.WriteAllText (path </> "test.txt", "0")

    use _ = new System.IO.FileStream (

        path </> "test.txt",

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    Directory.CreateDirectory path |> ignore

    trace Debug (fun () -> "2") getLocals

    let! child = lockDirectory () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 60

    trace Debug (fun () -> "4") getLocals

    let! retries = deleteDirectoryAsync path

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries

}

|> Async.runWithTimeout 3000

|> function

    | Some retries ->

        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 0)

            (if Runtime.isWindows () then 150 else 0)



        true

    | _ -> false

|> _equal true



╭─[ 2.77s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:04 #18 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2300-0041-0982e │

│ 80ca87a / result: { CreationTime = 2023-10-21 1:57:23 AM                     │

│   Exists = true }                                                            │

│ 00:00:04 #19 [Debug] 1                                                       │

│ 00:00:04 #20 [Debug] 2                                                       │

│ 00:00:04 #21 [Debug] 3                                                       │

│ 00:00:04 #22 [Debug] _1                                                      │

│ 00:00:04 #23 [Debug] _2                                                      │

│ 00:00:04 #24 [Debug] 4                                                       │

│ 00:00:04 #25 [Debug] deleteDirectoryAsync / path:                            │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2300-0041-0982e │

│ 80ca87a\test / ex: System.IO.IOException: The process cannot access the file │

│ 'test.txt' because it is being used by another process.                      │

│ 00:00:05 #26 [Debug] deleteDirectoryAsync / path:                            │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2300-0041-0982e │

│ 80ca87a\test / ex: System.IO.IOException: The process cannot access the file │

│ 'test.txt' because it is being used by another process.                      │

│ 00:00:06 #27 [Debug] _3                                                      │

│ 00:00:06 #28 [Debug] 5                                                       │

│ 00:00:06 #29 [Debug] 6                                                       │

│ 125                                                                          │

│ 125                                                                          │

│ 125                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## deleteFileAsync                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline deleteFileAsync path =

    let rec loop retry = async {

        try

            System.IO.File.Delete path

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () = $"path: {path} / ex: {ex |> printException} /

{getLocals ()}"

                trace Warning (fun () -> "deleteFileAsync") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test.txt"



let inline lockFile () = async {

    trace Debug (fun () -> "_1") getLocals

    use _ = new System.IO.FileStream (

        path,

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    do! "0" |> writeAllTextAsync path

    trace Debug (fun () -> "2") getLocals

    let! child = lockFile () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "4") getLocals

    let! retries = deleteFileAsync path

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries

}

|> Async.runWithTimeout 3000

|> function

    | Some retries ->

        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 0)

            (if Runtime.isWindows () then 150 else 0)



        true

    | _ -> false

|> _equal true



╭─[ 2.49s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:06 #30 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2561-6123-6392e │

│ 831b6e7 / result: { CreationTime = 2023-10-21 1:57:25 AM                     │

│   Exists = true }                                                            │

│ 00:00:06 #31 [Debug] 1                                                       │

│ 00:00:06 #32 [Debug] 2                                                       │

│ 00:00:06 #33 [Debug] 3                                                       │

│ 00:00:06 #34 [Debug] _1                                                      │

│ 00:00:06 #35 [Debug] _2                                                      │

│ 00:00:06 #36 [Debug] 4                                                       │

│ 00:00:06 #37 [Warning] deleteFileAsync / path:                               │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2561-6123-6392e │

│ 831b6e7\test.txt / ex: System.IO.IOException: The process cannot access the  │

│ file                                                                         │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2561-6123-6392 │

│ e831b6e7\test.txt' because it is being used by another process.              │

│ 00:00:08 #38 [Warning] deleteFileAsync / path:                               │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2561-6123-6392e │

│ 831b6e7\test.txt / ex: System.IO.IOException: The process cannot access the  │

│ file                                                                         │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2561-6123-6392 │

│ e831b6e7\test.txt' because it is being used by another process.              │

│ 00:00:08 #39 [Debug] _3                                                      │

│ 00:00:08 #40 [Debug] 5                                                       │

│ 00:00:08 #41 [Debug] 6                                                       │

│ 128                                                                          │

│ 128                                                                          │

│ 128                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## moveFileAsync                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline moveFileAsync newPath oldPath =

    let rec loop retry = async {

        try

            System.IO.File.Move (oldPath, newPath)

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () =

                    $"oldPath: {oldPath} / newPath: {newPath} / ex: {ex |> 

printException} / {getLocals ()}"

                trace Warning (fun () -> "moveFileAsync") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test.txt"

let newPath = tempFolder </> "test2.txt"



let inline lockFile () = async {

    trace Debug (fun () -> "_1") getLocals

    use _ = new System.IO.FileStream (

        path,

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    do! "0" |> writeAllTextAsync path

    trace Debug (fun () -> "2") getLocals

    let! child = lockFile () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "4") getLocals

    let! retries1 = path |> moveFileAsync newPath

    trace Debug (fun () -> "5") getLocals

    let! retries2 = newPath |> waitForFileAccess None

    trace Debug (fun () -> "6") getLocals

    let! text = newPath |> readAllTextAsync

    trace Debug (fun () -> "7") getLocals

    do! child

    trace Debug (fun () -> "8") getLocals

    return retries1, retries2, text

}

|> Async.runWithTimeout 3000

|> function

    | Some (retries1, retries2, text) ->

        retries1

        |> _isBetween

            (if Runtime.isWindows () then 100 else 0)

            (if Runtime.isWindows () then 150 else 0)



        retries2

        |> _isBetween

            (if Runtime.isWindows () then 0 else 100)

            (if Runtime.isWindows () then 0 else 200)

        

        text |> _equal "0"

        

        true

    | _ -> false

|> _equal true



╭─[ 2.72s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:09 #42 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2842-4222-4a263 │

│ 26be192 / result: { CreationTime = 2023-10-21 1:57:28 AM                     │

│   Exists = true }                                                            │

│ 00:00:09 #43 [Debug] 1                                                       │

│ 00:00:09 #44 [Debug] 2                                                       │

│ 00:00:09 #45 [Debug] 3                                                       │

│ 00:00:09 #46 [Debug] _1                                                      │

│ 00:00:09 #47 [Debug] _2                                                      │

│ 00:00:09 #48 [Debug] 4                                                       │

│ 00:00:09 #49 [Warning] moveFileAsync / oldPath:                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2842-4222-4a263 │

│ 26be192\test.txt / newPath:                                                  │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2842-4222-4a263 │

│ 26be192\test2.txt / ex: System.IO.IOException: The process cannot access the │

│ file because it is being used by another process.                            │

│ 00:00:11 #50 [Warning] moveFileAsync / oldPath:                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2842-4222-4a263 │

│ 26be192\test.txt / newPath:                                                  │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-2842-4222-4a263 │

│ 26be192\test2.txt / ex: System.IO.IOException: The process cannot access the │

│ file because it is being used by another process.                            │

│ 00:00:11 #51 [Debug] _3                                                      │

│ 00:00:11 #52 [Debug] 5                                                       │

│ 00:00:11 #53 [Debug] 6                                                       │

│ 00:00:11 #54 [Debug] 7                                                       │

│ 00:00:11 #55 [Debug] 8                                                       │

│ 127                                                                          │

│ 127                                                                          │

│ 127                                                                          │

│ 0                                                                            │

│ 0                                                                            │

│ 0                                                                            │

│ 0                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## watchDirectory                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type FileSystemChangeType =

    | Failure

    | Changed

    | Created

    | Deleted

    | Renamed



[[<RequireQualifiedAccess>]]

type FileSystemChange =

    | Failure of exn: exn

    | Changed of path: string * content: string option

    | Created of path: string * content: string option

    | Deleted of path: string

    | Renamed of oldPath: string * (string * string option)





let inline watchDirectoryWithFilter filter shouldReadContent path =

    let fullPath = path |> System.IO.Path.GetFullPath

    let getLocals () = $"fullPath: {fullPath} / filter: {filter} / {getLocals 

()}"



    let watcher =

        new System.IO.FileSystemWatcher (

            Path = fullPath,

            NotifyFilter = filter,

            EnableRaisingEvents = true,

            IncludeSubdirectories = true

        )



    let inline getEventPath (path : string) =

        path |> String.trim |> String.replace fullPath "" |> String.trimStart 

[[| '/'; '\\' |]]



    let inline ticks () =

        System.DateTime.UtcNow.Ticks



    let changedStream =

        AsyncSeq.subscribeEvent

            watcher.Changed

            (fun event ->

                ticks (),

                [[ FileSystemChange.Changed (getEventPath event.FullPath, None) 

]]

            )



    let deletedStream =

        AsyncSeq.subscribeEvent

            watcher.Deleted

            (fun event ->

                ticks (),

                [[ FileSystemChange.Deleted (getEventPath event.FullPath) ]]

            )



    let createdStream =

        AsyncSeq.subscribeEvent

            watcher.Created

            (fun event ->

                let path = getEventPath event.FullPath

                ticks (), [[

                    FileSystemChange.Created (path, None)

                    if Runtime.isWindows () then

                        FileSystemChange.Changed (path, None)

                ]])



    let renamedStream =

        AsyncSeq.subscribeEvent

            watcher.Renamed

            (fun event ->

                ticks (), [[

                    FileSystemChange.Renamed (

                        getEventPath event.OldFullPath,

                        (getEventPath event.FullPath, None)

                    )

                ]]

            )



    let failureStream =

        AsyncSeq.subscribeEvent

            watcher.Error

            (fun event -> ticks (), [[ FileSystemChange.Failure 

(event.GetException ()) ]])



    let stream =

        [[

            changedStream

            deletedStream

            createdStream

            renamedStream

            failureStream

        ]]

        |> FSharp.Control.AsyncSeq.mergeAll

        |> FSharp.Control.AsyncSeq.map (fun (t, events) ->

            events

            |> List.fold

                (fun (i, events) event ->

                    i + 1L,

                    (t + i, event) :: events)

                (0L, [[]])

            |> snd

            |> List.rev

        )

        |> FSharp.Control.AsyncSeq.concatSeq

        |> FSharp.Control.AsyncSeq.mapAsyncParallel (fun (t, event) -> async {

            match shouldReadContent event, event with

            | true, FileSystemChange.Changed (path, _) ->

                do! Async.Sleep 5

                let! content = fullPath </> path |> readAllTextRetryAsync

                return t, FileSystemChange.Changed (path, content)

            | true, FileSystemChange.Created (path, _) ->

                do! Async.Sleep 5

                let! content = fullPath </> path |> readAllTextRetryAsync

                return t, FileSystemChange.Created (path, content)

            | true, FileSystemChange.Renamed (oldPath, (newPath, _)) ->

                let! content = fullPath </> newPath |> readAllTextRetryAsync

                return t, FileSystemChange.Renamed (oldPath, (newPath, content))

            | _ -> return t, event

        })



    let disposable =

        newDisposable (fun () ->

            trace Debug (fun () -> "watchWithFilter / Disposing watch stream") 

getLocals

            watcher.EnableRaisingEvents <- false

            watcher.Dispose ()

        )



    stream, disposable



let inline watchDirectory path =

    watchDirectoryWithFilter

        (System.IO.NotifyFilters.FileName

        // ||| System.IO.NotifyFilters.DirectoryName

        // ||| System.IO.NotifyFilters.Attributes

        //// ||| System.IO.NotifyFilters.Size

        ||| System.IO.NotifyFilters.LastWrite

        //// ||| System.IO.NotifyFilters.LastAccess

        // ||| System.IO.NotifyFilters.CreationTime

        // ||| System.IO.NotifyFilters.Security

        )

        path



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### testEventsRaw (test)                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline testEventsRaw

    (watchFn : (_ -> bool) -> string -> FSharp.Control.AsyncSeq<int64 * 

FileSystemChange> * IDisposable)

    write

    =

    let tempDirectory = createTempDirectory ()

    let stream, disposable = watchFn (fun _ -> true) tempDirectory



    let events = System.Collections.Concurrent.ConcurrentBag ()



    let inline iter () =

        stream

        |> FSharp.Control.AsyncSeq.iterAsyncParallel (fun event -> async { 

events.Add event })



    let run = async {

        let! _ = iter () |> Async.StartChild

        do! Async.Sleep 250

        return! write tempDirectory

    }



    try

        run

        |> Async.runWithTimeout 60000

        |> _equal (Some ())

    finally

        disposable.Dispose ()

        deleteDirectoryAsync tempDirectory |> Async.Ignore |> 

Async.RunSynchronously



    let eventsLog =

        events

        |> Seq.toList

        |> List.sortBy fst

        |> List.fold

            (fun (prev, acc) (ticks, event) ->

                ticks, (ticks, (if prev = 0L then 0L else ticks - prev), event) 

:: acc

            )

            (0L, [[]])

        |> snd

        |> List.rev

        |> List.map (fun (diff, n, event) ->

            let text = $"{n} / {diff} / {event}"

            if text |> String.length <= 100

            then text

            else text |> String.substring 0 100 |> String.replace "\n" ""

        )

        |> String.concat "\n"

    let getLocals () = $"eventsLog: \n{eventsLog} / {getLocals ()}"

    trace Debug (fun () -> "testEventsRaw") getLocals



    events

    |> Seq.toList

    |> List.sortBy fst

    |> List.map snd

    |> List.fold

        (fun acc event ->

            match acc, event with

            | FileSystemChange.Changed (lastPath, Some lastContent) as lastEvent

:: acc,

                FileSystemChange.Changed (path, Some content)

                when lastPath = path && content |> String.startsWith lastContent

                ->

                event :: acc

            | _ -> event :: acc

        )

        [[]]

    |> List.rev



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### fast (test)                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"a{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    do! Async.Sleep 250



    for i = 1 to n do

        do! $"b{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    do! Async.Sleep 250



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    do! Async.Sleep 250



    for i = 1 to n do

        do! $"c{i}" |> writeAllTextAsync (path </> $"file_{i}.txt")



    do! Async.Sleep 250



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore



    do! Async.Sleep 250

}



let inline run () =

    let events = testEventsRaw watchDirectory write



    events

    |> _sequenceEqual [[

        FileSystemChange.Created ("file1.txt", Some "a1")

        FileSystemChange.Changed ("file1.txt", Some "a1")

        FileSystemChange.Created ("file2.txt", Some "a2")

        FileSystemChange.Changed ("file2.txt", Some "a2")



        FileSystemChange.Changed ("file1.txt", Some "b1")

        FileSystemChange.Changed ("file2.txt", Some "b2")



        FileSystemChange.Renamed ("file1.txt", ("file_1.txt", Some "b1"))

        FileSystemChange.Renamed ("file2.txt", ("file_2.txt", Some "b2"))



        FileSystemChange.Changed ("file_1.txt", Some "c1")

        FileSystemChange.Changed ("file_2.txt", Some "c2")



        FileSystemChange.Deleted "file_1.txt"

        FileSystemChange.Deleted "file_2.txt"

    ]]



run

|> retryFn 3

|> _equal (Some ())



╭─[ 8.94s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:22 #56 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-4135-3578-3a7c5 │

│ aca9c50 / result: { CreationTime = 2023-10-21 1:57:41 AM                     │

│   Exists = true }                                                            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:24 #57 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-4135-3578-3a7c5 │

│ aca9c50 / filter: FileName, LastWrite                                        │

│ 00:00:24 #58 [Debug] testEventsRaw / eventsLog:                              │

│ 0 / 638334646616610260 / Created ("file1.txt", Some "a1")                    │

│ 1 / 638334646616610261 / Changed ("file1.txt", Some "a1")                    │

│ 28730 / 638334646616638991 / Changed ("file1.txt", Some "a1")                │

│ 1395 / 638334646616640386 / Created ("file2.txt", Some "a2")                 │

│ 1 / 638334646616640387 / Changed ("file2.txt", Some "a2")                    │

│ 141 / 638334646616640528 / Changed ("file2.txt", Some "a2")                  │

│ 2643868 / 638334646619284396 / Changed ("file1.txt", Some "b1")              │

│ 2158 / 638334646619286554 / Changed ("file1.txt", Some "b1")                 │

│ 12909 / 638334646619299463 / Changed ("file2.txt", Some "b2")                │

│ 2409 / 638334646619301872 / Changed ("file2.txt", Some "b2")                 │

│ 2709314 / 638334646622011186 / Renamed ("file1.txt", ("file_1.txt", Some     │

│ "b1"))                                                                       │

│ 8008 / 638334646622019194 / Renamed ("file2.txt", ("file_2.txt", Some "b2")) │

│ 2635495 / 638334646624654689 / Changed ("file_1.txt", Some "c1")             │

│ 2958 / 638334646624657647 / Changed ("file_1.txt", Some "c1")                │

│ 13023 / 638334646624670670 / Changed ("file_2.txt", Some "c2")               │

│ 2429 / 638334646624673099 / Changed ("file_2.txt", Some "c2")                │

│ 2693152 / 638334646627366251 / Deleted "file_1.txt"                          │

│ 3543 / 638334646627369794 / Deleted "file_2.txt"                             │

│ FSharpList<FileSystemChange>                                                 │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a1                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a1                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a2                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a2                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: b1                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: b2                                                          │

│       - oldPath: file1.txt                                                   │

│         Item2:         - file_1.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: b1                                                        │

│       - oldPath: file2.txt                                                   │

│         Item2:         - file_2.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: b2                                                        │

│       - path: file_1.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: c1                                                          │

│       - path: file_2.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: c2                                                          │

│       - path: file_1.txt                                                     │

│       - path: file_2.txt                                                     │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### slow (test)                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    let contents =

        [[ 1 .. n ]]

        |> List.map (string >> String.replicate 1_000_000)



    for i = 1 to n do

        do! $"{contents.[[i - 1]]}a" |> writeAllTextAsync (path </> 

$"file{i}.txt")



    do! Async.Sleep 1500



    for i = 1 to n do

        do! $"{contents.[[i - 1]]}b" |> writeAllTextAsync (path </> 

$"file{i}.txt")



    do! Async.Sleep 1500



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    do! Async.Sleep 1500



    for i = 1 to n do

        do! $"{contents.[[i - 1]]}c" |> writeAllTextAsync (path </> 

$"file_{i}.txt")



    do! Async.Sleep 1500



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore



    do! Async.Sleep 1500

}



let inline run () =

    let events =

        testEventsRaw watchDirectory write

        |> List.map (function

            | FileSystemChange.Changed (path, Some content) ->

                FileSystemChange.Changed (path, content |> Seq.distinct |> 

Seq.map string |> String.concat "" |> Some)

            | FileSystemChange.Created (path, Some content) ->

                FileSystemChange.Created (path, content |> Seq.distinct |> 

Seq.map string |> String.concat "" |> Some)

            | FileSystemChange.Renamed (oldPath, (newPath, Some content)) ->

                FileSystemChange.Renamed (

                    oldPath,

                    (newPath, content |> Seq.distinct |> Seq.map string |> 

String.concat "" |> Some)

                )

            | event -> event

        )



    events

    |> _sequenceEqual [[

        FileSystemChange.Created ("file1.txt", Some "1a")

        FileSystemChange.Changed ("file1.txt", Some "1a")

        FileSystemChange.Created ("file2.txt", Some "2a")

        FileSystemChange.Changed ("file2.txt", Some "2a")



        FileSystemChange.Changed ("file1.txt", Some "1b")

        FileSystemChange.Changed ("file2.txt", Some "2b")



        FileSystemChange.Renamed ("file1.txt", ("file_1.txt", Some "1b"))

        FileSystemChange.Renamed ("file2.txt", ("file_2.txt", Some "2b"))



        FileSystemChange.Changed ("file_1.txt", Some "1c")

        FileSystemChange.Changed ("file_2.txt", Some "2c")



        FileSystemChange.Deleted "file_1.txt"

        FileSystemChange.Deleted "file_2.txt"

    ]]



run

|> retryFn 5

|> _equal (Some ())



╭─[ 16.69s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:32 #59 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-5140-4004-4b51d │

│ 521154e / result: { CreationTime = 2023-10-21 1:57:51 AM                     │

│   Exists = true }                                                            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:40 #60 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0157-5140-4004-4b51d │

│ 521154e / filter: FileName, LastWrite                                        │

│ 00:00:40 #61 [Debug] testEventsRaw / eventsLog:                              │

│ 0 / 638334646717114108 / Created  ("file1.txt",   Some                       │

│ "1111111111111111111111111111111111111                                       │

│ 1 / 638334646717114109 / Changed  ("file1.txt",   Some                       │

│ "1111111111111111111111111111111111111                                       │

│ 96247 / 638334646717210356 / Changed  ("file1.txt",   Some                   │

│ "111111111111111111111111111111111                                           │

│ 50444 / 638334646717260800 / Created  ("file2.txt",   Some                   │

│ "222222222222222222222222222222222                                           │

│ 1 / 638334646717260801 / Changed  ("file2.txt",   Some                       │

│ "2222222222222222222222222222222222222                                       │

│ 127104 / 638334646717387905 / Changed  ("file2.txt",   Some                  │

│ "22222222222222222222222222222222                                            │

│ 15060298 / 638334646732448203 / Changed  ("file1.txt",   Some                │

│ "111111111111111111111111111111                                              │

│ 66567 / 638334646732514770 / Changed  ("file1.txt",   Some                   │

│ "111111111111111111111111111111111                                           │

│ 21715 / 638334646732536485 / Changed  ("file2.txt",   Some                   │

│ "222222222222222222222222222222222                                           │

│ 75569 / 638334646732612054 / Changed  ("file2.txt",   Some                   │

│ "222222222222222222222222222222222                                           │

│ 15206907 / 638334646747818961 / Renamed  ("file1.txt",   ("file_1.txt",      │

│ Some      "1111111111                                                        │

│ 8495 / 638334646747827456 / Renamed  ("file2.txt",   ("file_2.txt",    Some  │

│ "22222222222222                                                              │

│ 15170787 / 638334646762998243 / Changed  ("file_1.txt",   Some               │

│ "11111111111111111111111111111                                               │

│ 55040 / 638334646763053283 / Changed  ("file_1.txt",   Some                  │

│ "11111111111111111111111111111111                                            │

│ 40781 / 638334646763094064 / Changed  ("file_2.txt",   Some                  │

│ "22222222222222222222222222222222                                            │

│ 70360 / 638334646763164424 / Changed  ("file_2.txt",   Some                  │

│ "22222222222222222222222222222222                                            │

│ 15179211 / 638334646778343635 / Deleted "file_1.txt"                         │

│ 17028 / 638334646778360663 / Deleted "file_2.txt"                            │

│ FSharpList<FileSystemChange>                                                 │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 1a                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 1a                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 2a                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 2a                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 1b                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 2b                                                          │

│       - oldPath: file1.txt                                                   │

│         Item2:         - file_1.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: 1b                                                        │

│       - oldPath: file2.txt                                                   │

│         Item2:         - file_2.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: 2b                                                        │

│       - path: file_1.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: 1c                                                          │

│       - path: file_2.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: 2c                                                          │

│       - path: file_1.txt                                                     │

│       - path: file_2.txt                                                     │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### testEventsSorted (test)                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline sortEvent event =

    match event with

    | FileSystemChange.Failure _ -> 0

    | FileSystemChange.Created _ -> 1

    | FileSystemChange.Changed _ -> 2

    | FileSystemChange.Renamed (_oldPath, _) -> 3

    | FileSystemChange.Deleted _ -> 4



let inline formatEvents events =

    events

    |> Seq.toList

    |> List.sortBy (snd >> sortEvent)

    |> List.choose (fun (ticks, event) ->

        match event with

        | FileSystemChange.Failure _ ->

            None

        | FileSystemChange.Changed (path, _) ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Changed)

        | FileSystemChange.Created (path, _) ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Created)

        | FileSystemChange.Deleted path ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Deleted)

        | FileSystemChange.Renamed (_oldPath, (path, _)) ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Renamed)

    )

    |> List.sortBy (fun (_, path, _) -> path)

    |> List.distinctBy (fun (_, path, event) -> path, event)



let inline testEventsSorted

    (watchFn : string -> FSharp.Control.AsyncSeq<int64 * FileSystemChange> * 

IDisposable)

    write

    =

    let path = createTempDirectory ()

    let stream, disposable = watchFn path



    let events = System.Collections.Concurrent.ConcurrentBag ()



    let inline iter () =

        stream

        |> FSharp.Control.AsyncSeq.iterAsyncParallel (fun event -> async { 

events.Add event })



    let run = async {

        let! _ = iter () |> Async.StartChild

        do! Async.Sleep 250

        return! write path

    }



    try

        run

        |> Async.runWithTimeout 5000

        |> _equal (Some ())

    finally

        disposable.Dispose ()

        deleteDirectoryAsync path |> Async.Ignore |> Async.RunSynchronously



    let events = formatEvents events



    let eventMap =

        events

        |> List.map (fun (ticks, path, event) -> path, (event, ticks))

        |> List.groupBy fst

        |> List.map (fun (path, events) ->

            let event, _ticks =

                events

                |> List.map snd

                |> List.sortByDescending snd

                |> List.head



            path, event

        )

        |> Map.ofList



    let eventList =

        events

        |> List.map (fun (_ticks, path, event) -> path, event)



    eventMap, eventList



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### create and delete (test)                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 3



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file1.txt", nameof FileSystemChangeType.Deleted



        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Deleted



        "file3.txt", nameof FileSystemChangeType.Created

        "file3.txt", nameof FileSystemChangeType.Changed

        "file3.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Deleted

        "file2.txt", nameof FileSystemChangeType.Deleted

        "file3.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 5.23s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:46 #62 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-0530-3008-34934 │

│ 002015f / result: { CreationTime = 2023-10-21 1:58:05 AM                     │

│   Exists = true }                                                            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:46 #63 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-0530-3008-34934 │

│ 002015f / filter: FileName, LastWrite                                        │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file1.txt, Deleted )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file2.txt, Deleted )                                                       │

│ ( file3.txt, Created )                                                       │

│ ( file3.txt, Changed )                                                       │

│ ( file3.txt, Deleted )                                                       │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Deleted                                                       │

│       - Key: file2.txt                                                       │

│         Value: Deleted                                                       │

│       - Key: file3.txt                                                       │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### change (test)                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! "" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file1.txt", nameof FileSystemChangeType.Deleted



        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Deleted

        "file2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 7.20s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:53 #64 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-1255-5589-5fd9c │

│ 0af9f21 / result: { CreationTime = 2023-10-21 1:58:12 AM                     │

│   Exists = true }                                                            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:54 #65 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-1255-5589-5fd9c │

│ 0af9f21 / filter: FileName, LastWrite                                        │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file1.txt, Deleted )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file2.txt, Deleted )                                                       │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Deleted                                                       │

│       - Key: file2.txt                                                       │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### rename (test)                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed



        "file_1.txt", nameof FileSystemChangeType.Renamed

        "file_1.txt", nameof FileSystemChangeType.Deleted



        "file_2.txt", nameof FileSystemChangeType.Renamed

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Changed

        "file_1.txt", nameof FileSystemChangeType.Deleted

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 9.10s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:01:02 #66 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-2166-6637-6d3e1 │

│ 1052153 / result: { CreationTime = 2023-10-21 1:58:21 AM                     │

│   Exists = true }                                                            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:01:03 #67 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-2166-6637-6d3e1 │

│ 1052153 / filter: FileName, LastWrite                                        │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file_1.txt, Renamed )                                                      │

│ ( file_1.txt, Deleted )                                                      │

│ ( file_2.txt, Renamed )                                                      │

│ ( file_2.txt, Deleted )                                                      │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file2.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file_1.txt                                                      │

│         Value: Deleted                                                       │

│       - Key: file_2.txt                                                      │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### full (test)                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! "" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file_{i}.txt")



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed



        "file_1.txt", nameof FileSystemChangeType.Changed

        "file_1.txt", nameof FileSystemChangeType.Renamed

        "file_1.txt", nameof FileSystemChangeType.Deleted



        "file_2.txt", nameof FileSystemChangeType.Changed

        "file_2.txt", nameof FileSystemChangeType.Renamed

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Changed

        "file_1.txt", nameof FileSystemChangeType.Deleted

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 11.95s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:01:14 #68 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-3358-5802-56f85 │

│ 2cbf2bc / result: { CreationTime = 2023-10-21 1:58:33 AM                     │

│   Exists = true }                                                            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:01:15 #69 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0158-3358-5802-56f85 │

│ 2cbf2bc / filter: FileName, LastWrite                                        │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file_1.txt, Changed )                                                      │

│ ( file_1.txt, Renamed )                                                      │

│ ( file_1.txt, Deleted )                                                      │

│ ( file_2.txt, Changed )                                                      │

│ ( file_2.txt, Renamed )                                                      │

│ ( file_2.txt, Deleted )                                                      │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file2.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file_1.txt                                                      │

│         Value: Deleted                                                       │

│       - Key: file_2.txt                                                      │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook FileSystem.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 467658 bytes to FileSystem.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Networking (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/Runtime.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## testPortOpen                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline testPortOpen port = async {

    let! ct = Async.CancellationToken

    use client = new System.Net.Sockets.TcpClient ()

    try

        do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

        return true

    with ex ->

        trace Verbose (fun () -> $"testPortOpen / ex: {ex |> printException}") 

getLocals

        return false

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



testPortOpen 65536

|> Async.runWithTimeout 120

|> _equal (Some false)



╭─[ 291.02ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Verbose] testPortOpen / ex: System.ArgumentOutOfRangeException: │

│ Specified argument was out of the range of valid values. (Parameter 'port')  │

│ FSharpOption<Boolean>                                                        │

│       Value: False                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline testPortOpenTimeout timeout port = async {

    let! result =

        testPortOpen port

        |> Async.runWithTimeoutAsync timeout

    return

        match result with

        | None -> false

        | Some result -> result

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



testPortOpenTimeout 120 65535

|> Async.RunSynchronously

|> _equal false



╭─[ 325.71ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Debug] runWithTimeoutAsync / timeout: 120                       │

│ False                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## waitForPortAccess                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline waitForPortAccess timeout status port =

    let rec loop retry = async {

        let! isPortOpen =

            match timeout with

            | None -> testPortOpen port

            | Some timeout -> testPortOpenTimeout timeout port

        if isPortOpen = status

        then return retry

        else

            if retry % 100 = 0 then

                let getLocals () = $"port: {port} / retry: {retry} / {getLocals 

()}"

                trace Verbose (fun () -> "waitForPortAccess") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5000



let inline lockPort () = async {

    trace Debug (fun () -> "_1") getLocals

    do! Async.Sleep 5000

    use listener = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    trace Debug (fun () -> "_2") getLocals

    listener.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_4") getLocals

    listener.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPort () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "3") getLocals

    let! retries1 = waitForPortAccess None true port

    trace Debug (fun () -> "4") getLocals

    let! retries2 = waitForPortAccess None false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries1, retries2

}

|> Async.runWithTimeout 20000

|> function

    | Some (retries1, retries2) ->

        retries1

        |> _isBetween

            (if Runtime.isWindows () then 2 else 2)

            (if Runtime.isWindows () then 5 else 1500)



        retries2

        |> _isBetween

            (if Runtime.isWindows () then 80 else 80)

            (if Runtime.isWindows () then 150 else 600)



        true

    | _ -> false

|> _equal true



╭─[ 9.60s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:01 #3 [Debug] 1                                                        │

│ 00:00:01 #4 [Debug] _1                                                       │

│ 00:00:01 #5 [Debug] 2                                                        │

│ 00:00:01 #6 [Debug] 3                                                        │

│ 00:00:03 #7 [Verbose] testPortOpen / ex: System.AggregateException: One or   │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:03 #8 [Verbose] waitForPortAccess / port: 5000 / retry: 0              │

│ 00:00:05 #9 [Verbose] testPortOpen / ex: System.AggregateException: One or   │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:06 #10 [Debug] _2                                                      │

│ 00:00:06 #11 [Debug] _3                                                      │

│ 00:00:06 #12 [Debug] 4                                                       │

│ 00:00:06 #13 [Verbose] waitForPortAccess / port: 5000 / retry: 0             │

│ 00:00:08 #14 [Verbose] waitForPortAccess / port: 5000 / retry: 100           │

│ 00:00:08 #15 [Debug] _4                                                      │

│ 00:00:08 #16 [Debug] _5                                                      │

│ 00:00:10 #17 [Verbose] testPortOpen / ex: System.AggregateException: One or  │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:10 #18 [Debug] 5                                                       │

│ 00:00:10 #19 [Debug] 6                                                       │

│ 2                                                                            │

│ 2                                                                            │

│ 2                                                                            │

│ 119                                                                          │

│ 119                                                                          │

│ 119                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5000



let inline lockPort () = async {

    trace Debug (fun () -> "_1") getLocals

    do! Async.Sleep 500

    use listener = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    trace Debug (fun () -> "_2") getLocals

    listener.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 200

    trace Debug (fun () -> "_4") getLocals

    listener.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPort () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "3") getLocals

    let! retries1 = waitForPortAccess (Some 60) true port

    trace Debug (fun () -> "4") getLocals

    let! retries2 = waitForPortAccess (Some 60) false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries1, retries2

}

|> Async.runWithTimeout 2000

|> function

    | Some (retries1, retries2) ->

        retries1

        |> _isBetween

            (if Runtime.isWindows () then 4 else 2)

            (if Runtime.isWindows () then 15 else 150)



        retries2

        |> _isBetween

            (if Runtime.isWindows () then 5 else 0)

            (if Runtime.isWindows () then 20 else 60)



        true

    | _ -> false

|> _equal true



╭─[ 1.53s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:11 #20 [Debug] 1                                                       │

│ 00:00:11 #22 [Debug] _1                                                      │

│ 00:00:11 #22 [Debug] 2                                                       │

│ 00:00:11 #23 [Debug] 3                                                       │

│ 00:00:11 #24 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #25 [Verbose] waitForPortAccess / port: 5000 / retry: 0             │

│ 00:00:11 #26 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #27 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #28 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #29 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #30 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #31 [Debug] _2                                                      │

│ 00:00:11 #32 [Debug] _3                                                      │

│ 00:00:11 #33 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #34 [Debug] 4                                                       │

│ 00:00:11 #35 [Verbose] waitForPortAccess / port: 5000 / retry: 0             │

│ 00:00:11 #36 [Debug] _4                                                      │

│ 00:00:11 #37 [Debug] _5                                                      │

│ 00:00:11 #38 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #39 [Debug] 5                                                       │

│ 00:00:11 #40 [Debug] 6                                                       │

│ 7                                                                            │

│ 7                                                                            │

│ 7                                                                            │

│ 10                                                                           │

│ 10                                                                           │

│ 10                                                                           │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getAvailablePort                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getAvailablePort timeout initialPort =

    let rec loop port = async {

        let! isPortOpen =

            match timeout with

            | None -> testPortOpen port

            | Some timeout -> testPortOpenTimeout timeout port

        if not isPortOpen

        then return port

        else return! loop (port + 1)

    }

    loop initialPort



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5000



let inline lockPorts () = async {

    trace Debug (fun () -> "_1") getLocals

    use listener1 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    use listener2 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port + 1)

    trace Debug (fun () -> "_2") getLocals

    listener1.Start ()

    listener2.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 4000

    trace Debug (fun () -> "_4") getLocals

    listener1.Stop ()

    listener2.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPorts () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 240

    trace Debug (fun () -> "3") getLocals

    let! availablePort = getAvailablePort None port

    trace Debug (fun () -> "4") getLocals

    let! retries = waitForPortAccess None false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return availablePort, retries

}

|> Async.runWithTimeout 15000

|> function

    | Some (availablePort, retries) ->

        availablePort |> _equal (port + 2)



        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 100)

            (if Runtime.isWindows () then 150 else 1200)



        true

    | _ -> false

|> _equal true



╭─[ 6.54s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:12 #41 [Debug] 1                                                       │

│ 00:00:12 #42 [Debug] 2                                                       │

│ 00:00:12 #43 [Debug] _1                                                      │

│ 00:00:12 #44 [Debug] _2                                                      │

│ 00:00:12 #45 [Debug] _3                                                      │

│ 00:00:12 #46 [Debug] 3                                                       │

│ 00:00:14 #47 [Verbose] testPortOpen / ex: System.AggregateException: One or  │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:14 #48 [Debug] 4                                                       │

│ 00:00:14 #49 [Verbose] waitForPortAccess / port: 5000 / retry: 0             │

│ 00:00:16 #50 [Verbose] waitForPortAccess / port: 5000 / retry: 100           │

│ 00:00:16 #51 [Debug] _4                                                      │

│ 00:00:16 #52 [Debug] _5                                                      │

│ 00:00:18 #53 [Verbose] testPortOpen / ex: System.AggregateException: One or  │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:18 #54 [Debug] 5                                                       │

│ 00:00:18 #55 [Debug] 6                                                       │

│ 5002                                                                         │

│ 113                                                                          │

│ 113                                                                          │

│ 113                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5000



let inline lockPorts () = async {

    trace Debug (fun () -> "_1") getLocals

    use listener1 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    use listener2 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port + 1)

    trace Debug (fun () -> "_2") getLocals

    listener1.Start ()

    listener2.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 400

    trace Debug (fun () -> "_4") getLocals

    listener1.Stop ()

    listener2.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPorts () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 240

    trace Debug (fun () -> "3") getLocals

    let! availablePort = getAvailablePort (Some 60) port

    trace Debug (fun () -> "4") getLocals

    let! retries = waitForPortAccess (Some 60) false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return availablePort, retries

}

|> Async.runWithTimeout 1500

|> function

    | Some (availablePort, retries) ->

        availablePort |> _equal (port + 2)



        retries

        |> _isBetween

            (if Runtime.isWindows () then 2 else 1)

            (if Runtime.isWindows () then 10 else 120)



        true

    | _ -> false

|> _equal true



╭─[ 1.07s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:19 #56 [Debug] 1                                                       │

│ 00:00:19 #58 [Debug] _1                                                      │

│ 00:00:19 #57 [Debug] 2                                                       │

│ 00:00:19 #59 [Debug] _2                                                      │

│ 00:00:19 #60 [Debug] _3                                                      │

│ 00:00:19 #61 [Debug] 3                                                       │

│ 00:00:19 #62 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:19 #63 [Debug] 4                                                       │

│ 00:00:19 #64 [Verbose] waitForPortAccess / port: 5000 / retry: 0             │

│ 00:00:19 #65 [Debug] _4                                                      │

│ 00:00:19 #66 [Debug] _5                                                      │

│ 00:00:19 #67 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:19 #68 [Debug] 5                                                       │

│ 00:00:19 #69 [Debug] 6                                                       │

│ 5002                                                                         │

│ 5                                                                            │

│ 5                                                                            │

│ 5                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Networking.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 324049 bytes to Networking.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Runtime (Polyglot)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Runtime.fs

#!import ../nbs/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        let getLocals () =

            $"tempFolder:...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



open FileSystem.Operators



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## isWindows                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let isWindows =

    fun () ->

        System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

            System.Runtime.InteropServices.OSPlatform.Windows

    |> memoize



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



isWindows ()



╭─[ 81.68ms - return value ]───────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>True</pre></div><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getExecutableSuffix                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getExecutableSuffix () =

    if isWindows ()

    then ".exe"

    else ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getExecutableSuffix ()



╭─[ 13.07ms - return value ]───────────────────────────────────────────────────╮

│ .exe                                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## splitCommand                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type private CommandParseStep =

    | Start

    | Path of quoted: bool

    | Arguments



let splitCommand (command: string) =

    let rec loop (path, args) chars step =

        match chars, step with

        | ('"' | '\'') :: tail, _ when path = "" -> loop (path, args) tail (Path

true)

        | ('"' | '\'') :: tail, Path true -> loop (path, args) tail (Path false)

        | ' ' :: tail, Path true -> loop ($"{path} ", args) tail (Path true)

        | ' ' :: tail, (Start | Path _) -> loop (path, args) tail Arguments

        | char :: tail, Arguments -> loop (path, $"{args}{char}") tail Arguments

        | char :: tail, _ -> loop ($"{path}{char}", args) tail step

        | _, _ -> path |> String.replace @"\" "/", args

    loop ("", "") (command |> Seq.toList) Start



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



splitCommand ""

|> _equal ("", "")



splitCommand "/a/b/c"

|> _equal ("/a/b/c", "")



splitCommand "cat file.txt"

|> _equal ("cat", "file.txt")



splitCommand """..\..\file.exe file1.txt file2.txt"""

|> _equal ("../../file.exe", "file1.txt file2.txt")



splitCommand @"c:\dir\file.exe ""file1.txt file2.txt"""

|> _equal ("c:/dir/file.exe", @"""file1.txt file2.txt""")



splitCommand @"""..\..\dir name\file.exe"" ""file 1.txt"" file2.txt"

|> _equal ("../../dir name/file.exe", @"""file 1.txt"" file2.txt")



splitCommand @"""..\..\file 1.exe"" -c \\""echo 1\\"""

|> _equal ("../../file 1.exe", @"-c \\""echo 1\\""")



splitCommand @"..\..\file 1.exe -c \\""echo 1\\"""

|> _equal ("../../file", @"1.exe -c \\""echo 1\\""")



╭─[ 87.03ms - stdout ]─────────────────────────────────────────────────────────╮

│ ( ,  )                                                                       │

│ ( /a/b/c,  )                                                                 │

│ ( cat, file.txt )                                                            │

│ ( ../../file.exe, file1.txt file2.txt )                                      │

│ ( c:/dir/file.exe, "file1.txt file2.txt" )                                   │

│ ( ../../dir name/file.exe, "file 1.txt" file2.txt )                          │

│ ( ../../file 1.exe, -c \\"echo 1\\" )                                        │

│ ( ../../file, 1.exe -c \\"echo 1\\" )                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## executeAsync                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type ExecutionLine =

    {

        ProcessId : int

        Line : string

        Error : bool

    }



type ExecutionOptions =

    {

        Command : string

        WorkingDirectory : string option

        CancellationToken : System.Threading.CancellationToken option

        OnLine : (ExecutionLine -> Async<unit>) option

    }



let inline executeWithOptionsAsync (options : ExecutionOptions) = async {

    let fileName, arguments = options.Command |> splitCommand

    let workingDirectory = options.WorkingDirectory |> Option.defaultValue ""



    trace Debug (fun () -> $"executeAsync / options: {options}") getLocals



    let startInfo = System.Diagnostics.ProcessStartInfo (

        Arguments = arguments,

        CreateNoWindow = true,

        FileName = fileName,

        RedirectStandardError = true,

        RedirectStandardOutput = true,

        StandardOutputEncoding = System.Text.Encoding.UTF8,

        UseShellExecute = false,

        WorkingDirectory = workingDirectory

    )



    use proc = new System.Diagnostics.Process (StartInfo = startInfo)

    let output = System.Collections.Concurrent.ConcurrentStack<string> ()



    let inline event error (e: System.Diagnostics.DataReceivedEventArgs) = async

{

        if e.Data <> null then

            match options.OnLine with

            | Some onLine ->

                do!

                    onLine

                        {

                            ProcessId = proc.Id

                            Line = e.Data

                            Error = error

                        }

            | None -> ()



            trace

                Debug

                (fun () -> $"> {e.Data}")

                Common.getLocals



            output.Push

                $"{

                    if error then '[['.ToString() else System.String.Empty

                }{

                    e.Data

                }{

                    if error then ']]'.ToString() else System.String.Empty

                }"

    }



    proc.OutputDataReceived.Add (event false >> Async.StartImmediate)

    proc.ErrorDataReceived.Add (event true >> Async.StartImmediate)



    if proc.Start () |> not

    then failwith $"executeAsync / proc.Start () error"



    proc.BeginErrorReadLine ()

    proc.BeginOutputReadLine ()



    let! ct =

        options.CancellationToken

        |> Option.defaultValue System.Threading.CancellationToken.None

        |> Async.mergeCancellationTokenWithDefaultAsync



    use reg = ct.Register (fun _ ->

        if not proc.HasExited then proc.Kill ()

    )



    let! exitCode = async {

        try

            do! proc.WaitForExitAsync ct |> Async.AwaitTask

            return proc.ExitCode

        with :? System.Threading.Tasks.TaskCanceledException as ex ->

            trace Warning (fun () -> $"executeAsync / WaitForExitAsync / ex: {ex

|> printException}") getLocals

            ex |> printException |> output.Push

            return System.Int32.MinValue

    }



    let output = output |> Seq.rev |> String.concat "\n"



    trace Debug (fun () ->

        $"executeAsync / exitCode: {exitCode} / proc.Id: {proc.Id} / 

output.Length: {output.Length}"

    ) getLocals



    return exitCode, output

}



let inline executeAsync command =

    executeWithOptionsAsync

        {

            Command = command

            CancellationToken = None

            OnLine = None

            WorkingDirectory = None

        }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.createTempDirectory ()

let fileName = "test.txt"

let path = tempFolder </> fileName



async {

    let! exitCode, result = executeAsync @$"pwsh -c ""Get-Content {path}"""

    exitCode |> _equal 1

    result |> _stringContains "not exist"



    do! "0" |> FileSystem.writeAllTextAsync path



    return!

        executeWithOptionsAsync

            {

                Command = @$"pwsh -c ""Get-Content {fileName}"""

                CancellationToken = None

                OnLine = None

                WorkingDirectory = Some tempFolder

            }



}

|> Async.runWithTimeout 10000

|> function

    | Some (exitCode, output) ->

        exitCode |> _equal 0

        output |> _equal "0"



        true

    | _ -> false

|> _equal true



╭─[ 2.32s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] createTempDirectory / tempFolder:                        │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3679-7943-79a7c │

│ 8cc40c3 / result: { CreationTime = 2023-10-21 1:59:36 AM                     │

│   Exists = true }                                                            │

│ 00:00:00 #2 [Debug] executeAsync / options: { Command =                      │

│    "pwsh -c "Get-Content                                                     │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3679-7943-79a7c │

│ 8cc40c3\test.txt""                                                           │

│   WorkingDirectory = None                                                    │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:00 #3 [Debug] > Get-Content: Cannot find path                │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3679-7943-79a7 │

│ c8cc40c3\test.txt' because it does not exist.                              │

│ 00:00:01 #4 [Debug] executeAsync / exitCode: 1 / proc.Id: 49188 /            │

│ output.Length: 171                                                           │

│ 1                                                                            │

│ [Get-Content: Cannot find path                                     │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3679-7943-79a7 │

│ c8cc40c3\test.txt' because it does not exist.]                             │

│ 00:00:01 #5 [Debug] executeAsync / options: { Command = "pwsh -c             │

│ "Get-Content test.txt""                                                      │

│   WorkingDirectory =                                                         │

│    Some                                                                      │

│                                                                              │

│ "C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3679-7943-79a7 │

│ c8cc40c3"                                                                    │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:01 #6 [Debug] > 0                                                      │

│ 00:00:01 #7 [Debug] executeAsync / exitCode: 0 / proc.Id: 70272 /            │

│ output.Length: 1                                                             │

│ 0                                                                            │

│ 0                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.createTempDirectory ()

let path = tempFolder </> "test.txt"



let command = @$"pwsh -c ""Get-Content {path}"""



async {

    do! "0" |> FileSystem.writeAllTextAsync path

    let cts = new System.Threading.CancellationTokenSource ()

    trace Debug (fun () -> "1") getLocals

    let! result =

        executeWithOptionsAsync

            {

                Command = command

                CancellationToken = Some cts.Token

                OnLine = None

                WorkingDirectory = None

            }

        |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 100

    trace Debug (fun () -> "3") getLocals

    cts.Cancel ()

    trace Debug (fun () -> "4") getLocals

    let! exitCode, output = result

    trace Debug (fun () -> "5") getLocals

    return exitCode, output

}

|> Async.runWithTimeout 10000

|> function

    | Some (exitCode, output) ->

        exitCode |> _equal -2147483648

        output |> _equal "System.Threading.Tasks.TaskCanceledException: A task 

was canceled."



        true

    | _ -> false

|> _equal true



╭─[ 633.02ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:02 #8 [Debug] createTempDirectory / tempFolder:                        │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3896-9650-99327 │

│ 0550c12 / result: { CreationTime = 2023-10-21 1:59:38 AM                     │

│   Exists = true }                                                            │

│ 00:00:02 #9 [Debug] 1                                                        │

│ 00:00:02 #11 [Debug] 2                                                       │

│ 00:00:02 #10 [Debug] executeAsync / options: { Command =                     │

│    "pwsh -c "Get-Content                                                     │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0159-3896-9650-99327 │

│ 0550c12\test.txt""                                                           │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = None }                                                            │

│ 00:00:02 #12 [Debug] 3                                                       │

│ 00:00:02 #13 [Debug] 4                                                       │

│ 00:00:02 #14 [Warning] executeAsync / WaitForExitAsync / ex:                 │

│ System.Threading.Tasks.TaskCanceledException: A task was canceled.           │

│ 00:00:02 #15 [Debug] executeAsync / exitCode: -2147483648 / proc.Id: 69220 / │

│ output.Length: 66                                                            │

│ 00:00:02 #16 [Debug] 5                                                       │

│ -2147483648                                                                  │

│ System.Threading.Tasks.TaskCanceledException: A task was canceled.           │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## splitArgs                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline splitArgs commandLine =

    commandLine

    |> System.CommandLine.Parsing.CommandLineStringSplitter.Instance.Split



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""a b "c d" e"""

|> splitArgs

|> Seq.toArray

|> _equal [[| "a"; "b"; "c d"; "e" |]]



╭─[ 33.82ms - stdout ]─────────────────────────────────────────────────────────╮

│ [ a, b, c d, e ]                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parseArgs                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseArgs<'T when 'T :> Argu.IArgParserTemplate> args =

    let assemblyName = 

System.Reflection.Assembly.GetEntryAssembly().GetName().Name

    let errorHandler : Argu.IExiter =

        if [[ "Microsoft.DotNet.Interactive.App"; "dotnet-repl" ]] |> 

List.contains assemblyName

        then Argu.ExceptionExiter ()

        else Argu.ProcessExiter (function Argu.ErrorCode.HelpText -> None | _ ->

Some System.ConsoleColor.Red)



    let parser =

        Argu.ArgumentParser.Create<'T> (

            programName = $"{assemblyName}{getExecutableSuffix ()}",

            errorHandler = errorHandler

        )



    parser.ParseCommandLine args



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.ExactlyOnce; 

Argu.ArguAttributes.Last>]]

        Paths of paths : string list



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Paths _ -> nameof Paths



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fun () -> parseArgs<Arguments> [[||]] |> ignore

|> _throwsC (fun ex _ ->

    printException ex

    |> _stringContains "Argu.ArguParseException: ERROR: missing parameter 

'<paths>...'."

)



╭─[ 140.90ms - stdout ]────────────────────────────────────────────────────────╮

│ FSI_0029+it@3-246                                                            │

│ Argu.ArguParseException: ERROR: missing parameter '<paths>...'.              │

│ USAGE: dotnet-repl.exe [--help] <paths>...                                   │

│                                                                              │

│ PATHS:                                                                       │

│                                                                              │

│     <paths>...            Paths                                              │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --help                display this list of options.                      │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseAllArgs<'T when 'T :> Argu.IArgParserTemplate> args =

    args

    |> parseArgs<'T>

    |> fun results -> results.GetAllResults ()



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.ExactlyOnce; 

Argu.ArguAttributes.Last>]]

        Paths of paths : string list



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Paths _ -> nameof Paths



parseAllArgs<Arguments> [[| "a b"; "c" |]]

|> _equal [[ Arguments.Paths [[ "a b"; "c" ]] ]]



╭─[ 99.01ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpList<Arguments>                                                        │

│       - paths: [ a b, c ]                                                    │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseArgsMap<'T when 'T :> Argu.IArgParserTemplate> args =

    args

    |> parseAllArgs<'T>

    |> List.groupBy CommonFSharp.getUnionCaseName<'T>

    |> Map.ofList



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



parseArgsMap<Arguments> [[| "a b"; "c" |]]

|> _equal (

    [[ nameof Arguments.Paths, [[ Arguments.Paths [[ "a b"; "c" ]] ]] ]]

    |> Map.ofList

)



╭─[ 64.68ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpMap<String,FSharpList<Arguments>>                                      │

│       - Key: Paths                                                           │

│         Value: FSharpList<Arguments>                                         │

│           - paths: [ a b, c ]                                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Runtime.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 337723 bytes to Runtime.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Toml (Polyglot)                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/tomlyn/0.16.2/lib/net6.0/Tomlyn.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (/./) (table: Tomlyn.Model.TomlTable) (key: string) : 

Tomlyn.Model.TomlTable =

    table.[[key]] :?> Tomlyn.Model.TomlTable



let inline (/../) (table: Tomlyn.Model.TomlTable) (key: string) : 'T seq =

    table.[[key]] :?> Tomlyn.Model.TomlArray |> Seq.cast<'T>



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tomlContent =

    """

[[extension]]

paths = [["/a", "/b"]]

"""



let toml = Tomlyn.Toml.Parse tomlContent

let tomlModel = Tomlyn.Toml.ToModel toml



let paths : string seq = tomlModel /./ "extension" /../ "paths"



paths

|> Seq.toList

|> _equal [[ "/a"; "/b" ]]



╭─[ 119.63ms - stdout ]────────────────────────────────────────────────────────╮

│ [ /a, /b ]                                                                   │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Toml.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 276876 bytes to Toml.dib.html

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: Crypto.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: FileSystem.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: Common.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: Networking.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: Threading.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: CommonFSharp.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: Async.dib

01:59:56 #1 [Debug] writeDibCode / output: Fs / path: AsyncSeq.dib

01:59:56 #3 [Debug] parseDibCode / output: Fs / file: CommonFSharp.dib

01:59:56 #4 [Debug] parseDibCode / output: Fs / file: Crypto.dib

01:59:56 #2 [Debug] parseDibCode / output: Fs / file: Threading.dib

01:59:56 #5 [Debug] parseDibCode / output: Fs / file: Async.dib

01:59:56 #8 [Debug] parseDibCode / output: Fs / file: Common.dib

01:59:56 #7 [Debug] parseDibCode / output: Fs / file: AsyncSeq.dib

01:59:56 #9 [Debug] parseDibCode / output: Fs / file: Networking.dib

01:59:56 #6 [Debug] parseDibCode / output: Fs / file: FileSystem.dib

01:59:56 #10 [Debug] writeDibCode / output: Fs / path: Runtime.dib

01:59:56 #11 [Debug] parseDibCode / output: Fs / file: Runtime.dib

01:59:56 #12 [Debug] writeDibCode / output: Fs / path: Toml.dib

01:59:56 #13 [Debug] parseDibCode / output: Fs / file: Toml.dib

In [ ]:
{ . "$ScriptDir/../apps/plot/build.ps1" } | Invoke-Block
    Finished release [optimized] target(s) in 0.51s

In [ ]:
{ . "$ScriptDir/../apps/dir-tree-html/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # DirTreeHtml (Polyglot)                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/feliz.viewengine/0.24.0/lib/netstandard2.

0/Feliz.ViewEngine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Networking.fs

#!import ../nbs/Runtime.fs

#!import ../nbs/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Networking =



    open Common



    /// ## testPortOpen



    let inline testPortOpen port = async {

        let! ct = Async.CancellationToken

        use client = new System.Net.Sockets.TcpClient ()

        try

            do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

            return true

        with ex ->

            trace Verbose (fun () -> $"testPortOpen / ex: {ex |> 

printException}") getLocals

            return false

    }



    let inline testPortOpenTimeout timeout port = async {

        let! result =

            testPortOpen port

            |> Async.runWithTimeoutAsync timeout

        return

            match result with

            | None -> false

 ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        let getLocals () =

            $"tempFolder:...



── fsharp ──────────────────────────────────────────────────────────────────────

open FileSystem.Operators

open Feliz.ViewEngine



── fsharp ──────────────────────────────────────────────────────────────────────

type FileSystemNode =

    | File of string * string * int64

    | Folder of string * string * FileSystemNode list

    | Root of FileSystemNode list



let rec scanDirectory isRoot (basePath : string) (path : string) =

    let relativePath = path.Replace(basePath, "").Replace("\\", 

"/").Replace("//", "/").TrimStart '/'



    let directories =

        path

        |> System.IO.Directory.GetDirectories

        |> Array.toList

        |> List.sort

        |> List.map (scanDirectory false basePath)

    let files =

        path

        |> System.IO.Directory.GetFiles

        |> Array.toList

        |> List.sort

        |> List.map (fun f -> File (System.IO.Path.GetFileName f, relativePath, 

System.IO.FileInfo(f).Length))



    let children = directories @ files

    if isRoot

    then Root children

    else Folder (path |> System.IO.Path.GetFileName, relativePath, children)



let rec generateHtml fsNode =

    let sizeLabel size =

        match float size with

        | size when size > 1024.0 * 1024.0 -> $"%.2f{size / 1024.0 / 1024.0} MB"

        | size when size > 1024.0 -> $"%.2f{size / 1024.0} KB"

        | size -> $"%.2f{size} B"

    match fsNode with

    | File (fileName, relativePath, size) ->

        Html.div [[

            prop.children [[

                Html.rawText "&#128196; "

                Html.a [[

                    prop.href $"""{relativePath}{if relativePath = "" then "" 

else "/"}{fileName}"""

                    prop.text fileName

                ]]

                Html.span [[

                    prop.text $" ({size |> sizeLabel})"

                ]]

            ]]

        ]]

    | Folder (folderName, relativePath, children) ->

        let size =

            let rec loop children =

                children

                |> List.sumBy (function

                    | File (_, _, size) -> size

                    | Folder (_, _, children)

                    | Root children -> loop children

                )

            loop children

        Html.details [[

            prop.isOpen true

            prop.children [[

                Html.summary [[

                    prop.children [[

                        Html.rawText "&#128194; "

                        Html.a [[

                            prop.href relativePath

                            prop.text folderName

                        ]]

                        Html.span [[

                            prop.text $" ({size |> sizeLabel})"

                        ]]

                    ]]

                ]]

                Html.div [[

                    prop.children [[

                        yield! children |> List.map generateHtml

                    ]]

                ]]

            ]]

        ]]

    | Root children ->

        Html.div [[

            prop.children [[

                yield! children |> List.map generateHtml

            ]]

        ]]



let generateHtmlForFileSystem root =

    $"""<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <style>

a {{

  font-size: 15px;

}}

span {{

  font-size: 11px;

}}

div > div {{

  padding-left: 10px;

}}

details > div {{

  padding-left: 19px;

}}

  </style>

</head>

<body>

  {root |> generateHtml |> Render.htmlView}

</body>

</html>

"""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.createTempDirectory ()

let rec loop d n = async {

    if n >= 0 then

        tempFolder </> d |> System.IO.Directory.CreateDirectory |> ignore

        do!

            n

            |> string

            |> String.replicate (n + 1)

            |> FileSystem.writeAllTextAsync (tempFolder </> d </> $"file.txt")

        do! loop $"{d}/{n}" (n - 1)

}

loop "root" 3

|> Async.RunSynchronously



let html =

    scanDirectory true tempFolder tempFolder

    |> generateHtmlForFileSystem



html

|> _equal """<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <style>

a {

  font-size: 15px;

}

span {

  font-size: 11px;

}

div > div {

  padding-left: 10px;

}

details > div {

  padding-left: 19px;

}

  </style>

</head>

<body>

  <div><details open="true"><summary>&#128194; <a href="root">root</a><span> 

(10.00 B)</span></summary><div><details open="true"><summary>&#128194; <a 

href="root/3">3</a><span> (6.00 B)</span></summary><div><details 

open="true"><summary>&#128194; <a href="root/3/2">2</a><span> (3.00 

B)</span></summary><div><details open="true"><summary>&#128194; <a 

href="root/3/2/1">1</a><span> (1.00 B)</span></summary><div><div>&#128196; <a 

href="root/3/2/1/file.txt">file.txt</a><span> (1.00 

B)</span></div></div></details><div>&#128196; <a 

href="root/3/2/file.txt">file.txt</a><span> (2.00 

B)</span></div></div></details><div>&#128196; <a 

href="root/3/file.txt">file.txt</a><span> (3.00 

B)</span></div></div></details><div>&#128196; <a 

href="root/file.txt">file.txt</a><span> (4.00 

B)</span></div></div></details></div>

</body>

</html>

"""



html |> Microsoft.DotNet.Interactive.Formatting.Html.ToHtmlContent



╭─[ 205.71ms - return value ]──────────────────────────────────────────────────╮

│ <!DOCTYPE html>                                                              │

│ <html lang="en">                                                             │

│ <head>                                                                       │

│   <meta charset="UTF-8">                                                     │

│   <style>                                                                    │

│ a {                                                                          │

│   font-size: 15px;                                                           │

│ }                                                                            │

│ span {                                                                       │

│   font-size: 11px;                                                           │

│ }                                                                            │

│ div > div {                                                                  │

│   padding-left: 10px;                                                        │

│ }                                                                            │

│ details > div {                                                              │

│   padding-left: 19px;                                                        │

│ }                                                                            │

│   </style>                                                                   │

│ </head>                                                                      │

│ <body>                                                                       │

│   <div><details open="true"><summary>&#128194; <a href="root">root</a><span> │

│ (10.00 B)</span></summary><div><details open="true"><summary>&#128194; <a    │

│ href="root/3">3</a><span> (6.00 B)</span></summary><div><details             │

│ open="true"><summary>&#128194; <a href="root/3/2">2</a><span> (3.00          │

│ B)</span></summary><div><details open="true"><summary>&#128194; <a           │

│ href="root/3/2/1">1</a><span> (1.00 B)</span></summary><div><div>&#128196;   │

│ <a href="root/3/2/1/file.txt">file.txt</a><span> (1.00                       │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="root/3/2/file.txt">file.txt</a><span> (2.00                            │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="root/3/file.txt">file.txt</a><span> (3.00                              │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="root/file.txt">file.txt</a><span> (4.00                                │

│ B)</span></div></div></details></div>                                        │

│ </body>                                                                      │

│ </html>                                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 223.03ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] createTempDirectory / tempFolder:                        │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0200-1122-2262-217f2 │

│ 14a73eb / result: { CreationTime = 2023-10-21 2:00:11 AM                     │

│   Exists = true }                                                            │

│ <!DOCTYPE html>                                                              │

│ <html lang="en">                                                             │

│ <head>                                                                       │

│   <meta charset="UTF-8">                                                     │

│   <style>                                                                    │

│ a {                                                                          │

│   font-size: 15px;                                                           │

│ }                                                                            │

│ span {                                                                       │

│   font-size: 11px;                                                           │

│ }                                                                            │

│ div > div {                                                                  │

│   padding-left: 10px;                                                        │

│ }                                                                            │

│ details > div {                                                              │

│   padding-left: 19px;                                                        │

│ }                                                                            │

│   </style>                                                                   │

│ </head>                                                                      │

│ <body>                                                                       │

│   <div><details open="true"><summary>&#128194; <a href="root">root</a><span> │

│ (10.00 B)</span></summary><div><details open="true"><summary>&#128194; <a    │

│ href="root/3">3</a><span> (6.00 B)</span></summary><div><details             │

│ open="true"><summary>&#128194; <a href="root/3/2">2</a><span> (3.00          │

│ B)</span></summary><div><details open="true"><summary>&#128194; <a           │

│ href="root/3/2/1">1</a><span> (1.00 B)</span></summary><div><div>&#128196;   │

│ <a href="root/3/2/1/file.txt">file.txt</a><span> (1.00                       │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="root/3/2/file.txt">file.txt</a><span> (2.00                            │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="root/3/file.txt">file.txt</a><span> (3.00                              │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="root/file.txt">file.txt</a><span> (4.00                                │

│ B)</span></div></div></details></div>                                        │

│ </body>                                                                      │

│ </html>                                                                      │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.ExactlyOnce>]] Dir of string

    | [[<Argu.ArguAttributes.ExactlyOnce>]] Html of string



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Dir _ -> nameof Dir

            | Html _ -> nameof Html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let dir =

        match argsMap.[[nameof Arguments.Dir]] with

        | [[ Arguments.Dir dir ]] -> Some dir

        | _ -> None

        |> Option.get



    let htmlPath =

        match argsMap.[[nameof Arguments.Html]] with

        | [[ Arguments.Html html ]] -> Some html

        | _ -> None

        |> Option.get



    let fileSystem = scanDirectory true dir dir

    let html = generateHtmlForFileSystem fileSystem



    html |> FileSystem.writeAllTextAsync htmlPath

    |> Async.runWithTimeout 30000

    |> function

        | Some () -> 0

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 77.34ms - return value ]───────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook DirTreeHtml.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 306255 bytes to DirTreeHtml.dib.html

02:00:14 #1 [Debug] writeDibCode / output: Fs / path: DirTreeHtml.dib

02:00:14 #2 [Debug] parseDibCode / output: Fs / file: DirTreeHtml.dib

02:00:16 #1 [Debug] persistCodeProject / packages: [Argu; Feliz.ViewEngine; FSharp.Control.AsyncSeq; ... ] / modules: [nbs/Common.fs; nbs/CommonFSharp.fs; nbs/Async.fs; ... ] / path: C:\home\git\polyglot\apps\dir-tree-html / name: DirTreeHtml / code.Length: 4755

02:00:16 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\apps\dir-tree-html\target\DirTreeHtml.fsproj

02:00:16 #3 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r linux-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\dir-tree-html\target"

  CancellationToken = None

  OnLine = None }

02:00:17 #4 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

02:00:17 #5 [Debug] >   Determining projects to restore...

02:00:18 #6 [Debug] >   Restored C:\home\git\polyglot\apps\dir-tree-html\target\DirTreeHtml.fsproj (in 437 ms).

02:00:18 #7 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\dir-tree-html\target\DirTreeHtml.fsproj]

02:00:24 #8 [Debug] >   DirTreeHtml -> C:\home\git\polyglot\apps\dir-tree-html\target\bin\release\net8.0\linux-x64\DirTreeHtml.dll

02:00:26 #9 [Debug] >   DirTreeHtml -> C:\home\git\polyglot\apps\dir-tree-html\dist\

02:00:26 #10 [Debug] executeAsync / exitCode: 0 / proc.Id: 63868 / output.Length: 665

02:00:26 #11 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r win-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\dir-tree-html\target"

  CancellationToken = None

  OnLine = None }

02:00:26 #12 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

02:00:27 #13 [Debug] >   Determining projects to restore...

02:00:27 #14 [Debug] >   Restored C:\home\git\polyglot\apps\dir-tree-html\target\DirTreeHtml.fsproj (in 434 ms).

02:00:28 #15 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\dir-tree-html\target\DirTreeHtml.fsproj]

02:00:33 #16 [Debug] >   DirTreeHtml -> C:\home\git\polyglot\apps\dir-tree-html\target\bin\release\net8.0\win-x64\DirTreeHtml.dll

02:00:41 #17 [Debug] >   DirTreeHtml -> C:\home\git\polyglot\apps\dir-tree-html\dist\

02:00:41 #18 [Debug] executeAsync / exitCode: 0 / proc.Id: 55500 / output.Length: 663

In [ ]:
{ . "$ScriptDir/../apps/spiral/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Supervisor (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.http.connections.com

mon/7.0.0/lib/net7.0/Microsoft.AspNetCore.Http.Connections.Common.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.http.connections.cli

ent/7.0.0/lib/net7.0/Microsoft.AspNetCore.Http.Connections.Client.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.signalr.common/7.0.0

/lib/net7.0/Microsoft.AspNetCore.SignalR.Common.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.signalr.client/7.0.0

/lib/net7.0/Microsoft.AspNetCore.SignalR.Client.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.signalr.client.core/

7.0.0/lib/net7.0/Microsoft.AspNetCore.SignalR.Client.Core.dll"

#r 

@"../../../../../../../.nuget/packages/fsharp.json/0.4.1/lib/netstandard2.0/FSha

rp.Json.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../nbs/Common.fs

#!import ../nbs/CommonFSharp.fs

#!import ../nbs/Threading.fs

#!import ../nbs/Async.fs

#!import ../nbs/AsyncSeq.fs

#!import ../nbs/Networking.fs

#!import ../nbs/Runtime.fs

#!import ../nbs/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Threading =



    open Common



    /// ## newDisposableToken



    let inline newDisposableToken (mergeToken: 

System.Threading.CancellationToken option) =

        let cts = new System.Threading.CancellationTokenSource ()

        let cts =

            match mergeToken with

            | None -> cts

            | Some mergeToken ->

                System.Threading.CancellationTokenSource.CreateLinkedTokenSource

[[| cts.Token; mergeToken |]]

        let disposable = newDisposable cts.Cancel

        cts.Token, disposable





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Networking =



    open Common



    /// ## testPortOpen



    let inline testPortOpen port = async {

        let! ct = Async.CancellationToken

        use client = new System.Net.Sockets.TcpClient ()

        try

            do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

            return true

        with ex ->

            trace Verbose (fun () -> $"testPortOpen / ex: {ex |> 

printException}") getLocals

            return false

    }



    let inline testPortOpenTimeout timeout port = async {

        let! result =

            testPortOpen port

            |> Async.runWithTimeoutAsync timeout

        return

            match result with

            | None -> false

 ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        let getLocals () =

            $"tempFolder:...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FileSystem.Operators

open Microsoft.AspNetCore.SignalR.Client



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## sendJson                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sendJson (port : int) (json : string) = async {

    let! portOpen = Networking.testPortOpen port

    if portOpen then

        try

            let connection = 

HubConnectionBuilder().WithUrl($"http://127.0.0.1:{port}").Build()

            do! connection.StartAsync () |> Async.AwaitTask

            let! result = connection.InvokeAsync<string>("ClientToServerMsg", 

json) |> Async.AwaitTask

            do! connection.StopAsync () |> Async.AwaitTask

            trace Debug (fun () -> $"sendJson / port: {port} / json: {json} / 

result.Length: {result |> Option.ofObj |> Option.map String.length}") getLocals

            return Some result

        with ex ->

            trace Critical (fun () -> $"sendJson / port: {port} / json: {json} /

ex: {ex |> printException}") getLocals

            return None

    else

        trace Debug (fun () -> "sendJson / error: port not open") getLocals

        return None

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## sendObj                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sendObj port obj =

    obj

    |> System.Text.Json.JsonSerializer.Serialize

    |> sendJson port



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## awaitCompiler                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type VSCPos = {| line : int; character : int |}

type VSCRange = VSCPos * VSCPos

type RString = VSCRange * string

type TracedError = {| trace : string list; message : string |}

type ClientErrorsRes =

    | FatalError of string

    | TracedError of TracedError

    | PackageErrors of {| uri : string; errors : RString list |}

    | TokenizerErrors of {| uri : string; errors : RString list |}

    | ParserErrors of {| uri : string; errors : RString list |}

    | TypeErrors of {| uri : string; errors : RString list |}



── fsharp ──────────────────────────────────────────────────────────────────────

let inline awaitCompiler port cancellationToken = async {

    let! ct =

        cancellationToken

        |> Option.defaultValue System.Threading.CancellationToken.None

        |> Async.mergeCancellationTokenWithDefaultAsync

    

    let cts = new System.Threading.CancellationTokenSource ()



    let compiler = MailboxProcessor.Start (fun inbox -> async {

        let! availablePort = Networking.getAvailablePort (Some 60) port

        if availablePort <> port then

            inbox.Post port

        else

            let repositoryRoot = FileSystem.getSourceDirectory () |> 

FileSystem.findParent ".paket" false



            let compilerPath =

                repositoryRoot </> "deps/The-Spiral-Language/The Spiral Language

2/artifacts/bin/The Spiral Language 2/release"

                |> System.IO.Path.GetFullPath



            let dllPath = compilerPath </> "Spiral.dll"



            let! exitCode, result =

                Runtime.executeWithOptionsAsync

                    {

                        Command = $@"dotnet ""{dllPath}"" port={availablePort}"

                        CancellationToken = Some ct

                        WorkingDirectory = None

                        OnLine = Some <| fun { Line = line } -> async {

                            if line |> String.contains $"Server bound to: 

http://localhost:{availablePort}" then

                                do! Networking.waitForPortAccess (Some 500) true

availablePort |> Async.Ignore



                                let rec loop retry = async {

                                    let getLocals () = $"port: {availablePort} /

retry: {retry} / {getLocals ()}"

                                    try

                                        let pingObj = {| Ping = true |}

                                        let! pingResult = pingObj |> sendObj 

availablePort

                                        trace Verbose (fun () -> $"awaitCompiler

/ Ping / result: {pingResult}") getLocals

                                    with ex ->

                                        trace Verbose (fun () -> $"awaitCompiler

/ Ping / ex: {ex |> printException}") getLocals

                                        do! Async.Sleep 10

                                        do! loop (retry + 1)

                                }

                                do! loop 0

                                inbox.Post availablePort

                        }

                    }

            trace Debug (fun () -> $"awaitCompiler / exitCode: {exitCode} / 

result: {result}") getLocals

            cts.Cancel ()

    }, ct)



    let! serverPort = compiler.Receive ()



    let connection = 

HubConnectionBuilder().WithUrl($"http://127.0.0.1:{serverPort}").Build ()

    do! connection.StartAsync () |> Async.AwaitTask



    let event = Event<_> ()

    let disposable = connection.On<string> ("ServerToClientMsg", event.Trigger)

    let stream =

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun () -> async {

                let! msg = event.Publish |> Async.AwaitEvent

                return Some (msg |> 

FSharp.Json.Json.deserialize<ClientErrorsRes>, ())

            })

            ()



    let disposable =

        newDisposable (fun () ->

            disposable.Dispose ()

            connection.StopAsync () |> Async.AwaitTask |> Async.StartImmediate

        )



    return

        serverPort,

        stream,

        cts.Token,

        disposable

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getFileUri                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getFileUri path =

    $"file:///{path |> String.trimStart [[| '/' |]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getFilePathFromUri uri =

    match System.Uri.TryCreate (uri, System.UriKind.Absolute) with

    | true, uri -> uri.AbsolutePath |> System.IO.Path.GetFullPath

    | _ -> failwith "invalid uri"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getCompilerPort () =

    13805



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildFile                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildFile timeout port cancellationToken path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let fileDir = fullPath |> System.IO.Path.GetDirectoryName

    let fileName = fullPath |> System.IO.Path.GetFileNameWithoutExtension

    let! code = fullPath |> FileSystem.readAllTextAsync



    let eventFilter = function

        | FileSystem.FileSystemChange.Changed (path, _) when path = 

$"{fileName}.fsx" -> true

        | _ -> false



    let stream, disposable = fileDir |> FileSystem.watchDirectory eventFilter

    use _ = disposable



    let token, disposable = Threading.newDisposableToken cancellationToken

    use _ = disposable



    let! serverPort, errors, ct, disposable = awaitCompiler port (Some token)

    use _ = disposable



    let fsxContentSeq =

        stream

        |> FSharp.Control.AsyncSeq.choose (function

            | _, (FileSystem.FileSystemChange.Changed (path, Some content) as 

event)

                when event |> eventFilter

                ->

                Some content

            | _ -> None

        )

        |> FSharp.Control.AsyncSeq.map (fun content ->

            Some (content |> String.replace "\r\n" "\n"), None

        )



    let inline printErrorData (data : {| uri : string; errors : RString list |})

=

        let fileName = data.uri |> System.IO.Path.GetFileName

        let errors =

            data.errors

            |> List.map snd

            |> String.concat "\n"

        $"{fileName}:\n{errors}"



    let errorsSeq =

        errors

        |> FSharp.Control.AsyncSeq.choose (fun error ->

            match error with

            | FatalError message ->

                Some (message, error)

            | TracedError data ->

                Some (data.message, error)

            | PackageErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | TokenizerErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | ParserErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | TypeErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | _ -> None

        )

        |> FSharp.Control.AsyncSeq.map (fun (message, error) ->

            None, Some (message, error)

        )

    

    let timerSeq =

        1000

        |> FSharp.Control.AsyncSeq.intervalMs

        |> FSharp.Control.AsyncSeq.map (fun _ -> None, None)



    let outputSeq =

        [[ fsxContentSeq; errorsSeq; timerSeq ]]

        |> FSharp.Control.AsyncSeq.mergeAll



    let! outputChild =

        ((None, [[]], 0), outputSeq)

        ||> FSharp.Control.AsyncSeq.scan (

            fun (fsxContentResult, errors, typeErrorCount) (fsxContent, error) 

->

                match fsxContent, error with

                | Some fsxContent, None -> Some fsxContent, errors, 

typeErrorCount

                | None, Some (_, FatalError "File main has a type error 

somewhere in its path.") ->

                    fsxContentResult, errors, typeErrorCount + 1

                | None, Some error -> fsxContentResult, error :: errors, 

typeErrorCount

                | None, None when typeErrorCount >= 1 ->

                    fsxContentResult, errors, typeErrorCount + 1

                | _ -> fsxContentResult, errors, typeErrorCount

        )

        |> FSharp.Control.AsyncSeq.takeWhileInclusive (fun (fsxContent, errors, 

typeErrorCount) ->

            trace Debug (fun () -> $"buildFile / takeWhileInclusive / 

fsxContent: {fsxContent} / errors: {errors} / typeErrorCount: {typeErrorCount}")

getLocals

            match fsxContent, errors with

            | None, [[]] when typeErrorCount > 2 -> false

            | None, [[]] -> true

            | _ -> false

        )

        |> FSharp.Control.AsyncSeq.tryLast

        |> Async.withCancellationToken ct

        |> Async.catch

        |> Async.runWithTimeoutAsync timeout

        |> Async.StartChild



    let fileOpenObj = {| FileOpen = {| uri = fullPath |> getFileUri; spiText = 

code |} |}

    let! _fileOpenResult = fileOpenObj |> sendObj serverPort



    do! Async.Sleep 30



    let buildFileObj = {| BuildFile = {| uri = fullPath |> getFileUri; backend =

"Fsharp" |} |}

    let! _buildFileResult = buildFileObj |> sendObj serverPort



    return!

        outputChild

        |> Async.map (function

            | Some (Ok (Some (message, errors, _))) -> message, errors |> 

List.distinct |> List.rev

            | Some (Error ex) ->

                trace Critical (fun () -> $"buildFile / error: {ex |> 

printException}") getLocals

                None, [[]]

            | _ -> None, [[]]

        )

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## persistCode                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline persistCode code = async {

    let tempDir = FileSystem.createTempDirectory ()



    let mainPath = tempDir </> "main.spi"

    do! code |> FileSystem.writeAllTextAsync mainPath



    let repositoryRoot = FileSystem.getSourceDirectory () |> 

FileSystem.findParent ".paket" false



    let spiprojPath = tempDir </> "package.spiproj"

    let spiprojCode =

        $"""packageDir: {repositoryRoot </> "lib"}

packages:

    |core-

    spiral-

modules:

    main

"""

    do! spiprojCode |> FileSystem.writeAllTextAsync spiprojPath



    let disposable = newDisposable (fun () ->

        ()

        // tempDir |> FileSystem.deleteDirectoryAsync |> Async.Ignore |> 

Async.RunSynchronously

    )



    return mainPath, disposable

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildCode                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildCode timeout cancellationToken code = async {

    let! mainPath, disposable = persistCode code

    use _ = disposable

    let port = getCompilerPort ()

    return! mainPath |> buildFile timeout port cancellationToken

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let buildCode timeout cancellationToken code = buildCode timeout 

cancellationToken code



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl app () =

    console.write_line "text"

    1i32



inl main () =

    app

    |> dyn

    |> ignore

"""

|> buildCode 15000 None

|> Async.runWithTimeout 15000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        Some """let rec closure0 () () : int32 =

    let v0 : string = "text"

    System.Console.WriteLine v0

    1

let v0 : (unit -> int32) = closure0()

()

""",

        [[]]

    )

)



╭─[ 4.48s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] createTempDirectory / tempFolder:                        │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-0954-5478-58f8d │

│ 881eb95 / result: { CreationTime = 2023-10-21 2:01:09 AM                     │

│   Exists = true }                                                            │

│ 00:00:00 #2 [Debug] runWithTimeoutAsync / timeout: 60                        │

│ 00:00:00 #3 [Debug] executeAsync / options: { Command =                      │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:01 #4 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                  │

│ 00:00:01 #5 [Debug] > dll_path:                                              │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:01 #6 [Debug] runWithTimeoutAsync / timeout: 500                       │

│ 00:00:01 #7 [Verbose] waitForPortAccess / port: 13805 / retry: 0             │

│ 00:00:02 #8 [Debug] sendJson / port: 13805 / json: {"Ping":true} /           │

│ result.Length:                                                               │

│ 00:00:02 #9 [Verbose] awaitCompiler / Ping / result: Some(null) / port:      │

│ 13805 / retry: 0                                                             │

│ 00:00:02 #10 [Debug] > Server bound to: http://localhost:13805               │

│ 00:00:02 #11 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:02 #12 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:02 #13 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl app () =\n    console.write_line                 │

│ \u0022text\u0022\n    1i32\n\ninl main () =\n    app\n    |\u003E dyn\n      │

│ |\u003E                                                                      │

│ ignore\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-rep │

│ l\\20231021-0201-0954-5478-58f8d881eb95\\main.spi"}} / result.Length:        │

│ 00:00:02 #14 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-0954-5478-58f8d881eb95\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:03 #15 [Debug] > Building                                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-0954-5478-58f8d │

│ 881eb95\main.spi                                                             │

│ 00:00:03 #16 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:04 #17 [Debug] buildFile / takeWhileInclusive / fsxContent: Some(let   │

│ rec closure0 () () : int32 =                                                 │

│     let v0 : string = "text"                                                 │

│     System.Console.WriteLine v0                                              │

│     1                                                                        │

│ let v0 : (unit -> int32) = closure0()                                        │

│ ()                                                                           │

│ ) / errors: [] / typeErrorCount: 0                                           │

│ 00:00:04 #18 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-0954-5478-58f8d │

│ 881eb95 / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - FSharpOption<String>                                    │

│           Value: let rec closure0 () () : int32 =                            │

│     let v0 : string = "text"                                                 │

│     System.Console.WriteLine v0                                              │

│     1                                                                        │

│ let v0 : (unit -> int32) = closure0()                                        │

│ ()                                                                           │

│                                                                              │

│       - [  ]                                                                 │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> _equal None



╭─[ 10.27s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:04 #19 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-1405-0573-0debb │

│ 962b87e / result: { CreationTime = 2023-10-21 2:01:14 AM                     │

│   Exists = true }                                                            │

│ 00:00:04 #20 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:04 #21 [Debug] executeAsync / options: { Command =                     │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:04 #22 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                 │

│ 00:00:04 #23 [Debug] > dll_path:                                             │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:05 #24 [Debug] runWithTimeoutAsync / timeout: 500                      │

│ 00:00:05 #25 [Debug] sendJson / port: 13805 / json: {"Ping":true} /          │

│ result.Length:                                                               │

│ 00:00:05 #26 [Verbose] awaitCompiler / Ping / result: Some(null) / port:     │

│ 13805 / retry: 0                                                             │

│ 00:00:05 #27 [Debug] > Server bound to: http://localhost:13805               │

│ 00:00:05 #28 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:05 #29 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:05 #30 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\T │

│ emp\\!dotnet-repl\\20231021-0201-1405-0573-0debb962b87e\\main.spi"}} /       │

│ result.Length:                                                               │

│ 00:00:05 #31 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-1405-0573-0debb962b87e\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:05 #32 [Debug] > Building                                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-1405-0573-0debb │

│ 962b87e\main.spi                                                             │

│ 00:00:06 #33 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:06 #34 [Debug] > Cannot find `main` in file main.                      │

│ 00:00:06 #35 [Debug] > Build skipped for                                     │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-1405-0573-0debb │

│ 962b87e\main.spi                                                             │

│ 00:00:07 #36 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:08 #37 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:09 #38 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:10 #39 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:11 #40 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:12 #41 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:13 #42 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:14 #43 [Debug] runWithTimeoutAsync / timeout: 10000                    │

│ 00:00:14 #44 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-1405-0573-0debb │

│ 962b87e / filter: FileName, LastWrite                                        │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"inl app () =

    0i32



inl a = 1



inl main () =

    app

    |> dyn

    |> ignore

"

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "main.spi:

Global inl/let statements should all return functions known at parse time." ]]

    )

)



╭─[ 1.75s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:14 #46 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2436-3683-3a263 │

│ fef6e9f / result: { CreationTime = 2023-10-21 2:01:24 AM                     │

│   Exists = true }                                                            │

│ 00:00:14 #47 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:14 #48 [Debug] executeAsync / options: { Command =                     │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:15 #49 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                 │

│ 00:00:15 #50 [Debug] > dll_path:                                             │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:15 #52 [Debug] runWithTimeoutAsync / timeout: 500                      │

│ 00:00:15 #54 [Debug] sendJson / port: 13805 / json: {"Ping":true} /          │

│ result.Length:                                                               │

│ 00:00:15 #55 [Verbose] awaitCompiler / Ping / result: Some(null) / port:     │

│ 13805 / retry: 0                                                             │

│ 00:00:15 #56 [Debug] > Server bound to: http://localhost:13805               │

│ 00:00:15 #57 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:15 #58 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:15 #59 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl app () =\n    0i32\n\ninl a = 1\n\ninl main ()   │

│ =\n    app\n    |\u003E dyn\n    |\u003E                                     │

│ ignore\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-rep │

│ l\\20231021-0201-2436-3683-3a263fef6e9f\\main.spi"}} / result.Length:        │

│ 00:00:15 #60 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-2436-3683-3a263fef6e9f\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:16 #61 [Debug] > Building                                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2436-3683-3a263 │

│ fef6e9f\main.spi                                                             │

│ 00:00:16 #62 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(main.spi:                                                                  │

│ Global inl/let statements should all return functions known at parse time.,  │

│ ParserErrors                                                                 │

│   { errors =                                                                 │

│      [(({ character = 0                                                      │

│           line = 3 }, { character = 9                                        │

│                         line = 3 }),                                         │

│        "Global inl/let statements should all return functions known at parse │

│ time.")]                                                                     │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2436-3 │

│ 683-3a263fef6e9f\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:16 #63 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2436-3683-3a263 │

│ fef6e9f / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Global inl/let statements should all return functions known at parse time. ] │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () =

    1i32 / 0i32

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "An attempt to divide by zero has been detected at compile time." ]]

    )

)



╭─[ 2.53s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:16 #64 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2615-1513-183b0 │

│ ec27d49 / result: { CreationTime = 2023-10-21 2:01:26 AM                     │

│   Exists = true }                                                            │

│ 00:00:16 #65 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:16 #66 [Debug] executeAsync / options: { Command =                     │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:16 #68 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                 │

│ 00:00:16 #69 [Debug] > dll_path:                                             │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:17 #70 [Debug] runWithTimeoutAsync / timeout: 500                      │

│ 00:00:17 #71 [Debug] sendJson / port: 13805 / json: {"Ping":true} /          │

│ result.Length:                                                               │

│ 00:00:17 #72 [Verbose] awaitCompiler / Ping / result: Some(null) / port:     │

│ 13805 / retry: 0                                                             │

│ 00:00:17 #73 [Debug] > Server bound to: http://localhost:13805               │

│ 00:00:17 #74 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:17 #75 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:17 #76 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl main () =\n    1i32 /                            │

│ 0i32\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\ │

│ \20231021-0201-2615-1513-183b0ec27d49\\main.spi"}} / result.Length:          │

│ 00:00:17 #78 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-2615-1513-183b0ec27d49\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:18 #79 [Debug] > Building                                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2615-1513-183b0 │

│ ec27d49\main.spi                                                             │

│ 00:00:18 #80 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:18 #82 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(An attempt to divide by zero has been detected at compile time.,           │

│ TracedError                                                                  │

│   { message = "An attempt to divide by zero has been detected at compile     │

│ time."                                                                       │

│     trace =                                                                  │

│      ["Error trace on line: 1, column: 10 in module:                         │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2615-1513-183b0 │

│ ec27d49\main.spi.                                                            │

│ inl main () =                                                                │

│          ^                                                                   │

│ ";                                                                           │

│       "Error trace on line: 2, column: 5 in module:                          │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2615-1513-183b0 │

│ ec27d49\main.spi.                                                            │

│     1i32 / 0i32                                                              │

│     ^                                                                        │

│ "] })] / typeErrorCount: 0                                                   │

│ 00:00:18 #83 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2615-1513-183b0 │

│ ec27d49 / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ An attempt to divide by zero has been detected at compile time. ]  │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () =

    1 + ""

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[

            "main.spi:

Constraint satisfaction error.

Got: string

Fails to satisfy: number"

        ]]

    )

)



╭─[ 2.23s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:19 #84 [Debug] createTempDirectory / tempFolder:                       │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2869-6914-6a3de │

│ 6fbe3fb / result: { CreationTime = 2023-10-21 2:01:28 AM                     │

│   Exists = true }                                                            │

│ 00:00:19 #85 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:19 #86 [Debug] executeAsync / options: { Command =                     │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:19 #87 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                 │

│ 00:00:19 #88 [Debug] > dll_path:                                             │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:19 #90 [Debug] runWithTimeoutAsync / timeout: 500                      │

│ 00:00:20 #91 [Debug] sendJson / port: 13805 / json: {"Ping":true} /          │

│ result.Length:                                                               │

│ 00:00:20 #92 [Verbose] awaitCompiler / Ping / result: Some(null) / port:     │

│ 13805 / retry: 0                                                             │

│ 00:00:20 #93 [Debug] > Server bound to: http://localhost:13805               │

│ 00:00:20 #94 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:20 #95 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:20 #96 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl main () =\n    1 \u002B                          │

│ \u0022\u0022\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotn │

│ et-repl\\20231021-0201-2869-6914-6a3de6fbe3fb\\main.spi"}} / result.Length:  │

│ 00:00:20 #97 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-2869-6914-6a3de6fbe3fb\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:20 #98 [Debug] > Building                                              │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2869-6914-6a3de │

│ 6fbe3fb\main.spi                                                             │

│ 00:00:21 #100 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 1                                               │

│ 00:00:21 #101 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [(main.spi:                                                          │

│ Constraint satisfaction error.                                               │

│ Got: string                                                                  │

│ Fails to satisfy: number, TypeErrors                                         │

│   { errors =                                                                 │

│      [(({ character = 8                                                      │

│           line = 1 }, { character = 10                                       │

│                         line = 1 }),                                         │

│        "Constraint satisfaction error.                                       │

│ Got: string                                                                  │

│ Fails to satisfy: number")]                                                  │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2869-6 │

│ 914-6a3de6fbe3fb\main.spi" })] / typeErrorCount: 1                           │

│ 00:00:21 #102 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-2869-6914-6a3de │

│ 6fbe3fb / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Constraint satisfaction error.                                               │

│ Got: string                                                                  │

│ Fails to satisfy: number ]                                                   │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () =

    x + y

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[

            "main.spi:

Unbound variable.

Unbound variable."

        ]]

    )

)



╭─[ 2.24s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:21 #103 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3094-9493-9cff9 │

│ fe41ee5 / result: { CreationTime = 2023-10-21 2:01:30 AM                     │

│   Exists = true }                                                            │

│ 00:00:21 #104 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:21 #105 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:21 #106 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:21 #107 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:22 #109 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:22 #110 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:22 #111 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:22 #112 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:22 #113 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:22 #114 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:22 #115 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"inl main () =\n    x \u002B                          │

│ y\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 231021-0201-3094-9493-9cff9fe41ee5\\main.spi"}} / result.Length:             │

│ 00:00:22 #116 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-3094-9493-9cff9fe41ee5\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:22 #118 [Debug] > Building                                             │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3094-9493-9cff9 │

│ fe41ee5\main.spi                                                             │

│ 00:00:23 #119 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 1                                               │

│ 00:00:23 #120 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [(main.spi:                                                          │

│ Unbound variable.                                                            │

│ Unbound variable., TypeErrors                                                │

│   { errors =                                                                 │

│      [(({ character = 4                                                      │

│           line = 1 }, { character = 5                                        │

│                         line = 1 }), "Unbound variable.");                   │

│       (({ character = 8                                                      │

│           line = 1 }, { character = 9                                        │

│                         line = 1 }), "Unbound variable.")]                   │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3094-9 │

│ 493-9cff9fe41ee5\main.spi" })] / typeErrorCount: 1                           │

│ 00:00:23 #121 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3094-9493-9cff9 │

│ fe41ee5 / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Unbound variable.                                                            │

│ Unbound variable. ]                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""union a =

    | B

    | c



inl main () =

    ()

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "main.spi:

Expected: uppercase variable" ]]

    )

)



╭─[ 1.72s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:23 #122 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3322-2209-2e321 │

│ ba28fab / result: { CreationTime = 2023-10-21 2:01:33 AM                     │

│   Exists = true }                                                            │

│ 00:00:23 #123 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:23 #124 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:23 #126 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:23 #127 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:24 #128 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:24 #129 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:24 #130 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:24 #131 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:24 #132 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:24 #133 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:24 #134 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"union a =\n    | B\n    | c\n\ninl main () =\n       │

│ ()\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0231021-0201-3322-2209-2e321ba28fab\\main.spi"}} / result.Length:            │

│ 00:00:24 #135 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-3322-2209-2e321ba28fab\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:25 #137 [Debug] > Building                                             │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3322-2209-2e321 │

│ ba28fab\main.spi                                                             │

│ 00:00:25 #138 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [(main.spi:                                                          │

│ Expected: uppercase variable, ParserErrors                                   │

│   { errors = [(({ character = 6                                              │

│                   line = 2 }, { character = 7                                │

│                                 line = 2 }), "Expected: uppercase            │

│ variable")]                                                                  │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3322-2 │

│ 209-2e321ba28fab\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:25 #139 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3322-2209-2e321 │

│ ba28fab / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Expected: uppercase variable ]                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

/// abc

inl main () =

    ()

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "main.spi:

Expected: whitespace" ]]

    )

)



╭─[ 1.61s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:25 #140 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3496-9651-94f5a │

│ a47984b / result: { CreationTime = 2023-10-21 2:01:34 AM                     │

│   Exists = true }                                                            │

│ 00:00:25 #141 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:25 #142 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:25 #143 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:25 #144 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:26 #146 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:26 #147 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:26 #148 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:26 #149 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:26 #150 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:26 #151 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:26 #152 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"\n/// abc\ninl main () =\n                           │

│ ()\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0231021-0201-3496-9651-94f5aa47984b\\main.spi"}} / result.Length:            │

│ 00:00:26 #153 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-3496-9651-94f5aa47984b\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:26 #154 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [(main.spi:                                                          │

│ Expected: whitespace, TokenizerErrors                                        │

│   { errors = [(({ character = 2                                              │

│                   line = 1 }, { character = 3                                │

│                                 line = 1 }), "Expected: whitespace")]        │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3496-9 │

│ 651-94f5aa47984b\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:26 #155 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3496-9651-94f5a │

│ a47984b / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Expected: whitespace ]                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl main () =

    real

        inl real_unbox forall a. (obj : a) : a =

            typecase obj with

            | _ => obj

        real_unbox ()

    ()

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "Cannot apply a forall with a term." ]]

    )

)



╭─[ 2.44s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:27 #157 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3661-6195-618b4 │

│ 33d22d4 / result: { CreationTime = 2023-10-21 2:01:36 AM                     │

│   Exists = true }                                                            │

│ 00:00:27 #158 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:27 #159 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:27 #160 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:27 #161 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:27 #163 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:27 #164 [Verbose] waitForPortAccess / port: 13805 / retry: 0           │

│ 00:00:28 #165 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:28 #166 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:28 #167 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:28 #168 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:28 #169 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:28 #170 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"\ninl main () =\n    real\n        inl real_unbox    │

│ forall a. (obj : a) : a =\n            typecase obj with\n            | _    │

│ =\u003E obj\n        real_unbox ()\n                                         │

│ ()\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0231021-0201-3661-6195-618b433d22d4\\main.spi"}} / result.Length:            │

│ 00:00:28 #171 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-3661-6195-618b433d22d4\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:28 #172 [Debug] > Building                                             │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3661-6195-618b4 │

│ 33d22d4\main.spi                                                             │

│ 00:00:29 #174 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:29 #175 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [(Cannot apply a forall with a term., TracedError                    │

│   { message = "Cannot apply a forall with a term."                           │

│     trace =                                                                  │

│      ["Error trace on line: 2, column: 10 in module:                         │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3661-6195-618b4 │

│ 33d22d4\main.spi.                                                            │

│ inl main () =                                                                │

│          ^                                                                   │

│ ";                                                                           │

│       "Error trace on line: 4, column: 9 in module:                          │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3661-6195-618b4 │

│ 33d22d4\main.spi.                                                            │

│         inl real_unbox forall a. (obj : a) : a =                             │

│         ^                                                                    │

│ ";                                                                           │

│       "Error trace on line: 7, column: 9 in module:                          │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3661-6195-618b4 │

│ 33d22d4\main.spi.                                                            │

│         real_unbox ()                                                        │

│         ^                                                                    │

│ "] })] / typeErrorCount: 0                                                   │

│ 00:00:29 #176 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3661-6195-618b4 │

│ 33d22d4 / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ Cannot apply a forall with a term. ]                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl main () =

    real

        inl real_unbox forall a. (obj : a) : a =

            typecase obj with

            | _ => obj

        real_unbox `i32 1

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "The main function should not have a forall." ]]

    )

)



╭─[ 2.39s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:29 #177 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3909-0907-0a7fb │

│ 0070373 / result: { CreationTime = 2023-10-21 2:01:39 AM                     │

│   Exists = true }                                                            │

│ 00:00:29 #178 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:29 #179 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:29 #180 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:29 #181 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:30 #183 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:30 #184 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:30 #185 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:30 #186 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:30 #187 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:30 #188 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:30 #189 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"\ninl main () =\n    real\n        inl real_unbox    │

│ forall a. (obj : a) : a =\n            typecase obj with\n            | _    │

│ =\u003E obj\n        real_unbox \u0060i32                                    │

│ 1\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 231021-0201-3909-0907-0a7fb0070373\\main.spi"}} / result.Length:             │

│ 00:00:30 #190 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-3909-0907-0a7fb0070373\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:30 #192 [Debug] > Building                                             │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3909-0907-0a7fb │

│ 0070373\main.spi                                                             │

│ 00:00:31 #193 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:31 #194 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [(The main function should not have a forall., TracedError { message │

│ = "The main function should not have a forall."                              │

│               trace = [] })] / typeErrorCount: 0                             │

│ 00:00:31 #195 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-3909-0907-0a7fb │

│ 0070373 / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ The main function should not have a forall. ]                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl init_series start end inc =

    inl total : f64 = conv ((end - start) / inc) + 1

    listm.init total (conv >> (*) inc >> (+) start) : list f64



type integration = (f64 -> f64) -> f64 -> f64 -> f64



inl integral dt : integration =

    fun f a b =>

        init_series (a + dt / 2) (b - dt / 2) dt

        |> listm.map (f >> (*) dt)

        |> listm.fold (+) 0



inl main () =

    integral 0.1 (fun x => x ** 2) 0 1

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        Some "0.3325000000000001\n",

        [[]]

    )

)



╭─[ 2.59s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:31 #197 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4152-5210-52726 │

│ 4a868d3 / result: { CreationTime = 2023-10-21 2:01:41 AM                     │

│   Exists = true }                                                            │

│ 00:00:32 #198 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:32 #199 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:32 #200 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:32 #201 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:32 #202 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:32 #203 [Verbose] waitForPortAccess / port: 13805 / retry: 0           │

│ 00:00:32 #205 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:32 #206 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:32 #207 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:33 #208 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:33 #209 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:33 #210 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"\ninl init_series start end inc =\n    inl total :   │

│ f64 = conv ((end - start) / inc) \u002B 1\n    listm.init total (conv        │

│ \u003E\u003E (*) inc \u003E\u003E (\u002B) start) : list f64\n\ntype         │

│ integration = (f64 -\u003E f64) -\u003E f64 -\u003E f64 -\u003E f64\n\ninl   │

│ integral dt : integration =\n    fun f a b =\u003E\n        init_series (a   │

│ \u002B dt / 2) (b - dt / 2) dt\n        |\u003E listm.map (f \u003E\u003E    │

│ (*) dt)\n        |\u003E listm.fold (\u002B) 0\n\ninl main () =\n            │

│ integral 0.1 (fun x =\u003E x ** 2) 0                                        │

│ 1\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 231021-0201-4152-5210-527264a868d3\\main.spi"}} / result.Length:             │

│ 00:00:33 #211 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-4152-5210-527264a868d3\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:33 #212 [Debug] > Building                                             │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4152-5210-52726 │

│ 4a868d3\main.spi                                                             │

│ 00:00:34 #214 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:34 #215 [Debug] buildFile / takeWhileInclusive / fsxContent:           │

│ Some(0.3325000000000001                                                      │

│ ) / errors: [] / typeErrorCount: 0                                           │

│ 00:00:34 #216 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4152-5210-52726 │

│ 4a868d3 / filter: FileName, LastWrite                                        │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - FSharpOption<String>                                    │

│           Value: 0.3325000000000001                                          │

│                                                                              │

│       - [  ]                                                                 │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl init_series start end inc =

    inl total : f64 = conv ((end - start) / inc) + 1

    listm.init total (conv >> (*) inc >> (+) start) : list f64



type integration = (f64 -> f64) -> f64 -> f64 -> f64



inl integral dt : integration =

    fun f a b =>

        init_series (a + dt / 2) (b - dt / 2) dt

        |> listm.map (f >> (*) dt)

        |> listm.fold (+) 0



inl main () =

    integral 0.01 (fun x => x ** 2) 0 1

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

// |> _equal None

// |> fun x -> printfn $"{x.ToDisplayString ()}"



╭─[ 7.17s - return value ]─────────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Some((, [                                        │

│ ]))</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Value</td><td><details class="dni-treeview"><summary><span                 │

│ class="dni-code-hint"><code>(, [                                             │

│ ])</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>&lt;null&gt;</pre></div></td></tr><tr><td>Item2</ │

│ td><td><div class="dni-plaintext"><pre>[                                     │

│ ]</pre></div></td></tr></tbody></table></div></details></td></tr></tbody></t │

│ able></div></details><style>                                                 │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 7.20s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:34 #217 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4412-1272-1f846 │

│ 8278f27 / result: { CreationTime = 2023-10-21 2:01:44 AM                     │

│   Exists = true }                                                            │

│ 00:00:34 #218 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:34 #219 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:buildCode@3-983> }                                      │

│ 00:00:34 #220 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:34 #221 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:35 #223 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:35 #224 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:35 #225 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:35 #226 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:35 #227 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:35 #228 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:35 #229 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"\ninl init_series start end inc =\n    inl total :   │

│ f64 = conv ((end - start) / inc) \u002B 1\n    listm.init total (conv        │

│ \u003E\u003E (*) inc \u003E\u003E (\u002B) start) : list f64\n\ntype         │

│ integration = (f64 -\u003E f64) -\u003E f64 -\u003E f64 -\u003E f64\n\ninl   │

│ integral dt : integration =\n    fun f a b =\u003E\n        init_series (a   │

│ \u002B dt / 2) (b - dt / 2) dt\n        |\u003E listm.map (f \u003E\u003E    │

│ (*) dt)\n        |\u003E listm.fold (\u002B) 0\n\ninl main () =\n            │

│ integral 0.01 (fun x =\u003E x ** 2) 0                                       │

│ 1\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 231021-0201-4412-1272-1f8468278f27\\main.spi"}} / result.Length:             │

│ 00:00:35 #230 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20231021-0201-4412-1272-1f8468278f27\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:35 #231 [Debug] > Building                                             │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4412-1272-1f846 │

│ 8278f27\main.spi                                                             │

│ 00:00:36 #233 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:36 #234 [Debug] > Stack overflow.                                      │

│ 00:00:36 #235 [Debug] >    at Spiral.PartEval.Main.ty@597-22(TopEnv,         │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, T)             │

│ 00:00:36 #236 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #237 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #238 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #239 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #240 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #241 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #242 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #243 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #244 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #245 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #246 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #247 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #248 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #249 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #250 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #251 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #252 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #253 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #254 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #255 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #256 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #257 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #258 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #259 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #260 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #261 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #262 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #263 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #264 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #265 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #266 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #267 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #268 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #269 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #270 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #271 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #272 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #273 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #274 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #275 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #276 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #277 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #278 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #279 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #280 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #281 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #282 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #283 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #284 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #285 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #286 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #287 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #288 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #289 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #290 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #291 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #292 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #293 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #294 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #295 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #296 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #297 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #298 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #299 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #300 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #301 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #302 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #303 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #304 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #305 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #306 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #307 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #308 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #309 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #310 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #311 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #312 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #313 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #314 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #315 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #316 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #317 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #318 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #319 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #320 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #321 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #322 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #323 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #324 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #325 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #326 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #327 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #328 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #329 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #330 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #331 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #332 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #333 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #334 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #335 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #336 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #337 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #338 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #339 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #340 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #341 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #342 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #343 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #344 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #345 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #346 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #347 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #348 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #349 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #350 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #351 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #352 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #353 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #354 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #355 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #356 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #357 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #358 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #359 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #360 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #361 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #362 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #363 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #364 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #365 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #366 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #367 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #368 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #369 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #370 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #371 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #372 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #373 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #374 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #375 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #376 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #377 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #378 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #379 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #380 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #381 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #382 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #383 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #384 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #385 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #386 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #387 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #388 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #389 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #390 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #391 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #392 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #393 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #394 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #395 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #396 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #397 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #398 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #399 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #400 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #401 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #402 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #403 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #404 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #405 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #406 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #407 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #408 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #409 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #410 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #411 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #412 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #413 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #414 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #415 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #416 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #417 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #418 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #419 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #420 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #421 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #422 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #423 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #424 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #425 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #426 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #427 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #428 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #429 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #430 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #431 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #432 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #433 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #434 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #435 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #436 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #437 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #438 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #439 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #440 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #441 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #442 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #443 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #444 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #445 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #446 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #447 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #448 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #449 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #450 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #451 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #452 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #453 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #454 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #455 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #456 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #457 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #458 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #459 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #460 [Debug] >    at                                                │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)         │

│ 00:00:36 #461 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv,       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #462 [Debug] >    at Spiral.PartEval.Main.term_scope''@574(TopEnv,  │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #463 [Debug] >    at Spiral.PartEval.Main.term_scope'@578(TopEnv,   │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv,                │

│ System.Collections.Generic.Dictionary`2<TypedOp,Data>, E)                    │

│ 00:00:36 #464 [Debug] >    at Spiral.PartEval.Main.term_scope@579(TopEnv,    │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)             │

│ 00:00:36 #465 [Debug] >    at Spiral.PartEval.Main.peval(TopEnv, E)          │

│ 00:00:36 #466 [Debug] >    at                                                │

│ Spiral.Supervisor.file_build$cont@383(System.String, SupervisorState,        │

│ PrepassTopEnv, Microsoft.FSharp.Core.FSharpOption`1<E>,                      │

│ Microsoft.FSharp.Core.Unit)                                                  │

│ 00:00:36 #467 [Debug] >    at                                                │

│ Spiral.Supervisor.x2yJ@1-28(SupervisorErrorSources, System.String,           │

│ System.String, SupervisorState, PrepassTopEnv)                               │

│ 00:00:36 #468 [Debug] >    at                                                │

│ Spiral.Supervisor+x2yJ@380-41.Do(PrepassTopEnv)                              │

│ 00:00:36 #469 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #470 [Debug] >    at Hopac.Job+result@1000-1[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #471 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #472 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #473 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #474 [Debug] >    at Hopac.Job+result@1000-1[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #475 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #476 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #477 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #478 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #479 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #480 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #481 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #482 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #483 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #484 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #485 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #486 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #487 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #488 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #489 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #490 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #491 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #492 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #493 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #494 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #495 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #496 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #497 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #498 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #499 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #500 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #501 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #502 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #503 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #504 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #505 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #506 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #507 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #508 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #509 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #510 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #511 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #512 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #513 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #514 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #515 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #516 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #517 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #518 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #519 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #520 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #521 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #522 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #523 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #524 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #525 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #526 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #527 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #528 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #529 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #530 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #531 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #532 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #533 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #534 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #535 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #536 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #537 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #538 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #539 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #540 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #541 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #542 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #543 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #544 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon,             │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)                  │

│ 00:00:36 #545 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #546 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #547 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #548 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #549 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #550 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #551 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #552 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #553 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #554 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #555 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #556 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #557 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #558 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #559 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #560 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #561 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon,         │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #562 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #563 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #564 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)                                                              │

│ 00:00:36 #565 [Debug] >    at Hopac.Promise`1+Fulfill[[System.__Canon,       │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #566 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)                                                              │

│ 00:00:36 #567 [Debug] >    at Hopac.Core.Cont.Do[[System.__Canon,            │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)                                     │

│ 00:00:36 #568 [Debug] >    at Hopac.Promise`1[[System.__Canon,               │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #569 [Debug] >    at Hopac.Core.JobCont`2[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib,    │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)                                           │

│ 00:00:36 #570 [Debug] >    at Hopac.Core.JobWork`1[[System.__Canon,          │

│ System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,                    │

│ PublicKeyToken=7cec85d7bea7798e]].DoWork(Hopac.Core.Worker ByRef)            │

│ 00:00:36 #571 [Debug] >    at Hopac.Core.Worker.Run(Hopac.Scheduler, Int32)  │

│ 00:00:36 #572 [Debug] >    at Hopac.Platform.Scheduler+thread@30.Invoke()    │

│ 00:00:36 #573 [Debug] >    at                                                │

│ System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionCont │

│ ext, System.Threading.ContextCallback, System.Object)                        │

│ 00:00:37 #575 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:38 #577 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:39 #579 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:40 #581 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:41 #583 [Debug] executeAsync / exitCode: -1073741571 / proc.Id: 49364  │

│ / output.Length: 181038                                                      │

│ 00:00:41 #584 [Debug] awaitCompiler / exitCode: -1073741571 / result: pwd:   │

│ C:\home\git\polyglot\apps\spiral                                             │

│ dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language  │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ Server bound to: http://localhost:13805                                      │

│ Building                                                                     │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4412-1272-1f846 │

│ 8278f27\main.spi                                                             │

│ [Stack overflow.]                                                            │

│ [   at Spiral.PartEval.Main.ty@597-22(TopEnv,                                │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, T)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at                                                                       │

│ System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr,     │

│ Void (IntPtr, Byte ByRef,                                                    │

│ System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]        │

│ [   at Spiral.PartEval.Main.term@684-65(TopEnv,                              │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term_scope''@574(TopEnv,                         │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.term_scope'@578(TopEnv,                          │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv,                │

│ System.Collections.Generic.Dictionary`2<TypedOp,Data>, E)]                   │

│ [   at Spiral.PartEval.Main.term_scope@579(TopEnv,                           │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[                 │

│ ]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[           │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOpti │

│ on`1<System.String>>>,HashConsTable>>,                                       │

│ System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[                 │

│ ],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind │

│ []>>>,HashConsTable>>,                                                       │

│ System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections. │

│ Generic.Dictionary`2<ConsedNode`1<Ty[                                        │

│ ]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>,                │

│ Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Micr │

│ osoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]            │

│ [   at Spiral.PartEval.Main.peval(TopEnv, E)]                                │

│ [   at Spiral.Supervisor.file_build$cont@383(System.String, SupervisorState, │

│ PrepassTopEnv, Microsoft.FSharp.Core.FSharpOption`1<E>,                      │

│ Microsoft.FSharp.Core.Unit)]                                                 │

│ [   at Spiral.Supervisor.x2yJ@1-28(SupervisorErrorSources, System.String,    │

│ System.String, SupervisorState, PrepassTopEnv)]                              │

│ [   at Spiral.Supervisor+x2yJ@380-41.Do(PrepassTopEnv)]                      │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Job+result@1000-1[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Job+result@1000-1[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib,            │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>,               │

│ Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]                 │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib,        │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].Do(Hopac.Core.Worker ByRef,                │

│ System.__Canon)]                                                             │

│ [   at Hopac.Promise`1+Fulfill[[System.__Canon, System.Private.CoreLib,      │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef,            │

│ System.__Canon)]                                                             │

│ [   at Hopac.Core.Cont.Do[[System.__Canon, System.Private.CoreLib,           │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]](Hopac.Core.Cont`1<System.__Canon>,         │

│ Hopac.Core.Worker ByRef, System.__Canon)]                                    │

│ [   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib,              │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobCont`2[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[         │

│ System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral,    │

│ PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef,             │

│ Hopac.Core.Cont`1<System.__Canon>)]                                          │

│ [   at Hopac.Core.JobWork`1[[System.__Canon, System.Private.CoreLib,         │

│ Version=8.0.0.0, Culture=neutral,                                            │

│ PublicKeyToken=7cec85d7bea7798e]].DoWork(Hopac.Core.Worker ByRef)]           │

│ [   at Hopac.Core.Worker.Run(Hopac.Scheduler, Int32)]                        │

│ [   at Hopac.Platform.Scheduler+thread@30.Invoke()]                          │

│ [   at                                                                       │

│ System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionCont │

│ ext, System.Threading.ContextCallback, System.Object)]                       │

│ 00:00:41 #585 [Critical] buildFile / error: System.AggregateException: One   │

│ or more errors occurred. (One or more errors occurred. (A task was           │

│ canceled.))                                                                  │

│ 00:00:41 #586 [Debug] watchWithFilter / Disposing watch stream / fullPath:   │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0201-4412-1272-1f846 │

│ 8278f27 / filter: FileName, LastWrite                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getFileTokenRange                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getFileTokenRange port cancellationToken path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let! code = fullPath |> FileSystem.readAllTextAsync

    let lines = code |> String.split [[| '\n' |]]



    let token, disposable = Threading.newDisposableToken cancellationToken

    use _ = disposable



    let! serverPort, _errors, ct, disposable = awaitCompiler port (Some token)

    use _ = disposable



    let fileOpenObj = {| FileOpen = {| uri = fullPath |> getFileUri; spiText = 

code |} |}

    let! _fileOpenResult = fileOpenObj |> sendObj serverPort



    let fileTokenRangeObj =

        {|

            FileTokenRange =

                {|

                    uri = fullPath |> getFileUri

                    range =

                        [[|

                            {| line = 0; character = 0 |}

                            {| line = lines.Length - 1; character = 

lines.[[lines.Length - 1]].Length |}

                        |]]

                |}

        |}

    let! fileTokenRangeResult =

        fileTokenRangeObj

        |> sendObj serverPort

        |> Async.withCancellationToken ct



    return fileTokenRangeResult |> Option.map FSharp.Json.Json.deserialize<int 

array>

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getCodeTokenRange                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getCodeTokenRange cancellationToken code = async {

    let! mainPath, disposable = persistCode code

    use _ = disposable

    let port = getCompilerPort ()

    return! mainPath |> getFileTokenRange port cancellationToken

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () = ()"""

|> getCodeTokenRange None

|> Async.runWithTimeout 10000

|> Option.flatten

|> _equal (Some [[| 0; 0; 3; 7; 0; 0; 4; 4; 0; 0; 0; 5; 1; 8; 0; 0; 1; 1; 8; 0; 

0; 2; 1; 4; 0; 0;

2; 1; 8; 0; 0; 1; 1; 8; 0 |]])



╭─[ 5.10s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:53 #598 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0202-0277-7702-71888 │

│ c7da6b6 / result: { CreationTime = 2023-10-21 2:02:02 AM                     │

│   Exists = true }                                                            │

│ 00:00:53 #599 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:53 #600 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:it@4-434> }                                             │

│ 00:00:53 #601 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:53 #602 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:54 #604 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:54 #605 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:54 #606 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:54 #607 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:54 #608 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"inl main () =                                        │

│ ()","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\202 │

│ 31021-0202-0277-7702-71888c7da6b6\\main.spi"}} / result.Length:              │

│ 00:00:54 #609 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileTokenRange":{"range":[                                                 │

│ {"character":0,"line":0},{"character":16,"line":0}],"uri":"file:///C:\\Users │

│ \\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20231021-0202-0277-7702-71888c7 │

│ da6b6\\main.spi"}} / result.Length: Some(213)                                │

│ FSharpOption<Int32[]>                                                        │

│       Value: [ 0, 0, 3, 7, 0, 0, 4, 4, 0, 0, 0, 5, 1, 8, 0, 0, 1, 1, 8, 0,   │

│ 0, 2, 1, 4, 0, 0, 2, 1, 8, 0, 0, 1, 1, 8, 0 ]                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () = 1i32"""

|> getCodeTokenRange None

|> Async.runWithTimeout 10000

|> Option.flatten

|> _equal (Some [[| 0; 0; 3; 7; 0; 0; 4; 4; 0; 0; 0; 5; 1; 8; 0; 0; 1; 1; 8; 0; 

0; 2; 1; 4; 0; 0;

2; 1; 3; 0; 0; 1; 3; 12; 0 |]])



╭─[ 5.20s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:58 #614 [Debug] createTempDirectory / tempFolder:                      │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0202-0803-0380-0408d │

│ 216e1f4 / result: { CreationTime = 2023-10-21 2:02:08 AM                     │

│   Exists = true }                                                            │

│ 00:00:58 #615 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:58 #616 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:it@4-801> }                                             │

│ 00:00:58 #617 [Debug] > pwd: C:\home\git\polyglot\apps\spiral                │

│ 00:00:58 #618 [Debug] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:59 #619 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:59 #620 [Verbose] waitForPortAccess / port: 13805 / retry: 0           │

│ 00:00:59 #622 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:59 #623 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:59 #624 [Debug] > Server bound to: http://localhost:13805              │

│ 00:00:59 #625 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"inl main () =                                        │

│ 1i32","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0231021-0202-0803-0380-0408d216e1f4\\main.spi"}} / result.Length:            │

│ 00:00:59 #626 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileTokenRange":{"range":[                                                 │

│ {"character":0,"line":0},{"character":18,"line":0}],"uri":"file:///C:\\Users │

│ \\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20231021-0202-0803-0380-0408d21 │

│ 6e1f4\\main.spi"}} / result.Length: Some(214)                                │

│ FSharpOption<Int32[]>                                                        │

│       Value: [ 0, 0, 3, 7, 0, 0, 4, 4, 0, 0, 0, 5, 1, 8, 0, 0, 1, 1, 8, 0,   │

│ 0, 2, 1, 4, 0, 0, 2, 1, 3, 0, 0, 1, 3, 12, 0 ]                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | BuildFile of string * string

    | FileTokenRange of string * string

    | ExecuteCommand of string

    | Timeout of int

    | Port of int



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | BuildFile _ -> nameof BuildFile

            | FileTokenRange _ -> nameof FileTokenRange

            | ExecuteCommand _ -> nameof ExecuteCommand

            | Timeout _ -> nameof Timeout

            | Port _ -> nameof Port



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let buildFileActions =

        argsMap

        |> Map.tryFind (nameof Arguments.BuildFile)

        |> Option.defaultValue [[]]

        |> List.choose (function

            | Arguments.BuildFile (inputPath, outputPath) -> Some (inputPath, 

outputPath)

            | _ -> None

        )



    let fileTokenRangeActions =

        argsMap

        |> Map.tryFind (nameof Arguments.FileTokenRange)

        |> Option.defaultValue [[]]

        |> List.choose (function

            | Arguments.FileTokenRange (inputPath, outputPath) -> Some 

(inputPath, outputPath)

            | _ -> None

        )



    let executeCommandActions =

        argsMap

        |> Map.tryFind (nameof Arguments.ExecuteCommand)

        |> Option.defaultValue [[]]

        |> List.choose (function

            | Arguments.ExecuteCommand command -> Some command

            | _ -> None

        )



    let timeout =

        match argsMap |> Map.tryFind (nameof Arguments.Timeout) with

        | Some [[ Arguments.Timeout timeout ]] -> timeout

        | _ -> 60000 * 60



    let port =

        match argsMap |> Map.tryFind (nameof Arguments.Port) with

        | Some [[ Arguments.Port port ]] -> Some port

        | _ -> None



    async {

        let! buildFileResult =

            buildFileActions

            |> List.map (fun (inputPath, outputPath) -> async {

                let port = port |> Option.defaultWith getCompilerPort

                let! outputCode, errors = inputPath |> buildFile timeout port 

None

                

                errors

                |> List.map snd

                |> List.iter (fun error ->

                    trace Critical (fun () -> $"main / error: {error}") 

getLocals

                )



                match outputCode with

                | Some outputCode ->

                    do! outputCode |> FileSystem.writeAllTextAsync outputPath

                    return 0

                | None ->

                    return 1

            })

            |> Async.Sequential



        let! fileTokenRangeResult =

            fileTokenRangeActions

            |> List.map (fun (inputPath, outputPath) -> async {

                let port = port |> Option.defaultWith getCompilerPort

                let! tokenRange = inputPath |> getFileTokenRange port None

                match tokenRange with

                | Some tokenRange ->

                    do! tokenRange |> FSharp.Json.Json.serialize |> 

FileSystem.writeAllTextAsync outputPath

                    return 0

                | None ->

                    return 1

            })

            |> Async.Sequential

        

        let! executeCommandResult =

            executeCommandActions

            |> List.map (fun command -> async {

                let port = port |> Option.defaultWith getCompilerPort



                let localToken, disposable = Threading.newDisposableToken None

                use _ = disposable



                let! serverPort, _errors, compilerToken, disposable = 

awaitCompiler port (Some localToken)

                use _ = disposable

                

                let! exitCode, result =

                    Runtime.executeWithOptionsAsync

                        {

                            Command = command

                            CancellationToken = Some compilerToken

                            WorkingDirectory = None

                            OnLine = None

                        }



                trace Debug (fun () -> $"main / executeCommand / exitCode: 

{exitCode}") getLocals



                return exitCode

            })

            |> Async.Sequential

            

        return

            [[| buildFileResult; fileTokenRangeResult; executeCommandResult |]]

            |> Array.collect id

            |> Array.sum

    }

    |> Async.runWithTimeout timeout

    |> Option.defaultValue 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 27.16ms - return value ]───────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Supervisor.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 857792 bytes to Supervisor.dib.html

02:02:30 #1 [Debug] writeDibCode / output: Fs / path: Supervisor.dib

02:02:30 #1 [Debug] writeDibCode / output: Spi / path: Tasks.dib

02:02:30 #3 [Debug] parseDibCode / output: Spi / file: Tasks.dib

02:02:30 #3 [Debug] parseDibCode / output: Fs / file: Supervisor.dib

02:02:31 #1 [Debug] persistCodeProject / packages: [Argu; FSharp.Control.AsyncSeq; FSharp.Json; ... ] / modules: [nbs/Common.fs; nbs/CommonFSharp.fs; nbs/Threading.fs; ... ] / path: C:\home\git\polyglot\apps\spiral / name: Supervisor / code.Length: 18683

02:02:31 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\apps\spiral\target\Supervisor.fsproj

02:02:31 #3 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r linux-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\spiral\target"

  CancellationToken = None

  OnLine = None }

02:02:31 #4 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

02:02:32 #5 [Debug] >   Determining projects to restore...

02:02:33 #6 [Debug] >   Restored C:\home\git\polyglot\apps\spiral\target\Supervisor.fsproj (in 441 ms).

02:02:33 #7 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\spiral\target\Supervisor.fsproj]

02:02:45 #8 [Debug] >   Supervisor -> C:\home\git\polyglot\apps\spiral\target\bin\release\net8.0\linux-x64\Supervisor.dll

02:02:46 #9 [Debug] >   Supervisor -> C:\home\git\polyglot\apps\spiral\dist\

02:02:47 #10 [Debug] executeAsync / exitCode: 0 / proc.Id: 28336 / output.Length: 632

02:02:47 #11 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r win-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\spiral\target"

  CancellationToken = None

  OnLine = None }

02:02:47 #12 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

02:02:47 #13 [Debug] >   Determining projects to restore...

02:02:48 #14 [Debug] >   Restored C:\home\git\polyglot\apps\spiral\target\Supervisor.fsproj (in 442 ms).

02:02:48 #15 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\spiral\target\Supervisor.fsproj]

02:03:01 #16 [Debug] >   Supervisor -> C:\home\git\polyglot\apps\spiral\target\bin\release\net8.0\win-x64\Supervisor.dll

02:03:09 #17 [Debug] >   Supervisor -> C:\home\git\polyglot\apps\spiral\dist\

02:03:09 #18 [Debug] executeAsync / exitCode: 0 / proc.Id: 53820 / output.Length: 630

02:03:11 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:03:12 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:03:12 #3 [Debug] > pwd: C:\home\git\polyglot\apps\spiral

02:03:12 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:03:12 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:03:12 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:03:13 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:03:13 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:03:13 #9 [Debug] > Server bound to: http://localhost:13805

02:03:13 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 Tasks.dib -Retries 3""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:03:15 #11 [Debug] >

02:03:15 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:03:15 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:03:15 #14 [Debug] > │ ## Tasks (Polyglot)                                                          │

02:03:15 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:15 #16 [Debug] >

02:03:15 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:15 #18 [Debug] > // // test

02:03:15 #19 [Debug] >

02:03:15 #20 [Debug] > open testing

02:03:19 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-1821-2197-2820be57cfd5\main.spi

02:03:21 #22 [Debug] >

02:03:21 #23 [Debug] > ╭─[ 5.30s - stdout ]───────────────────────────────────────────────────────────╮

02:03:21 #24 [Debug] > │ ()                                                                           │

02:03:21 #25 [Debug] > │                                                                              │

02:03:21 #26 [Debug] > │                                                                              │

02:03:21 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:21 #28 [Debug] >

02:03:21 #29 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:21 #30 [Debug] > inl types () =

02:03:21 #31 [Debug] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::string::String\")>]]

02:03:21 #32 [Debug] > type std_string_String = class end"

02:03:21 #33 [Debug] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"&$0\")>]] type Ref<'T> =

02:03:21 #34 [Debug] > class end"

02:03:21 #35 [Debug] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"str\")>]] type Str = class

02:03:21 #36 [Debug] > end"

02:03:21 #37 [Debug] >

02:03:21 #38 [Debug] > inl emit_expr forall a t. (args : a) (code : string) : t =

02:03:21 #39 [Debug] >     real

02:03:21 #40 [Debug] >         $"Fable.Core.RustInterop.emitRustExpr !args !code" : t

02:03:21 #41 [Debug] >

02:03:21 #42 [Debug] >

02:03:21 #43 [Debug] > nominal std_string = $"std_string_String"

02:03:21 #44 [Debug] > nominal ref' t = $"Ref<`t>"

02:03:21 #45 [Debug] > nominal str = $"Str"

02:03:21 #46 [Debug] >

02:03:21 #47 [Debug] > inl format_debug forall t. (x : t) : std_string =

02:03:21 #48 [Debug] >     real

02:03:21 #49 [Debug] >         emit_expr `t `std_string x "format!(\"{:?}\", $0)"

02:03:21 #50 [Debug] >

02:03:21 #51 [Debug] > inl format_pretty forall t. (x : t) : std_string =

02:03:21 #52 [Debug] >     real

02:03:21 #53 [Debug] >         emit_expr `t `std_string x "format!(\"{:#?}\", $0)"

02:03:21 #54 [Debug] >

02:03:21 #55 [Debug] > inl to_std_string (str : ref' str) : std_string =

02:03:21 #56 [Debug] >     // inl str = join str

02:03:21 #57 [Debug] >     // // emit_expr () $"\"!str.to_string()\""

02:03:21 #58 [Debug] >     // // emit_expr () $"\"alloc::string::to_string(!str)\""

02:03:21 #59 [Debug] >     // emit_expr str "($0).to_string()"

02:03:21 #60 [Debug] >     emit_expr str $"\"String::from(core::ops::Deref::deref($0))\""

02:03:21 #61 [Debug] >     // emit_expr str $"\"String::from(*$0)\""

02:03:21 #62 [Debug] >     // emit_expr () $"\"String::from(!str)\""

02:03:21 #63 [Debug] >

02:03:21 #64 [Debug] > inl format forall t. (x : t) : std_string =

02:03:21 #65 [Debug] >     real

02:03:21 #66 [Debug] >         inl result : std_string =

02:03:21 #67 [Debug] >             typecase t with

02:03:21 #68 [Debug] >             | string => to_std_string x

02:03:21 #69 [Debug] >             | std_string => x

02:03:21 #70 [Debug] >             | _ => format_pretty `t x

02:03:21 #71 [Debug] >         result

02:03:21 #72 [Debug] >

02:03:21 #73 [Debug] > inl raw_string_literal (s : string) : ref' str =

02:03:21 #74 [Debug] >     emit_expr () $"\"r#\\\"\" + !s + \"\\\"#\""

02:03:21 #75 [Debug] >

02:03:21 #76 [Debug] > inl (~#) (s : string) : ref' str =

02:03:21 #77 [Debug] >     raw_string_literal s

02:03:21 #78 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-2116-1685-197aebff1a2f\main.spi

02:03:21 #79 [Debug] >

02:03:21 #80 [Debug] > ╭─[ 195.83ms - stdout ]────────────────────────────────────────────────────────╮

02:03:21 #81 [Debug] > │ ()                                                                           │

02:03:21 #82 [Debug] > │                                                                              │

02:03:21 #83 [Debug] > │                                                                              │

02:03:21 #84 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:21 #85 [Debug] >

02:03:21 #86 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:21 #87 [Debug] > nominal task_name = string

02:03:21 #88 [Debug] >

02:03:21 #89 [Debug] > union manual_scheduling =

02:03:21 #90 [Debug] >     | WithSuggestion

02:03:21 #91 [Debug] >     | WithoutSuggestion

02:03:21 #92 [Debug] >

02:03:21 #93 [Debug] > union recurrency_offset =

02:03:21 #94 [Debug] >     | Days : i32

02:03:21 #95 [Debug] >     | Weeks : i32

02:03:21 #96 [Debug] >     | Months : i32

02:03:21 #97 [Debug] >

02:03:21 #98 [Debug] > union day_of_week =

02:03:21 #99 [Debug] >     | Sunday

02:03:21 #100 [Debug] >     | Monday

02:03:21 #101 [Debug] >     | Tuesday

02:03:21 #102 [Debug] >     | Wednesday

02:03:21 #103 [Debug] >     | Thursday

02:03:21 #104 [Debug] >     | Friday

02:03:21 #105 [Debug] >     | Saturday

02:03:21 #106 [Debug] >

02:03:21 #107 [Debug] > union month =

02:03:21 #108 [Debug] >     | January

02:03:21 #109 [Debug] >     | February

02:03:21 #110 [Debug] >     | March

02:03:21 #111 [Debug] >     | April

02:03:21 #112 [Debug] >     | May

02:03:21 #113 [Debug] >     | June

02:03:21 #114 [Debug] >     | July

02:03:21 #115 [Debug] >     | August

02:03:21 #116 [Debug] >     | September

02:03:21 #117 [Debug] >     | October

02:03:21 #118 [Debug] >     | November

02:03:21 #119 [Debug] >     | December

02:03:21 #120 [Debug] >

02:03:21 #121 [Debug] > nominal day = i32

02:03:21 #122 [Debug] > nominal year = i32

02:03:21 #123 [Debug] >

02:03:21 #124 [Debug] > union fixed_recurrency =

02:03:21 #125 [Debug] >     | Weekly : day_of_week

02:03:21 #126 [Debug] >     | Monthly : day

02:03:21 #127 [Debug] >     | Yearly : day * month

02:03:21 #128 [Debug] >

02:03:21 #129 [Debug] > union recurrency =

02:03:21 #130 [Debug] >     | Offset : recurrency_offset

02:03:21 #131 [Debug] >     | Fixed : list fixed_recurrency

02:03:21 #132 [Debug] >

02:03:21 #133 [Debug] > union scheduling =

02:03:21 #134 [Debug] >     | Manual : manual_scheduling

02:03:21 #135 [Debug] >     | Recurrent : recurrency

02:03:21 #136 [Debug] >

02:03:21 #137 [Debug] > type task =

02:03:21 #138 [Debug] >     {

02:03:21 #139 [Debug] >         name : task_name

02:03:21 #140 [Debug] >         scheduling : scheduling

02:03:21 #141 [Debug] >     }

02:03:21 #142 [Debug] >

02:03:21 #143 [Debug] > type date =

02:03:21 #144 [Debug] >     {

02:03:21 #145 [Debug] >         year : year

02:03:21 #146 [Debug] >         month : month

02:03:21 #147 [Debug] >         day : day

02:03:21 #148 [Debug] >     }

02:03:21 #149 [Debug] >

02:03:21 #150 [Debug] > union status =

02:03:21 #151 [Debug] >     | Postponed : option ()

02:03:21 #152 [Debug] >

02:03:21 #153 [Debug] > type event =

02:03:21 #154 [Debug] >     {

02:03:21 #155 [Debug] >         date : date

02:03:21 #156 [Debug] >         status : status

02:03:21 #157 [Debug] >     }

02:03:21 #158 [Debug] >

02:03:21 #159 [Debug] > type task_template =

02:03:21 #160 [Debug] >     {

02:03:21 #161 [Debug] >         task : task

02:03:21 #162 [Debug] >         events : list event

02:03:21 #163 [Debug] >     }

02:03:21 #164 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-2136-3609-35ff448609df\main.spi

02:03:21 #165 [Debug] >

02:03:21 #166 [Debug] > ╭─[ 251.30ms - stdout ]────────────────────────────────────────────────────────╮

02:03:21 #167 [Debug] > │ ()                                                                           │

02:03:21 #168 [Debug] > │                                                                              │

02:03:21 #169 [Debug] > │                                                                              │

02:03:21 #170 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:21 #171 [Debug] >

02:03:21 #172 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:21 #173 [Debug] > // // test

02:03:21 #174 [Debug] > // // rust=

02:03:21 #175 [Debug] >

02:03:21 #176 [Debug] > types ()

02:03:21 #177 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-2161-6135-6f47f2ef6d93\main.spi

02:03:28 #178 [Debug] >

02:03:28 #179 [Debug] > ╭─[ 6.96s - return value ]─────────────────────────────────────────────────────╮

02:03:28 #180 [Debug] > │ .rs output:                                                                  │

02:03:28 #181 [Debug] > │                                                                              │

02:03:28 #182 [Debug] > │                                                                              │

02:03:28 #183 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:28 #184 [Debug] >

02:03:28 #185 [Debug] > ╭─[ 6.97s - stdout ]───────────────────────────────────────────────────────────╮

02:03:28 #186 [Debug] > │                                                                              │

02:03:28 #187 [Debug] > │ .fsx:                                                                        │

02:03:28 #188 [Debug] > │ [<Fable.Core.Erase; Fable.Core.Emit("std::string::String")>] type            │

02:03:28 #189 [Debug] > │ std_string_String = class end                                                │

02:03:28 #190 [Debug] > │ [<Fable.Core.Erase; Fable.Core.Emit("&$0")>] type Ref<'T> = class end        │

02:03:28 #191 [Debug] > │ [<Fable.Core.Erase; Fable.Core.Emit("str")>] type Str = class end            │

02:03:28 #192 [Debug] > │ let rec method0 () : unit =                                                  │

02:03:28 #193 [Debug] > │     ()                                                                       │

02:03:28 #194 [Debug] > │ method0()                                                                    │

02:03:28 #195 [Debug] > │                                                                              │

02:03:28 #196 [Debug] > │ .rs:                                                                         │

02:03:28 #197 [Debug] > │ #![allow(dead_code,)]                                                        │

02:03:28 #198 [Debug] > │ #![allow(non_camel_case_types,)]                                             │

02:03:28 #199 [Debug] > │ #![allow(non_snake_case,)]                                                   │

02:03:28 #200 [Debug] > │ #![allow(non_upper_case_globals,)]                                           │

02:03:28 #201 [Debug] > │ #![allow(unreachable_code,)]                                                 │

02:03:28 #202 [Debug] > │ #![allow(unused_attributes,)]                                                │

02:03:28 #203 [Debug] > │ #![allow(unused_imports,)]                                                   │

02:03:28 #204 [Debug] > │ #![allow(unused_macros,)]                                                    │

02:03:28 #205 [Debug] > │ #![allow(unused_parens,)]                                                    │

02:03:28 #206 [Debug] > │ #![allow(unused_variables,)]                                                 │

02:03:28 #207 [Debug] > │ pub mod Repl_main {                                                          │

02:03:28 #208 [Debug] > │     use super::*;                                                            │

02:03:28 #209 [Debug] > │     use fable_library_rust::Native_::on_startup;                             │

02:03:28 #210 [Debug] > │     pub fn method0() { (); }                                                 │

02:03:28 #211 [Debug] > │     on_startup!(Repl_main::method0());                                       │

02:03:28 #212 [Debug] > │ }                                                                            │

02:03:28 #213 [Debug] > │                                                                              │

02:03:28 #214 [Debug] > │                                                                              │

02:03:28 #215 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:28 #216 [Debug] >

02:03:28 #217 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:28 #218 [Debug] > // // test

02:03:28 #219 [Debug] > // // rust=

02:03:28 #220 [Debug] >

02:03:28 #221 [Debug] > inl get_tasks () : list task_template =

02:03:28 #222 [Debug] >     [[

02:03:28 #223 [Debug] >         {

02:03:28 #224 [Debug] >             task =

02:03:28 #225 [Debug] >                 {

02:03:28 #226 [Debug] >                     name = task_name "01"

02:03:28 #227 [Debug] >                     scheduling = Manual WithSuggestion

02:03:28 #228 [Debug] >                 }

02:03:28 #229 [Debug] >             events = [[]]

02:03:28 #230 [Debug] >         }

02:03:28 #231 [Debug] >         {

02:03:28 #232 [Debug] >             task =

02:03:28 #233 [Debug] >                 {

02:03:28 #234 [Debug] >                     name = task_name "02"

02:03:28 #235 [Debug] >                     scheduling = Manual WithSuggestion

02:03:28 #236 [Debug] >                 }

02:03:28 #237 [Debug] >             events = [[]]

02:03:28 #238 [Debug] >         }

02:03:28 #239 [Debug] >         {

02:03:28 #240 [Debug] >             task =

02:03:28 #241 [Debug] >                 {

02:03:28 #242 [Debug] >                     name = task_name "03"

02:03:28 #243 [Debug] >                     scheduling = Manual WithSuggestion

02:03:28 #244 [Debug] >                 }

02:03:28 #245 [Debug] >             events = [[]]

02:03:28 #246 [Debug] >         }

02:03:28 #247 [Debug] >     ]]

02:03:28 #248 [Debug] >

02:03:28 #249 [Debug] > types ()

02:03:28 #250 [Debug] > get_tasks () |> format_pretty |> console.write_line

02:03:28 #251 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-2860-6002-6d951be17312\main.spi

02:03:34 #252 [Debug] >

02:03:34 #253 [Debug] > ╭─[ 5.97s - return value ]─────────────────────────────────────────────────────╮

02:03:34 #254 [Debug] > │ .rs output:                                                                  │

02:03:34 #255 [Debug] > │ UH2_0(                                                                       │

02:03:34 #256 [Debug] > │     UH0_1,                                                                   │

02:03:34 #257 [Debug] > │     "01",                                                                    │

02:03:34 #258 [Debug] > │     US4_0(                                                                   │

02:03:34 #259 [Debug] > │         US3_0,                                                               │

02:03:34 #260 [Debug] > │     ),                                                                       │

02:03:34 #261 [Debug] > │     UH2_0(                                                                   │

02:03:34 #262 [Debug] > │         UH0_1,                                                               │

02:03:34 #263 [Debug] > │         "02",                                                                │

02:03:34 #264 [Debug] > │         US4_0(                                                               │

02:03:34 #265 [Debug] > │             US3_0,                                                           │

02:03:34 #266 [Debug] > │         ),                                                                   │

02:03:34 #267 [Debug] > │         UH2_0(                                                               │

02:03:34 #268 [Debug] > │             UH0_1,                                                           │

02:03:34 #269 [Debug] > │             "03",                                                            │

02:03:34 #270 [Debug] > │             US4_0(                                                           │

02:03:34 #271 [Debug] > │                 US3_0,                                                       │

02:03:34 #272 [Debug] > │             ),                                                               │

02:03:34 #273 [Debug] > │             UH2_1,                                                           │

02:03:34 #274 [Debug] > │         ),                                                                   │

02:03:34 #275 [Debug] > │     ),                                                                       │

02:03:34 #276 [Debug] > │ )                                                                            │

02:03:34 #277 [Debug] > │                                                                              │

02:03:34 #278 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:34 #279 [Debug] >

02:03:34 #280 [Debug] > ╭─[ 5.99s - stdout ]───────────────────────────────────────────────────────────╮

02:03:34 #281 [Debug] > │                                                                              │

02:03:34 #282 [Debug] > │ .fsx:                                                                        │

02:03:34 #283 [Debug] > │ [<Fable.Core.Erase; Fable.Core.Emit("std::string::String")>] type            │

02:03:34 #284 [Debug] > │ std_string_String = class end                                                │

02:03:34 #285 [Debug] > │ [<Fable.Core.Erase; Fable.Core.Emit("&$0")>] type Ref<'T> = class end        │

02:03:34 #286 [Debug] > │ [<Fable.Core.Erase; Fable.Core.Emit("str")>] type Str = class end            │

02:03:34 #287 [Debug] > │ type [<Struct>] US0 =                                                        │

02:03:34 #288 [Debug] > │     | US0_0                                                                  │

02:03:34 #289 [Debug] > │     | US0_1                                                                  │

02:03:34 #290 [Debug] > │     | US0_2                                                                  │

02:03:34 #291 [Debug] > │     | US0_3                                                                  │

02:03:34 #292 [Debug] > │     | US0_4                                                                  │

02:03:34 #293 [Debug] > │     | US0_5                                                                  │

02:03:34 #294 [Debug] > │     | US0_6                                                                  │

02:03:34 #295 [Debug] > │     | US0_7                                                                  │

02:03:34 #296 [Debug] > │     | US0_8                                                                  │

02:03:34 #297 [Debug] > │     | US0_9                                                                  │

02:03:34 #298 [Debug] > │     | US0_10                                                                 │

02:03:34 #299 [Debug] > │     | US0_11                                                                 │

02:03:34 #300 [Debug] > │ and [<Struct>] US2 =                                                         │

02:03:34 #301 [Debug] > │     | US2_0                                                                  │

02:03:34 #302 [Debug] > │     | US2_1                                                                  │

02:03:34 #303 [Debug] > │ and [<Struct>] US1 =                                                         │

02:03:34 #304 [Debug] > │     | US1_0 of f0_0 : US2                                                    │

02:03:34 #305 [Debug] > │ and UH0 =                                                                    │

02:03:34 #306 [Debug] > │     | UH0_0 of int32 * US0 * int32 * US1 * UH0                               │

02:03:34 #307 [Debug] > │     | UH0_1                                                                  │

02:03:34 #308 [Debug] > │ and [<Struct>] US3 =                                                         │

02:03:34 #309 [Debug] > │     | US3_0                                                                  │

02:03:34 #310 [Debug] > │     | US3_1                                                                  │

02:03:34 #311 [Debug] > │ and [<Struct>] US7 =                                                         │

02:03:34 #312 [Debug] > │     | US7_0                                                                  │

02:03:34 #313 [Debug] > │     | US7_1                                                                  │

02:03:34 #314 [Debug] > │     | US7_2                                                                  │

02:03:34 #315 [Debug] > │     | US7_3                                                                  │

02:03:34 #316 [Debug] > │     | US7_4                                                                  │

02:03:34 #317 [Debug] > │     | US7_5                                                                  │

02:03:34 #318 [Debug] > │     | US7_6                                                                  │

02:03:34 #319 [Debug] > │ and [<Struct>] US6 =                                                         │

02:03:34 #320 [Debug] > │     | US6_0 of f0_0 : int32                                                  │

02:03:34 #321 [Debug] > │     | US6_1 of f1_0 : US7                                                    │

02:03:34 #322 [Debug] > │     | US6_2 of f2_0 : int32 * f2_1 : US0                                     │

02:03:34 #323 [Debug] > │ and UH1 =                                                                    │

02:03:34 #324 [Debug] > │     | UH1_0 of US6 * UH1                                                     │

02:03:34 #325 [Debug] > │     | UH1_1                                                                  │

02:03:34 #326 [Debug] > │ and [<Struct>] US8 =                                                         │

02:03:34 #327 [Debug] > │     | US8_0 of f0_0 : int32                                                  │

02:03:34 #328 [Debug] > │     | US8_1 of f1_0 : int32                                                  │

02:03:34 #329 [Debug] > │     | US8_2 of f2_0 : int32                                                  │

02:03:34 #330 [Debug] > │ and [<Struct>] US5 =                                                         │

02:03:34 #331 [Debug] > │     | US5_0 of f0_0 : UH1                                                    │

02:03:34 #332 [Debug] > │     | US5_1 of f1_0 : US8                                                    │

02:03:34 #333 [Debug] > │ and [<Struct>] US4 =                                                         │

02:03:34 #334 [Debug] > │     | US4_0 of f0_0 : US3                                                    │

02:03:34 #335 [Debug] > │     | US4_1 of f1_0 : US5                                                    │

02:03:34 #336 [Debug] > │ and UH2 =                                                                    │

02:03:34 #337 [Debug] > │     | UH2_0 of UH0 * string * US4 * UH2                                      │

02:03:34 #338 [Debug] > │     | UH2_1                                                                  │

02:03:34 #339 [Debug] > │ let rec method0 () : unit =                                                  │

02:03:34 #340 [Debug] > │     let v0 : UH0 = UH0_1                                                     │

02:03:34 #341 [Debug] > │     let v1 : string = "01"                                                   │

02:03:34 #342 [Debug] > │     let v2 : US3 = US3_0                                                     │

02:03:34 #343 [Debug] > │     let v3 : US4 = US4_0(v2)                                                 │

02:03:34 #344 [Debug] > │     let v4 : UH0 = UH0_1                                                     │

02:03:34 #345 [Debug] > │     let v5 : string = "02"                                                   │

02:03:34 #346 [Debug] > │     let v6 : US3 = US3_0                                                     │

02:03:34 #347 [Debug] > │     let v7 : US4 = US4_0(v6)                                                 │

02:03:34 #348 [Debug] > │     let v8 : UH0 = UH0_1                                                     │

02:03:34 #349 [Debug] > │     let v9 : string = "03"                                                   │

02:03:34 #350 [Debug] > │     let v10 : US3 = US3_0                                                    │

02:03:34 #351 [Debug] > │     let v11 : US4 = US4_0(v10)                                               │

02:03:34 #352 [Debug] > │     let v12 : UH2 = UH2_1                                                    │

02:03:34 #353 [Debug] > │     let v13 : UH2 = UH2_0(v8, v9, v11, v12)                                  │

02:03:34 #354 [Debug] > │     let v14 : UH2 = UH2_0(v4, v5, v7, v13)                                   │

02:03:34 #355 [Debug] > │     let v15 : UH2 = UH2_0(v0, v1, v3, v14)                                   │

02:03:34 #356 [Debug] > │     let v16 : string = "format!(\"{:#?}\", $0)"                              │

02:03:34 #357 [Debug] > │     let v17 : std_string_String = Fable.Core.RustInterop.emitRustExpr v15    │

02:03:34 #358 [Debug] > │ v16                                                                          │

02:03:34 #359 [Debug] > │     System.Console.WriteLine v17                                             │

02:03:34 #360 [Debug] > │     ()                                                                       │

02:03:34 #361 [Debug] > │ method0()                                                                    │

02:03:34 #362 [Debug] > │                                                                              │

02:03:34 #363 [Debug] > │ .rs:                                                                         │

02:03:34 #364 [Debug] > │ #![allow(dead_code,)]                                                        │

02:03:34 #365 [Debug] > │ #![allow(non_camel_case_types,)]                                             │

02:03:34 #366 [Debug] > │ #![allow(non_snake_case,)]                                                   │

02:03:34 #367 [Debug] > │ #![allow(non_upper_case_globals,)]                                           │

02:03:34 #368 [Debug] > │ #![allow(unreachable_code,)]                                                 │

02:03:34 #369 [Debug] > │ #![allow(unused_attributes,)]                                                │

02:03:34 #370 [Debug] > │ #![allow(unused_imports,)]                                                   │

02:03:34 #371 [Debug] > │ #![allow(unused_macros,)]                                                    │

02:03:34 #372 [Debug] > │ #![allow(unused_parens,)]                                                    │

02:03:34 #373 [Debug] > │ #![allow(unused_variables,)]                                                 │

02:03:34 #374 [Debug] > │ pub mod Repl_main {                                                          │

02:03:34 #375 [Debug] > │     use super::*;                                                            │

02:03:34 #376 [Debug] > │     use fable_library_rust::Native_::Any;                                    │

02:03:34 #377 [Debug] > │     use fable_library_rust::Native_::LrcPtr;                                 │

02:03:34 #378 [Debug] > │     use fable_library_rust::Native_::on_startup;                             │

02:03:34 #379 [Debug] > │     use fable_library_rust::String_::string;                                 │

02:03:34 #380 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #381 [Debug] > │     pub enum US0 {                                                           │

02:03:34 #382 [Debug] > │         US0_0,                                                               │

02:03:34 #383 [Debug] > │         US0_1,                                                               │

02:03:34 #384 [Debug] > │         US0_2,                                                               │

02:03:34 #385 [Debug] > │         US0_3,                                                               │

02:03:34 #386 [Debug] > │         US0_4,                                                               │

02:03:34 #387 [Debug] > │         US0_5,                                                               │

02:03:34 #388 [Debug] > │         US0_6,                                                               │

02:03:34 #389 [Debug] > │         US0_7,                                                               │

02:03:34 #390 [Debug] > │         US0_8,                                                               │

02:03:34 #391 [Debug] > │         US0_9,                                                               │

02:03:34 #392 [Debug] > │         US0_10,                                                              │

02:03:34 #393 [Debug] > │         US0_11,                                                              │

02:03:34 #394 [Debug] > │     }                                                                        │

02:03:34 #395 [Debug] > │     impl core::fmt::Display for Repl_main::US0 {                             │

02:03:34 #396 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #397 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #398 [Debug] > │         }                                                                    │

02:03:34 #399 [Debug] > │     }                                                                        │

02:03:34 #400 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #401 [Debug] > │     pub enum US2 { US2_0, US2_1, }                                           │

02:03:34 #402 [Debug] > │     impl core::fmt::Display for Repl_main::US2 {                             │

02:03:34 #403 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #404 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #405 [Debug] > │         }                                                                    │

02:03:34 #406 [Debug] > │     }                                                                        │

02:03:34 #407 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #408 [Debug] > │     pub enum US1 { US1_0(Repl_main::US2), }                                  │

02:03:34 #409 [Debug] > │     impl core::fmt::Display for Repl_main::US1 {                             │

02:03:34 #410 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #411 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #412 [Debug] > │         }                                                                    │

02:03:34 #413 [Debug] > │     }                                                                        │

02:03:34 #414 [Debug] > │     #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]           │

02:03:34 #415 [Debug] > │     pub enum UH0 {                                                           │

02:03:34 #416 [Debug] > │         UH0_0(i32, Repl_main::US0, i32, Repl_main::US1,                      │

02:03:34 #417 [Debug] > │               LrcPtr<Repl_main::UH0>),                                       │

02:03:34 #418 [Debug] > │         UH0_1,                                                               │

02:03:34 #419 [Debug] > │     }                                                                        │

02:03:34 #420 [Debug] > │     impl core::fmt::Display for Repl_main::UH0 {                             │

02:03:34 #421 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #422 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #423 [Debug] > │         }                                                                    │

02:03:34 #424 [Debug] > │     }                                                                        │

02:03:34 #425 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #426 [Debug] > │     pub enum US3 { US3_0, US3_1, }                                           │

02:03:34 #427 [Debug] > │     impl core::fmt::Display for Repl_main::US3 {                             │

02:03:34 #428 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #429 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #430 [Debug] > │         }                                                                    │

02:03:34 #431 [Debug] > │     }                                                                        │

02:03:34 #432 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #433 [Debug] > │     pub enum US7 { US7_0, US7_1, US7_2, US7_3, US7_4, US7_5, US7_6, }        │

02:03:34 #434 [Debug] > │     impl core::fmt::Display for Repl_main::US7 {                             │

02:03:34 #435 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #436 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #437 [Debug] > │         }                                                                    │

02:03:34 #438 [Debug] > │     }                                                                        │

02:03:34 #439 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #440 [Debug] > │     pub enum US6 {                                                           │

02:03:34 #441 [Debug] > │         US6_0(i32),                                                          │

02:03:34 #442 [Debug] > │         US6_1(Repl_main::US7),                                               │

02:03:34 #443 [Debug] > │         US6_2(i32, Repl_main::US0),                                          │

02:03:34 #444 [Debug] > │     }                                                                        │

02:03:34 #445 [Debug] > │     impl core::fmt::Display for Repl_main::US6 {                             │

02:03:34 #446 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #447 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #448 [Debug] > │         }                                                                    │

02:03:34 #449 [Debug] > │     }                                                                        │

02:03:34 #450 [Debug] > │     #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]           │

02:03:34 #451 [Debug] > │     pub enum UH1 { UH1_0(Repl_main::US6, LrcPtr<Repl_main::UH1>), UH1_1, }   │

02:03:34 #452 [Debug] > │     impl core::fmt::Display for Repl_main::UH1 {                             │

02:03:34 #453 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #454 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #455 [Debug] > │         }                                                                    │

02:03:34 #456 [Debug] > │     }                                                                        │

02:03:34 #457 [Debug] > │     #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]     │

02:03:34 #458 [Debug] > │     pub enum US8 { US8_0(i32), US8_1(i32), US8_2(i32), }                     │

02:03:34 #459 [Debug] > │     impl core::fmt::Display for Repl_main::US8 {                             │

02:03:34 #460 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #461 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #462 [Debug] > │         }                                                                    │

02:03:34 #463 [Debug] > │     }                                                                        │

02:03:34 #464 [Debug] > │     #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]           │

02:03:34 #465 [Debug] > │     pub enum US5 { US5_0(LrcPtr<Repl_main::UH1>), US5_1(Repl_main::US8), }   │

02:03:34 #466 [Debug] > │     impl core::fmt::Display for Repl_main::US5 {                             │

02:03:34 #467 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #468 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #469 [Debug] > │         }                                                                    │

02:03:34 #470 [Debug] > │     }                                                                        │

02:03:34 #471 [Debug] > │     #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]           │

02:03:34 #472 [Debug] > │     pub enum US4 { US4_0(Repl_main::US3), US4_1(Repl_main::US5), }           │

02:03:34 #473 [Debug] > │     impl core::fmt::Display for Repl_main::US4 {                             │

02:03:34 #474 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #475 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #476 [Debug] > │         }                                                                    │

02:03:34 #477 [Debug] > │     }                                                                        │

02:03:34 #478 [Debug] > │     #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]           │

02:03:34 #479 [Debug] > │     pub enum UH2 {                                                           │

02:03:34 #480 [Debug] > │         UH2_0(LrcPtr<Repl_main::UH0>, string, Repl_main::US4,                │

02:03:34 #481 [Debug] > │               LrcPtr<Repl_main::UH2>),                                       │

02:03:34 #482 [Debug] > │         UH2_1,                                                               │

02:03:34 #483 [Debug] > │     }                                                                        │

02:03:34 #484 [Debug] > │     impl core::fmt::Display for Repl_main::UH2 {                             │

02:03:34 #485 [Debug] > │         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {   │

02:03:34 #486 [Debug] > │             write!(f, "{}", core::any::type_name::<Self>())                  │

02:03:34 #487 [Debug] > │         }                                                                    │

02:03:34 #488 [Debug] > │     }                                                                        │

02:03:34 #489 [Debug] > │     pub fn method0() {                                                       │

02:03:34 #490 [Debug] > │         let v17: std::string::String =                                       │

02:03:34 #491 [Debug] > │             format!("{:#?}",                                                 │

02:03:34 #492 [Debug] > │ &LrcPtr::new(Repl_main::UH2::UH2_0(LrcPtr::new(Repl_main::UH0::UH0_1),       │

02:03:34 #493 [Debug] > │                                                                              │

02:03:34 #494 [Debug] > │ string("01"),                                                                │

02:03:34 #495 [Debug] > │                                                                              │

02:03:34 #496 [Debug] > │ Repl_main::US4::US4_0(Repl_main::US3::US3_0),                                │

02:03:34 #497 [Debug] > │                                                                              │

02:03:34 #498 [Debug] > │ LrcPtr::new(Repl_main::UH2::UH2_0(LrcPtr::new(Repl_main::UH0::UH0_1),        │

02:03:34 #499 [Debug] > │                                                                              │

02:03:34 #500 [Debug] > │ string("02"),                                                                │

02:03:34 #501 [Debug] > │                                                                              │

02:03:34 #502 [Debug] > │ Repl_main::US4::US4_0(Repl_main::US3::US3_0),                                │

02:03:34 #503 [Debug] > │                                                                              │

02:03:34 #504 [Debug] > │ LrcPtr::new(Repl_main::UH2::UH2_0(LrcPtr::new(Repl_main::UH0::UH0_1),        │

02:03:34 #505 [Debug] > │                                                                              │

02:03:34 #506 [Debug] > │ string("03"),                                                                │

02:03:34 #507 [Debug] > │                                                                              │

02:03:34 #508 [Debug] > │ Repl_main::US4::US4_0(Repl_main::US3::US3_0),                                │

02:03:34 #509 [Debug] > │                                                                              │

02:03:34 #510 [Debug] > │ LrcPtr::new(Repl_main::UH2::UH2_1))))))));                                   │

02:03:34 #511 [Debug] > │         println!("{0}", &v17,);                                              │

02:03:34 #512 [Debug] > │         ()                                                                   │

02:03:34 #513 [Debug] > │     }                                                                        │

02:03:34 #514 [Debug] > │     on_startup!(Repl_main::method0());                                       │

02:03:34 #515 [Debug] > │ }                                                                            │

02:03:34 #516 [Debug] > │                                                                              │

02:03:34 #517 [Debug] > │                                                                              │

02:03:34 #518 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:34 #519 [Debug] >

02:03:34 #520 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:34 #521 [Debug] > // // test

02:03:34 #522 [Debug] > // // rust=

02:03:34 #523 [Debug] >

02:03:34 #524 [Debug] > get_tasks ()

02:03:34 #525 [Debug] > |> listm'.try_item 0i32

02:03:34 #526 [Debug] > |> fun (Some task) => task.task.name

02:03:34 #527 [Debug] > |> _equal (task_name "01")

02:03:34 #528 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-3466-6696-6affe42c9bce\main.spi

02:03:39 #529 [Debug] >

02:03:39 #530 [Debug] > ╭─[ 4.43s - return value ]─────────────────────────────────────────────────────╮

02:03:39 #531 [Debug] > │ .rs output:                                                                  │

02:03:39 #532 [Debug] > │                                                                              │

02:03:39 #533 [Debug] > │                                                                              │

02:03:39 #534 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:39 #535 [Debug] >

02:03:39 #536 [Debug] > ╭─[ 4.43s - stdout ]───────────────────────────────────────────────────────────╮

02:03:39 #537 [Debug] > │                                                                              │

02:03:39 #538 [Debug] > │ .fsx:                                                                        │

02:03:39 #539 [Debug] > │ let rec method0 () : unit =                                                  │

02:03:39 #540 [Debug] > │     let v3 : string = "01"                                                   │

02:03:39 #541 [Debug] > │     let v4 : string = $"_equal / actual: %A{v3} / expected: %A{v3}"          │

02:03:39 #542 [Debug] > │     ()                                                                       │

02:03:39 #543 [Debug] > │ method0()                                                                    │

02:03:39 #544 [Debug] > │                                                                              │

02:03:39 #545 [Debug] > │ .rs:                                                                         │

02:03:39 #546 [Debug] > │ #![allow(dead_code,)]                                                        │

02:03:39 #547 [Debug] > │ #![allow(non_camel_case_types,)]                                             │

02:03:39 #548 [Debug] > │ #![allow(non_snake_case,)]                                                   │

02:03:39 #549 [Debug] > │ #![allow(non_upper_case_globals,)]                                           │

02:03:39 #550 [Debug] > │ #![allow(unreachable_code,)]                                                 │

02:03:39 #551 [Debug] > │ #![allow(unused_attributes,)]                                                │

02:03:39 #552 [Debug] > │ #![allow(unused_imports,)]                                                   │

02:03:39 #553 [Debug] > │ #![allow(unused_macros,)]                                                    │

02:03:39 #554 [Debug] > │ #![allow(unused_parens,)]                                                    │

02:03:39 #555 [Debug] > │ #![allow(unused_variables,)]                                                 │

02:03:39 #556 [Debug] > │ pub mod Repl_main {                                                          │

02:03:39 #557 [Debug] > │     use super::*;                                                            │

02:03:39 #558 [Debug] > │     use fable_library_rust::Native_::Any;                                    │

02:03:39 #559 [Debug] > │     use fable_library_rust::Native_::on_startup;                             │

02:03:39 #560 [Debug] > │     use fable_library_rust::String_::sprintf;                                │

02:03:39 #561 [Debug] > │     use fable_library_rust::String_::string;                                 │

02:03:39 #562 [Debug] > │     pub fn method0() {                                                       │

02:03:39 #563 [Debug] > │         let v4: string =                                                     │

02:03:39 #564 [Debug] > │             sprintf!("_equal / actual: {:?} / expected: {:?}",               │

02:03:39 #565 [Debug] > │ &string("01"),                                                               │

02:03:39 #566 [Debug] > │                      &string("01"));                                         │

02:03:39 #567 [Debug] > │         ()                                                                   │

02:03:39 #568 [Debug] > │     }                                                                        │

02:03:39 #569 [Debug] > │     on_startup!(Repl_main::method0());                                       │

02:03:39 #570 [Debug] > │ }                                                                            │

02:03:39 #571 [Debug] > │                                                                              │

02:03:39 #572 [Debug] > │                                                                              │

02:03:39 #573 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:39 #574 [Debug] >

02:03:39 #575 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:39 #576 [Debug] > // // test

02:03:39 #577 [Debug] >

02:03:39 #578 [Debug] > ()

02:03:39 #579 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-3911-1131-1e1b1284105c\main.spi

02:03:39 #580 [Debug] >

02:03:39 #581 [Debug] > ╭─[ 387.45ms - stdout ]────────────────────────────────────────────────────────╮

02:03:39 #582 [Debug] > │ let rec method0 () : unit =                                                  │

02:03:39 #583 [Debug] > │     ()                                                                       │

02:03:39 #584 [Debug] > │ method0()                                                                    │

02:03:39 #585 [Debug] > │                                                                              │

02:03:39 #586 [Debug] > │                                                                              │

02:03:39 #587 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:41 #588 [Debug] > [NbConvertApp] Converting notebook Tasks.dib.ipynb to html

02:03:41 #589 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:03:41 #590 [Debug] >   validate(nb)

02:03:41 #591 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:03:41 #592 [Debug] >   return _pygments_highlight(

02:03:42 #593 [Debug] > [NbConvertApp] Writing 303117 bytes to Tasks.dib.html

02:03:42 #594 [Debug] executeAsync / exitCode: 0 / proc.Id: 39344 / output.Length: 34919

02:03:42 #595 [Debug] main / executeCommand / exitCode: 0

In [ ]:
{ . "$ScriptDir/../lib/spiral/build.ps1" } | Invoke-Block
02:03:44 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:03:44 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:03:44 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:03:44 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:03:45 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:03:45 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:03:45 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:03:45 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:03:45 #9 [Debug] > Server bound to: http://localhost:13805

02:03:45 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 testing.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:03:48 #11 [Debug] >

02:03:48 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:03:48 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:03:48 #14 [Debug] > │ # testing                                                                    │

02:03:48 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:48 #16 [Debug] >

02:03:48 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:48 #18 [Debug] > inl _almost_equal b a =

02:03:48 #19 [Debug] >     assert (abs (b - a) < 0.00000001) $"$\"_almost_equal / actual: %A{!a}

02:03:48 #20 [Debug] > expected: %A{!b}\""

02:03:48 #21 [Debug] >

02:03:48 #22 [Debug] > inl _equal b a =

02:03:48 #23 [Debug] >     assert (a = b) $"$\"_equal / actual: %A{!a} / expected: %A{!b}\""

02:03:48 #24 [Debug] >

02:03:48 #25 [Debug] > inl _is_less_than b a =

02:03:48 #26 [Debug] >     assert (b < a) $"$\"_is_less_than / actual: %A{!a} / expected: %A{!b}\""

02:03:48 #27 [Debug] >

02:03:48 #28 [Debug] > inl _is_less_than_or_equal b a =

02:03:48 #29 [Debug] >     assert (b <= a) $"$\"_is_less_than_or_equal / actual: %A{!a} / expected:

02:03:48 #30 [Debug] > %A{!b}\""

02:03:48 #31 [Debug] >

02:03:48 #32 [Debug] > inl _throws (fn : () -> ()) : option string =

02:03:48 #33 [Debug] >     inl none = None : option string

02:03:48 #34 [Debug] >     inl some (s : string) = Some s

02:03:48 #35 [Debug] >     $"try !fn (); !none with ex -> !some ex.Message"

02:03:51 #36 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-5047-4724-40eb836065e9\main.spi

02:03:53 #37 [Debug] >

02:03:53 #38 [Debug] > ╭─[ 5.31s - stdout ]───────────────────────────────────────────────────────────╮

02:03:53 #39 [Debug] > │ ()                                                                           │

02:03:53 #40 [Debug] > │                                                                              │

02:03:53 #41 [Debug] > │                                                                              │

02:03:53 #42 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:53 #43 [Debug] >

02:03:53 #44 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:03:53 #45 [Debug] > inl print_and_return x =

02:03:53 #46 [Debug] >     $"printfn $\"print_and_return / x: {!x}\""

02:03:53 #47 [Debug] >     x

02:03:53 #48 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0203-5347-4735-498b02863457\main.spi

02:03:53 #49 [Debug] >

02:03:53 #50 [Debug] > ╭─[ 177.32ms - stdout ]────────────────────────────────────────────────────────╮

02:03:53 #51 [Debug] > │ ()                                                                           │

02:03:53 #52 [Debug] > │                                                                              │

02:03:53 #53 [Debug] > │                                                                              │

02:03:53 #54 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:03:55 #55 [Debug] > [NbConvertApp] Converting notebook testing.dib.ipynb to html

02:03:55 #56 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:03:55 #57 [Debug] >   validate(nb)

02:03:56 #58 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:03:56 #59 [Debug] >   return _pygments_highlight(

02:03:56 #60 [Debug] > [NbConvertApp] Writing 274807 bytes to testing.dib.html

02:03:57 #61 [Debug] executeAsync / exitCode: 0 / proc.Id: 64912 / output.Length: 2726

02:03:57 #62 [Debug] main / executeCommand / exitCode: 0

02:03:58 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:03:58 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:03:58 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:03:58 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:03:58 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:03:58 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:03:59 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:03:59 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:03:59 #9 [Debug] > Server bound to: http://localhost:13805

02:03:59 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 common.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:04:01 #11 [Debug] >

02:04:01 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:01 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:01 #14 [Debug] > │ # common                                                                     │

02:04:01 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:01 #16 [Debug] >

02:04:01 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:01 #18 [Debug] > // // test

02:04:01 #19 [Debug] >

02:04:01 #20 [Debug] > open testing

02:04:05 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0425-2547-208897cbc4b9\main.spi

02:04:07 #22 [Debug] >

02:04:07 #23 [Debug] > ╭─[ 5.36s - stdout ]───────────────────────────────────────────────────────────╮

02:04:07 #24 [Debug] > │ ()                                                                           │

02:04:07 #25 [Debug] > │                                                                              │

02:04:07 #26 [Debug] > │                                                                              │

02:04:07 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:07 #28 [Debug] >

02:04:07 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:07 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:07 #31 [Debug] > │ ## pair                                                                      │

02:04:07 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:07 #33 [Debug] >

02:04:07 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:07 #35 [Debug] > inl pair x y =

02:04:07 #36 [Debug] >     x, y

02:04:07 #37 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0724-2430-215f383f2b80\main.spi

02:04:07 #38 [Debug] >

02:04:07 #39 [Debug] > ╭─[ 203.15ms - stdout ]────────────────────────────────────────────────────────╮

02:04:07 #40 [Debug] > │ ()                                                                           │

02:04:07 #41 [Debug] > │                                                                              │

02:04:07 #42 [Debug] > │                                                                              │

02:04:07 #43 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:07 #44 [Debug] >

02:04:07 #45 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:07 #46 [Debug] > // // test

02:04:07 #47 [Debug] >

02:04:07 #48 [Debug] > pair 1i32 2i32

02:04:07 #49 [Debug] > |> _equal (1, 2)

02:04:07 #50 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0744-4461-496df4c73ca7\main.spi

02:04:08 #51 [Debug] >

02:04:08 #52 [Debug] > ╭─[ 807.75ms - stdout ]────────────────────────────────────────────────────────╮

02:04:08 #53 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:08 #54 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (1, 2)} / expected:       │

02:04:08 #55 [Debug] > │ %A{struct (1, 2)}"                                                           │

02:04:08 #56 [Debug] > │     ()                                                                       │

02:04:08 #57 [Debug] > │ method0()                                                                    │

02:04:08 #58 [Debug] > │                                                                              │

02:04:08 #59 [Debug] > │                                                                              │

02:04:08 #60 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:08 #61 [Debug] >

02:04:08 #62 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:08 #63 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:08 #64 [Debug] > │ ## ||>                                                                       │

02:04:08 #65 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:08 #66 [Debug] >

02:04:08 #67 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:08 #68 [Debug] > inl (||>) (arg1, arg2) fn = arg2 |> fn arg1

02:04:08 #69 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0826-2628-28d24957eed1\main.spi

02:04:08 #70 [Debug] >

02:04:08 #71 [Debug] > ╭─[ 190.95ms - stdout ]────────────────────────────────────────────────────────╮

02:04:08 #72 [Debug] > │ ()                                                                           │

02:04:08 #73 [Debug] > │                                                                              │

02:04:08 #74 [Debug] > │                                                                              │

02:04:08 #75 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:08 #76 [Debug] >

02:04:08 #77 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:08 #78 [Debug] > // // test

02:04:08 #79 [Debug] >

02:04:08 #80 [Debug] > (3i32, 2i32)

02:04:08 #81 [Debug] > ||> fun a b => a - b

02:04:08 #82 [Debug] > |> _equal 1

02:04:08 #83 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0845-4538-47841f2fe965\main.spi

02:04:08 #84 [Debug] >

02:04:08 #85 [Debug] > ╭─[ 179.11ms - stdout ]────────────────────────────────────────────────────────╮

02:04:08 #86 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:08 #87 [Debug] > │     let v0 : string = $"_equal / actual: %A{1} / expected: %A{1}"            │

02:04:08 #88 [Debug] > │     ()                                                                       │

02:04:08 #89 [Debug] > │ method0()                                                                    │

02:04:08 #90 [Debug] > │                                                                              │

02:04:08 #91 [Debug] > │                                                                              │

02:04:08 #92 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:08 #93 [Debug] >

02:04:08 #94 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:08 #95 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:08 #96 [Debug] > │ ## flip                                                                      │

02:04:08 #97 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:08 #98 [Debug] >

02:04:08 #99 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:08 #100 [Debug] > inl flip fn a b =

02:04:08 #101 [Debug] >     fn b a

02:04:08 #102 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0863-6387-699166501087\main.spi

02:04:08 #103 [Debug] >

02:04:08 #104 [Debug] > ╭─[ 189.96ms - stdout ]────────────────────────────────────────────────────────╮

02:04:08 #105 [Debug] > │ ()                                                                           │

02:04:08 #106 [Debug] > │                                                                              │

02:04:08 #107 [Debug] > │                                                                              │

02:04:08 #108 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:08 #109 [Debug] >

02:04:08 #110 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:08 #111 [Debug] > // // test

02:04:08 #112 [Debug] >

02:04:08 #113 [Debug] > (1i32, 2i32)

02:04:08 #114 [Debug] > ||> flip pair

02:04:08 #115 [Debug] > |> _equal (2, 1)

02:04:08 #116 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0883-8317-8e745568f753\main.spi

02:04:09 #117 [Debug] >

02:04:09 #118 [Debug] > ╭─[ 207.20ms - stdout ]────────────────────────────────────────────────────────╮

02:04:09 #119 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:09 #120 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (2, 1)} / expected:       │

02:04:09 #121 [Debug] > │ %A{struct (2, 1)}"                                                           │

02:04:09 #122 [Debug] > │     ()                                                                       │

02:04:09 #123 [Debug] > │ method0()                                                                    │

02:04:09 #124 [Debug] > │                                                                              │

02:04:09 #125 [Debug] > │                                                                              │

02:04:09 #126 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:09 #127 [Debug] >

02:04:09 #128 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:09 #129 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:09 #130 [Debug] > │ ## join_body                                                                 │

02:04:09 #131 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:09 #132 [Debug] >

02:04:09 #133 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:09 #134 [Debug] > inl join_body body acc x =

02:04:09 #135 [Debug] >     if var_is x |> not

02:04:09 #136 [Debug] >     then body acc x

02:04:09 #137 [Debug] >     else

02:04:09 #138 [Debug] >         inl acc = dyn acc

02:04:09 #139 [Debug] >         join body acc x

02:04:09 #140 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0904-0478-0c81d981c0c9\main.spi

02:04:09 #141 [Debug] >

02:04:09 #142 [Debug] > ╭─[ 210.61ms - stdout ]────────────────────────────────────────────────────────╮

02:04:09 #143 [Debug] > │ ()                                                                           │

02:04:09 #144 [Debug] > │                                                                              │

02:04:09 #145 [Debug] > │                                                                              │

02:04:09 #146 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:09 #147 [Debug] >

02:04:09 #148 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:09 #149 [Debug] > // // test

02:04:09 #150 [Debug] >

02:04:09 #151 [Debug] > inl rec fold_list f s = function

02:04:09 #152 [Debug] >     | Cons (x, x') => fold_list f (f s x) x'

02:04:09 #153 [Debug] >     | Nil => s

02:04:09 #154 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0925-2596-26bd29215461\main.spi

02:04:09 #155 [Debug] >

02:04:09 #156 [Debug] > ╭─[ 188.04ms - stdout ]────────────────────────────────────────────────────────╮

02:04:09 #157 [Debug] > │ ()                                                                           │

02:04:09 #158 [Debug] > │                                                                              │

02:04:09 #159 [Debug] > │                                                                              │

02:04:09 #160 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:09 #161 [Debug] >

02:04:09 #162 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:09 #163 [Debug] > // // test

02:04:09 #164 [Debug] >

02:04:09 #165 [Debug] > [[5i32; 4; join 3; 2; 1]]

02:04:09 #166 [Debug] > |> fold_list (+) 0

02:04:09 #167 [Debug] > |> _equal 15

02:04:09 #168 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0944-4493-493220a88732\main.spi

02:04:09 #169 [Debug] >

02:04:09 #170 [Debug] > ╭─[ 358.06ms - stdout ]────────────────────────────────────────────────────────╮

02:04:09 #171 [Debug] > │ let rec method1 () : int32 =                                                 │

02:04:09 #172 [Debug] > │     3                                                                        │

02:04:09 #173 [Debug] > │ and method0 () : unit =                                                      │

02:04:09 #174 [Debug] > │     let v0 : int32 = method1()                                               │

02:04:09 #175 [Debug] > │     let v1 : int32 = 9 + v0                                                  │

02:04:09 #176 [Debug] > │     let v2 : int32 = v1 + 2                                                  │

02:04:09 #177 [Debug] > │     let v3 : int32 = v2 + 1                                                  │

02:04:09 #178 [Debug] > │     let v4 : bool = v3 = 15                                                  │

02:04:09 #179 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{15}"          │

02:04:09 #180 [Debug] > │     let v6 : bool = v4 = false                                               │

02:04:09 #181 [Debug] > │     if v6 then                                                               │

02:04:09 #182 [Debug] > │         failwith<unit> v5                                                    │

02:04:09 #183 [Debug] > │ method0()                                                                    │

02:04:09 #184 [Debug] > │                                                                              │

02:04:09 #185 [Debug] > │                                                                              │

02:04:09 #186 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:09 #187 [Debug] >

02:04:09 #188 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:09 #189 [Debug] > // // test

02:04:09 #190 [Debug] >

02:04:09 #191 [Debug] > [[5i32; 4; join 3; 2; 1]]

02:04:09 #192 [Debug] > |> fold_list (join_body (+)) 0

02:04:09 #193 [Debug] > |> _equal 15

02:04:09 #194 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-0981-8157-809881fcd3e3\main.spi

02:04:10 #195 [Debug] >

02:04:10 #196 [Debug] > ╭─[ 192.20ms - stdout ]────────────────────────────────────────────────────────╮

02:04:10 #197 [Debug] > │ let rec method1 () : int32 =                                                 │

02:04:10 #198 [Debug] > │     3                                                                        │

02:04:10 #199 [Debug] > │ and method2 (v0 : int32, v1 : int32) : int32 =                               │

02:04:10 #200 [Debug] > │     let v2 : int32 = v1 + v0                                                 │

02:04:10 #201 [Debug] > │     v2                                                                       │

02:04:10 #202 [Debug] > │ and method0 () : unit =                                                      │

02:04:10 #203 [Debug] > │     let v0 : int32 = method1()                                               │

02:04:10 #204 [Debug] > │     let v1 : int32 = 9                                                       │

02:04:10 #205 [Debug] > │     let v2 : int32 = method2(v0, v1)                                         │

02:04:10 #206 [Debug] > │     let v3 : int32 = v2 + 2                                                  │

02:04:10 #207 [Debug] > │     let v4 : int32 = v3 + 1                                                  │

02:04:10 #208 [Debug] > │     let v5 : bool = v4 = 15                                                  │

02:04:10 #209 [Debug] > │     let v6 : string = $"_equal / actual: %A{v4} / expected: %A{15}"          │

02:04:10 #210 [Debug] > │     let v7 : bool = v5 = false                                               │

02:04:10 #211 [Debug] > │     if v7 then                                                               │

02:04:10 #212 [Debug] > │         failwith<unit> v6                                                    │

02:04:10 #213 [Debug] > │ method0()                                                                    │

02:04:10 #214 [Debug] > │                                                                              │

02:04:10 #215 [Debug] > │                                                                              │

02:04:10 #216 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #217 [Debug] >

02:04:10 #218 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:10 #219 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:10 #220 [Debug] > │ ## join_body_unit                                                            │

02:04:10 #221 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #222 [Debug] >

02:04:10 #223 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:10 #224 [Debug] > inl join_body_unit body d x =

02:04:10 #225 [Debug] >     if var_is d |> not

02:04:10 #226 [Debug] >     then body x

02:04:10 #227 [Debug] >     else

02:04:10 #228 [Debug] >         inl x = dyn x

02:04:10 #229 [Debug] >         join body x

02:04:10 #230 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1001-0183-009805cae528\main.spi

02:04:10 #231 [Debug] >

02:04:10 #232 [Debug] > ╭─[ 165.07ms - stdout ]────────────────────────────────────────────────────────╮

02:04:10 #233 [Debug] > │ ()                                                                           │

02:04:10 #234 [Debug] > │                                                                              │

02:04:10 #235 [Debug] > │                                                                              │

02:04:10 #236 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #237 [Debug] >

02:04:10 #238 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:10 #239 [Debug] > // // test

02:04:10 #240 [Debug] >

02:04:10 #241 [Debug] > [[5i32; 4; join 3; 2; 1]]

02:04:10 #242 [Debug] > |> fold_list (fun acc n => join_body_unit ((+) acc) n n) 0

02:04:10 #243 [Debug] > |> _equal 15

02:04:10 #244 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1018-1869-109d0351eff4\main.spi

02:04:10 #245 [Debug] >

02:04:10 #246 [Debug] > ╭─[ 177.29ms - stdout ]────────────────────────────────────────────────────────╮

02:04:10 #247 [Debug] > │ let rec method1 () : int32 =                                                 │

02:04:10 #248 [Debug] > │     3                                                                        │

02:04:10 #249 [Debug] > │ and method2 (v0 : int32) : int32 =                                           │

02:04:10 #250 [Debug] > │     let v1 : int32 = 9 + v0                                                  │

02:04:10 #251 [Debug] > │     v1                                                                       │

02:04:10 #252 [Debug] > │ and method0 () : unit =                                                      │

02:04:10 #253 [Debug] > │     let v0 : int32 = method1()                                               │

02:04:10 #254 [Debug] > │     let v1 : int32 = method2(v0)                                             │

02:04:10 #255 [Debug] > │     let v2 : int32 = v1 + 2                                                  │

02:04:10 #256 [Debug] > │     let v3 : int32 = v2 + 1                                                  │

02:04:10 #257 [Debug] > │     let v4 : bool = v3 = 15                                                  │

02:04:10 #258 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{15}"          │

02:04:10 #259 [Debug] > │     let v6 : bool = v4 = false                                               │

02:04:10 #260 [Debug] > │     if v6 then                                                               │

02:04:10 #261 [Debug] > │         failwith<unit> v5                                                    │

02:04:10 #262 [Debug] > │ method0()                                                                    │

02:04:10 #263 [Debug] > │                                                                              │

02:04:10 #264 [Debug] > │                                                                              │

02:04:10 #265 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #266 [Debug] >

02:04:10 #267 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:10 #268 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:10 #269 [Debug] > │ ## run_target                                                                │

02:04:10 #270 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #271 [Debug] >

02:04:10 #272 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:10 #273 [Debug] > union target =

02:04:10 #274 [Debug] >     | Rust

02:04:10 #275 [Debug] >     | Fsharp

02:04:10 #276 [Debug] >

02:04:10 #277 [Debug] > inl run_target (fn : target -> (() -> _)) =

02:04:10 #278 [Debug] >     inl rust_fn = fn Rust

02:04:10 #279 [Debug] >     inl fsharp_fn = fn Fsharp

02:04:10 #280 [Debug] >

02:04:10 #281 [Debug] >     $"#if FABLE_COMPILER_RUST"

02:04:10 #282 [Debug] >     $"!rust_fn ()"

02:04:10 #283 [Debug] >     $"#else"

02:04:10 #284 [Debug] >     $"!fsharp_fn ()"

02:04:10 #285 [Debug] >     $"#endif"

02:04:10 #286 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1037-3749-308f931fdc52\main.spi

02:04:10 #287 [Debug] >

02:04:10 #288 [Debug] > ╭─[ 168.91ms - stdout ]────────────────────────────────────────────────────────╮

02:04:10 #289 [Debug] > │ ()                                                                           │

02:04:10 #290 [Debug] > │                                                                              │

02:04:10 #291 [Debug] > │                                                                              │

02:04:10 #292 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #293 [Debug] >

02:04:10 #294 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:10 #295 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:10 #296 [Debug] > │ ## format_debug                                                              │

02:04:10 #297 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #298 [Debug] >

02:04:10 #299 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:10 #300 [Debug] > inl format_debug x =

02:04:10 #301 [Debug] >     $"$\"%A{!x}\"" : string

02:04:10 #302 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1054-5485-5831b0d53b2f\main.spi

02:04:10 #303 [Debug] >

02:04:10 #304 [Debug] > ╭─[ 185.68ms - stdout ]────────────────────────────────────────────────────────╮

02:04:10 #305 [Debug] > │ ()                                                                           │

02:04:10 #306 [Debug] > │                                                                              │

02:04:10 #307 [Debug] > │                                                                              │

02:04:10 #308 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #309 [Debug] >

02:04:10 #310 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:10 #311 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:10 #312 [Debug] > │ ## nameof                                                                    │

02:04:10 #313 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #314 [Debug] >

02:04:10 #315 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:10 #316 [Debug] > inl nameof x : string =

02:04:10 #317 [Debug] >     $"nameof !x"

02:04:10 #318 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1074-7423-75aa08fd73ab\main.spi

02:04:10 #319 [Debug] >

02:04:10 #320 [Debug] > ╭─[ 184.51ms - stdout ]────────────────────────────────────────────────────────╮

02:04:10 #321 [Debug] > │ ()                                                                           │

02:04:10 #322 [Debug] > │                                                                              │

02:04:10 #323 [Debug] > │                                                                              │

02:04:10 #324 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #325 [Debug] >

02:04:10 #326 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:10 #327 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:10 #328 [Debug] > │ ## obj_to_string                                                             │

02:04:10 #329 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:10 #330 [Debug] >

02:04:10 #331 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:10 #332 [Debug] > inl obj_to_string x : string =

02:04:10 #333 [Debug] >     $"!x.ToString ()"

02:04:11 #334 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1092-9284-980bbf064a75\main.spi

02:04:11 #335 [Debug] >

02:04:11 #336 [Debug] > ╭─[ 201.29ms - stdout ]────────────────────────────────────────────────────────╮

02:04:11 #337 [Debug] > │ ()                                                                           │

02:04:11 #338 [Debug] > │                                                                              │

02:04:11 #339 [Debug] > │                                                                              │

02:04:11 #340 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:11 #341 [Debug] >

02:04:11 #342 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:11 #343 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:11 #344 [Debug] > │ ## get_environment_variable                                                  │

02:04:11 #345 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:11 #346 [Debug] >

02:04:11 #347 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:11 #348 [Debug] > inl get_environment_variable (var : string) : string =

02:04:11 #349 [Debug] >     $"System.Environment.GetEnvironmentVariable !var"

02:04:11 #350 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-1113-1357-1179ba18350e\main.spi

02:04:11 #351 [Debug] >

02:04:11 #352 [Debug] > ╭─[ 213.07ms - stdout ]────────────────────────────────────────────────────────╮

02:04:11 #353 [Debug] > │ ()                                                                           │

02:04:11 #354 [Debug] > │                                                                              │

02:04:11 #355 [Debug] > │                                                                              │

02:04:11 #356 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:13 #357 [Debug] > [NbConvertApp] Converting notebook common.dib.ipynb to html

02:04:13 #358 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:04:13 #359 [Debug] >   validate(nb)

02:04:13 #360 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:04:13 #361 [Debug] >   return _pygments_highlight(

02:04:14 #362 [Debug] > [NbConvertApp] Writing 301673 bytes to common.dib.html

02:04:14 #363 [Debug] executeAsync / exitCode: 0 / proc.Id: 40804 / output.Length: 18861

02:04:14 #364 [Debug] main / executeCommand / exitCode: 0

02:04:15 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:04:15 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:04:15 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:04:15 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:04:16 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:04:16 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:04:16 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:04:16 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:04:16 #9 [Debug] > Server bound to: http://localhost:13805

02:04:16 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 console.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:04:19 #11 [Debug] >

02:04:19 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:19 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:19 #14 [Debug] > │ # console                                                                    │

02:04:19 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:19 #16 [Debug] >

02:04:19 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:19 #18 [Debug] > // // test

02:04:19 #19 [Debug] >

02:04:19 #20 [Debug] > open testing

02:04:22 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-2146-4658-4e733627339c\main.spi

02:04:24 #22 [Debug] >

02:04:24 #23 [Debug] > ╭─[ 5.23s - stdout ]───────────────────────────────────────────────────────────╮

02:04:24 #24 [Debug] > │ ()                                                                           │

02:04:24 #25 [Debug] > │                                                                              │

02:04:24 #26 [Debug] > │                                                                              │

02:04:24 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:24 #28 [Debug] >

02:04:24 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:24 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:24 #31 [Debug] > │ ## write_line                                                                │

02:04:24 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:24 #33 [Debug] >

02:04:24 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:24 #35 [Debug] > inl write_line obj : () =

02:04:24 #36 [Debug] >     $"System.Console.WriteLine !obj"

02:04:24 #37 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-2441-4166-47a1d57bc5a0\main.spi

02:04:24 #38 [Debug] >

02:04:24 #39 [Debug] > ╭─[ 180.61ms - stdout ]────────────────────────────────────────────────────────╮

02:04:24 #40 [Debug] > │ ()                                                                           │

02:04:24 #41 [Debug] > │                                                                              │

02:04:24 #42 [Debug] > │                                                                              │

02:04:24 #43 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:24 #44 [Debug] >

02:04:24 #45 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:24 #46 [Debug] > inl write_line_ ~obj : () =

02:04:24 #47 [Debug] >     $"System.Console.WriteLine !obj"

02:04:24 #48 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-2460-6038-60a707e70438\main.spi

02:04:24 #49 [Debug] >

02:04:24 #50 [Debug] > ╭─[ 179.47ms - stdout ]────────────────────────────────────────────────────────╮

02:04:24 #51 [Debug] > │ ()                                                                           │

02:04:24 #52 [Debug] > │                                                                              │

02:04:24 #53 [Debug] > │                                                                              │

02:04:24 #54 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:26 #55 [Debug] > [NbConvertApp] Converting notebook console.dib.ipynb to html

02:04:26 #56 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:04:26 #57 [Debug] >   validate(nb)

02:04:27 #58 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:04:27 #59 [Debug] >   return _pygments_highlight(

02:04:27 #60 [Debug] > [NbConvertApp] Writing 273326 bytes to console.dib.html

02:04:27 #61 [Debug] executeAsync / exitCode: 0 / proc.Id: 50268 / output.Length: 3010

02:04:27 #62 [Debug] main / executeCommand / exitCode: 0

02:04:28 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:04:28 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:04:28 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:04:28 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:04:29 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:04:29 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:04:29 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:04:29 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:04:29 #9 [Debug] > Server bound to: http://localhost:13805

02:04:29 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 math.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:04:32 #11 [Debug] >

02:04:32 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:32 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:32 #14 [Debug] > │ # math                                                                       │

02:04:32 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:32 #16 [Debug] >

02:04:32 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:32 #18 [Debug] > // // test

02:04:32 #19 [Debug] >

02:04:32 #20 [Debug] > open testing

02:04:35 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3469-6986-6e6fb20a6522\main.spi

02:04:37 #22 [Debug] >

02:04:37 #23 [Debug] > ╭─[ 5.46s - stdout ]───────────────────────────────────────────────────────────╮

02:04:37 #24 [Debug] > │ ()                                                                           │

02:04:37 #25 [Debug] > │                                                                              │

02:04:37 #26 [Debug] > │                                                                              │

02:04:37 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:37 #28 [Debug] >

02:04:37 #29 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:37 #30 [Debug] > // // test

02:04:37 #31 [Debug] >

02:04:37 #32 [Debug] > 2 * 2 / 0.4f64 |> sqrt

02:04:37 #33 [Debug] > |> _almost_equal 3.1622776601683795

02:04:37 #34 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3777-7719-7c6cc3adff74\main.spi

02:04:38 #35 [Debug] >

02:04:38 #36 [Debug] > ╭─[ 772.65ms - stdout ]────────────────────────────────────────────────────────╮

02:04:38 #37 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:38 #38 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{3.1622776601683795} /     │

02:04:38 #39 [Debug] > │ expected: %A{3.1622776601683795}"                                            │

02:04:38 #40 [Debug] > │     ()                                                                       │

02:04:38 #41 [Debug] > │ method0()                                                                    │

02:04:38 #42 [Debug] > │                                                                              │

02:04:38 #43 [Debug] > │                                                                              │

02:04:38 #44 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:38 #45 [Debug] >

02:04:38 #46 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:38 #47 [Debug] > // // test

02:04:38 #48 [Debug] >

02:04:38 #49 [Debug] > 2f64 / 3

02:04:38 #50 [Debug] > |> _almost_equal 0.6666666666666666

02:04:38 #51 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3854-5458-5ad475e5560d\main.spi

02:04:38 #52 [Debug] >

02:04:38 #53 [Debug] > ╭─[ 212.59ms - stdout ]────────────────────────────────────────────────────────╮

02:04:38 #54 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:38 #55 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.6666666666666666} /     │

02:04:38 #56 [Debug] > │ expected: %A{0.6666666666666666}"                                            │

02:04:38 #57 [Debug] > │     ()                                                                       │

02:04:38 #58 [Debug] > │ method0()                                                                    │

02:04:38 #59 [Debug] > │                                                                              │

02:04:38 #60 [Debug] > │                                                                              │

02:04:38 #61 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:38 #62 [Debug] >

02:04:38 #63 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:38 #64 [Debug] > // // test

02:04:38 #65 [Debug] >

02:04:38 #66 [Debug] > 2f64 |> log

02:04:38 #67 [Debug] > |> _almost_equal 0.6931471805599453

02:04:38 #68 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3876-7628-7d32c4eb55f0\main.spi

02:04:38 #69 [Debug] >

02:04:38 #70 [Debug] > ╭─[ 186.10ms - stdout ]────────────────────────────────────────────────────────╮

02:04:38 #71 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:38 #72 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.6931471805599453} /     │

02:04:38 #73 [Debug] > │ expected: %A{0.6931471805599453}"                                            │

02:04:38 #74 [Debug] > │     ()                                                                       │

02:04:38 #75 [Debug] > │ method0()                                                                    │

02:04:38 #76 [Debug] > │                                                                              │

02:04:38 #77 [Debug] > │                                                                              │

02:04:38 #78 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:38 #79 [Debug] >

02:04:38 #80 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:38 #81 [Debug] > // // test

02:04:38 #82 [Debug] >

02:04:38 #83 [Debug] > pi

02:04:38 #84 [Debug] > |> _almost_equal 3.141592653589793f64

02:04:39 #85 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3895-9522-9296cefd81c9\main.spi

02:04:39 #86 [Debug] >

02:04:39 #87 [Debug] > ╭─[ 188.60ms - stdout ]────────────────────────────────────────────────────────╮

02:04:39 #88 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:39 #89 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{3.141592653589793} /      │

02:04:39 #90 [Debug] > │ expected: %A{3.141592653589793}"                                             │

02:04:39 #91 [Debug] > │     ()                                                                       │

02:04:39 #92 [Debug] > │ method0()                                                                    │

02:04:39 #93 [Debug] > │                                                                              │

02:04:39 #94 [Debug] > │                                                                              │

02:04:39 #95 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:39 #96 [Debug] >

02:04:39 #97 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:39 #98 [Debug] > // // test

02:04:39 #99 [Debug] >

02:04:39 #100 [Debug] > pi |> cos

02:04:39 #101 [Debug] > |> _equal -1f64

02:04:39 #102 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3914-1454-1273e9bcb921\main.spi

02:04:39 #103 [Debug] >

02:04:39 #104 [Debug] > ╭─[ 221.55ms - stdout ]────────────────────────────────────────────────────────╮

02:04:39 #105 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:39 #106 [Debug] > │     let v0 : string = $"_equal / actual: %A{-1.0} / expected: %A{-1.0}"      │

02:04:39 #107 [Debug] > │     ()                                                                       │

02:04:39 #108 [Debug] > │ method0()                                                                    │

02:04:39 #109 [Debug] > │                                                                              │

02:04:39 #110 [Debug] > │                                                                              │

02:04:39 #111 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:39 #112 [Debug] >

02:04:39 #113 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:39 #114 [Debug] > // // test

02:04:39 #115 [Debug] >

02:04:39 #116 [Debug] > pi

02:04:39 #117 [Debug] > |> cos

02:04:39 #118 [Debug] > |> fun n => n / 2f64

02:04:39 #119 [Debug] > |> _almost_equal -0.5

02:04:39 #120 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3937-3718-3405873e383c\main.spi

02:04:39 #121 [Debug] >

02:04:39 #122 [Debug] > ╭─[ 173.37ms - stdout ]────────────────────────────────────────────────────────╮

02:04:39 #123 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:39 #124 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{-0.5} / expected:         │

02:04:39 #125 [Debug] > │ %A{-0.5}"                                                                    │

02:04:39 #126 [Debug] > │     ()                                                                       │

02:04:39 #127 [Debug] > │ method0()                                                                    │

02:04:39 #128 [Debug] > │                                                                              │

02:04:39 #129 [Debug] > │                                                                              │

02:04:39 #130 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:39 #131 [Debug] >

02:04:39 #132 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:39 #133 [Debug] > // // test

02:04:39 #134 [Debug] >

02:04:39 #135 [Debug] > pi / 2 |> cos

02:04:39 #136 [Debug] > |> _almost_equal 0.00000000000000006123233995736766f64

02:04:39 #137 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3954-5475-5639921ed96e\main.spi

02:04:39 #138 [Debug] >

02:04:39 #139 [Debug] > ╭─[ 202.74ms - stdout ]────────────────────────────────────────────────────────╮

02:04:39 #140 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:39 #141 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{6.123233995736766E-17} /  │

02:04:39 #142 [Debug] > │ expected: %A{6.123233995736766E-17}"                                         │

02:04:39 #143 [Debug] > │     ()                                                                       │

02:04:39 #144 [Debug] > │ method0()                                                                    │

02:04:39 #145 [Debug] > │                                                                              │

02:04:39 #146 [Debug] > │                                                                              │

02:04:39 #147 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:39 #148 [Debug] >

02:04:39 #149 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:39 #150 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:39 #151 [Debug] > │ ## atan2                                                                     │

02:04:39 #152 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:39 #153 [Debug] >

02:04:39 #154 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:39 #155 [Debug] > inl atan2 (y : f64) (x : f64) =

02:04:39 #156 [Debug] >     $"System.Math.Atan2 (!y, !x)" : f64

02:04:39 #157 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3975-7575-7e9fe37874ab\main.spi

02:04:39 #158 [Debug] >

02:04:39 #159 [Debug] > ╭─[ 208.92ms - stdout ]────────────────────────────────────────────────────────╮

02:04:39 #160 [Debug] > │ ()                                                                           │

02:04:39 #161 [Debug] > │                                                                              │

02:04:39 #162 [Debug] > │                                                                              │

02:04:39 #163 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:39 #164 [Debug] >

02:04:39 #165 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:39 #166 [Debug] > // // test

02:04:39 #167 [Debug] >

02:04:39 #168 [Debug] > 0 |> atan2 1

02:04:39 #169 [Debug] > |> _equal 1.5707963267948966

02:04:40 #170 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-3996-9686-93a8fc00311e\main.spi

02:04:40 #171 [Debug] >

02:04:40 #172 [Debug] > ╭─[ 496.43ms - stdout ]────────────────────────────────────────────────────────╮

02:04:40 #173 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:40 #174 [Debug] > │     let v0 : float = System.Math.Atan2 (1.0, 0.0)                            │

02:04:40 #175 [Debug] > │     let v1 : bool = v0 = 1.5707963267948966                                  │

02:04:40 #176 [Debug] > │     let v2 : string = $"_equal / actual: %A{v0} / expected:                  │

02:04:40 #177 [Debug] > │ %A{1.5707963267948966}"                                                      │

02:04:40 #178 [Debug] > │     let v3 : bool = v1 = false                                               │

02:04:40 #179 [Debug] > │     if v3 then                                                               │

02:04:40 #180 [Debug] > │         failwith<unit> v2                                                    │

02:04:40 #181 [Debug] > │ method0()                                                                    │

02:04:40 #182 [Debug] > │                                                                              │

02:04:40 #183 [Debug] > │                                                                              │

02:04:40 #184 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:40 #185 [Debug] >

02:04:40 #186 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:40 #187 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:40 #188 [Debug] > │ ## e                                                                         │

02:04:40 #189 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:40 #190 [Debug] >

02:04:40 #191 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:40 #192 [Debug] > inl e () =

02:04:40 #193 [Debug] >     exp 1f64

02:04:40 #194 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4047-4742-4ab9d5d82598\main.spi

02:04:40 #195 [Debug] >

02:04:40 #196 [Debug] > ╭─[ 201.05ms - stdout ]────────────────────────────────────────────────────────╮

02:04:40 #197 [Debug] > │ ()                                                                           │

02:04:40 #198 [Debug] > │                                                                              │

02:04:40 #199 [Debug] > │                                                                              │

02:04:40 #200 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:40 #201 [Debug] >

02:04:40 #202 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:40 #203 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:40 #204 [Debug] > │ ## floor                                                                     │

02:04:40 #205 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:40 #206 [Debug] >

02:04:40 #207 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:40 #208 [Debug] > inl floor forall t {float}. (x : t) : t =

02:04:40 #209 [Debug] >     $"floor !x"

02:04:40 #210 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4067-6789-6d58c1d81cf7\main.spi

02:04:40 #211 [Debug] >

02:04:40 #212 [Debug] > ╭─[ 191.56ms - stdout ]────────────────────────────────────────────────────────╮

02:04:40 #213 [Debug] > │ ()                                                                           │

02:04:40 #214 [Debug] > │                                                                              │

02:04:40 #215 [Debug] > │                                                                              │

02:04:40 #216 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:40 #217 [Debug] >

02:04:40 #218 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:40 #219 [Debug] > // // test

02:04:40 #220 [Debug] >

02:04:40 #221 [Debug] > 0.6 |> floor

02:04:40 #222 [Debug] > |> _equal 0f64

02:04:41 #223 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4088-8812-8595765de838\main.spi

02:04:41 #224 [Debug] >

02:04:41 #225 [Debug] > ╭─[ 234.02ms - stdout ]────────────────────────────────────────────────────────╮

02:04:41 #226 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:41 #227 [Debug] > │     let v0 : float = floor 0.6                                               │

02:04:41 #228 [Debug] > │     let v1 : bool = v0 = 0.0                                                 │

02:04:41 #229 [Debug] > │     let v2 : string = $"_equal / actual: %A{v0} / expected: %A{0.0}"         │

02:04:41 #230 [Debug] > │     let v3 : bool = v1 = false                                               │

02:04:41 #231 [Debug] > │     if v3 then                                                               │

02:04:41 #232 [Debug] > │         failwith<unit> v2                                                    │

02:04:41 #233 [Debug] > │ method0()                                                                    │

02:04:41 #234 [Debug] > │                                                                              │

02:04:41 #235 [Debug] > │                                                                              │

02:04:41 #236 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #237 [Debug] >

02:04:41 #238 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:41 #239 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:41 #240 [Debug] > │ ## log_base                                                                  │

02:04:41 #241 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #242 [Debug] >

02:04:41 #243 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:41 #244 [Debug] > inl log_base (new_base : f64) (a : f64) =

02:04:41 #245 [Debug] >     $"System.Math.Log (!a, !new_base)" : f64

02:04:41 #246 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4111-1190-157bfadf3b00\main.spi

02:04:41 #247 [Debug] >

02:04:41 #248 [Debug] > ╭─[ 166.52ms - stdout ]────────────────────────────────────────────────────────╮

02:04:41 #249 [Debug] > │ ()                                                                           │

02:04:41 #250 [Debug] > │                                                                              │

02:04:41 #251 [Debug] > │                                                                              │

02:04:41 #252 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #253 [Debug] >

02:04:41 #254 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:41 #255 [Debug] > // // test

02:04:41 #256 [Debug] >

02:04:41 #257 [Debug] > 100 |> log_base 10

02:04:41 #258 [Debug] > |> _equal 2

02:04:41 #259 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4128-2873-225d065b171e\main.spi

02:04:41 #260 [Debug] >

02:04:41 #261 [Debug] > ╭─[ 208.59ms - stdout ]────────────────────────────────────────────────────────╮

02:04:41 #262 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:41 #263 [Debug] > │     let v0 : float = System.Math.Log (100.0, 10.0)                           │

02:04:41 #264 [Debug] > │     let v1 : bool = v0 = 2.0                                                 │

02:04:41 #265 [Debug] > │     let v2 : string = $"_equal / actual: %A{v0} / expected: %A{2.0}"         │

02:04:41 #266 [Debug] > │     let v3 : bool = v1 = false                                               │

02:04:41 #267 [Debug] > │     if v3 then                                                               │

02:04:41 #268 [Debug] > │         failwith<unit> v2                                                    │

02:04:41 #269 [Debug] > │ method0()                                                                    │

02:04:41 #270 [Debug] > │                                                                              │

02:04:41 #271 [Debug] > │                                                                              │

02:04:41 #272 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #273 [Debug] >

02:04:41 #274 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:41 #275 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:41 #276 [Debug] > │ ## round                                                                     │

02:04:41 #277 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #278 [Debug] >

02:04:41 #279 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:41 #280 [Debug] > inl round forall t {float}. (x : t) : t =

02:04:41 #281 [Debug] >     $"round !x"

02:04:41 #282 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4150-5048-5bd18e9316aa\main.spi

02:04:41 #283 [Debug] >

02:04:41 #284 [Debug] > ╭─[ 174.43ms - stdout ]────────────────────────────────────────────────────────╮

02:04:41 #285 [Debug] > │ ()                                                                           │

02:04:41 #286 [Debug] > │                                                                              │

02:04:41 #287 [Debug] > │                                                                              │

02:04:41 #288 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #289 [Debug] >

02:04:41 #290 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:41 #291 [Debug] > // // test

02:04:41 #292 [Debug] >

02:04:41 #293 [Debug] > 0.5 |> round

02:04:41 #294 [Debug] > |> _equal 0f64

02:04:41 #295 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4168-6813-6540622a2132\main.spi

02:04:41 #296 [Debug] >

02:04:41 #297 [Debug] > ╭─[ 181.29ms - stdout ]────────────────────────────────────────────────────────╮

02:04:41 #298 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:41 #299 [Debug] > │     let v0 : float = round 0.5                                               │

02:04:41 #300 [Debug] > │     let v1 : bool = v0 = 0.0                                                 │

02:04:41 #301 [Debug] > │     let v2 : string = $"_equal / actual: %A{v0} / expected: %A{0.0}"         │

02:04:41 #302 [Debug] > │     let v3 : bool = v1 = false                                               │

02:04:41 #303 [Debug] > │     if v3 then                                                               │

02:04:41 #304 [Debug] > │         failwith<unit> v2                                                    │

02:04:41 #305 [Debug] > │ method0()                                                                    │

02:04:41 #306 [Debug] > │                                                                              │

02:04:41 #307 [Debug] > │                                                                              │

02:04:41 #308 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:41 #309 [Debug] >

02:04:41 #310 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:41 #311 [Debug] > // // test

02:04:41 #312 [Debug] >

02:04:41 #313 [Debug] > 0.6 |> round

02:04:41 #314 [Debug] > |> _equal 1f64

02:04:41 #315 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4186-8694-83e582d5639a\main.spi

02:04:42 #316 [Debug] >

02:04:42 #317 [Debug] > ╭─[ 179.67ms - stdout ]────────────────────────────────────────────────────────╮

02:04:42 #318 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:42 #319 [Debug] > │     let v0 : float = round 0.6                                               │

02:04:42 #320 [Debug] > │     let v1 : bool = v0 = 1.0                                                 │

02:04:42 #321 [Debug] > │     let v2 : string = $"_equal / actual: %A{v0} / expected: %A{1.0}"         │

02:04:42 #322 [Debug] > │     let v3 : bool = v1 = false                                               │

02:04:42 #323 [Debug] > │     if v3 then                                                               │

02:04:42 #324 [Debug] > │         failwith<unit> v2                                                    │

02:04:42 #325 [Debug] > │ method0()                                                                    │

02:04:42 #326 [Debug] > │                                                                              │

02:04:42 #327 [Debug] > │                                                                              │

02:04:42 #328 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:42 #329 [Debug] >

02:04:42 #330 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:42 #331 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:42 #332 [Debug] > │ ## square                                                                    │

02:04:42 #333 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:42 #334 [Debug] >

02:04:42 #335 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:42 #336 [Debug] > inl square x =

02:04:42 #337 [Debug] >     x ** 2

02:04:42 #338 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4205-0576-0fc6a460f350\main.spi

02:04:42 #339 [Debug] >

02:04:42 #340 [Debug] > ╭─[ 235.40ms - stdout ]────────────────────────────────────────────────────────╮

02:04:42 #341 [Debug] > │ ()                                                                           │

02:04:42 #342 [Debug] > │                                                                              │

02:04:42 #343 [Debug] > │                                                                              │

02:04:42 #344 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:42 #345 [Debug] >

02:04:42 #346 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:42 #347 [Debug] > // // test

02:04:42 #348 [Debug] >

02:04:42 #349 [Debug] > 5f64

02:04:42 #350 [Debug] > |> sqrt

02:04:42 #351 [Debug] > |> square

02:04:42 #352 [Debug] > |> _almost_equal 5

02:04:42 #353 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4229-2950-2dde382237a6\main.spi

02:04:42 #354 [Debug] >

02:04:42 #355 [Debug] > ╭─[ 184.49ms - stdout ]────────────────────────────────────────────────────────╮

02:04:42 #356 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:42 #357 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{5.000000000000001} /      │

02:04:42 #358 [Debug] > │ expected: %A{5.0}"                                                           │

02:04:42 #359 [Debug] > │     ()                                                                       │

02:04:42 #360 [Debug] > │ method0()                                                                    │

02:04:42 #361 [Debug] > │                                                                              │

02:04:42 #362 [Debug] > │                                                                              │

02:04:42 #363 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:42 #364 [Debug] >

02:04:42 #365 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:42 #366 [Debug] > // // test

02:04:42 #367 [Debug] >

02:04:42 #368 [Debug] > e () |> square

02:04:42 #369 [Debug] > |> _almost_equal 7.3890560989306495

02:04:42 #370 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-4248-4836-428dc7cdfa48\main.spi

02:04:42 #371 [Debug] >

02:04:42 #372 [Debug] > ╭─[ 199.45ms - stdout ]────────────────────────────────────────────────────────╮

02:04:42 #373 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:42 #374 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{7.3890560989306495} /     │

02:04:42 #375 [Debug] > │ expected: %A{7.3890560989306495}"                                            │

02:04:42 #376 [Debug] > │     ()                                                                       │

02:04:42 #377 [Debug] > │ method0()                                                                    │

02:04:42 #378 [Debug] > │                                                                              │

02:04:42 #379 [Debug] > │                                                                              │

02:04:42 #380 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:44 #381 [Debug] > [NbConvertApp] Converting notebook math.dib.ipynb to html

02:04:44 #382 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:04:44 #383 [Debug] >   validate(nb)

02:04:45 #384 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:04:45 #385 [Debug] >   return _pygments_highlight(

02:04:45 #386 [Debug] > [NbConvertApp] Writing 300934 bytes to math.dib.html

02:04:46 #387 [Debug] executeAsync / exitCode: 0 / proc.Id: 71208 / output.Length: 20120

02:04:46 #388 [Debug] main / executeCommand / exitCode: 0

02:04:46 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:04:46 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:04:46 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:04:46 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:04:47 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:04:47 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:04:47 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:04:47 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:04:47 #9 [Debug] > Server bound to: http://localhost:13805

02:04:47 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 \"optionm'.dib\"""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:04:50 #11 [Debug] >

02:04:50 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:50 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:50 #14 [Debug] > │ # optionm                                                                    │

02:04:50 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:50 #16 [Debug] >

02:04:50 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:50 #18 [Debug] > // // test

02:04:50 #19 [Debug] >

02:04:50 #20 [Debug] > open testing

02:04:53 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5277-7798-749ff7f4d3d0\main.spi

02:04:55 #22 [Debug] >

02:04:55 #23 [Debug] > ╭─[ 5.25s - stdout ]───────────────────────────────────────────────────────────╮

02:04:55 #24 [Debug] > │ ()                                                                           │

02:04:55 #25 [Debug] > │                                                                              │

02:04:55 #26 [Debug] > │                                                                              │

02:04:55 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:55 #28 [Debug] >

02:04:55 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:55 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:55 #31 [Debug] > │ ## default_value                                                             │

02:04:55 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:55 #33 [Debug] >

02:04:55 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:55 #35 [Debug] > inl default_value d = optionm.defaultWith d

02:04:55 #36 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5576-7657-713978a436cd\main.spi

02:04:55 #37 [Debug] >

02:04:55 #38 [Debug] > ╭─[ 212.47ms - stdout ]────────────────────────────────────────────────────────╮

02:04:55 #39 [Debug] > │ ()                                                                           │

02:04:55 #40 [Debug] > │                                                                              │

02:04:55 #41 [Debug] > │                                                                              │

02:04:55 #42 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:55 #43 [Debug] >

02:04:55 #44 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:55 #45 [Debug] > // // test

02:04:55 #46 [Debug] >

02:04:55 #47 [Debug] > None

02:04:55 #48 [Debug] > |> default_value 3i32

02:04:55 #49 [Debug] > |> _equal 3i32

02:04:56 #50 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5597-9786-96f84c62612a\main.spi

02:04:56 #51 [Debug] >

02:04:56 #52 [Debug] > ╭─[ 730.78ms - stdout ]────────────────────────────────────────────────────────╮

02:04:56 #53 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:56 #54 [Debug] > │     let v0 : string = $"_equal / actual: %A{3} / expected: %A{3}"            │

02:04:56 #55 [Debug] > │     ()                                                                       │

02:04:56 #56 [Debug] > │ method0()                                                                    │

02:04:56 #57 [Debug] > │                                                                              │

02:04:56 #58 [Debug] > │                                                                              │

02:04:56 #59 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:56 #60 [Debug] >

02:04:56 #61 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:56 #62 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:56 #63 [Debug] > │ ## default_with                                                              │

02:04:56 #64 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:56 #65 [Debug] >

02:04:56 #66 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:56 #67 [Debug] > inl default_with fn = function Some x => x | None => fn ()

02:04:56 #68 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5671-7163-754efbcabd24\main.spi

02:04:56 #69 [Debug] >

02:04:56 #70 [Debug] > ╭─[ 177.14ms - stdout ]────────────────────────────────────────────────────────╮

02:04:56 #71 [Debug] > │ ()                                                                           │

02:04:56 #72 [Debug] > │                                                                              │

02:04:56 #73 [Debug] > │                                                                              │

02:04:56 #74 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:56 #75 [Debug] >

02:04:56 #76 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:56 #77 [Debug] > // // test

02:04:56 #78 [Debug] >

02:04:56 #79 [Debug] > None

02:04:56 #80 [Debug] > |> default_with (fun () => 3i32)

02:04:56 #81 [Debug] > |> _equal 3i32

02:04:57 #82 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5689-8945-81d1b5938fba\main.spi

02:04:57 #83 [Debug] >

02:04:57 #84 [Debug] > ╭─[ 168.83ms - stdout ]────────────────────────────────────────────────────────╮

02:04:57 #85 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:57 #86 [Debug] > │     let v0 : string = $"_equal / actual: %A{3} / expected: %A{3}"            │

02:04:57 #87 [Debug] > │     ()                                                                       │

02:04:57 #88 [Debug] > │ method0()                                                                    │

02:04:57 #89 [Debug] > │                                                                              │

02:04:57 #90 [Debug] > │                                                                              │

02:04:57 #91 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:57 #92 [Debug] >

02:04:57 #93 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:57 #94 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:57 #95 [Debug] > │ ## choose                                                                    │

02:04:57 #96 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:57 #97 [Debug] >

02:04:57 #98 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:57 #99 [Debug] > inl choose fn a b =

02:04:57 #100 [Debug] >     match a, b with

02:04:57 #101 [Debug] >     | Some x, Some y => fn x y |> Some

02:04:57 #102 [Debug] >     | _ => None

02:04:57 #103 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5706-0698-037ad1272035\main.spi

02:04:57 #104 [Debug] >

02:04:57 #105 [Debug] > ╭─[ 179.76ms - stdout ]────────────────────────────────────────────────────────╮

02:04:57 #106 [Debug] > │ ()                                                                           │

02:04:57 #107 [Debug] > │                                                                              │

02:04:57 #108 [Debug] > │                                                                              │

02:04:57 #109 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:57 #110 [Debug] >

02:04:57 #111 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:57 #112 [Debug] > // // test

02:04:57 #113 [Debug] >

02:04:57 #114 [Debug] > (Some 2i32, Some 3)

02:04:57 #115 [Debug] > ||> choose (+)

02:04:57 #116 [Debug] > |> _equal (Some 5)

02:04:57 #117 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5725-2517-2c0fa376bed8\main.spi

02:04:58 #118 [Debug] >

02:04:58 #119 [Debug] > ╭─[ 814.51ms - stdout ]────────────────────────────────────────────────────────╮

02:04:58 #120 [Debug] > │ type [<Struct>] US0 =                                                        │

02:04:58 #121 [Debug] > │     | US0_0                                                                  │

02:04:58 #122 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:04:58 #123 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:58 #124 [Debug] > │     let v3 : US0 = US0_1(5)                                                  │

02:04:58 #125 [Debug] > │     let v4 : US0 = US0_1(5)                                                  │

02:04:58 #126 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:04:58 #127 [Debug] > │     ()                                                                       │

02:04:58 #128 [Debug] > │ method0()                                                                    │

02:04:58 #129 [Debug] > │                                                                              │

02:04:58 #130 [Debug] > │                                                                              │

02:04:58 #131 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:58 #132 [Debug] >

02:04:58 #133 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:58 #134 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:58 #135 [Debug] > │ ## iter                                                                      │

02:04:58 #136 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:58 #137 [Debug] >

02:04:58 #138 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:58 #139 [Debug] > inl iter fn = function

02:04:58 #140 [Debug] >     | Some x => fn x

02:04:58 #141 [Debug] >     | None => ()

02:04:58 #142 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5807-0769-081f0ef1f62b\main.spi

02:04:58 #143 [Debug] >

02:04:58 #144 [Debug] > ╭─[ 218.51ms - stdout ]────────────────────────────────────────────────────────╮

02:04:58 #145 [Debug] > │ ()                                                                           │

02:04:58 #146 [Debug] > │                                                                              │

02:04:58 #147 [Debug] > │                                                                              │

02:04:58 #148 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:58 #149 [Debug] >

02:04:58 #150 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:58 #151 [Debug] > // // test

02:04:58 #152 [Debug] >

02:04:58 #153 [Debug] > inl n = mut 1i32

02:04:58 #154 [Debug] > inl fn =

02:04:58 #155 [Debug] >     fun n' =>

02:04:58 #156 [Debug] >         n <- *n + n'

02:04:58 #157 [Debug] > Some 1i32 |> iter fn

02:04:58 #158 [Debug] > None |> iter fn

02:04:58 #159 [Debug] > *n

02:04:58 #160 [Debug] > |> _equal 2i32

02:04:58 #161 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5829-2951-225f6583a55f\main.spi

02:04:58 #162 [Debug] >

02:04:58 #163 [Debug] > ╭─[ 395.31ms - stdout ]────────────────────────────────────────────────────────╮

02:04:58 #164 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:04:58 #165 [Debug] > │ let rec method0 () : unit =                                                  │

02:04:58 #166 [Debug] > │     let v0 : Mut0 = {l0 = 1} : Mut0                                          │

02:04:58 #167 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:04:58 #168 [Debug] > │     let v2 : int32 = v1 + 1                                                  │

02:04:58 #169 [Debug] > │     v0.l0 <- v2                                                              │

02:04:58 #170 [Debug] > │     let v3 : int32 = v0.l0                                                   │

02:04:58 #171 [Debug] > │     let v4 : bool = v3 = 2                                                   │

02:04:58 #172 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{2}"           │

02:04:58 #173 [Debug] > │     let v6 : bool = v4 = false                                               │

02:04:58 #174 [Debug] > │     if v6 then                                                               │

02:04:58 #175 [Debug] > │         failwith<unit> v5                                                    │

02:04:58 #176 [Debug] > │ method0()                                                                    │

02:04:58 #177 [Debug] > │                                                                              │

02:04:58 #178 [Debug] > │                                                                              │

02:04:58 #179 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:58 #180 [Debug] >

02:04:58 #181 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:04:58 #182 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:04:58 #183 [Debug] > │ ## option_fsharp                                                             │

02:04:58 #184 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:58 #185 [Debug] >

02:04:58 #186 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:58 #187 [Debug] > nominal option_fsharp t = $"`t option"

02:04:58 #188 [Debug] >

02:04:58 #189 [Debug] > inl from_fsharp forall t. (x : option_fsharp t) : option t =

02:04:58 #190 [Debug] >     inl some x : option t = Some x

02:04:58 #191 [Debug] >     inl none : option t = None

02:04:58 #192 [Debug] >     $"!x |> Option.map !some |> Option.defaultValue !none"

02:04:58 #193 [Debug] >

02:04:58 #194 [Debug] > inl to_fsharp forall t. (x : option t) : option_fsharp t =

02:04:58 #195 [Debug] >     match x with

02:04:58 #196 [Debug] >     | Some x => $"Some !x"

02:04:58 #197 [Debug] >     | None => $"None"

02:04:58 #198 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5870-7043-7d4b86d43cf3\main.spi

02:04:58 #199 [Debug] >

02:04:58 #200 [Debug] > ╭─[ 160.58ms - stdout ]────────────────────────────────────────────────────────╮

02:04:58 #201 [Debug] > │ ()                                                                           │

02:04:58 #202 [Debug] > │                                                                              │

02:04:58 #203 [Debug] > │                                                                              │

02:04:58 #204 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:04:58 #205 [Debug] >

02:04:58 #206 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:04:58 #207 [Debug] > // // test

02:04:58 #208 [Debug] >

02:04:58 #209 [Debug] > inl x = Some 3i32

02:04:58 #210 [Debug] > inl y : option i32 = None

02:04:58 #211 [Debug] > inl x' = x |> to_fsharp |> from_fsharp

02:04:58 #212 [Debug] > inl y' = y |> to_fsharp |> from_fsharp

02:04:58 #213 [Debug] > (x', y') |> _equal (x, y)

02:04:58 #214 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0204-5886-8660-8477e2734ac1\main.spi

02:04:59 #215 [Debug] >

02:04:59 #216 [Debug] > ╭─[ 315.19ms - stdout ]────────────────────────────────────────────────────────╮

02:04:59 #217 [Debug] > │ type [<Struct>] US0 =                                                        │

02:04:59 #218 [Debug] > │     | US0_0                                                                  │

02:04:59 #219 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:04:59 #220 [Debug] > │ let rec closure0 () (v0 : int32) : US0 =                                     │

02:04:59 #221 [Debug] > │     US0_1(v0)                                                                │

02:04:59 #222 [Debug] > │ and method0 () : unit =                                                      │

02:04:59 #223 [Debug] > │     let v0 : int32 option = Some 3                                           │

02:04:59 #224 [Debug] > │     let v1 : (int32 -> US0) = closure0()                                     │

02:04:59 #225 [Debug] > │     let v2 : US0 = US0_0                                                     │

02:04:59 #226 [Debug] > │     let v3 : US0 = v0 |> Option.map v1 |> Option.defaultValue v2             │

02:04:59 #227 [Debug] > │     let v4 : int32 option = None                                             │

02:04:59 #228 [Debug] > │     let v5 : US0 = US0_0                                                     │

02:04:59 #229 [Debug] > │     let v6 : US0 = v4 |> Option.map v1 |> Option.defaultValue v5             │

02:04:59 #230 [Debug] > │     let v11 : bool =                                                         │

02:04:59 #231 [Debug] > │         match v3 with                                                        │

02:04:59 #232 [Debug] > │         | US0_1(v9) -> (* Some *)                                            │

02:04:59 #233 [Debug] > │             let v10 : bool = v9 = 3                                          │

02:04:59 #234 [Debug] > │             v10                                                              │

02:04:59 #235 [Debug] > │         | _ ->                                                               │

02:04:59 #236 [Debug] > │             false                                                            │

02:04:59 #237 [Debug] > │     let v13 : bool =                                                         │

02:04:59 #238 [Debug] > │         if v11 then                                                          │

02:04:59 #239 [Debug] > │             match v6 with                                                    │

02:04:59 #240 [Debug] > │             | US0_0 -> (* None *)                                            │

02:04:59 #241 [Debug] > │                 true                                                         │

02:04:59 #242 [Debug] > │             | _ ->                                                           │

02:04:59 #243 [Debug] > │                 false                                                        │

02:04:59 #244 [Debug] > │         else                                                                 │

02:04:59 #245 [Debug] > │             false                                                            │

02:04:59 #246 [Debug] > │     let v14 : US0 = US0_1(3)                                                 │

02:04:59 #247 [Debug] > │     let v15 : US0 = US0_0                                                    │

02:04:59 #248 [Debug] > │     let v16 : string = $"_equal / actual: %A{struct (v3, v6)} / expected:    │

02:04:59 #249 [Debug] > │ %A{struct (v14, v15)}"                                                       │

02:04:59 #250 [Debug] > │     let v17 : bool = v13 = false                                             │

02:04:59 #251 [Debug] > │     if v17 then                                                              │

02:04:59 #252 [Debug] > │         failwith<unit> v16                                                   │

02:04:59 #253 [Debug] > │ method0()                                                                    │

02:04:59 #254 [Debug] > │                                                                              │

02:04:59 #255 [Debug] > │                                                                              │

02:04:59 #256 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:01 #257 [Debug] > [NbConvertApp] Converting notebook optionm'.dib.ipynb to html

02:05:01 #258 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:05:01 #259 [Debug] >   validate(nb)

02:05:01 #260 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:05:01 #261 [Debug] >   return _pygments_highlight(

02:05:01 #262 [Debug] > [NbConvertApp] Writing 291081 bytes to optionm'.dib.html

02:05:02 #263 [Debug] executeAsync / exitCode: 0 / proc.Id: 51728 / output.Length: 14194

02:05:02 #264 [Debug] main / executeCommand / exitCode: 0

02:05:03 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:05:03 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:05:03 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:05:03 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:05:03 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:05:04 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:05:04 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:05:04 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:05:04 #9 [Debug] > Server bound to: http://localhost:13805

02:05:04 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 \"am'.dib\"""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:05:07 #11 [Debug] >

02:05:07 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:07 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:07 #14 [Debug] > │ # am                                                                         │

02:05:07 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:07 #16 [Debug] >

02:05:07 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:07 #18 [Debug] > // // test

02:05:07 #19 [Debug] >

02:05:07 #20 [Debug] > open testing

02:05:10 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-0954-5438-5dfb62b27a70\main.spi

02:05:12 #22 [Debug] >

02:05:12 #23 [Debug] > ╭─[ 5.33s - stdout ]───────────────────────────────────────────────────────────╮

02:05:12 #24 [Debug] > │ ()                                                                           │

02:05:12 #25 [Debug] > │                                                                              │

02:05:12 #26 [Debug] > │                                                                              │

02:05:12 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:12 #28 [Debug] >

02:05:12 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:12 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:12 #31 [Debug] > │ ## sum                                                                       │

02:05:12 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:12 #33 [Debug] >

02:05:12 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:12 #35 [Debug] > inl sum (a' : a _ _) =

02:05:12 #36 [Debug] >     a' |> am.fold (+) 0

02:05:12 #37 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1252-5253-582dcf089ae0\main.spi

02:05:12 #38 [Debug] >

02:05:12 #39 [Debug] > ╭─[ 227.61ms - stdout ]────────────────────────────────────────────────────────╮

02:05:12 #40 [Debug] > │ ()                                                                           │

02:05:12 #41 [Debug] > │                                                                              │

02:05:12 #42 [Debug] > │                                                                              │

02:05:12 #43 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:12 #44 [Debug] >

02:05:12 #45 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:12 #46 [Debug] > // // test

02:05:12 #47 [Debug] >

02:05:12 #48 [Debug] > am.init 10i32 id

02:05:12 #49 [Debug] > |> sum

02:05:12 #50 [Debug] > |> _equal 45

02:05:12 #51 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1275-7519-73b04688888f\main.spi

02:05:14 #52 [Debug] >

02:05:14 #53 [Debug] > ╭─[ 1.69s - stdout ]───────────────────────────────────────────────────────────╮

02:05:14 #54 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:05:14 #55 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : int32}                          │

02:05:14 #56 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:05:14 #57 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:05:14 #58 [Debug] > │     let v2 : bool = v1 < 10                                                  │

02:05:14 #59 [Debug] > │     v2                                                                       │

02:05:14 #60 [Debug] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

02:05:14 #61 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:05:14 #62 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:05:14 #63 [Debug] > │     v3                                                                       │

02:05:14 #64 [Debug] > │ and method0 () : unit =                                                      │

02:05:14 #65 [Debug] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (10)                       │

02:05:14 #66 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:05:14 #67 [Debug] > │     while method1(v1) do                                                     │

02:05:14 #68 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:05:14 #69 [Debug] > │         v0.[int v3] <- v3                                                    │

02:05:14 #70 [Debug] > │         let v4 : int32 = v3 + 1                                              │

02:05:14 #71 [Debug] > │         v1.l0 <- v4                                                          │

02:05:14 #72 [Debug] > │         ()                                                                   │

02:05:14 #73 [Debug] > │     let v5 : int32 = v0.Length                                               │

02:05:14 #74 [Debug] > │     let v6 : Mut1 = {l0 = 0; l1 = 0} : Mut1                                  │

02:05:14 #75 [Debug] > │     while method2(v5, v6) do                                                 │

02:05:14 #76 [Debug] > │         let v8 : int32 = v6.l0                                               │

02:05:14 #77 [Debug] > │         let v9 : int32 = v6.l1                                               │

02:05:14 #78 [Debug] > │         let v10 : int32 = v0.[int v8]                                        │

02:05:14 #79 [Debug] > │         let v11 : int32 = v9 + v10                                           │

02:05:14 #80 [Debug] > │         let v12 : int32 = v8 + 1                                             │

02:05:14 #81 [Debug] > │         v6.l0 <- v12                                                         │

02:05:14 #82 [Debug] > │         v6.l1 <- v11                                                         │

02:05:14 #83 [Debug] > │         ()                                                                   │

02:05:14 #84 [Debug] > │     let v13 : int32 = v6.l1                                                  │

02:05:14 #85 [Debug] > │     let v14 : bool = v13 = 45                                                │

02:05:14 #86 [Debug] > │     let v15 : string = $"_equal / actual: %A{v13} / expected: %A{45}"        │

02:05:14 #87 [Debug] > │     let v16 : bool = v14 = false                                             │

02:05:14 #88 [Debug] > │     if v16 then                                                              │

02:05:14 #89 [Debug] > │         failwith<unit> v15                                                   │

02:05:14 #90 [Debug] > │ method0()                                                                    │

02:05:14 #91 [Debug] > │                                                                              │

02:05:14 #92 [Debug] > │                                                                              │

02:05:14 #93 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:14 #94 [Debug] >

02:05:14 #95 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:14 #96 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:14 #97 [Debug] > │ ## init_series                                                               │

02:05:14 #98 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:14 #99 [Debug] >

02:05:14 #100 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:14 #101 [Debug] > inl init_series start end inc =

02:05:14 #102 [Debug] >     inl total = conv ((end - start) / inc) + 1

02:05:14 #103 [Debug] >     am.init total (conv >> (*) inc >> (+) start) : a i32 _

02:05:14 #104 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1446-4658-40b60461f7f9\main.spi

02:05:14 #105 [Debug] >

02:05:14 #106 [Debug] > ╭─[ 207.39ms - stdout ]────────────────────────────────────────────────────────╮

02:05:14 #107 [Debug] > │ ()                                                                           │

02:05:14 #108 [Debug] > │                                                                              │

02:05:14 #109 [Debug] > │                                                                              │

02:05:14 #110 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:14 #111 [Debug] >

02:05:14 #112 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:14 #113 [Debug] > // // test

02:05:14 #114 [Debug] >

02:05:14 #115 [Debug] > init_series 0 1 0.5

02:05:14 #116 [Debug] > |> _equal (a ;[[0f64; 0.5; 1]])

02:05:14 #117 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1467-6732-646e1c852b1c\main.spi

02:05:14 #118 [Debug] >

02:05:14 #119 [Debug] > ╭─[ 260.12ms - stdout ]────────────────────────────────────────────────────────╮

02:05:14 #120 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:05:14 #121 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:05:14 #122 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:05:14 #123 [Debug] > │     let v2 : bool = v1 < 3                                                   │

02:05:14 #124 [Debug] > │     v2                                                                       │

02:05:14 #125 [Debug] > │ and method2 (v0 : (float []), v1 : (float []), v2 : int32) : bool =          │

02:05:14 #126 [Debug] > │     let v3 : int32 = v0.Length                                               │

02:05:14 #127 [Debug] > │     let v4 : bool = v2 < v3                                                  │

02:05:14 #128 [Debug] > │     if v4 then                                                               │

02:05:14 #129 [Debug] > │         let v5 : float = v0.[int v2]                                         │

02:05:14 #130 [Debug] > │         let v6 : float = v1.[int v2]                                         │

02:05:14 #131 [Debug] > │         let v7 : bool = v5 = v6                                              │

02:05:14 #132 [Debug] > │         if v7 then                                                           │

02:05:14 #133 [Debug] > │             let v8 : int32 = v2 + 1                                          │

02:05:14 #134 [Debug] > │             method2(v0, v1, v8)                                              │

02:05:14 #135 [Debug] > │         else                                                                 │

02:05:14 #136 [Debug] > │             false                                                            │

02:05:14 #137 [Debug] > │     else                                                                     │

02:05:14 #138 [Debug] > │         true                                                                 │

02:05:14 #139 [Debug] > │ and method0 () : unit =                                                      │

02:05:14 #140 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (3)                        │

02:05:14 #141 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:05:14 #142 [Debug] > │     while method1(v1) do                                                     │

02:05:14 #143 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:05:14 #144 [Debug] > │         let v4 : float = float v3                                            │

02:05:14 #145 [Debug] > │         let v5 : float = 0.5 * v4                                            │

02:05:14 #146 [Debug] > │         v0.[int v3] <- v5                                                    │

02:05:14 #147 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:05:14 #148 [Debug] > │         v1.l0 <- v6                                                          │

02:05:14 #149 [Debug] > │         ()                                                                   │

02:05:14 #150 [Debug] > │     let v7 : (float []) = [|0.0; 0.5; 1.0|]                                  │

02:05:14 #151 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:05:14 #152 [Debug] > │     let v9 : int32 = v7.Length                                               │

02:05:14 #153 [Debug] > │     let v10 : bool = v8 = v9                                                 │

02:05:14 #154 [Debug] > │     let v11 : bool = v10 <> true                                             │

02:05:14 #155 [Debug] > │     let v14 : bool =                                                         │

02:05:14 #156 [Debug] > │         if v11 then                                                          │

02:05:14 #157 [Debug] > │             false                                                            │

02:05:14 #158 [Debug] > │         else                                                                 │

02:05:14 #159 [Debug] > │             let v12 : int32 = 0                                              │

02:05:14 #160 [Debug] > │             method2(v0, v7, v12)                                             │

02:05:14 #161 [Debug] > │     let v15 : string = $"_equal / actual: %A{v0} / expected: %A{v7}"         │

02:05:14 #162 [Debug] > │     let v16 : bool = v14 = false                                             │

02:05:14 #163 [Debug] > │     if v16 then                                                              │

02:05:14 #164 [Debug] > │         failwith<unit> v15                                                   │

02:05:14 #165 [Debug] > │ method0()                                                                    │

02:05:14 #166 [Debug] > │                                                                              │

02:05:14 #167 [Debug] > │                                                                              │

02:05:14 #168 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:14 #169 [Debug] >

02:05:14 #170 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:14 #171 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:14 #172 [Debug] > │ ## last                                                                      │

02:05:14 #173 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:14 #174 [Debug] >

02:05:14 #175 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:14 #176 [Debug] > inl last (array : a _ _) =

02:05:14 #177 [Debug] >     index array (length array - 1)

02:05:15 #178 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1495-9554-991739071445\main.spi

02:05:15 #179 [Debug] >

02:05:15 #180 [Debug] > ╭─[ 165.60ms - stdout ]────────────────────────────────────────────────────────╮

02:05:15 #181 [Debug] > │ ()                                                                           │

02:05:15 #182 [Debug] > │                                                                              │

02:05:15 #183 [Debug] > │                                                                              │

02:05:15 #184 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:15 #185 [Debug] >

02:05:15 #186 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:15 #187 [Debug] > // // test

02:05:15 #188 [Debug] >

02:05:15 #189 [Debug] > am.init 10i32 id

02:05:15 #190 [Debug] > |> last

02:05:15 #191 [Debug] > |> _equal 9

02:05:15 #192 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1512-1230-112059e91049\main.spi

02:05:15 #193 [Debug] >

02:05:15 #194 [Debug] > ╭─[ 200.10ms - stdout ]────────────────────────────────────────────────────────╮

02:05:15 #195 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:05:15 #196 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:05:15 #197 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:05:15 #198 [Debug] > │     let v2 : bool = v1 < 10                                                  │

02:05:15 #199 [Debug] > │     v2                                                                       │

02:05:15 #200 [Debug] > │ and method0 () : unit =                                                      │

02:05:15 #201 [Debug] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (10)                       │

02:05:15 #202 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:05:15 #203 [Debug] > │     while method1(v1) do                                                     │

02:05:15 #204 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:05:15 #205 [Debug] > │         v0.[int v3] <- v3                                                    │

02:05:15 #206 [Debug] > │         let v4 : int32 = v3 + 1                                              │

02:05:15 #207 [Debug] > │         v1.l0 <- v4                                                          │

02:05:15 #208 [Debug] > │         ()                                                                   │

02:05:15 #209 [Debug] > │     let v5 : int32 = v0.Length                                               │

02:05:15 #210 [Debug] > │     let v6 : int32 = v5 - 1                                                  │

02:05:15 #211 [Debug] > │     let v7 : int32 = v0.[int v6]                                             │

02:05:15 #212 [Debug] > │     let v8 : bool = v7 = 9                                                   │

02:05:15 #213 [Debug] > │     let v9 : string = $"_equal / actual: %A{v7} / expected: %A{9}"           │

02:05:15 #214 [Debug] > │     let v10 : bool = v8 = false                                              │

02:05:15 #215 [Debug] > │     if v10 then                                                              │

02:05:15 #216 [Debug] > │         failwith<unit> v9                                                    │

02:05:15 #217 [Debug] > │ method0()                                                                    │

02:05:15 #218 [Debug] > │                                                                              │

02:05:15 #219 [Debug] > │                                                                              │

02:05:15 #220 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:15 #221 [Debug] >

02:05:15 #222 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:15 #223 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:15 #224 [Debug] > │ ## indexed                                                                   │

02:05:15 #225 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:15 #226 [Debug] >

02:05:15 #227 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:15 #228 [Debug] > inl indexed (array : a _ _) =

02:05:15 #229 [Debug] >     (([[]], 0), array)

02:05:15 #230 [Debug] >     ||> am.fold fun (acc, i) x =>

02:05:15 #231 [Debug] >         (i, x) :: acc, i + 1

02:05:15 #232 [Debug] >     |> fst

02:05:15 #233 [Debug] >     |> listm.rev

02:05:15 #234 [Debug] >     |> listm.toArray

02:05:15 #235 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1533-3373-36e545128fd7\main.spi

02:05:15 #236 [Debug] >

02:05:15 #237 [Debug] > ╭─[ 189.58ms - stdout ]────────────────────────────────────────────────────────╮

02:05:15 #238 [Debug] > │ ()                                                                           │

02:05:15 #239 [Debug] > │                                                                              │

02:05:15 #240 [Debug] > │                                                                              │

02:05:15 #241 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:15 #242 [Debug] >

02:05:15 #243 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:15 #244 [Debug] > // // test

02:05:15 #245 [Debug] >

02:05:15 #246 [Debug] > am.init 3i32 ((*) 2)

02:05:15 #247 [Debug] > |> indexed

02:05:15 #248 [Debug] > |> _equal (a ;[[0i32, 0; 1, 2; 2, 4]] : a i32 _)

02:05:15 #249 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-1552-5288-54b06a9a2dc7\main.spi

02:05:16 #250 [Debug] >

02:05:16 #251 [Debug] > ╭─[ 538.67ms - stdout ]────────────────────────────────────────────────────────╮

02:05:16 #252 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:05:16 #253 [Debug] > │ and UH0 =                                                                    │

02:05:16 #254 [Debug] > │     | UH0_0 of int32 * int32 * UH0                                           │

02:05:16 #255 [Debug] > │     | UH0_1                                                                  │

02:05:16 #256 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : UH0; mutable l2 : int32}        │

02:05:16 #257 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:05:16 #258 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:05:16 #259 [Debug] > │     let v2 : bool = v1 < 3                                                   │

02:05:16 #260 [Debug] > │     v2                                                                       │

02:05:16 #261 [Debug] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

02:05:16 #262 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:05:16 #263 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:05:16 #264 [Debug] > │     v3                                                                       │

02:05:16 #265 [Debug] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:05:16 #266 [Debug] > │     match v0 with                                                            │

02:05:16 #267 [Debug] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:16 #268 [Debug] > │         let v5 : UH0 = UH0_0(v2, v3, v1)                                     │

02:05:16 #269 [Debug] > │         method3(v4, v5)                                                      │

02:05:16 #270 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:16 #271 [Debug] > │         v1                                                                   │

02:05:16 #272 [Debug] > │ and method5 (v0 : UH0, v1 : int32) : int32 =                                 │

02:05:16 #273 [Debug] > │     match v0 with                                                            │

02:05:16 #274 [Debug] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:16 #275 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:05:16 #276 [Debug] > │         method5(v4, v5)                                                      │

02:05:16 #277 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:16 #278 [Debug] > │         v1                                                                   │

02:05:16 #279 [Debug] > │ and method6 (v0 : (struct (int32 * int32) []), v1 : UH0, v2 : int32) : int32 │

02:05:16 #280 [Debug] > │ =                                                                            │

02:05:16 #281 [Debug] > │     match v1 with                                                            │

02:05:16 #282 [Debug] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

02:05:16 #283 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:05:16 #284 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:05:16 #285 [Debug] > │         method6(v0, v5, v6)                                                  │

02:05:16 #286 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:16 #287 [Debug] > │         v2                                                                   │

02:05:16 #288 [Debug] > │ and method4 (v0 : UH0) : (struct (int32 * int32) []) =                       │

02:05:16 #289 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:16 #290 [Debug] > │     let v2 : int32 = method5(v0, v1)                                         │

02:05:16 #291 [Debug] > │     let v3 : (struct (int32 * int32) []) = Array.zeroCreate<struct (int32 *  │

02:05:16 #292 [Debug] > │ int32)> (v2)                                                                 │

02:05:16 #293 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:16 #294 [Debug] > │     let v5 : int32 = method6(v3, v0, v4)                                     │

02:05:16 #295 [Debug] > │     v3                                                                       │

02:05:16 #296 [Debug] > │ and method7 (v0 : (struct (int32 * int32) []), v1 : (struct (int32 * int32)  │

02:05:16 #297 [Debug] > │ []), v2 : int32) : bool =                                                    │

02:05:16 #298 [Debug] > │     let v3 : int32 = v0.Length                                               │

02:05:16 #299 [Debug] > │     let v4 : bool = v2 < v3                                                  │

02:05:16 #300 [Debug] > │     if v4 then                                                               │

02:05:16 #301 [Debug] > │         let struct (v5 : int32, v6 : int32) = v0.[int v2]                    │

02:05:16 #302 [Debug] > │         let struct (v7 : int32, v8 : int32) = v1.[int v2]                    │

02:05:16 #303 [Debug] > │         let v9 : bool = v5 = v7                                              │

02:05:16 #304 [Debug] > │         let v11 : bool =                                                     │

02:05:16 #305 [Debug] > │             if v9 then                                                       │

02:05:16 #306 [Debug] > │                 let v10 : bool = v6 = v8                                     │

02:05:16 #307 [Debug] > │                 v10                                                          │

02:05:16 #308 [Debug] > │             else                                                             │

02:05:16 #309 [Debug] > │                 false                                                        │

02:05:16 #310 [Debug] > │         if v11 then                                                          │

02:05:16 #311 [Debug] > │             let v12 : int32 = v2 + 1                                         │

02:05:16 #312 [Debug] > │             method7(v0, v1, v12)                                             │

02:05:16 #313 [Debug] > │         else                                                                 │

02:05:16 #314 [Debug] > │             false                                                            │

02:05:16 #315 [Debug] > │     else                                                                     │

02:05:16 #316 [Debug] > │         true                                                                 │

02:05:16 #317 [Debug] > │ and method0 () : unit =                                                      │

02:05:16 #318 [Debug] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (3)                        │

02:05:16 #319 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:05:16 #320 [Debug] > │     while method1(v1) do                                                     │

02:05:16 #321 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:05:16 #322 [Debug] > │         let v4 : int32 = 2 * v3                                              │

02:05:16 #323 [Debug] > │         v0.[int v3] <- v4                                                    │

02:05:16 #324 [Debug] > │         let v5 : int32 = v3 + 1                                              │

02:05:16 #325 [Debug] > │         v1.l0 <- v5                                                          │

02:05:16 #326 [Debug] > │         ()                                                                   │

02:05:16 #327 [Debug] > │     let v6 : int32 = v0.Length                                               │

02:05:16 #328 [Debug] > │     let v7 : UH0 = UH0_1                                                     │

02:05:16 #329 [Debug] > │     let v8 : Mut1 = {l0 = 0; l1 = v7; l2 = 0} : Mut1                         │

02:05:16 #330 [Debug] > │     while method2(v6, v8) do                                                 │

02:05:16 #331 [Debug] > │         let v10 : int32 = v8.l0                                              │

02:05:16 #332 [Debug] > │         let struct (v11 : UH0, v12 : int32) = v8.l1, v8.l2                   │

02:05:16 #333 [Debug] > │         let v13 : int32 = v0.[int v10]                                       │

02:05:16 #334 [Debug] > │         let v14 : int32 = v12 + 1                                            │

02:05:16 #335 [Debug] > │         let v15 : int32 = v10 + 1                                            │

02:05:16 #336 [Debug] > │         let v16 : UH0 = UH0_0(v12, v13, v11)                                 │

02:05:16 #337 [Debug] > │         v8.l0 <- v15                                                         │

02:05:16 #338 [Debug] > │         v8.l1 <- v16                                                         │

02:05:16 #339 [Debug] > │         v8.l2 <- v14                                                         │

02:05:16 #340 [Debug] > │         ()                                                                   │

02:05:16 #341 [Debug] > │     let struct (v17 : UH0, v18 : int32) = v8.l1, v8.l2                       │

02:05:16 #342 [Debug] > │     let v19 : UH0 = UH0_1                                                    │

02:05:16 #343 [Debug] > │     let v20 : UH0 = method3(v17, v19)                                        │

02:05:16 #344 [Debug] > │     let v21 : (struct (int32 * int32) []) = method4(v20)                     │

02:05:16 #345 [Debug] > │     let v22 : (struct (int32 * int32) []) = [|struct (0, 0); struct (1, 2);  │

02:05:16 #346 [Debug] > │ struct (2, 4)|]                                                              │

02:05:16 #347 [Debug] > │     let v23 : int32 = v21.Length                                             │

02:05:16 #348 [Debug] > │     let v24 : int32 = v22.Length                                             │

02:05:16 #349 [Debug] > │     let v25 : bool = v23 = v24                                               │

02:05:16 #350 [Debug] > │     let v26 : bool = v25 <> true                                             │

02:05:16 #351 [Debug] > │     let v29 : bool =                                                         │

02:05:16 #352 [Debug] > │         if v26 then                                                          │

02:05:16 #353 [Debug] > │             false                                                            │

02:05:16 #354 [Debug] > │         else                                                                 │

02:05:16 #355 [Debug] > │             let v27 : int32 = 0                                              │

02:05:16 #356 [Debug] > │             method7(v21, v22, v27)                                           │

02:05:16 #357 [Debug] > │     let v30 : string = $"_equal / actual: %A{v21} / expected: %A{v22}"       │

02:05:16 #358 [Debug] > │     let v31 : bool = v29 = false                                             │

02:05:16 #359 [Debug] > │     if v31 then                                                              │

02:05:16 #360 [Debug] > │         failwith<unit> v30                                                   │

02:05:16 #361 [Debug] > │ method0()                                                                    │

02:05:16 #362 [Debug] > │                                                                              │

02:05:16 #363 [Debug] > │                                                                              │

02:05:16 #364 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:17 #365 [Debug] > [NbConvertApp] Converting notebook am'.dib.ipynb to html

02:05:17 #366 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:05:17 #367 [Debug] >   validate(nb)

02:05:18 #368 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:05:18 #369 [Debug] >   return _pygments_highlight(

02:05:18 #370 [Debug] > [NbConvertApp] Writing 291617 bytes to am'.dib.html

02:05:19 #371 [Debug] executeAsync / exitCode: 0 / proc.Id: 32980 / output.Length: 24616

02:05:19 #372 [Debug] main / executeCommand / exitCode: 0

02:05:20 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:05:20 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:05:20 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:05:20 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:05:20 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:05:20 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:05:21 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:05:21 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:05:21 #9 [Debug] > Server bound to: http://localhost:13805

02:05:21 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 \"listm'.dib\"""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:05:23 #11 [Debug] >

02:05:23 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:23 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:23 #14 [Debug] > │ # listm                                                                      │

02:05:23 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:24 #16 [Debug] >

02:05:24 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:24 #18 [Debug] > // // test

02:05:24 #19 [Debug] >

02:05:24 #20 [Debug] > open testing

02:05:27 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-2625-2583-2392cbc15be0\main.spi

02:05:29 #22 [Debug] >

02:05:29 #23 [Debug] > ╭─[ 5.42s - stdout ]───────────────────────────────────────────────────────────╮

02:05:29 #24 [Debug] > │ ()                                                                           │

02:05:29 #25 [Debug] > │                                                                              │

02:05:29 #26 [Debug] > │                                                                              │

02:05:29 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:29 #28 [Debug] >

02:05:29 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:29 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:29 #31 [Debug] > │ ## /@                                                                        │

02:05:29 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:29 #33 [Debug] >

02:05:29 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:29 #35 [Debug] > inl (/@) a b =

02:05:29 #36 [Debug] >     b |> listm.append a

02:05:29 #37 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-2937-3765-387f1ff2a22c\main.spi

02:05:29 #38 [Debug] >

02:05:29 #39 [Debug] > ╭─[ 251.21ms - stdout ]────────────────────────────────────────────────────────╮

02:05:29 #40 [Debug] > │ ()                                                                           │

02:05:29 #41 [Debug] > │                                                                              │

02:05:29 #42 [Debug] > │                                                                              │

02:05:29 #43 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:29 #44 [Debug] >

02:05:29 #45 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:29 #46 [Debug] > // // test

02:05:29 #47 [Debug] >

02:05:29 #48 [Debug] > [[ "a"; "b" ]] /@ [[ "c"; "d" ]]

02:05:29 #49 [Debug] > |> _equal [[ "a"; "b"; "c"; "d" ]]

02:05:29 #50 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-2962-6256-68905890f4b9\main.spi

02:05:30 #51 [Debug] >

02:05:30 #52 [Debug] > ╭─[ 1.25s - stdout ]───────────────────────────────────────────────────────────╮

02:05:30 #53 [Debug] > │ type UH0 =                                                                   │

02:05:30 #54 [Debug] > │     | UH0_0 of string * UH0                                                  │

02:05:30 #55 [Debug] > │     | UH0_1                                                                  │

02:05:30 #56 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:30 #57 [Debug] > │     let v43 : string = "a"                                                   │

02:05:30 #58 [Debug] > │     let v44 : string = "b"                                                   │

02:05:30 #59 [Debug] > │     let v45 : string = "c"                                                   │

02:05:30 #60 [Debug] > │     let v46 : string = "d"                                                   │

02:05:30 #61 [Debug] > │     let v47 : UH0 = UH0_1                                                    │

02:05:30 #62 [Debug] > │     let v48 : UH0 = UH0_0(v46, v47)                                          │

02:05:30 #63 [Debug] > │     let v49 : UH0 = UH0_0(v45, v48)                                          │

02:05:30 #64 [Debug] > │     let v50 : UH0 = UH0_0(v44, v49)                                          │

02:05:30 #65 [Debug] > │     let v51 : UH0 = UH0_0(v43, v50)                                          │

02:05:30 #66 [Debug] > │     let v52 : UH0 = UH0_1                                                    │

02:05:30 #67 [Debug] > │     let v53 : UH0 = UH0_0(v46, v52)                                          │

02:05:30 #68 [Debug] > │     let v54 : UH0 = UH0_0(v45, v53)                                          │

02:05:30 #69 [Debug] > │     let v55 : UH0 = UH0_0(v44, v54)                                          │

02:05:30 #70 [Debug] > │     let v56 : UH0 = UH0_0(v43, v55)                                          │

02:05:30 #71 [Debug] > │     let v57 : string = $"_equal / actual: %A{v51} / expected: %A{v56}"       │

02:05:30 #72 [Debug] > │     ()                                                                       │

02:05:30 #73 [Debug] > │ method0()                                                                    │

02:05:30 #74 [Debug] > │                                                                              │

02:05:30 #75 [Debug] > │                                                                              │

02:05:30 #76 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:30 #77 [Debug] >

02:05:30 #78 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:30 #79 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:30 #80 [Debug] > │ ## init_series                                                               │

02:05:30 #81 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:30 #82 [Debug] >

02:05:30 #83 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:30 #84 [Debug] > inl init_series start end inc =

02:05:30 #85 [Debug] >     inl total : f64 = conv ((end - start) / inc) + 1

02:05:30 #86 [Debug] >     listm.init total (conv >> (*) inc >> (+) start)

02:05:31 #87 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3089-8923-8d0b82fbf5fc\main.spi

02:05:31 #88 [Debug] >

02:05:31 #89 [Debug] > ╭─[ 189.79ms - stdout ]────────────────────────────────────────────────────────╮

02:05:31 #90 [Debug] > │ ()                                                                           │

02:05:31 #91 [Debug] > │                                                                              │

02:05:31 #92 [Debug] > │                                                                              │

02:05:31 #93 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:31 #94 [Debug] >

02:05:31 #95 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:31 #96 [Debug] > // // test

02:05:31 #97 [Debug] >

02:05:31 #98 [Debug] > init_series 0 1 0.5

02:05:31 #99 [Debug] > |> _equal [[ 0f64; 0.5; 1 ]]

02:05:31 #100 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3108-0818-011fb78c4772\main.spi

02:05:31 #101 [Debug] >

02:05:31 #102 [Debug] > ╭─[ 231.13ms - stdout ]────────────────────────────────────────────────────────╮

02:05:31 #103 [Debug] > │ type UH0 =                                                                   │

02:05:31 #104 [Debug] > │     | UH0_0 of float * UH0                                                   │

02:05:31 #105 [Debug] > │     | UH0_1                                                                  │

02:05:31 #106 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:31 #107 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:05:31 #108 [Debug] > │     let v19 : UH0 = UH0_0(1.0, v18)                                          │

02:05:31 #109 [Debug] > │     let v20 : UH0 = UH0_0(0.5, v19)                                          │

02:05:31 #110 [Debug] > │     let v21 : UH0 = UH0_0(0.0, v20)                                          │

02:05:31 #111 [Debug] > │     let v22 : UH0 = UH0_1                                                    │

02:05:31 #112 [Debug] > │     let v23 : UH0 = UH0_0(1.0, v22)                                          │

02:05:31 #113 [Debug] > │     let v24 : UH0 = UH0_0(0.5, v23)                                          │

02:05:31 #114 [Debug] > │     let v25 : UH0 = UH0_0(0.0, v24)                                          │

02:05:31 #115 [Debug] > │     let v26 : string = $"_equal / actual: %A{v21} / expected: %A{v25}"       │

02:05:31 #116 [Debug] > │     ()                                                                       │

02:05:31 #117 [Debug] > │ method0()                                                                    │

02:05:31 #118 [Debug] > │                                                                              │

02:05:31 #119 [Debug] > │                                                                              │

02:05:31 #120 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:31 #121 [Debug] >

02:05:31 #122 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:31 #123 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:31 #124 [Debug] > │ ## try_item                                                                  │

02:05:31 #125 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:31 #126 [Debug] >

02:05:31 #127 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:31 #128 [Debug] > inl rec try_item i = function

02:05:31 #129 [Debug] >     | Cons (x, _) when i = 0 => Some x

02:05:31 #130 [Debug] >     | Cons (_, xs) => try_item (i - 1) xs

02:05:31 #131 [Debug] >     | Nil => None

02:05:31 #132 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3132-3237-305dab7cf007\main.spi

02:05:31 #133 [Debug] >

02:05:31 #134 [Debug] > ╭─[ 206.73ms - stdout ]────────────────────────────────────────────────────────╮

02:05:31 #135 [Debug] > │ ()                                                                           │

02:05:31 #136 [Debug] > │                                                                              │

02:05:31 #137 [Debug] > │                                                                              │

02:05:31 #138 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:31 #139 [Debug] >

02:05:31 #140 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:31 #141 [Debug] > // // test

02:05:31 #142 [Debug] >

02:05:31 #143 [Debug] > listm.init 10i32 id

02:05:31 #144 [Debug] > |> try_item 9i32

02:05:31 #145 [Debug] > |> _equal (Some 9)

02:05:31 #146 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3153-5333-51f2a037b171\main.spi

02:05:31 #147 [Debug] >

02:05:31 #148 [Debug] > ╭─[ 355.66ms - stdout ]────────────────────────────────────────────────────────╮

02:05:31 #149 [Debug] > │ type [<Struct>] US0 =                                                        │

02:05:31 #150 [Debug] > │     | US0_0                                                                  │

02:05:31 #151 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:05:31 #152 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:31 #153 [Debug] > │     let v3 : US0 = US0_1(9)                                                  │

02:05:31 #154 [Debug] > │     let v4 : US0 = US0_1(9)                                                  │

02:05:31 #155 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:05:31 #156 [Debug] > │     ()                                                                       │

02:05:31 #157 [Debug] > │ method0()                                                                    │

02:05:31 #158 [Debug] > │                                                                              │

02:05:31 #159 [Debug] > │                                                                              │

02:05:31 #160 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:31 #161 [Debug] >

02:05:31 #162 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:31 #163 [Debug] > // // test

02:05:31 #164 [Debug] >

02:05:31 #165 [Debug] > listm.init 10i32 id

02:05:31 #166 [Debug] > |> try_item 10i32

02:05:31 #167 [Debug] > |> _equal None

02:05:32 #168 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3189-8946-84f2682c1772\main.spi

02:05:32 #169 [Debug] >

02:05:32 #170 [Debug] > ╭─[ 207.14ms - stdout ]────────────────────────────────────────────────────────╮

02:05:32 #171 [Debug] > │ type [<Struct>] US0 =                                                        │

02:05:32 #172 [Debug] > │     | US0_0                                                                  │

02:05:32 #173 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:05:32 #174 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:32 #175 [Debug] > │     let v3 : US0 = US0_0                                                     │

02:05:32 #176 [Debug] > │     let v4 : US0 = US0_0                                                     │

02:05:32 #177 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:05:32 #178 [Debug] > │     ()                                                                       │

02:05:32 #179 [Debug] > │ method0()                                                                    │

02:05:32 #180 [Debug] > │                                                                              │

02:05:32 #181 [Debug] > │                                                                              │

02:05:32 #182 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:32 #183 [Debug] >

02:05:32 #184 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:32 #185 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:32 #186 [Debug] > │ ## list_item                                                                 │

02:05:32 #187 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:32 #188 [Debug] >

02:05:32 #189 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:32 #190 [Debug] > inl item i =

02:05:32 #191 [Debug] >     try_item i >> optionm.value

02:05:32 #192 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3210-1093-172e7abc9fe2\main.spi

02:05:32 #193 [Debug] >

02:05:32 #194 [Debug] > ╭─[ 166.28ms - stdout ]────────────────────────────────────────────────────────╮

02:05:32 #195 [Debug] > │ ()                                                                           │

02:05:32 #196 [Debug] > │                                                                              │

02:05:32 #197 [Debug] > │                                                                              │

02:05:32 #198 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:32 #199 [Debug] >

02:05:32 #200 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:32 #201 [Debug] > // // test

02:05:32 #202 [Debug] >

02:05:32 #203 [Debug] > listm.init 10i32 id

02:05:32 #204 [Debug] > |> item 9i32

02:05:32 #205 [Debug] > |> _equal 9

02:05:32 #206 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3227-2777-2a7032ad9828\main.spi

02:05:32 #207 [Debug] >

02:05:32 #208 [Debug] > ╭─[ 176.38ms - stdout ]────────────────────────────────────────────────────────╮

02:05:32 #209 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:32 #210 [Debug] > │     let v0 : string = $"_equal / actual: %A{9} / expected: %A{9}"            │

02:05:32 #211 [Debug] > │     ()                                                                       │

02:05:32 #212 [Debug] > │ method0()                                                                    │

02:05:32 #213 [Debug] > │                                                                              │

02:05:32 #214 [Debug] > │                                                                              │

02:05:32 #215 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:32 #216 [Debug] >

02:05:32 #217 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:32 #218 [Debug] > // // test

02:05:32 #219 [Debug] >

02:05:32 #220 [Debug] > fun () =>

02:05:32 #221 [Debug] >     listm.init 10i32 id

02:05:32 #222 [Debug] >     |> item 10i32

02:05:32 #223 [Debug] >     |> ignore

02:05:32 #224 [Debug] > |> _throws

02:05:32 #225 [Debug] > |> _equal (Some "Option does not have a value.")

02:05:32 #226 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3245-4573-4b250da97747\main.spi

02:05:32 #227 [Debug] >

02:05:32 #228 [Debug] > ╭─[ 362.93ms - stdout ]────────────────────────────────────────────────────────╮

02:05:32 #229 [Debug] > │ type [<Struct>] US0 =                                                        │

02:05:32 #230 [Debug] > │     | US0_0                                                                  │

02:05:32 #231 [Debug] > │     | US0_1 of f1_0 : string                                                 │

02:05:32 #232 [Debug] > │ let rec closure0 () () : unit =                                              │

02:05:32 #233 [Debug] > │     let v0 : int32 = failwith<int32> "Option does not have a value."         │

02:05:32 #234 [Debug] > │     ()                                                                       │

02:05:32 #235 [Debug] > │ and closure1 () (v0 : string) : US0 =                                        │

02:05:32 #236 [Debug] > │     US0_1(v0)                                                                │

02:05:32 #237 [Debug] > │ and method0 () : unit =                                                      │

02:05:32 #238 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:05:32 #239 [Debug] > │     let v1 : US0 = US0_0                                                     │

02:05:32 #240 [Debug] > │     let v2 : (string -> US0) = closure1()                                    │

02:05:32 #241 [Debug] > │     let v3 : US0 = try v0 (); v1 with ex -> v2 ex.Message                    │

02:05:32 #242 [Debug] > │     let v8 : bool =                                                          │

02:05:32 #243 [Debug] > │         match v3 with                                                        │

02:05:32 #244 [Debug] > │         | US0_1(v6) -> (* Some *)                                            │

02:05:32 #245 [Debug] > │             let v7 : bool = v6 = "Option does not have a value."             │

02:05:32 #246 [Debug] > │             v7                                                               │

02:05:32 #247 [Debug] > │         | _ ->                                                               │

02:05:32 #248 [Debug] > │             false                                                            │

02:05:32 #249 [Debug] > │     let v9 : string = "Option does not have a value."                        │

02:05:32 #250 [Debug] > │     let v10 : US0 = US0_1(v9)                                                │

02:05:32 #251 [Debug] > │     let v11 : string = $"_equal / actual: %A{v3} / expected: %A{v10}"        │

02:05:32 #252 [Debug] > │     let v12 : bool = v8 = false                                              │

02:05:32 #253 [Debug] > │     if v12 then                                                              │

02:05:32 #254 [Debug] > │         failwith<unit> v11                                                   │

02:05:32 #255 [Debug] > │ method0()                                                                    │

02:05:32 #256 [Debug] > │                                                                              │

02:05:32 #257 [Debug] > │                                                                              │

02:05:32 #258 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:32 #259 [Debug] >

02:05:32 #260 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:32 #261 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:32 #262 [Debug] > │ ## try_item_                                                                 │

02:05:32 #263 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:32 #264 [Debug] >

02:05:32 #265 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:32 #266 [Debug] > let rec try_item_ i = function

02:05:32 #267 [Debug] >     | Cons (x, _) when i = 0 => Some x

02:05:32 #268 [Debug] >     | Cons (_, xs) => try_item_ (i - 1) xs

02:05:32 #269 [Debug] >     | Nil => None

02:05:32 #270 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3283-8396-8f2347907870\main.spi

02:05:33 #271 [Debug] >

02:05:33 #272 [Debug] > ╭─[ 168.57ms - stdout ]────────────────────────────────────────────────────────╮

02:05:33 #273 [Debug] > │ ()                                                                           │

02:05:33 #274 [Debug] > │                                                                              │

02:05:33 #275 [Debug] > │                                                                              │

02:05:33 #276 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #277 [Debug] >

02:05:33 #278 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:33 #279 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:33 #280 [Debug] > │ ## item_                                                                     │

02:05:33 #281 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #282 [Debug] >

02:05:33 #283 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:33 #284 [Debug] > inl item_ i =

02:05:33 #285 [Debug] >     try_item_ i >> optionm.value

02:05:33 #286 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3301-0128-0f3312a0be51\main.spi

02:05:33 #287 [Debug] >

02:05:33 #288 [Debug] > ╭─[ 165.25ms - stdout ]────────────────────────────────────────────────────────╮

02:05:33 #289 [Debug] > │ ()                                                                           │

02:05:33 #290 [Debug] > │                                                                              │

02:05:33 #291 [Debug] > │                                                                              │

02:05:33 #292 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #293 [Debug] >

02:05:33 #294 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:33 #295 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:33 #296 [Debug] > │ ## sum                                                                       │

02:05:33 #297 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #298 [Debug] >

02:05:33 #299 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:33 #300 [Debug] > inl sum list =

02:05:33 #301 [Debug] >     list |> listm.fold (+) 0

02:05:33 #302 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3318-1820-191f0b811baf\main.spi

02:05:33 #303 [Debug] >

02:05:33 #304 [Debug] > ╭─[ 200.31ms - stdout ]────────────────────────────────────────────────────────╮

02:05:33 #305 [Debug] > │ ()                                                                           │

02:05:33 #306 [Debug] > │                                                                              │

02:05:33 #307 [Debug] > │                                                                              │

02:05:33 #308 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #309 [Debug] >

02:05:33 #310 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:33 #311 [Debug] > // // test

02:05:33 #312 [Debug] >

02:05:33 #313 [Debug] > listm.init 10i32 id

02:05:33 #314 [Debug] > |> sum

02:05:33 #315 [Debug] > |> _equal 45

02:05:33 #316 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3338-3856-3bf52c824146\main.spi

02:05:33 #317 [Debug] >

02:05:33 #318 [Debug] > ╭─[ 174.87ms - stdout ]────────────────────────────────────────────────────────╮

02:05:33 #319 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:33 #320 [Debug] > │     let v0 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:05:33 #321 [Debug] > │     ()                                                                       │

02:05:33 #322 [Debug] > │ method0()                                                                    │

02:05:33 #323 [Debug] > │                                                                              │

02:05:33 #324 [Debug] > │                                                                              │

02:05:33 #325 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #326 [Debug] >

02:05:33 #327 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:33 #328 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:33 #329 [Debug] > │ ## unzip                                                                     │

02:05:33 #330 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #331 [Debug] >

02:05:33 #332 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:33 #333 [Debug] > inl unzip list =

02:05:33 #334 [Debug] >     (([[]], [[]]), list)

02:05:33 #335 [Debug] >     ||> listm.fold fun (acc_x, acc_y) (x, y) =>

02:05:33 #336 [Debug] >         x :: acc_x, y :: acc_y

02:05:33 #337 [Debug] >     |> fun x, y =>

02:05:33 #338 [Debug] >         x |> listm.rev, y |> listm.rev

02:05:33 #339 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3356-5656-52f9a2fc632f\main.spi

02:05:33 #340 [Debug] >

02:05:33 #341 [Debug] > ╭─[ 180.78ms - stdout ]────────────────────────────────────────────────────────╮

02:05:33 #342 [Debug] > │ ()                                                                           │

02:05:33 #343 [Debug] > │                                                                              │

02:05:33 #344 [Debug] > │                                                                              │

02:05:33 #345 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #346 [Debug] >

02:05:33 #347 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:33 #348 [Debug] > // // test

02:05:33 #349 [Debug] >

02:05:33 #350 [Debug] > listm.init 10i32 id

02:05:33 #351 [Debug] > |> listm.map (fun x => x, x)

02:05:33 #352 [Debug] > |> unzip

02:05:33 #353 [Debug] > |> fun x, y =>

02:05:33 #354 [Debug] >     x |> sum

02:05:33 #355 [Debug] >     |> _equal 45

02:05:33 #356 [Debug] >

02:05:33 #357 [Debug] >     y |> sum

02:05:33 #358 [Debug] >     |> _equal 45

02:05:33 #359 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3374-7496-7bf355c5c6c5\main.spi

02:05:33 #360 [Debug] >

02:05:33 #361 [Debug] > ╭─[ 191.05ms - stdout ]────────────────────────────────────────────────────────╮

02:05:33 #362 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:33 #363 [Debug] > │     let v0 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:05:33 #364 [Debug] > │     let v1 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:05:33 #365 [Debug] > │     ()                                                                       │

02:05:33 #366 [Debug] > │ method0()                                                                    │

02:05:33 #367 [Debug] > │                                                                              │

02:05:33 #368 [Debug] > │                                                                              │

02:05:33 #369 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #370 [Debug] >

02:05:33 #371 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:33 #372 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:33 #373 [Debug] > │ ## try_index_of                                                              │

02:05:33 #374 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:33 #375 [Debug] >

02:05:33 #376 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:33 #377 [Debug] > inl try_index_of item list =

02:05:33 #378 [Debug] >     inl rec loop i = function

02:05:33 #379 [Debug] >         | [[]] => None

02:05:33 #380 [Debug] >         | x :: xs =>

02:05:33 #381 [Debug] >             if x = item

02:05:33 #382 [Debug] >             then Some i

02:05:33 #383 [Debug] >             else loop (i + 1) xs

02:05:33 #384 [Debug] >     loop 0 list

02:05:33 #385 [Debug] >

02:05:33 #386 [Debug] > inl index_of item =

02:05:33 #387 [Debug] >     try_index_of item >> optionm.value

02:05:33 #388 [Debug] >

02:05:33 #389 [Debug] > inl try_index_of_ item list =

02:05:33 #390 [Debug] >     let rec loop i = function

02:05:33 #391 [Debug] >         | [[]] => None

02:05:33 #392 [Debug] >         | x :: xs =>

02:05:33 #393 [Debug] >             if x = item

02:05:33 #394 [Debug] >             then Some i

02:05:33 #395 [Debug] >             else loop (i + 1) xs

02:05:33 #396 [Debug] >     loop 0 list

02:05:33 #397 [Debug] >

02:05:33 #398 [Debug] > inl index_of_ item =

02:05:33 #399 [Debug] >     try_index_of_ item >> optionm.value

02:05:33 #400 [Debug] >

02:05:33 #401 [Debug] > inl try_index_of__ item list =

02:05:33 #402 [Debug] >     inl i = mut 0

02:05:33 #403 [Debug] >     inl list = mut list

02:05:33 #404 [Debug] >     inl result = mut None

02:05:33 #405 [Debug] >     let rec loop () =

02:05:33 #406 [Debug] >         match *list with

02:05:33 #407 [Debug] >         | [[]] => result <- None

02:05:33 #408 [Debug] >         | x :: xs =>

02:05:33 #409 [Debug] >             if x = item

02:05:33 #410 [Debug] >             then result <- Some *i

02:05:33 #411 [Debug] >             else

02:05:33 #412 [Debug] >                 i <- *i + 1

02:05:33 #413 [Debug] >                 list <- xs

02:05:33 #414 [Debug] >                 loop ()

02:05:33 #415 [Debug] >     loop ()

02:05:33 #416 [Debug] >     *result

02:05:33 #417 [Debug] >

02:05:33 #418 [Debug] > inl index_of__ item =

02:05:33 #419 [Debug] >     try_index_of__ item >> optionm.value

02:05:34 #420 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3394-9473-9c24804f748d\main.spi

02:05:34 #421 [Debug] >

02:05:34 #422 [Debug] > ╭─[ 176.32ms - stdout ]────────────────────────────────────────────────────────╮

02:05:34 #423 [Debug] > │ ()                                                                           │

02:05:34 #424 [Debug] > │                                                                              │

02:05:34 #425 [Debug] > │                                                                              │

02:05:34 #426 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:34 #427 [Debug] >

02:05:34 #428 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:34 #429 [Debug] > // // test

02:05:34 #430 [Debug] >

02:05:34 #431 [Debug] > listm.init 10i32 id

02:05:34 #432 [Debug] > |> index_of 5i32

02:05:34 #433 [Debug] > |> _equal 5i32

02:05:34 #434 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3412-1260-153ddb4674f9\main.spi

02:05:34 #435 [Debug] >

02:05:34 #436 [Debug] > ╭─[ 188.40ms - stdout ]────────────────────────────────────────────────────────╮

02:05:34 #437 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:34 #438 [Debug] > │     let v0 : string = $"_equal / actual: %A{5} / expected: %A{5}"            │

02:05:34 #439 [Debug] > │     ()                                                                       │

02:05:34 #440 [Debug] > │ method0()                                                                    │

02:05:34 #441 [Debug] > │                                                                              │

02:05:34 #442 [Debug] > │                                                                              │

02:05:34 #443 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:34 #444 [Debug] >

02:05:34 #445 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:34 #446 [Debug] > // // test

02:05:34 #447 [Debug] >

02:05:34 #448 [Debug] > listm.init 10i32 id

02:05:34 #449 [Debug] > |> try_index_of 10i32

02:05:34 #450 [Debug] > |> _equal (None : option i32)

02:05:34 #451 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3431-3188-30b2bc6f3b2f\main.spi

02:05:34 #452 [Debug] >

02:05:34 #453 [Debug] > ╭─[ 188.15ms - stdout ]────────────────────────────────────────────────────────╮

02:05:34 #454 [Debug] > │ type [<Struct>] US0 =                                                        │

02:05:34 #455 [Debug] > │     | US0_0                                                                  │

02:05:34 #456 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:05:34 #457 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:34 #458 [Debug] > │     let v3 : US0 = US0_0                                                     │

02:05:34 #459 [Debug] > │     let v4 : US0 = US0_0                                                     │

02:05:34 #460 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:05:34 #461 [Debug] > │     ()                                                                       │

02:05:34 #462 [Debug] > │ method0()                                                                    │

02:05:34 #463 [Debug] > │                                                                              │

02:05:34 #464 [Debug] > │                                                                              │

02:05:34 #465 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:34 #466 [Debug] >

02:05:34 #467 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:34 #468 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:34 #469 [Debug] > │ ## try_find                                                                  │

02:05:34 #470 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:34 #471 [Debug] >

02:05:34 #472 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:34 #473 [Debug] > inl try_find fn list =

02:05:34 #474 [Debug] >     inl rec loop = function

02:05:34 #475 [Debug] >         | [[]] => None

02:05:34 #476 [Debug] >         | x :: xs =>

02:05:34 #477 [Debug] >             if fn x

02:05:34 #478 [Debug] >             then Some x

02:05:34 #479 [Debug] >             else loop xs

02:05:34 #480 [Debug] >     loop list

02:05:34 #481 [Debug] >

02:05:34 #482 [Debug] > inl try_find_ fn list =

02:05:34 #483 [Debug] >     let rec loop = function

02:05:34 #484 [Debug] >         | [[]] => None

02:05:34 #485 [Debug] >         | x :: xs =>

02:05:34 #486 [Debug] >             if fn x

02:05:34 #487 [Debug] >             then Some x

02:05:34 #488 [Debug] >             else loop xs

02:05:34 #489 [Debug] >     loop list

02:05:34 #490 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3451-5148-5b37743bbf51\main.spi

02:05:34 #491 [Debug] >

02:05:34 #492 [Debug] > ╭─[ 257.36ms - stdout ]────────────────────────────────────────────────────────╮

02:05:34 #493 [Debug] > │ ()                                                                           │

02:05:34 #494 [Debug] > │                                                                              │

02:05:34 #495 [Debug] > │                                                                              │

02:05:34 #496 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:34 #497 [Debug] >

02:05:34 #498 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:34 #499 [Debug] > // // test

02:05:34 #500 [Debug] >

02:05:34 #501 [Debug] > listm.init 10i32 id

02:05:34 #502 [Debug] > |> try_find ((=) 5i32)

02:05:34 #503 [Debug] > |> _equal (Some 5i32)

02:05:34 #504 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3477-7747-767677bb96d1\main.spi

02:05:34 #505 [Debug] >

02:05:34 #506 [Debug] > ╭─[ 188.88ms - stdout ]────────────────────────────────────────────────────────╮

02:05:34 #507 [Debug] > │ type [<Struct>] US0 =                                                        │

02:05:34 #508 [Debug] > │     | US0_0                                                                  │

02:05:34 #509 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:05:34 #510 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:34 #511 [Debug] > │     let v3 : US0 = US0_1(5)                                                  │

02:05:34 #512 [Debug] > │     let v4 : US0 = US0_1(5)                                                  │

02:05:34 #513 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:05:34 #514 [Debug] > │     ()                                                                       │

02:05:34 #515 [Debug] > │ method0()                                                                    │

02:05:34 #516 [Debug] > │                                                                              │

02:05:34 #517 [Debug] > │                                                                              │

02:05:34 #518 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:34 #519 [Debug] >

02:05:34 #520 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:34 #521 [Debug] > inl find x =

02:05:34 #522 [Debug] >     try_find x >> optionm.value

02:05:34 #523 [Debug] >

02:05:34 #524 [Debug] > inl find_ x =

02:05:34 #525 [Debug] >     try_find_ x >> optionm.value

02:05:35 #526 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3497-9707-9106f7b239ec\main.spi

02:05:35 #527 [Debug] >

02:05:35 #528 [Debug] > ╭─[ 178.53ms - stdout ]────────────────────────────────────────────────────────╮

02:05:35 #529 [Debug] > │ ()                                                                           │

02:05:35 #530 [Debug] > │                                                                              │

02:05:35 #531 [Debug] > │                                                                              │

02:05:35 #532 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #533 [Debug] >

02:05:35 #534 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:35 #535 [Debug] > // // test

02:05:35 #536 [Debug] >

02:05:35 #537 [Debug] > listm.init 10i32 id

02:05:35 #538 [Debug] > |> find ((=) 5i32)

02:05:35 #539 [Debug] > |> _equal 5i32

02:05:35 #540 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3515-1503-1323f0a25b78\main.spi

02:05:35 #541 [Debug] >

02:05:35 #542 [Debug] > ╭─[ 176.14ms - stdout ]────────────────────────────────────────────────────────╮

02:05:35 #543 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:35 #544 [Debug] > │     let v0 : string = $"_equal / actual: %A{5} / expected: %A{5}"            │

02:05:35 #545 [Debug] > │     ()                                                                       │

02:05:35 #546 [Debug] > │ method0()                                                                    │

02:05:35 #547 [Debug] > │                                                                              │

02:05:35 #548 [Debug] > │                                                                              │

02:05:35 #549 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #550 [Debug] >

02:05:35 #551 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:35 #552 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:35 #553 [Debug] > │ ## choose                                                                    │

02:05:35 #554 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #555 [Debug] >

02:05:35 #556 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:35 #557 [Debug] > inl choose f l =

02:05:35 #558 [Debug] >     (l, [[]])

02:05:35 #559 [Debug] >     ||> listm.foldBack fun x acc =>

02:05:35 #560 [Debug] >         match f x with

02:05:35 #561 [Debug] >         | Some y => y :: acc

02:05:35 #562 [Debug] >         | None => acc

02:05:35 #563 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3533-3324-3cdefb4acc81\main.spi

02:05:35 #564 [Debug] >

02:05:35 #565 [Debug] > ╭─[ 162.59ms - stdout ]────────────────────────────────────────────────────────╮

02:05:35 #566 [Debug] > │ ()                                                                           │

02:05:35 #567 [Debug] > │                                                                              │

02:05:35 #568 [Debug] > │                                                                              │

02:05:35 #569 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #570 [Debug] >

02:05:35 #571 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:35 #572 [Debug] > // // test

02:05:35 #573 [Debug] >

02:05:35 #574 [Debug] > listm.init 10i32 id

02:05:35 #575 [Debug] > |> choose (fun x => if x % 2 = 0 then Some x else None)

02:05:35 #576 [Debug] > |> _equal [[ 0; 2; 4; 6; 8 ]]

02:05:35 #577 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3549-4983-484918e64c48\main.spi

02:05:35 #578 [Debug] >

02:05:35 #579 [Debug] > ╭─[ 185.12ms - stdout ]────────────────────────────────────────────────────────╮

02:05:35 #580 [Debug] > │ type UH0 =                                                                   │

02:05:35 #581 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:05:35 #582 [Debug] > │     | UH0_1                                                                  │

02:05:35 #583 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:35 #584 [Debug] > │     let v33 : UH0 = UH0_1                                                    │

02:05:35 #585 [Debug] > │     let v34 : UH0 = UH0_0(8, v33)                                            │

02:05:35 #586 [Debug] > │     let v35 : UH0 = UH0_0(6, v34)                                            │

02:05:35 #587 [Debug] > │     let v36 : UH0 = UH0_0(4, v35)                                            │

02:05:35 #588 [Debug] > │     let v37 : UH0 = UH0_0(2, v36)                                            │

02:05:35 #589 [Debug] > │     let v38 : UH0 = UH0_0(0, v37)                                            │

02:05:35 #590 [Debug] > │     let v39 : UH0 = UH0_1                                                    │

02:05:35 #591 [Debug] > │     let v40 : UH0 = UH0_0(8, v39)                                            │

02:05:35 #592 [Debug] > │     let v41 : UH0 = UH0_0(6, v40)                                            │

02:05:35 #593 [Debug] > │     let v42 : UH0 = UH0_0(4, v41)                                            │

02:05:35 #594 [Debug] > │     let v43 : UH0 = UH0_0(2, v42)                                            │

02:05:35 #595 [Debug] > │     let v44 : UH0 = UH0_0(0, v43)                                            │

02:05:35 #596 [Debug] > │     let v45 : string = $"_equal / actual: %A{v38} / expected: %A{v44}"       │

02:05:35 #597 [Debug] > │     ()                                                                       │

02:05:35 #598 [Debug] > │ method0()                                                                    │

02:05:35 #599 [Debug] > │                                                                              │

02:05:35 #600 [Debug] > │                                                                              │

02:05:35 #601 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #602 [Debug] >

02:05:35 #603 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:35 #604 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:35 #605 [Debug] > │ ## zip_with                                                                  │

02:05:35 #606 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #607 [Debug] >

02:05:35 #608 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:35 #609 [Debug] > inl zip_with fn xs ys =

02:05:35 #610 [Debug] >     inl rec loop acc xs ys =

02:05:35 #611 [Debug] >         match xs, ys with

02:05:35 #612 [Debug] >         | Cons (x, xs), Cons (y, ys) =>

02:05:35 #613 [Debug] >             loop (fn x y :: acc) xs ys

02:05:35 #614 [Debug] >         | _ => listm.rev acc

02:05:35 #615 [Debug] >     loop [[]] xs ys

02:05:35 #616 [Debug] >

02:05:35 #617 [Debug] > inl zip_with_ fn xs ys =

02:05:35 #618 [Debug] >     let rec loop acc xs ys =

02:05:35 #619 [Debug] >         match xs, ys with

02:05:35 #620 [Debug] >         | Cons (x, xs), Cons (y, ys) =>

02:05:35 #621 [Debug] >             loop (fn x y :: acc) xs ys

02:05:35 #622 [Debug] >         | _ => listm.rev acc

02:05:35 #623 [Debug] >     loop [[]] xs ys

02:05:35 #624 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3569-6986-6a23d3e504a2\main.spi

02:05:35 #625 [Debug] >

02:05:35 #626 [Debug] > ╭─[ 160.31ms - stdout ]────────────────────────────────────────────────────────╮

02:05:35 #627 [Debug] > │ ()                                                                           │

02:05:35 #628 [Debug] > │                                                                              │

02:05:35 #629 [Debug] > │                                                                              │

02:05:35 #630 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:35 #631 [Debug] >

02:05:35 #632 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:35 #633 [Debug] > // // test

02:05:35 #634 [Debug] >

02:05:35 #635 [Debug] > ([[ 1i32; 2; 3 ]], [[ 4; 5; 6 ]])

02:05:35 #636 [Debug] > ||> zip_with (+)

02:05:35 #637 [Debug] > |> _equal [[ 5; 7; 9 ]]

02:05:35 #638 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3586-8600-889a478b2a48\main.spi

02:05:36 #639 [Debug] >

02:05:36 #640 [Debug] > ╭─[ 206.50ms - stdout ]────────────────────────────────────────────────────────╮

02:05:36 #641 [Debug] > │ type UH0 =                                                                   │

02:05:36 #642 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:05:36 #643 [Debug] > │     | UH0_1                                                                  │

02:05:36 #644 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:36 #645 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:05:36 #646 [Debug] > │     let v19 : UH0 = UH0_0(9, v18)                                            │

02:05:36 #647 [Debug] > │     let v20 : UH0 = UH0_0(7, v19)                                            │

02:05:36 #648 [Debug] > │     let v21 : UH0 = UH0_0(5, v20)                                            │

02:05:36 #649 [Debug] > │     let v22 : UH0 = UH0_1                                                    │

02:05:36 #650 [Debug] > │     let v23 : UH0 = UH0_0(9, v22)                                            │

02:05:36 #651 [Debug] > │     let v24 : UH0 = UH0_0(7, v23)                                            │

02:05:36 #652 [Debug] > │     let v25 : UH0 = UH0_0(5, v24)                                            │

02:05:36 #653 [Debug] > │     let v26 : string = $"_equal / actual: %A{v21} / expected: %A{v25}"       │

02:05:36 #654 [Debug] > │     ()                                                                       │

02:05:36 #655 [Debug] > │ method0()                                                                    │

02:05:36 #656 [Debug] > │                                                                              │

02:05:36 #657 [Debug] > │                                                                              │

02:05:36 #658 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #659 [Debug] >

02:05:36 #660 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:36 #661 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:36 #662 [Debug] > │ ## zip                                                                       │

02:05:36 #663 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #664 [Debug] >

02:05:36 #665 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:36 #666 [Debug] > inl zip xs ys =

02:05:36 #667 [Debug] >     zip_with pair xs ys

02:05:36 #668 [Debug] >

02:05:36 #669 [Debug] > inl zip_ xs ys =

02:05:36 #670 [Debug] >     zip_with_ pair xs ys

02:05:36 #671 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3607-0779-0d7c2dd63087\main.spi

02:05:36 #672 [Debug] >

02:05:36 #673 [Debug] > ╭─[ 177.00ms - stdout ]────────────────────────────────────────────────────────╮

02:05:36 #674 [Debug] > │ ()                                                                           │

02:05:36 #675 [Debug] > │                                                                              │

02:05:36 #676 [Debug] > │                                                                              │

02:05:36 #677 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #678 [Debug] >

02:05:36 #679 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:36 #680 [Debug] > // // test

02:05:36 #681 [Debug] >

02:05:36 #682 [Debug] > ([[ 1i32; 2; 3 ]], [[ 4i32; 5; 6 ]])

02:05:36 #683 [Debug] > ||> zip

02:05:36 #684 [Debug] > |> _equal [[ 1, 4; 2, 5; 3, 6 ]]

02:05:36 #685 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3625-2574-2cd3f16e004c\main.spi

02:05:36 #686 [Debug] >

02:05:36 #687 [Debug] > ╭─[ 246.57ms - stdout ]────────────────────────────────────────────────────────╮

02:05:36 #688 [Debug] > │ type UH0 =                                                                   │

02:05:36 #689 [Debug] > │     | UH0_0 of int32 * int32 * UH0                                           │

02:05:36 #690 [Debug] > │     | UH0_1                                                                  │

02:05:36 #691 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:36 #692 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:05:36 #693 [Debug] > │     let v19 : UH0 = UH0_0(3, 6, v18)                                         │

02:05:36 #694 [Debug] > │     let v20 : UH0 = UH0_0(2, 5, v19)                                         │

02:05:36 #695 [Debug] > │     let v21 : UH0 = UH0_0(1, 4, v20)                                         │

02:05:36 #696 [Debug] > │     let v22 : UH0 = UH0_1                                                    │

02:05:36 #697 [Debug] > │     let v23 : UH0 = UH0_0(3, 6, v22)                                         │

02:05:36 #698 [Debug] > │     let v24 : UH0 = UH0_0(2, 5, v23)                                         │

02:05:36 #699 [Debug] > │     let v25 : UH0 = UH0_0(1, 4, v24)                                         │

02:05:36 #700 [Debug] > │     let v26 : string = $"_equal / actual: %A{v21} / expected: %A{v25}"       │

02:05:36 #701 [Debug] > │     ()                                                                       │

02:05:36 #702 [Debug] > │ method0()                                                                    │

02:05:36 #703 [Debug] > │                                                                              │

02:05:36 #704 [Debug] > │                                                                              │

02:05:36 #705 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #706 [Debug] >

02:05:36 #707 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:36 #708 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:36 #709 [Debug] > │ ## indexed                                                                   │

02:05:36 #710 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #711 [Debug] >

02:05:36 #712 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:36 #713 [Debug] > inl indexed list =

02:05:36 #714 [Debug] >     (([[]], 0), list)

02:05:36 #715 [Debug] >     ||> listm.fold fun (acc, i) x =>

02:05:36 #716 [Debug] >         (i, x) :: acc, i + 1

02:05:36 #717 [Debug] >     |> fst

02:05:36 #718 [Debug] >     |> listm.rev

02:05:36 #719 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3651-5143-5ef4ea8e613f\main.spi

02:05:36 #720 [Debug] >

02:05:36 #721 [Debug] > ╭─[ 192.66ms - stdout ]────────────────────────────────────────────────────────╮

02:05:36 #722 [Debug] > │ ()                                                                           │

02:05:36 #723 [Debug] > │                                                                              │

02:05:36 #724 [Debug] > │                                                                              │

02:05:36 #725 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #726 [Debug] >

02:05:36 #727 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:36 #728 [Debug] > // // test

02:05:36 #729 [Debug] >

02:05:36 #730 [Debug] > listm.init 5i32 ((*) 2)

02:05:36 #731 [Debug] > |> indexed

02:05:36 #732 [Debug] > |> _equal [[ 0i32, 0; 1, 2; 2, 4; 3, 6; 4, 8 ]]

02:05:36 #733 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3670-7095-7297fe098241\main.spi

02:05:36 #734 [Debug] >

02:05:36 #735 [Debug] > ╭─[ 241.47ms - stdout ]────────────────────────────────────────────────────────╮

02:05:36 #736 [Debug] > │ type UH0 =                                                                   │

02:05:36 #737 [Debug] > │     | UH0_0 of int32 * int32 * UH0                                           │

02:05:36 #738 [Debug] > │     | UH0_1                                                                  │

02:05:36 #739 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:36 #740 [Debug] > │     let v33 : UH0 = UH0_1                                                    │

02:05:36 #741 [Debug] > │     let v34 : UH0 = UH0_0(4, 8, v33)                                         │

02:05:36 #742 [Debug] > │     let v35 : UH0 = UH0_0(3, 6, v34)                                         │

02:05:36 #743 [Debug] > │     let v36 : UH0 = UH0_0(2, 4, v35)                                         │

02:05:36 #744 [Debug] > │     let v37 : UH0 = UH0_0(1, 2, v36)                                         │

02:05:36 #745 [Debug] > │     let v38 : UH0 = UH0_0(0, 0, v37)                                         │

02:05:36 #746 [Debug] > │     let v39 : UH0 = UH0_1                                                    │

02:05:36 #747 [Debug] > │     let v40 : UH0 = UH0_0(4, 8, v39)                                         │

02:05:36 #748 [Debug] > │     let v41 : UH0 = UH0_0(3, 6, v40)                                         │

02:05:36 #749 [Debug] > │     let v42 : UH0 = UH0_0(2, 4, v41)                                         │

02:05:36 #750 [Debug] > │     let v43 : UH0 = UH0_0(1, 2, v42)                                         │

02:05:36 #751 [Debug] > │     let v44 : UH0 = UH0_0(0, 0, v43)                                         │

02:05:36 #752 [Debug] > │     let v45 : string = $"_equal / actual: %A{v38} / expected: %A{v44}"       │

02:05:36 #753 [Debug] > │     ()                                                                       │

02:05:36 #754 [Debug] > │ method0()                                                                    │

02:05:36 #755 [Debug] > │                                                                              │

02:05:36 #756 [Debug] > │                                                                              │

02:05:36 #757 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #758 [Debug] >

02:05:36 #759 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:36 #760 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:36 #761 [Debug] > │ ## group_by                                                                  │

02:05:36 #762 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:36 #763 [Debug] >

02:05:36 #764 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:36 #765 [Debug] > inl group_by fn list =

02:05:36 #766 [Debug] >     (list, [[]])

02:05:36 #767 [Debug] >     ||> listm.foldBack fun x acc =>

02:05:36 #768 [Debug] >         inl xk = fn x

02:05:36 #769 [Debug] >         inl found, new_acc =

02:05:36 #770 [Debug] >             ((false, [[]]), acc)

02:05:36 #771 [Debug] >             ||> listm.fold fun (found, acc') (k, xs) =>

02:05:36 #772 [Debug] >                 if k = xk

02:05:36 #773 [Debug] >                 then true, (k, x :: xs) :: acc'

02:05:36 #774 [Debug] >                 else found, (k, xs) :: acc'

02:05:36 #775 [Debug] >         if found

02:05:36 #776 [Debug] >         then new_acc

02:05:36 #777 [Debug] >         else (xk, [[ x ]]) :: new_acc

02:05:37 #778 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3696-9684-9286058746d9\main.spi

02:05:37 #779 [Debug] >

02:05:37 #780 [Debug] > ╭─[ 183.77ms - stdout ]────────────────────────────────────────────────────────╮

02:05:37 #781 [Debug] > │ ()                                                                           │

02:05:37 #782 [Debug] > │                                                                              │

02:05:37 #783 [Debug] > │                                                                              │

02:05:37 #784 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #785 [Debug] >

02:05:37 #786 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:37 #787 [Debug] > // // test

02:05:37 #788 [Debug] >

02:05:37 #789 [Debug] > listm.init 10i32 id

02:05:37 #790 [Debug] > |> group_by (fun x => x % 2 = 0)

02:05:37 #791 [Debug] > |> _equal [[ true, [[ 0; 2; 4; 6; 8 ]]; false, [[ 1; 3; 5; 7; 9 ]] ]]

02:05:37 #792 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3715-1533-1fef6f36b516\main.spi

02:05:37 #793 [Debug] >

02:05:37 #794 [Debug] > ╭─[ 263.94ms - stdout ]────────────────────────────────────────────────────────╮

02:05:37 #795 [Debug] > │ type UH0 =                                                                   │

02:05:37 #796 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:05:37 #797 [Debug] > │     | UH0_1                                                                  │

02:05:37 #798 [Debug] > │ and UH1 =                                                                    │

02:05:37 #799 [Debug] > │     | UH1_0 of bool * UH0 * UH1                                              │

02:05:37 #800 [Debug] > │     | UH1_1                                                                  │

02:05:37 #801 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:37 #802 [Debug] > │     let v96 : UH0 = UH0_1                                                    │

02:05:37 #803 [Debug] > │     let v97 : UH0 = UH0_0(8, v96)                                            │

02:05:37 #804 [Debug] > │     let v98 : UH0 = UH0_0(6, v97)                                            │

02:05:37 #805 [Debug] > │     let v99 : UH0 = UH0_0(4, v98)                                            │

02:05:37 #806 [Debug] > │     let v100 : UH0 = UH0_0(2, v99)                                           │

02:05:37 #807 [Debug] > │     let v101 : UH0 = UH0_0(0, v100)                                          │

02:05:37 #808 [Debug] > │     let v102 : UH0 = UH0_1                                                   │

02:05:37 #809 [Debug] > │     let v103 : UH0 = UH0_0(9, v102)                                          │

02:05:37 #810 [Debug] > │     let v104 : UH0 = UH0_0(7, v103)                                          │

02:05:37 #811 [Debug] > │     let v105 : UH0 = UH0_0(5, v104)                                          │

02:05:37 #812 [Debug] > │     let v106 : UH0 = UH0_0(3, v105)                                          │

02:05:37 #813 [Debug] > │     let v107 : UH0 = UH0_0(1, v106)                                          │

02:05:37 #814 [Debug] > │     let v108 : UH1 = UH1_1                                                   │

02:05:37 #815 [Debug] > │     let v109 : UH1 = UH1_0(false, v107, v108)                                │

02:05:37 #816 [Debug] > │     let v110 : UH1 = UH1_0(true, v101, v109)                                 │

02:05:37 #817 [Debug] > │     let v111 : UH0 = UH0_1                                                   │

02:05:37 #818 [Debug] > │     let v112 : UH0 = UH0_0(8, v111)                                          │

02:05:37 #819 [Debug] > │     let v113 : UH0 = UH0_0(6, v112)                                          │

02:05:37 #820 [Debug] > │     let v114 : UH0 = UH0_0(4, v113)                                          │

02:05:37 #821 [Debug] > │     let v115 : UH0 = UH0_0(2, v114)                                          │

02:05:37 #822 [Debug] > │     let v116 : UH0 = UH0_0(0, v115)                                          │

02:05:37 #823 [Debug] > │     let v117 : UH0 = UH0_1                                                   │

02:05:37 #824 [Debug] > │     let v118 : UH0 = UH0_0(9, v117)                                          │

02:05:37 #825 [Debug] > │     let v119 : UH0 = UH0_0(7, v118)                                          │

02:05:37 #826 [Debug] > │     let v120 : UH0 = UH0_0(5, v119)                                          │

02:05:37 #827 [Debug] > │     let v121 : UH0 = UH0_0(3, v120)                                          │

02:05:37 #828 [Debug] > │     let v122 : UH0 = UH0_0(1, v121)                                          │

02:05:37 #829 [Debug] > │     let v123 : UH1 = UH1_1                                                   │

02:05:37 #830 [Debug] > │     let v124 : UH1 = UH1_0(false, v122, v123)                                │

02:05:37 #831 [Debug] > │     let v125 : UH1 = UH1_0(true, v116, v124)                                 │

02:05:37 #832 [Debug] > │     let v126 : string = $"_equal / actual: %A{v110} / expected: %A{v125}"    │

02:05:37 #833 [Debug] > │     ()                                                                       │

02:05:37 #834 [Debug] > │ method0()                                                                    │

02:05:37 #835 [Debug] > │                                                                              │

02:05:37 #836 [Debug] > │                                                                              │

02:05:37 #837 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #838 [Debug] >

02:05:37 #839 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:37 #840 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:37 #841 [Debug] > │ ## forall'                                                                   │

02:05:37 #842 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #843 [Debug] >

02:05:37 #844 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:37 #845 [Debug] > inl forall' fn (head :: tail) =

02:05:37 #846 [Debug] >     (true, tail)

02:05:37 #847 [Debug] >     ||> listm.fold fun acc x =>

02:05:37 #848 [Debug] >         acc && x = head

02:05:37 #849 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3743-4381-47392d03e0bb\main.spi

02:05:37 #850 [Debug] >

02:05:37 #851 [Debug] > ╭─[ 179.00ms - stdout ]────────────────────────────────────────────────────────╮

02:05:37 #852 [Debug] > │ ()                                                                           │

02:05:37 #853 [Debug] > │                                                                              │

02:05:37 #854 [Debug] > │                                                                              │

02:05:37 #855 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #856 [Debug] >

02:05:37 #857 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:37 #858 [Debug] > // // test

02:05:37 #859 [Debug] >

02:05:37 #860 [Debug] > [[ 1i32; 1; 1; 1; 1 ]]

02:05:37 #861 [Debug] > |> forall' ((=) 1i32)

02:05:37 #862 [Debug] > |> _equal true

02:05:37 #863 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3761-6191-623dc5aa0f73\main.spi

02:05:37 #864 [Debug] >

02:05:37 #865 [Debug] > ╭─[ 186.49ms - stdout ]────────────────────────────────────────────────────────╮

02:05:37 #866 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:37 #867 [Debug] > │     let v0 : string = $"_equal / actual: %A{true} / expected: %A{true}"      │

02:05:37 #868 [Debug] > │     ()                                                                       │

02:05:37 #869 [Debug] > │ method0()                                                                    │

02:05:37 #870 [Debug] > │                                                                              │

02:05:37 #871 [Debug] > │                                                                              │

02:05:37 #872 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #873 [Debug] >

02:05:37 #874 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:37 #875 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:37 #876 [Debug] > │ ## last                                                                      │

02:05:37 #877 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #878 [Debug] >

02:05:37 #879 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:37 #880 [Debug] > inl last list =

02:05:37 #881 [Debug] >     list

02:05:37 #882 [Debug] >     |> listm.rev

02:05:37 #883 [Debug] >     |> item 0i32

02:05:37 #884 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3781-8110-8f4c077a4898\main.spi

02:05:37 #885 [Debug] >

02:05:37 #886 [Debug] > ╭─[ 175.35ms - stdout ]────────────────────────────────────────────────────────╮

02:05:37 #887 [Debug] > │ ()                                                                           │

02:05:37 #888 [Debug] > │                                                                              │

02:05:37 #889 [Debug] > │                                                                              │

02:05:37 #890 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:37 #891 [Debug] >

02:05:37 #892 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:37 #893 [Debug] > // // test

02:05:37 #894 [Debug] >

02:05:37 #895 [Debug] > listm.init 10i32 id

02:05:37 #896 [Debug] > |> last

02:05:37 #897 [Debug] > |> _equal 9

02:05:38 #898 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-3798-9893-94e2d14e0d29\main.spi

02:05:38 #899 [Debug] >

02:05:38 #900 [Debug] > ╭─[ 169.24ms - stdout ]────────────────────────────────────────────────────────╮

02:05:38 #901 [Debug] > │ let rec method0 () : unit =                                                  │

02:05:38 #902 [Debug] > │     let v0 : string = $"_equal / actual: %A{9} / expected: %A{9}"            │

02:05:38 #903 [Debug] > │     ()                                                                       │

02:05:38 #904 [Debug] > │ method0()                                                                    │

02:05:38 #905 [Debug] > │                                                                              │

02:05:38 #906 [Debug] > │                                                                              │

02:05:38 #907 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:39 #908 [Debug] > [NbConvertApp] Converting notebook listm'.dib.ipynb to html

02:05:39 #909 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:05:39 #910 [Debug] >   validate(nb)

02:05:40 #911 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:05:40 #912 [Debug] >   return _pygments_highlight(

02:05:40 #913 [Debug] > [NbConvertApp] Writing 354401 bytes to listm'.dib.html

02:05:41 #914 [Debug] executeAsync / exitCode: 0 / proc.Id: 67572 / output.Length: 47863

02:05:41 #915 [Debug] main / executeCommand / exitCode: 0

02:05:42 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:05:42 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:05:42 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:05:42 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:05:43 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:05:43 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:05:43 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:05:43 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:05:43 #9 [Debug] > Server bound to: http://localhost:13805

02:05:43 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 benchmark.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:05:46 #11 [Debug] >

02:05:46 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:46 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:46 #14 [Debug] > │ ## benchmark (Polyglot)                                                      │

02:05:46 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:46 #16 [Debug] >

02:05:46 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:46 #18 [Debug] > // // test

02:05:46 #19 [Debug] >

02:05:46 #20 [Debug] > open testing

02:05:49 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-4866-6602-65370736f87f\main.spi

02:05:51 #22 [Debug] >

02:05:51 #23 [Debug] > ╭─[ 5.49s - stdout ]───────────────────────────────────────────────────────────╮

02:05:51 #24 [Debug] > │ ()                                                                           │

02:05:51 #25 [Debug] > │                                                                              │

02:05:51 #26 [Debug] > │                                                                              │

02:05:51 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:51 #28 [Debug] >

02:05:51 #29 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:51 #30 [Debug] > inl (/@) x = listm'.(/@) x

02:05:51 #31 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5162-6253-6a6c8ab7380a\main.spi

02:05:51 #32 [Debug] >

02:05:51 #33 [Debug] > ╭─[ 180.30ms - stdout ]────────────────────────────────────────────────────────╮

02:05:51 #34 [Debug] > │ ()                                                                           │

02:05:51 #35 [Debug] > │                                                                              │

02:05:51 #36 [Debug] > │                                                                              │

02:05:51 #37 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:51 #38 [Debug] >

02:05:51 #39 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:51 #40 [Debug] > inl am'_average forall el {number}. (array : a _ el) : el =

02:05:51 #41 [Debug] >     $"!array |> Array.average"

02:05:51 #42 [Debug] >

02:05:51 #43 [Debug] > inl am'_parallel_map forall dim el el'. (fn : el -> el') (array : a dim el) : a

02:05:51 #44 [Debug] > dim el' =

02:05:51 #45 [Debug] >     $"!array |> Array.Parallel.map !fn"

02:05:51 #46 [Debug] >

02:05:51 #47 [Debug] > inl am'_sort_by forall dim el. (fn : el -> _) (array : a dim el) : a dim el =

02:05:51 #48 [Debug] >     $"!array |> Array.sortBy !fn"

02:05:51 #49 [Debug] >

02:05:51 #50 [Debug] > inl am'_sort_descending forall dim el. (array : a dim el) : a dim el =

02:05:51 #51 [Debug] >     $"!array |> Array.sortDescending"

02:05:51 #52 [Debug] >

02:05:51 #53 [Debug] > inl am'_transpose forall dim el. (array : a dim (a dim el)) : a dim (a dim el) =

02:05:51 #54 [Debug] >     $"!array |> Array.transpose"

02:05:51 #55 [Debug] >

02:05:51 #56 [Debug] > inl am'_try_item forall dim el. (i : i32) (array : a dim el) : option el =

02:05:51 #57 [Debug] >     $"!array |> Array.tryItem !i" |> optionm'.from_fsharp

02:05:51 #58 [Debug] >

02:05:51 #59 [Debug] > nominal console_color = $"System.ConsoleColor"

02:05:51 #60 [Debug] >

02:05:51 #61 [Debug] > inl console_reset_color () : () =

02:05:51 #62 [Debug] >     run_target function

02:05:51 #63 [Debug] >         | Fsharp => fun () => $"System.Console.ResetColor ()"

02:05:51 #64 [Debug] >         | _ => fun () => ()

02:05:51 #65 [Debug] >

02:05:51 #66 [Debug] > inl console_set_foreground_color (color : console_color) : () =

02:05:51 #67 [Debug] >     run_target function

02:05:51 #68 [Debug] >         | Fsharp => fun () => $"System.Console.ForegroundColor <- !color"

02:05:51 #69 [Debug] >         | _ => fun () => ()

02:05:51 #70 [Debug] >

02:05:51 #71 [Debug] > inl gc_collect () =

02:05:51 #72 [Debug] >     run_target function

02:05:51 #73 [Debug] >         | Fsharp => fun () => $"System.GC.Collect ()"

02:05:51 #74 [Debug] >         | _ => fun () => ()

02:05:51 #75 [Debug] >

02:05:51 #76 [Debug] > nominal map k v = $"Map<`k, `v>"

02:05:51 #77 [Debug] >

02:05:51 #78 [Debug] > inl map_item forall k v. (k : k) (map : map k v) : v =

02:05:51 #79 [Debug] >     $"!map.[[!k]]"

02:05:51 #80 [Debug] >

02:05:51 #81 [Debug] > inl map_of_array forall k v. (array : a _ (k * v)) : map k v =

02:05:51 #82 [Debug] >     $"!array |> Array.map (fun (struct (a, b)) -> a, b) |> Map.ofArray"

02:05:51 #83 [Debug] >

02:05:51 #84 [Debug] > inl printfn x =

02:05:51 #85 [Debug] >     console.write_line x

02:05:51 #86 [Debug] >

02:05:51 #87 [Debug] > nominal stopwatch = $"System.Diagnostics.Stopwatch"

02:05:51 #88 [Debug] >

02:05:51 #89 [Debug] > inl stopwatch () : stopwatch =

02:05:51 #90 [Debug] >     $"`stopwatch" ()

02:05:51 #91 [Debug] >

02:05:51 #92 [Debug] > inl stopwatch_elapsed_milliseconds (stopwatch : stopwatch) : i64 =

02:05:51 #93 [Debug] >     $"!stopwatch.ElapsedMilliseconds"

02:05:51 #94 [Debug] >

02:05:51 #95 [Debug] > inl stopwatch_start (stopwatch : stopwatch) : () =

02:05:51 #96 [Debug] >     $"!stopwatch.Start ()"

02:05:51 #97 [Debug] >

02:05:51 #98 [Debug] > inl string_concat (a : string) (b : a _ _) : string =

02:05:51 #99 [Debug] >     $"!b |> String.concat !a"

02:05:51 #100 [Debug] >

02:05:51 #101 [Debug] > inl string_join (concat : string) (s : a _ string) : string =

02:05:51 #102 [Debug] >     $"System.String.Join (!concat, !s)"

02:05:51 #103 [Debug] >

02:05:51 #104 [Debug] >

02:05:51 #105 [Debug] > inl string_pad_right (pad : i32) (s : string) : string =

02:05:51 #106 [Debug] >     $"!s.PadRight !pad"

02:05:51 #107 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5180-8052-87cb9f2af923\main.spi

02:05:51 #108 [Debug] >

02:05:51 #109 [Debug] > ╭─[ 181.01ms - stdout ]────────────────────────────────────────────────────────╮

02:05:51 #110 [Debug] > │ ()                                                                           │

02:05:51 #111 [Debug] > │                                                                              │

02:05:51 #112 [Debug] > │                                                                              │

02:05:51 #113 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:51 #114 [Debug] >

02:05:51 #115 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:51 #116 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:51 #117 [Debug] > │ ## test_case_result                                                          │

02:05:51 #118 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:51 #119 [Debug] >

02:05:51 #120 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:51 #121 [Debug] > type test_case_result =

02:05:51 #122 [Debug] >     {

02:05:51 #123 [Debug] >         Input : string

02:05:51 #124 [Debug] >         Expected : string

02:05:51 #125 [Debug] >         Result : string

02:05:51 #126 [Debug] >         TimeList : list i64

02:05:51 #127 [Debug] >     }

02:05:52 #128 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5199-9910-9fb65079850e\main.spi

02:05:52 #129 [Debug] >

02:05:52 #130 [Debug] > ╭─[ 205.10ms - stdout ]────────────────────────────────────────────────────────╮

02:05:52 #131 [Debug] > │ ()                                                                           │

02:05:52 #132 [Debug] > │                                                                              │

02:05:52 #133 [Debug] > │                                                                              │

02:05:52 #134 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #135 [Debug] >

02:05:52 #136 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:52 #137 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:52 #138 [Debug] > │ ## run                                                                       │

02:05:52 #139 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #140 [Debug] >

02:05:52 #141 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:52 #142 [Debug] > inl run forall input expected.

02:05:52 #143 [Debug] >     count

02:05:52 #144 [Debug] >     (solutions : list (string * (input -> expected)))

02:05:52 #145 [Debug] >     ((input, expected) : (input * expected))

02:05:52 #146 [Debug] >     : test_case_result

02:05:52 #147 [Debug] >     =

02:05:52 #148 [Debug] >     inl input_str = input |> obj_to_string

02:05:52 #149 [Debug] >

02:05:52 #150 [Debug] >     printfn ""

02:05:52 #151 [Debug] >     printfn ($"$\"Solution: {!input_str}  \"" : string)

02:05:52 #152 [Debug] >

02:05:52 #153 [Debug] >     inl performance_invoke (fn : () -> expected) =

02:05:52 #154 [Debug] >         gc_collect ()

02:05:52 #155 [Debug] >         inl stopwatch = stopwatch ()

02:05:52 #156 [Debug] >         stopwatch |> stopwatch_start

02:05:52 #157 [Debug] >         inl time1 = stopwatch |> stopwatch_elapsed_milliseconds

02:05:52 #158 [Debug] >         inl result : expected =

02:05:52 #159 [Debug] >             am'.init_series 0 count 1i32

02:05:52 #160 [Debug] >             |> am'_parallel_map fun _n => fn ()

02:05:52 #161 [Debug] >             |> am'.last

02:05:52 #162 [Debug] >         inl time2 = (stopwatch |> stopwatch_elapsed_milliseconds) - time1

02:05:52 #163 [Debug] >         result, time2

02:05:52 #164 [Debug] >

02:05:52 #165 [Debug] >     inl results_with_time =

02:05:52 #166 [Debug] >         solutions

02:05:52 #167 [Debug] >         |> listm'.indexed

02:05:52 #168 [Debug] >         |> listm.map fun ((i : i32), (test_name, solution)) =>

02:05:52 #169 [Debug] >             inl result, time = performance_invoke fun () => solution input

02:05:52 #170 [Debug] >             printfn ($"$\"Test case {!i + 1}. {!test_name}. Time: {!time}  \"" :

02:05:52 #171 [Debug] > string)

02:05:52 #172 [Debug] >             result, time

02:05:52 #173 [Debug] >

02:05:52 #174 [Debug] >     match results_with_time |> listm.map fst with

02:05:52 #175 [Debug] >     | [[]] | [[ _ ]] => ()

02:05:52 #176 [Debug] >     | head :: tail when tail |> listm'.forall' ((=) head) => ()

02:05:52 #177 [Debug] >     | results => failwith ($"$\"Challenge error: {!results}\"" : string)

02:05:52 #178 [Debug] >

02:05:52 #179 [Debug] >     {

02:05:52 #180 [Debug] >         Input = input_str

02:05:52 #181 [Debug] >         Expected = expected |> obj_to_string

02:05:52 #182 [Debug] >         Result = results_with_time |> listm.map fst |> listm'.item 0i32 |>

02:05:52 #183 [Debug] > obj_to_string

02:05:52 #184 [Debug] >         TimeList = results_with_time |> listm.map snd

02:05:52 #185 [Debug] >     }

02:05:52 #186 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5220-2019-24ecd25c6a7e\main.spi

02:05:52 #187 [Debug] >

02:05:52 #188 [Debug] > ╭─[ 176.07ms - stdout ]────────────────────────────────────────────────────────╮

02:05:52 #189 [Debug] > │ ()                                                                           │

02:05:52 #190 [Debug] > │                                                                              │

02:05:52 #191 [Debug] > │                                                                              │

02:05:52 #192 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #193 [Debug] >

02:05:52 #194 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:52 #195 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:52 #196 [Debug] > │ ## run_all                                                                   │

02:05:52 #197 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #198 [Debug] >

02:05:52 #199 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:52 #200 [Debug] > inl run_all forall input expected.

02:05:52 #201 [Debug] >     test_name

02:05:52 #202 [Debug] >     count

02:05:52 #203 [Debug] >     (solutions : list (string * (input -> expected)))

02:05:52 #204 [Debug] >     test_cases

02:05:52 #205 [Debug] >     =

02:05:52 #206 [Debug] >     printfn ""

02:05:52 #207 [Debug] >     printfn ""

02:05:52 #208 [Debug] >     printfn ($"$\"Test: {!test_name}\"" : string)

02:05:52 #209 [Debug] >     test_cases

02:05:52 #210 [Debug] >     |> listm.map (run count solutions)

02:05:52 #211 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5238-3812-3e4d6946fdc0\main.spi

02:05:52 #212 [Debug] >

02:05:52 #213 [Debug] > ╭─[ 185.45ms - stdout ]────────────────────────────────────────────────────────╮

02:05:52 #214 [Debug] > │ ()                                                                           │

02:05:52 #215 [Debug] > │                                                                              │

02:05:52 #216 [Debug] > │                                                                              │

02:05:52 #217 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #218 [Debug] >

02:05:52 #219 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:52 #220 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:52 #221 [Debug] > │ ## sort_result_list                                                          │

02:05:52 #222 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #223 [Debug] >

02:05:52 #224 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:52 #225 [Debug] > inl sort_result_list results =

02:05:52 #226 [Debug] >     inl table =

02:05:52 #227 [Debug] >         inl rows =

02:05:52 #228 [Debug] >             results

02:05:52 #229 [Debug] >             |> listm.map (fun (result : test_case_result) =>

02:05:52 #230 [Debug] >                 inl best =

02:05:52 #231 [Debug] >                     result.TimeList

02:05:52 #232 [Debug] >                     |> listm'.indexed

02:05:52 #233 [Debug] >                     |> listm.map fun (i, time) =>

02:05:52 #234 [Debug] >                         i + 1i64, time

02:05:52 #235 [Debug] >                     |> listm.toArray

02:05:52 #236 [Debug] >                     |> am'_sort_by snd

02:05:52 #237 [Debug] >                     |> fun array => index array 0i32

02:05:52 #238 [Debug] >                     |> format_debug

02:05:52 #239 [Debug] >                 inl row =

02:05:52 #240 [Debug] >                     [[

02:05:52 #241 [Debug] >                         result.Input

02:05:52 #242 [Debug] >                         result.Expected

02:05:52 #243 [Debug] >                         result.Result

02:05:52 #244 [Debug] >                         best

02:05:52 #245 [Debug] >                     ]]

02:05:52 #246 [Debug] >                 inl color : option console_color =

02:05:52 #247 [Debug] >                     match result.Expected = result.Result with

02:05:52 #248 [Debug] >                     | true => Some $"`console_color.DarkGreen"

02:05:52 #249 [Debug] >                     | false => Some $"`console_color.DarkRed"

02:05:52 #250 [Debug] >                 row, color

02:05:52 #251 [Debug] >             )

02:05:52 #252 [Debug] >         inl header =

02:05:52 #253 [Debug] >             [[

02:05:52 #254 [Debug] >                 [[

02:05:52 #255 [Debug] >                     "Input"

02:05:52 #256 [Debug] >                     "Expected"

02:05:52 #257 [Debug] >                     "Result"

02:05:52 #258 [Debug] >                     "Best"

02:05:52 #259 [Debug] >                 ]]

02:05:52 #260 [Debug] >                 [[

02:05:52 #261 [Debug] >                     "---"

02:05:52 #262 [Debug] >                     "---"

02:05:52 #263 [Debug] >                     "---"

02:05:52 #264 [Debug] >                     "---"

02:05:52 #265 [Debug] >                 ]]

02:05:52 #266 [Debug] >             ]]

02:05:52 #267 [Debug] >             |> listm.map fun row => row, None

02:05:52 #268 [Debug] >         header /@ rows

02:05:52 #269 [Debug] >

02:05:52 #270 [Debug] >     inl formattedTable =

02:05:52 #271 [Debug] >         inl lengthMap : map i32 i64 =

02:05:52 #272 [Debug] >             table

02:05:52 #273 [Debug] >             |> listm.map (fst >> listm.toArray)

02:05:52 #274 [Debug] >             |> listm.toArray

02:05:52 #275 [Debug] >             |> fun (x : a i32 _) => x

02:05:52 #276 [Debug] >             |> am'_transpose

02:05:52 #277 [Debug] >             |> am.map fun column =>

02:05:52 #278 [Debug] >                 column

02:05:52 #279 [Debug] >                 |> am.map sm.length

02:05:52 #280 [Debug] >                 |> am'_sort_descending

02:05:52 #281 [Debug] >                 |> am'_try_item 0i32

02:05:52 #282 [Debug] >                 |> optionm'.default_value 0i64

02:05:52 #283 [Debug] >             |> am'.indexed

02:05:52 #284 [Debug] >             |> fun (x : a i32 _) => x

02:05:52 #285 [Debug] >             |> map_of_array

02:05:52 #286 [Debug] >         table

02:05:52 #287 [Debug] >         |> listm.map fun (row, color) =>

02:05:52 #288 [Debug] >             inl newRow =

02:05:52 #289 [Debug] >                 row

02:05:52 #290 [Debug] >                 |> listm'.indexed

02:05:52 #291 [Debug] >                 |> listm.map fun (i, cell) =>

02:05:52 #292 [Debug] >                     cell |> string_pad_right (lengthMap |> map_item i |> conv)

02:05:52 #293 [Debug] >                 |> listm.toArray

02:05:52 #294 [Debug] >             newRow, color

02:05:52 #295 [Debug] >

02:05:52 #296 [Debug] >     printfn ""

02:05:52 #297 [Debug] >     formattedTable

02:05:52 #298 [Debug] >     |> listm.iter fun ((row : a i32 string), color) =>

02:05:52 #299 [Debug] >         match color with

02:05:52 #300 [Debug] >         | Some color => color |> console_set_foreground_color

02:05:52 #301 [Debug] >         | None => console_reset_color ()

02:05:52 #302 [Debug] >

02:05:52 #303 [Debug] >         printfn (row |> string_join "\t| ")

02:05:52 #304 [Debug] >

02:05:52 #305 [Debug] >         console_reset_color ()

02:05:52 #306 [Debug] >

02:05:52 #307 [Debug] >     inl averages =

02:05:52 #308 [Debug] >         results

02:05:52 #309 [Debug] >         |> listm.map fun result =>

02:05:52 #310 [Debug] >             result.TimeList

02:05:52 #311 [Debug] >             |> listm.map ($"float" : i64 -> f64)

02:05:52 #312 [Debug] >             |> listm.toArray : a i32 _

02:05:52 #313 [Debug] >         |> listm.toArray

02:05:52 #314 [Debug] >         |> am'_transpose

02:05:52 #315 [Debug] >         |> am.map am'_average

02:05:52 #316 [Debug] >         |> am.map ($"int64" : f64 -> i64)

02:05:52 #317 [Debug] >         |> am'.indexed : a i32 _

02:05:52 #318 [Debug] >

02:05:52 #319 [Debug] >     printfn ""

02:05:52 #320 [Debug] >     printfn "Average Ranking  "

02:05:52 #321 [Debug] >     averages

02:05:52 #322 [Debug] >     |> am'_sort_by snd

02:05:52 #323 [Debug] >     |> am.iter fun ((i : i32), avg) =>

02:05:52 #324 [Debug] >         printfn ($"$\"Test case %d{!i + 1}. Average Time: %A{!avg}  \"" :

02:05:52 #325 [Debug] > string)

02:05:52 #326 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5257-5746-58e17985687d\main.spi

02:05:52 #327 [Debug] >

02:05:52 #328 [Debug] > ╭─[ 231.27ms - stdout ]────────────────────────────────────────────────────────╮

02:05:52 #329 [Debug] > │ ()                                                                           │

02:05:52 #330 [Debug] > │                                                                              │

02:05:52 #331 [Debug] > │                                                                              │

02:05:52 #332 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:52 #333 [Debug] >

02:05:52 #334 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:52 #335 [Debug] > // // test

02:05:52 #336 [Debug] >

02:05:52 #337 [Debug] > inl get_count () =

02:05:52 #338 [Debug] >     2000000

02:05:52 #339 [Debug] >     // 2000

02:05:52 #340 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5280-8096-84755ca2806b\main.spi

02:05:53 #341 [Debug] >

02:05:53 #342 [Debug] > ╭─[ 198.84ms - stdout ]────────────────────────────────────────────────────────╮

02:05:53 #343 [Debug] > │ ()                                                                           │

02:05:53 #344 [Debug] > │                                                                              │

02:05:53 #345 [Debug] > │                                                                              │

02:05:53 #346 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:53 #347 [Debug] >

02:05:53 #348 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:53 #349 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:53 #350 [Debug] > │ ## empty2Tests                                                               │

02:05:53 #351 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:53 #352 [Debug] >

02:05:53 #353 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:53 #354 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:53 #355 [Debug] > │ Test: Empty2                                                                 │

02:05:53 #356 [Debug] > │                                                                              │

02:05:53 #357 [Debug] > │ Solution: (a, a)                                                             │

02:05:53 #358 [Debug] > │ Test case 1. A. Time: 59L                                                    │

02:05:53 #359 [Debug] > │                                                                              │

02:05:53 #360 [Debug] > │ Solution: (a, a)                                                             │

02:05:53 #361 [Debug] > │ Test case 1. A. Time: 53L                                                    │

02:05:53 #362 [Debug] > │                                                                              │

02:05:53 #363 [Debug] > │ Input   | Expected        | Result  | Best                                   │

02:05:53 #364 [Debug] > │ ---     | ---             | ---     | ---                                    │

02:05:53 #365 [Debug] > │ (a, a)  | a               | a       | (1, 59)                                │

02:05:53 #366 [Debug] > │ (a, a)  | a               | a       | (1, 53)                                │

02:05:53 #367 [Debug] > │                                                                              │

02:05:53 #368 [Debug] > │ Averages                                                                     │

02:05:53 #369 [Debug] > │ Test case 1. Average Time: 56L                                               │

02:05:53 #370 [Debug] > │                                                                              │

02:05:53 #371 [Debug] > │ Ranking                                                                      │

02:05:53 #372 [Debug] > │ Test case 1. Average Time: 56L                                               │

02:05:53 #373 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:53 #374 [Debug] >

02:05:53 #375 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:53 #376 [Debug] > // // test

02:05:53 #377 [Debug] >

02:05:53 #378 [Debug] > inl get_solutions () =

02:05:53 #379 [Debug] >     [[

02:05:53 #380 [Debug] >         "A",

02:05:53 #381 [Debug] >         fun (a, _b) =>

02:05:53 #382 [Debug] >             a

02:05:53 #383 [Debug] >     ]]

02:05:53 #384 [Debug] >

02:05:53 #385 [Debug] > inl rec empty_2_tests () =

02:05:53 #386 [Debug] >     inl test_cases = [[

02:05:53 #387 [Debug] >         ("a", "a"), "a"

02:05:53 #388 [Debug] >         ("a", "a"), "a"

02:05:53 #389 [Debug] >     ]]

02:05:53 #390 [Debug] >

02:05:53 #391 [Debug] >     inl solutions = get_solutions ()

02:05:53 #392 [Debug] >

02:05:53 #393 [Debug] >     run_all (nameof empty_2_tests) (get_count ()) solutions test_cases

02:05:53 #394 [Debug] >     |> sort_result_list

02:05:53 #395 [Debug] >

02:05:53 #396 [Debug] > empty_2_tests ()

02:05:53 #397 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5302-0204-090fc6bb44f4\main.spi

02:05:56 #398 [Debug] >

02:05:57 #399 [Debug] > ╭─[ 3.92s - stdout ]───────────────────────────────────────────────────────────╮

02:05:57 #400 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:05:57 #401 [Debug] > │ and UH0 =                                                                    │

02:05:57 #402 [Debug] > │     | UH0_0 of int64 * int64 * UH0                                           │

02:05:57 #403 [Debug] > │     | UH0_1                                                                  │

02:05:57 #404 [Debug] > │ and [<Struct>] US0 =                                                         │

02:05:57 #405 [Debug] > │     | US0_0                                                                  │

02:05:57 #406 [Debug] > │     | US0_1 of f1_0 : System.ConsoleColor                                    │

02:05:57 #407 [Debug] > │ and UH1 =                                                                    │

02:05:57 #408 [Debug] > │     | UH1_0 of string * UH1                                                  │

02:05:57 #409 [Debug] > │     | UH1_1                                                                  │

02:05:57 #410 [Debug] > │ and UH2 =                                                                    │

02:05:57 #411 [Debug] > │     | UH2_0 of (string []) * UH2                                             │

02:05:57 #412 [Debug] > │     | UH2_1                                                                  │

02:05:57 #413 [Debug] > │ and [<Struct>] US1 =                                                         │

02:05:57 #414 [Debug] > │     | US1_0                                                                  │

02:05:57 #415 [Debug] > │     | US1_1 of f1_0 : int64                                                  │

02:05:57 #416 [Debug] > │ and UH3 =                                                                    │

02:05:57 #417 [Debug] > │     | UH3_0 of int32 * int64 * UH3                                           │

02:05:57 #418 [Debug] > │     | UH3_1                                                                  │

02:05:57 #419 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : UH3; mutable l2 : int32}        │

02:05:57 #420 [Debug] > │ and UH4 =                                                                    │

02:05:57 #421 [Debug] > │     | UH4_0 of float * UH4                                                   │

02:05:57 #422 [Debug] > │     | UH4_1                                                                  │

02:05:57 #423 [Debug] > │ and UH5 =                                                                    │

02:05:57 #424 [Debug] > │     | UH5_0 of (float []) * UH5                                              │

02:05:57 #425 [Debug] > │     | UH5_1                                                                  │

02:05:57 #426 [Debug] > │ let rec closure1 () () : unit =                                              │

02:05:57 #427 [Debug] > │     ()                                                                       │

02:05:57 #428 [Debug] > │ and closure2 () () : unit =                                                  │

02:05:57 #429 [Debug] > │     System.GC.Collect ()                                                     │

02:05:57 #430 [Debug] > │     ()                                                                       │

02:05:57 #431 [Debug] > │ and method1 (v0 : Mut0) : bool =                                             │

02:05:57 #432 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:05:57 #433 [Debug] > │     let v2 : bool = v1 < 2000001                                             │

02:05:57 #434 [Debug] > │     v2                                                                       │

02:05:57 #435 [Debug] > │ and closure3 () (v0 : int32) : string =                                      │

02:05:57 #436 [Debug] > │     let v1 : string = "a"                                                    │

02:05:57 #437 [Debug] > │     v1                                                                       │

02:05:57 #438 [Debug] > │ and method3 (v0 : UH0, v1 : int32) : int32 =                                 │

02:05:57 #439 [Debug] > │     match v0 with                                                            │

02:05:57 #440 [Debug] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:57 #441 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:05:57 #442 [Debug] > │         method3(v4, v5)                                                      │

02:05:57 #443 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:57 #444 [Debug] > │         v1                                                                   │

02:05:57 #445 [Debug] > │ and method4 (v0 : (struct (int64 * int64) []), v1 : UH0, v2 : int32) : int32 │

02:05:57 #446 [Debug] > │ =                                                                            │

02:05:57 #447 [Debug] > │     match v1 with                                                            │

02:05:57 #448 [Debug] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

02:05:57 #449 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:05:57 #450 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:05:57 #451 [Debug] > │         method4(v0, v5, v6)                                                  │

02:05:57 #452 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:57 #453 [Debug] > │         v2                                                                   │

02:05:57 #454 [Debug] > │ and method2 (v0 : UH0) : (struct (int64 * int64) []) =                       │

02:05:57 #455 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:57 #456 [Debug] > │     let v2 : int32 = method3(v0, v1)                                         │

02:05:57 #457 [Debug] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

02:05:57 #458 [Debug] > │ int64)> (v2)                                                                 │

02:05:57 #459 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:57 #460 [Debug] > │     let v5 : int32 = method4(v3, v0, v4)                                     │

02:05:57 #461 [Debug] > │     v3                                                                       │

02:05:57 #462 [Debug] > │ and closure4 () struct (v0 : int64, v1 : int64) : int64 =                    │

02:05:57 #463 [Debug] > │     v1                                                                       │

02:05:57 #464 [Debug] > │ and method6 (v0 : UH1, v1 : int32) : int32 =                                 │

02:05:57 #465 [Debug] > │     match v0 with                                                            │

02:05:57 #466 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:05:57 #467 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:57 #468 [Debug] > │         method6(v3, v4)                                                      │

02:05:57 #469 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:05:57 #470 [Debug] > │         v1                                                                   │

02:05:57 #471 [Debug] > │ and method7 (v0 : (string []), v1 : UH1, v2 : int32) : int32 =               │

02:05:57 #472 [Debug] > │     match v1 with                                                            │

02:05:57 #473 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:05:57 #474 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:57 #475 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:57 #476 [Debug] > │         method7(v0, v4, v5)                                                  │

02:05:57 #477 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:05:57 #478 [Debug] > │         v2                                                                   │

02:05:57 #479 [Debug] > │ and method5 (v0 : UH1) : (string []) =                                       │

02:05:57 #480 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:57 #481 [Debug] > │     let v2 : int32 = method6(v0, v1)                                         │

02:05:57 #482 [Debug] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

02:05:57 #483 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:57 #484 [Debug] > │     let v5 : int32 = method7(v3, v0, v4)                                     │

02:05:57 #485 [Debug] > │     v3                                                                       │

02:05:57 #486 [Debug] > │ and method9 (v0 : UH2, v1 : int32) : int32 =                                 │

02:05:57 #487 [Debug] > │     match v0 with                                                            │

02:05:57 #488 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:05:57 #489 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:57 #490 [Debug] > │         method9(v3, v4)                                                      │

02:05:57 #491 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:05:57 #492 [Debug] > │         v1                                                                   │

02:05:57 #493 [Debug] > │ and method10 (v0 : ((string []) []), v1 : UH2, v2 : int32) : int32 =         │

02:05:57 #494 [Debug] > │     match v1 with                                                            │

02:05:57 #495 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:05:57 #496 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:57 #497 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:57 #498 [Debug] > │         method10(v0, v4, v5)                                                 │

02:05:57 #499 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:05:57 #500 [Debug] > │         v2                                                                   │

02:05:57 #501 [Debug] > │ and method8 (v0 : UH2) : ((string []) []) =                                  │

02:05:57 #502 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:57 #503 [Debug] > │     let v2 : int32 = method9(v0, v1)                                         │

02:05:57 #504 [Debug] > │     let v3 : ((string []) []) = Array.zeroCreate<(string [])> (v2)           │

02:05:57 #505 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:57 #506 [Debug] > │     let v5 : int32 = method10(v3, v0, v4)                                    │

02:05:57 #507 [Debug] > │     v3                                                                       │

02:05:57 #508 [Debug] > │ and method11 (v0 : int32, v1 : Mut0) : bool =                                │

02:05:57 #509 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:05:57 #510 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:05:57 #511 [Debug] > │     v3                                                                       │

02:05:57 #512 [Debug] > │ and closure5 () (v0 : int64) : US1 =                                         │

02:05:57 #513 [Debug] > │     US1_1(v0)                                                                │

02:05:57 #514 [Debug] > │ and method12 (v0 : int32, v1 : Mut1) : bool =                                │

02:05:57 #515 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:05:57 #516 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:05:57 #517 [Debug] > │     v3                                                                       │

02:05:57 #518 [Debug] > │ and method13 (v0 : UH3, v1 : UH3) : UH3 =                                    │

02:05:57 #519 [Debug] > │     match v0 with                                                            │

02:05:57 #520 [Debug] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:57 #521 [Debug] > │         let v5 : UH3 = UH3_0(v2, v3, v1)                                     │

02:05:57 #522 [Debug] > │         method13(v4, v5)                                                     │

02:05:57 #523 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:05:57 #524 [Debug] > │         v1                                                                   │

02:05:57 #525 [Debug] > │ and method15 (v0 : UH3, v1 : int32) : int32 =                                │

02:05:57 #526 [Debug] > │     match v0 with                                                            │

02:05:57 #527 [Debug] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:57 #528 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:05:57 #529 [Debug] > │         method15(v4, v5)                                                     │

02:05:57 #530 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:05:57 #531 [Debug] > │         v1                                                                   │

02:05:57 #532 [Debug] > │ and method16 (v0 : (struct (int32 * int64) []), v1 : UH3, v2 : int32) :      │

02:05:57 #533 [Debug] > │ int32 =                                                                      │

02:05:57 #534 [Debug] > │     match v1 with                                                            │

02:05:57 #535 [Debug] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

02:05:57 #536 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:05:57 #537 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:05:57 #538 [Debug] > │         method16(v0, v5, v6)                                                 │

02:05:57 #539 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:05:57 #540 [Debug] > │         v2                                                                   │

02:05:57 #541 [Debug] > │ and method14 (v0 : UH3) : (struct (int32 * int64) []) =                      │

02:05:57 #542 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:57 #543 [Debug] > │     let v2 : int32 = method15(v0, v1)                                        │

02:05:57 #544 [Debug] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

02:05:57 #545 [Debug] > │ int64)> (v2)                                                                 │

02:05:57 #546 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:57 #547 [Debug] > │     let v5 : int32 = method16(v3, v0, v4)                                    │

02:05:57 #548 [Debug] > │     v3                                                                       │

02:05:57 #549 [Debug] > │ and closure6 () () : unit =                                                  │

02:05:57 #550 [Debug] > │     ()                                                                       │

02:05:57 #551 [Debug] > │ and closure7 () () : unit =                                                  │

02:05:57 #552 [Debug] > │     System.Console.ResetColor ()                                             │

02:05:57 #553 [Debug] > │     ()                                                                       │

02:05:57 #554 [Debug] > │ and closure8 () () : unit =                                                  │

02:05:57 #555 [Debug] > │     ()                                                                       │

02:05:57 #556 [Debug] > │ and closure9 (v0 : System.ConsoleColor) () : unit =                          │

02:05:57 #557 [Debug] > │     System.Console.ForegroundColor <- v0                                     │

02:05:57 #558 [Debug] > │     ()                                                                       │

02:05:57 #559 [Debug] > │ and method18 (v0 : UH4, v1 : int32) : int32 =                                │

02:05:57 #560 [Debug] > │     match v0 with                                                            │

02:05:57 #561 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:05:57 #562 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:57 #563 [Debug] > │         method18(v3, v4)                                                     │

02:05:57 #564 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:05:57 #565 [Debug] > │         v1                                                                   │

02:05:57 #566 [Debug] > │ and method19 (v0 : (float []), v1 : UH4, v2 : int32) : int32 =               │

02:05:57 #567 [Debug] > │     match v1 with                                                            │

02:05:57 #568 [Debug] > │     | UH4_0(v3, v4) -> (* Cons *)                                            │

02:05:57 #569 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:57 #570 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:57 #571 [Debug] > │         method19(v0, v4, v5)                                                 │

02:05:57 #572 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:05:57 #573 [Debug] > │         v2                                                                   │

02:05:57 #574 [Debug] > │ and method17 (v0 : UH4) : (float []) =                                       │

02:05:57 #575 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:57 #576 [Debug] > │     let v2 : int32 = method18(v0, v1)                                        │

02:05:57 #577 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:05:57 #578 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:57 #579 [Debug] > │     let v5 : int32 = method19(v3, v0, v4)                                    │

02:05:57 #580 [Debug] > │     v3                                                                       │

02:05:57 #581 [Debug] > │ and method21 (v0 : UH5, v1 : int32) : int32 =                                │

02:05:57 #582 [Debug] > │     match v0 with                                                            │

02:05:57 #583 [Debug] > │     | UH5_0(v2, v3) -> (* Cons *)                                            │

02:05:57 #584 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:57 #585 [Debug] > │         method21(v3, v4)                                                     │

02:05:57 #586 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:05:57 #587 [Debug] > │         v1                                                                   │

02:05:57 #588 [Debug] > │ and method22 (v0 : ((float []) []), v1 : UH5, v2 : int32) : int32 =          │

02:05:57 #589 [Debug] > │     match v1 with                                                            │

02:05:57 #590 [Debug] > │     | UH5_0(v3, v4) -> (* Cons *)                                            │

02:05:57 #591 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:57 #592 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:57 #593 [Debug] > │         method22(v0, v4, v5)                                                 │

02:05:57 #594 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:05:57 #595 [Debug] > │         v2                                                                   │

02:05:57 #596 [Debug] > │ and method20 (v0 : UH5) : ((float []) []) =                                  │

02:05:57 #597 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:57 #598 [Debug] > │     let v2 : int32 = method21(v0, v1)                                        │

02:05:57 #599 [Debug] > │     let v3 : ((float []) []) = Array.zeroCreate<(float [])> (v2)             │

02:05:57 #600 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:57 #601 [Debug] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

02:05:57 #602 [Debug] > │     v3                                                                       │

02:05:57 #603 [Debug] > │ and closure10 () struct (v0 : int32, v1 : int64) : int64 =                   │

02:05:57 #604 [Debug] > │     v1                                                                       │

02:05:57 #605 [Debug] > │ and closure0 () () : unit =                                                  │

02:05:57 #606 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:05:57 #607 [Debug] > │     let v1 : string = nameof v0                                              │

02:05:57 #608 [Debug] > │     let v2 : string = ""                                                     │

02:05:57 #609 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #610 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #611 [Debug] > │     let v3 : string = $"Test: {v1}"                                          │

02:05:57 #612 [Debug] > │     System.Console.WriteLine v3                                              │

02:05:57 #613 [Debug] > │     let v4 : string = "a"                                                    │

02:05:57 #614 [Debug] > │     let v5 : string = struct (v4, v4).ToString ()                            │

02:05:57 #615 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #616 [Debug] > │     let v6 : string = $"Solution: {v5}  "                                    │

02:05:57 #617 [Debug] > │     System.Console.WriteLine v6                                              │

02:05:57 #618 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #619 [Debug] > │     let v7 : (unit -> unit) = closure1()                                     │

02:05:57 #620 [Debug] > │     v7 ()                                                                    │

02:05:57 #621 [Debug] > │     #else                                                                    │

02:05:57 #622 [Debug] > │     let v8 : (unit -> unit) = closure2()                                     │

02:05:57 #623 [Debug] > │     v8 ()                                                                    │

02:05:57 #624 [Debug] > │     #endif                                                                   │

02:05:57 #625 [Debug] > │     let v9 : (unit -> System.Diagnostics.Stopwatch) =                        │

02:05:57 #626 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:57 #627 [Debug] > │     let v10 : System.Diagnostics.Stopwatch = v9 ()                           │

02:05:57 #628 [Debug] > │     v10.Start ()                                                             │

02:05:57 #629 [Debug] > │     let v11 : int64 = v10.ElapsedMilliseconds                                │

02:05:57 #630 [Debug] > │     let v12 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:57 #631 [Debug] > │     let v13 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:57 #632 [Debug] > │     while method1(v13) do                                                    │

02:05:57 #633 [Debug] > │         let v15 : int32 = v13.l0                                             │

02:05:57 #634 [Debug] > │         v12.[int v15] <- v15                                                 │

02:05:57 #635 [Debug] > │         let v16 : int32 = v15 + 1                                            │

02:05:57 #636 [Debug] > │         v13.l0 <- v16                                                        │

02:05:57 #637 [Debug] > │         ()                                                                   │

02:05:57 #638 [Debug] > │     let v17 : (int32 -> string) = closure3()                                 │

02:05:57 #639 [Debug] > │     let v18 : (string []) = v12 |> Array.Parallel.map v17                    │

02:05:57 #640 [Debug] > │     let v19 : int32 = v18.Length                                             │

02:05:57 #641 [Debug] > │     let v20 : int32 = v19 - 1                                                │

02:05:57 #642 [Debug] > │     let v21 : string = v18.[int v20]                                         │

02:05:57 #643 [Debug] > │     let v22 : int64 = v10.ElapsedMilliseconds                                │

02:05:57 #644 [Debug] > │     let v23 : int64 = v22 - v11                                              │

02:05:57 #645 [Debug] > │     let v24 : string = "A"                                                   │

02:05:57 #646 [Debug] > │     let v25 : string = $"Test case {0 + 1}. {v24}. Time: {v23}  "            │

02:05:57 #647 [Debug] > │     System.Console.WriteLine v25                                             │

02:05:57 #648 [Debug] > │     let v26 : string = v4.ToString ()                                        │

02:05:57 #649 [Debug] > │     let v27 : string = v21.ToString ()                                       │

02:05:57 #650 [Debug] > │     let v28 : string = struct (v4, v4).ToString ()                           │

02:05:57 #651 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #652 [Debug] > │     let v29 : string = $"Solution: {v28}  "                                  │

02:05:57 #653 [Debug] > │     System.Console.WriteLine v29                                             │

02:05:57 #654 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #655 [Debug] > │     v7 ()                                                                    │

02:05:57 #656 [Debug] > │     #else                                                                    │

02:05:57 #657 [Debug] > │     v8 ()                                                                    │

02:05:57 #658 [Debug] > │     #endif                                                                   │

02:05:57 #659 [Debug] > │     let v30 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:05:57 #660 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:57 #661 [Debug] > │     let v31 : System.Diagnostics.Stopwatch = v30 ()                          │

02:05:57 #662 [Debug] > │     v31.Start ()                                                             │

02:05:57 #663 [Debug] > │     let v32 : int64 = v31.ElapsedMilliseconds                                │

02:05:57 #664 [Debug] > │     let v33 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:57 #665 [Debug] > │     let v34 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:57 #666 [Debug] > │     while method1(v34) do                                                    │

02:05:57 #667 [Debug] > │         let v36 : int32 = v34.l0                                             │

02:05:57 #668 [Debug] > │         v33.[int v36] <- v36                                                 │

02:05:57 #669 [Debug] > │         let v37 : int32 = v36 + 1                                            │

02:05:57 #670 [Debug] > │         v34.l0 <- v37                                                        │

02:05:57 #671 [Debug] > │         ()                                                                   │

02:05:57 #672 [Debug] > │     let v38 : (string []) = v33 |> Array.Parallel.map v17                    │

02:05:57 #673 [Debug] > │     let v39 : int32 = v38.Length                                             │

02:05:57 #674 [Debug] > │     let v40 : int32 = v39 - 1                                                │

02:05:57 #675 [Debug] > │     let v41 : string = v38.[int v40]                                         │

02:05:57 #676 [Debug] > │     let v42 : int64 = v31.ElapsedMilliseconds                                │

02:05:57 #677 [Debug] > │     let v43 : int64 = v42 - v32                                              │

02:05:57 #678 [Debug] > │     let v44 : string = $"Test case {0 + 1}. {v24}. Time: {v43}  "            │

02:05:57 #679 [Debug] > │     System.Console.WriteLine v44                                             │

02:05:57 #680 [Debug] > │     let v45 : string = v4.ToString ()                                        │

02:05:57 #681 [Debug] > │     let v46 : string = v41.ToString ()                                       │

02:05:57 #682 [Debug] > │     let v47 : int64 = 1L                                                     │

02:05:57 #683 [Debug] > │     let v48 : UH0 = UH0_1                                                    │

02:05:57 #684 [Debug] > │     let v49 : UH0 = UH0_0(v47, v23, v48)                                     │

02:05:57 #685 [Debug] > │     let v50 : (struct (int64 * int64) []) = method2(v49)                     │

02:05:57 #686 [Debug] > │     let v51 : (struct (int64 * int64) -> int64) = closure4()                 │

02:05:57 #687 [Debug] > │     let v52 : (struct (int64 * int64) []) = v50 |> Array.sortBy v51          │

02:05:57 #688 [Debug] > │     let struct (v53 : int64, v54 : int64) = v52.[int 0]                      │

02:05:57 #689 [Debug] > │     let v55 : string = $"%A{struct (v53, v54)}"                              │

02:05:57 #690 [Debug] > │     let v56 : bool = v26 = v27                                               │

02:05:57 #691 [Debug] > │     let v61 : US0 =                                                          │

02:05:57 #692 [Debug] > │         if v56 then                                                          │

02:05:57 #693 [Debug] > │             let v57 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:05:57 #694 [Debug] > │             US0_1(v57)                                                       │

02:05:57 #695 [Debug] > │         else                                                                 │

02:05:57 #696 [Debug] > │             let v59 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:05:57 #697 [Debug] > │             US0_1(v59)                                                       │

02:05:57 #698 [Debug] > │     let v62 : int64 = 1L                                                     │

02:05:57 #699 [Debug] > │     let v63 : UH0 = UH0_1                                                    │

02:05:57 #700 [Debug] > │     let v64 : UH0 = UH0_0(v62, v43, v63)                                     │

02:05:57 #701 [Debug] > │     let v65 : (struct (int64 * int64) []) = method2(v64)                     │

02:05:57 #702 [Debug] > │     let v66 : (struct (int64 * int64) []) = v65 |> Array.sortBy v51          │

02:05:57 #703 [Debug] > │     let struct (v67 : int64, v68 : int64) = v66.[int 0]                      │

02:05:57 #704 [Debug] > │     let v69 : string = $"%A{struct (v67, v68)}"                              │

02:05:57 #705 [Debug] > │     let v70 : bool = v45 = v46                                               │

02:05:57 #706 [Debug] > │     let v75 : US0 =                                                          │

02:05:57 #707 [Debug] > │         if v70 then                                                          │

02:05:57 #708 [Debug] > │             let v71 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:05:57 #709 [Debug] > │             US0_1(v71)                                                       │

02:05:57 #710 [Debug] > │         else                                                                 │

02:05:57 #711 [Debug] > │             let v73 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:05:57 #712 [Debug] > │             US0_1(v73)                                                       │

02:05:57 #713 [Debug] > │     let v76 : UH1 = UH1_1                                                    │

02:05:57 #714 [Debug] > │     let v77 : UH1 = UH1_0(v55, v76)                                          │

02:05:57 #715 [Debug] > │     let v78 : UH1 = UH1_0(v27, v77)                                          │

02:05:57 #716 [Debug] > │     let v79 : UH1 = UH1_0(v26, v78)                                          │

02:05:57 #717 [Debug] > │     let v80 : UH1 = UH1_0(v5, v79)                                           │

02:05:57 #718 [Debug] > │     let v81 : (string []) = method5(v80)                                     │

02:05:57 #719 [Debug] > │     let v82 : UH1 = UH1_1                                                    │

02:05:57 #720 [Debug] > │     let v83 : UH1 = UH1_0(v69, v82)                                          │

02:05:57 #721 [Debug] > │     let v84 : UH1 = UH1_0(v46, v83)                                          │

02:05:57 #722 [Debug] > │     let v85 : UH1 = UH1_0(v45, v84)                                          │

02:05:57 #723 [Debug] > │     let v86 : UH1 = UH1_0(v28, v85)                                          │

02:05:57 #724 [Debug] > │     let v87 : (string []) = method5(v86)                                     │

02:05:57 #725 [Debug] > │     let v88 : string = "---"                                                 │

02:05:57 #726 [Debug] > │     let v89 : UH1 = UH1_1                                                    │

02:05:57 #727 [Debug] > │     let v90 : UH1 = UH1_0(v88, v89)                                          │

02:05:57 #728 [Debug] > │     let v91 : UH1 = UH1_0(v88, v90)                                          │

02:05:57 #729 [Debug] > │     let v92 : UH1 = UH1_0(v88, v91)                                          │

02:05:57 #730 [Debug] > │     let v93 : UH1 = UH1_0(v88, v92)                                          │

02:05:57 #731 [Debug] > │     let v94 : (string []) = method5(v93)                                     │

02:05:57 #732 [Debug] > │     let v95 : string = "Input"                                               │

02:05:57 #733 [Debug] > │     let v96 : string = "Expected"                                            │

02:05:57 #734 [Debug] > │     let v97 : string = "Result"                                              │

02:05:57 #735 [Debug] > │     let v98 : string = "Best"                                                │

02:05:57 #736 [Debug] > │     let v99 : UH1 = UH1_1                                                    │

02:05:57 #737 [Debug] > │     let v100 : UH1 = UH1_0(v98, v99)                                         │

02:05:57 #738 [Debug] > │     let v101 : UH1 = UH1_0(v97, v100)                                        │

02:05:57 #739 [Debug] > │     let v102 : UH1 = UH1_0(v96, v101)                                        │

02:05:57 #740 [Debug] > │     let v103 : UH1 = UH1_0(v95, v102)                                        │

02:05:57 #741 [Debug] > │     let v104 : (string []) = method5(v103)                                   │

02:05:57 #742 [Debug] > │     let v105 : UH2 = UH2_1                                                   │

02:05:57 #743 [Debug] > │     let v106 : UH2 = UH2_0(v81, v105)                                        │

02:05:57 #744 [Debug] > │     let v107 : UH2 = UH2_0(v87, v106)                                        │

02:05:57 #745 [Debug] > │     let v108 : UH2 = UH2_0(v94, v107)                                        │

02:05:57 #746 [Debug] > │     let v109 : UH2 = UH2_0(v104, v108)                                       │

02:05:57 #747 [Debug] > │     let v110 : ((string []) []) = method8(v109)                              │

02:05:57 #748 [Debug] > │     let v111 : ((string []) []) = v110 |> Array.transpose                    │

02:05:57 #749 [Debug] > │     let v112 : int32 = v111.Length                                           │

02:05:57 #750 [Debug] > │     let v113 : (int64 []) = Array.zeroCreate<int64> (v112)                   │

02:05:57 #751 [Debug] > │     let v114 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #752 [Debug] > │     while method11(v112, v114) do                                            │

02:05:57 #753 [Debug] > │         let v116 : int32 = v114.l0                                           │

02:05:57 #754 [Debug] > │         let v117 : (string []) = v111.[int v116]                             │

02:05:57 #755 [Debug] > │         let v118 : int32 = v117.Length                                       │

02:05:57 #756 [Debug] > │         let v119 : (int64 []) = Array.zeroCreate<int64> (v118)               │

02:05:57 #757 [Debug] > │         let v120 : Mut0 = {l0 = 0} : Mut0                                    │

02:05:57 #758 [Debug] > │         while method11(v118, v120) do                                        │

02:05:57 #759 [Debug] > │             let v122 : int32 = v120.l0                                       │

02:05:57 #760 [Debug] > │             let v123 : string = v117.[int v122]                              │

02:05:57 #761 [Debug] > │             let v124 : int64 = System.Convert.ToInt64 v123.Length            │

02:05:57 #762 [Debug] > │             v119.[int v122] <- v124                                          │

02:05:57 #763 [Debug] > │             let v125 : int32 = v122 + 1                                      │

02:05:57 #764 [Debug] > │             v120.l0 <- v125                                                  │

02:05:57 #765 [Debug] > │             ()                                                               │

02:05:57 #766 [Debug] > │         let v126 : (int64 []) = v119 |> Array.sortDescending                 │

02:05:57 #767 [Debug] > │         let v127 : int64 option = v126 |> Array.tryItem 0                    │

02:05:57 #768 [Debug] > │         let v128 : (int64 -> US1) = closure5()                               │

02:05:57 #769 [Debug] > │         let v129 : US1 = US1_0                                               │

02:05:57 #770 [Debug] > │         let v130 : US1 = v127 |> Option.map v128 |> Option.defaultValue v129 │

02:05:57 #771 [Debug] > │         let v133 : int64 =                                                   │

02:05:57 #772 [Debug] > │             match v130 with                                                  │

02:05:57 #773 [Debug] > │             | US1_0 -> (* None *)                                            │

02:05:57 #774 [Debug] > │                 0L                                                           │

02:05:57 #775 [Debug] > │             | US1_1(v131) -> (* Some *)                                      │

02:05:57 #776 [Debug] > │                 v131                                                         │

02:05:57 #777 [Debug] > │         v113.[int v116] <- v133                                              │

02:05:57 #778 [Debug] > │         let v134 : int32 = v116 + 1                                          │

02:05:57 #779 [Debug] > │         v114.l0 <- v134                                                      │

02:05:57 #780 [Debug] > │         ()                                                                   │

02:05:57 #781 [Debug] > │     let v135 : int32 = v113.Length                                           │

02:05:57 #782 [Debug] > │     let v136 : UH3 = UH3_1                                                   │

02:05:57 #783 [Debug] > │     let v137 : Mut1 = {l0 = 0; l1 = v136; l2 = 0} : Mut1                     │

02:05:57 #784 [Debug] > │     while method12(v135, v137) do                                            │

02:05:57 #785 [Debug] > │         let v139 : int32 = v137.l0                                           │

02:05:57 #786 [Debug] > │         let struct (v140 : UH3, v141 : int32) = v137.l1, v137.l2             │

02:05:57 #787 [Debug] > │         let v142 : int64 = v113.[int v139]                                   │

02:05:57 #788 [Debug] > │         let v143 : int32 = v141 + 1                                          │

02:05:57 #789 [Debug] > │         let v144 : int32 = v139 + 1                                          │

02:05:57 #790 [Debug] > │         let v145 : UH3 = UH3_0(v141, v142, v140)                             │

02:05:57 #791 [Debug] > │         v137.l0 <- v144                                                      │

02:05:57 #792 [Debug] > │         v137.l1 <- v145                                                      │

02:05:57 #793 [Debug] > │         v137.l2 <- v143                                                      │

02:05:57 #794 [Debug] > │         ()                                                                   │

02:05:57 #795 [Debug] > │     let struct (v146 : UH3, v147 : int32) = v137.l1, v137.l2                 │

02:05:57 #796 [Debug] > │     let v148 : UH3 = UH3_1                                                   │

02:05:57 #797 [Debug] > │     let v149 : UH3 = method13(v146, v148)                                    │

02:05:57 #798 [Debug] > │     let v150 : (struct (int32 * int64) []) = method14(v149)                  │

02:05:57 #799 [Debug] > │     let v151 : Map<int32, int64> = v150 |> Array.map (fun (struct (a, b)) -> │

02:05:57 #800 [Debug] > │ a, b) |> Map.ofArray                                                         │

02:05:57 #801 [Debug] > │     let v152 : int64 = v151.[3]                                              │

02:05:57 #802 [Debug] > │     let v153 : int32 = int32 v152                                            │

02:05:57 #803 [Debug] > │     let v154 : string = v55.PadRight v153                                    │

02:05:57 #804 [Debug] > │     let v155 : int64 = v151.[2]                                              │

02:05:57 #805 [Debug] > │     let v156 : int32 = int32 v155                                            │

02:05:57 #806 [Debug] > │     let v157 : string = v27.PadRight v156                                    │

02:05:57 #807 [Debug] > │     let v158 : int64 = v151.[1]                                              │

02:05:57 #808 [Debug] > │     let v159 : int32 = int32 v158                                            │

02:05:57 #809 [Debug] > │     let v160 : string = v26.PadRight v159                                    │

02:05:57 #810 [Debug] > │     let v161 : int64 = v151.[0]                                              │

02:05:57 #811 [Debug] > │     let v162 : int32 = int32 v161                                            │

02:05:57 #812 [Debug] > │     let v163 : string = v5.PadRight v162                                     │

02:05:57 #813 [Debug] > │     let v164 : UH1 = UH1_1                                                   │

02:05:57 #814 [Debug] > │     let v165 : UH1 = UH1_0(v154, v164)                                       │

02:05:57 #815 [Debug] > │     let v166 : UH1 = UH1_0(v157, v165)                                       │

02:05:57 #816 [Debug] > │     let v167 : UH1 = UH1_0(v160, v166)                                       │

02:05:57 #817 [Debug] > │     let v168 : UH1 = UH1_0(v163, v167)                                       │

02:05:57 #818 [Debug] > │     let v169 : (string []) = method5(v168)                                   │

02:05:57 #819 [Debug] > │     let v170 : int64 = v151.[3]                                              │

02:05:57 #820 [Debug] > │     let v171 : int32 = int32 v170                                            │

02:05:57 #821 [Debug] > │     let v172 : string = v69.PadRight v171                                    │

02:05:57 #822 [Debug] > │     let v173 : int64 = v151.[2]                                              │

02:05:57 #823 [Debug] > │     let v174 : int32 = int32 v173                                            │

02:05:57 #824 [Debug] > │     let v175 : string = v46.PadRight v174                                    │

02:05:57 #825 [Debug] > │     let v176 : int64 = v151.[1]                                              │

02:05:57 #826 [Debug] > │     let v177 : int32 = int32 v176                                            │

02:05:57 #827 [Debug] > │     let v178 : string = v45.PadRight v177                                    │

02:05:57 #828 [Debug] > │     let v179 : int64 = v151.[0]                                              │

02:05:57 #829 [Debug] > │     let v180 : int32 = int32 v179                                            │

02:05:57 #830 [Debug] > │     let v181 : string = v28.PadRight v180                                    │

02:05:57 #831 [Debug] > │     let v182 : UH1 = UH1_1                                                   │

02:05:57 #832 [Debug] > │     let v183 : UH1 = UH1_0(v172, v182)                                       │

02:05:57 #833 [Debug] > │     let v184 : UH1 = UH1_0(v175, v183)                                       │

02:05:57 #834 [Debug] > │     let v185 : UH1 = UH1_0(v178, v184)                                       │

02:05:57 #835 [Debug] > │     let v186 : UH1 = UH1_0(v181, v185)                                       │

02:05:57 #836 [Debug] > │     let v187 : (string []) = method5(v186)                                   │

02:05:57 #837 [Debug] > │     let v188 : int64 = v151.[3]                                              │

02:05:57 #838 [Debug] > │     let v189 : int32 = int32 v188                                            │

02:05:57 #839 [Debug] > │     let v190 : string = v88.PadRight v189                                    │

02:05:57 #840 [Debug] > │     let v191 : int64 = v151.[2]                                              │

02:05:57 #841 [Debug] > │     let v192 : int32 = int32 v191                                            │

02:05:57 #842 [Debug] > │     let v193 : string = v88.PadRight v192                                    │

02:05:57 #843 [Debug] > │     let v194 : int64 = v151.[1]                                              │

02:05:57 #844 [Debug] > │     let v195 : int32 = int32 v194                                            │

02:05:57 #845 [Debug] > │     let v196 : string = v88.PadRight v195                                    │

02:05:57 #846 [Debug] > │     let v197 : int64 = v151.[0]                                              │

02:05:57 #847 [Debug] > │     let v198 : int32 = int32 v197                                            │

02:05:57 #848 [Debug] > │     let v199 : string = v88.PadRight v198                                    │

02:05:57 #849 [Debug] > │     let v200 : UH1 = UH1_1                                                   │

02:05:57 #850 [Debug] > │     let v201 : UH1 = UH1_0(v190, v200)                                       │

02:05:57 #851 [Debug] > │     let v202 : UH1 = UH1_0(v193, v201)                                       │

02:05:57 #852 [Debug] > │     let v203 : UH1 = UH1_0(v196, v202)                                       │

02:05:57 #853 [Debug] > │     let v204 : UH1 = UH1_0(v199, v203)                                       │

02:05:57 #854 [Debug] > │     let v205 : (string []) = method5(v204)                                   │

02:05:57 #855 [Debug] > │     let v206 : int64 = v151.[3]                                              │

02:05:57 #856 [Debug] > │     let v207 : int32 = int32 v206                                            │

02:05:57 #857 [Debug] > │     let v208 : string = v98.PadRight v207                                    │

02:05:57 #858 [Debug] > │     let v209 : int64 = v151.[2]                                              │

02:05:57 #859 [Debug] > │     let v210 : int32 = int32 v209                                            │

02:05:57 #860 [Debug] > │     let v211 : string = v97.PadRight v210                                    │

02:05:57 #861 [Debug] > │     let v212 : int64 = v151.[1]                                              │

02:05:57 #862 [Debug] > │     let v213 : int32 = int32 v212                                            │

02:05:57 #863 [Debug] > │     let v214 : string = v96.PadRight v213                                    │

02:05:57 #864 [Debug] > │     let v215 : int64 = v151.[0]                                              │

02:05:57 #865 [Debug] > │     let v216 : int32 = int32 v215                                            │

02:05:57 #866 [Debug] > │     let v217 : string = v95.PadRight v216                                    │

02:05:57 #867 [Debug] > │     let v218 : UH1 = UH1_1                                                   │

02:05:57 #868 [Debug] > │     let v219 : UH1 = UH1_0(v208, v218)                                       │

02:05:57 #869 [Debug] > │     let v220 : UH1 = UH1_0(v211, v219)                                       │

02:05:57 #870 [Debug] > │     let v221 : UH1 = UH1_0(v214, v220)                                       │

02:05:57 #871 [Debug] > │     let v222 : UH1 = UH1_0(v217, v221)                                       │

02:05:57 #872 [Debug] > │     let v223 : (string []) = method5(v222)                                   │

02:05:57 #873 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #874 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #875 [Debug] > │     let v224 : (unit -> unit) = closure6()                                   │

02:05:57 #876 [Debug] > │     v224 ()                                                                  │

02:05:57 #877 [Debug] > │     #else                                                                    │

02:05:57 #878 [Debug] > │     let v225 : (unit -> unit) = closure7()                                   │

02:05:57 #879 [Debug] > │     v225 ()                                                                  │

02:05:57 #880 [Debug] > │     #endif                                                                   │

02:05:57 #881 [Debug] > │     let v226 : string = "\t| "                                               │

02:05:57 #882 [Debug] > │     let v227 : string = System.String.Join (v226, v223)                      │

02:05:57 #883 [Debug] > │     System.Console.WriteLine v227                                            │

02:05:57 #884 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #885 [Debug] > │     v224 ()                                                                  │

02:05:57 #886 [Debug] > │     #else                                                                    │

02:05:57 #887 [Debug] > │     v225 ()                                                                  │

02:05:57 #888 [Debug] > │     #endif                                                                   │

02:05:57 #889 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #890 [Debug] > │     v224 ()                                                                  │

02:05:57 #891 [Debug] > │     #else                                                                    │

02:05:57 #892 [Debug] > │     v225 ()                                                                  │

02:05:57 #893 [Debug] > │     #endif                                                                   │

02:05:57 #894 [Debug] > │     let v228 : string = System.String.Join (v226, v205)                      │

02:05:57 #895 [Debug] > │     System.Console.WriteLine v228                                            │

02:05:57 #896 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #897 [Debug] > │     v224 ()                                                                  │

02:05:57 #898 [Debug] > │     #else                                                                    │

02:05:57 #899 [Debug] > │     v225 ()                                                                  │

02:05:57 #900 [Debug] > │     #endif                                                                   │

02:05:57 #901 [Debug] > │     match v75 with                                                           │

02:05:57 #902 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:57 #903 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #904 [Debug] > │         v224 ()                                                              │

02:05:57 #905 [Debug] > │         #else                                                                │

02:05:57 #906 [Debug] > │         v225 ()                                                              │

02:05:57 #907 [Debug] > │         #endif                                                               │

02:05:57 #908 [Debug] > │         ()                                                                   │

02:05:57 #909 [Debug] > │     | US0_1(v229) -> (* Some *)                                              │

02:05:57 #910 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #911 [Debug] > │         let v230 : (unit -> unit) = closure8()                               │

02:05:57 #912 [Debug] > │         v230 ()                                                              │

02:05:57 #913 [Debug] > │         #else                                                                │

02:05:57 #914 [Debug] > │         let v231 : (unit -> unit) = closure9(v229)                           │

02:05:57 #915 [Debug] > │         v231 ()                                                              │

02:05:57 #916 [Debug] > │         #endif                                                               │

02:05:57 #917 [Debug] > │         ()                                                                   │

02:05:57 #918 [Debug] > │     let v232 : string = System.String.Join (v226, v187)                      │

02:05:57 #919 [Debug] > │     System.Console.WriteLine v232                                            │

02:05:57 #920 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #921 [Debug] > │     v224 ()                                                                  │

02:05:57 #922 [Debug] > │     #else                                                                    │

02:05:57 #923 [Debug] > │     v225 ()                                                                  │

02:05:57 #924 [Debug] > │     #endif                                                                   │

02:05:57 #925 [Debug] > │     match v61 with                                                           │

02:05:57 #926 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:57 #927 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #928 [Debug] > │         v224 ()                                                              │

02:05:57 #929 [Debug] > │         #else                                                                │

02:05:57 #930 [Debug] > │         v225 ()                                                              │

02:05:57 #931 [Debug] > │         #endif                                                               │

02:05:57 #932 [Debug] > │         ()                                                                   │

02:05:57 #933 [Debug] > │     | US0_1(v233) -> (* Some *)                                              │

02:05:57 #934 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #935 [Debug] > │         let v234 : (unit -> unit) = closure8()                               │

02:05:57 #936 [Debug] > │         v234 ()                                                              │

02:05:57 #937 [Debug] > │         #else                                                                │

02:05:57 #938 [Debug] > │         let v235 : (unit -> unit) = closure9(v233)                           │

02:05:57 #939 [Debug] > │         v235 ()                                                              │

02:05:57 #940 [Debug] > │         #endif                                                               │

02:05:57 #941 [Debug] > │         ()                                                                   │

02:05:57 #942 [Debug] > │     let v236 : string = System.String.Join (v226, v169)                      │

02:05:57 #943 [Debug] > │     System.Console.WriteLine v236                                            │

02:05:57 #944 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #945 [Debug] > │     v224 ()                                                                  │

02:05:57 #946 [Debug] > │     #else                                                                    │

02:05:57 #947 [Debug] > │     v225 ()                                                                  │

02:05:57 #948 [Debug] > │     #endif                                                                   │

02:05:57 #949 [Debug] > │     let v237 : (int64 -> float) = float                                      │

02:05:57 #950 [Debug] > │     let v238 : float = v237 v23                                              │

02:05:57 #951 [Debug] > │     let v239 : UH4 = UH4_1                                                   │

02:05:57 #952 [Debug] > │     let v240 : UH4 = UH4_0(v238, v239)                                       │

02:05:57 #953 [Debug] > │     let v241 : (float []) = method17(v240)                                   │

02:05:57 #954 [Debug] > │     let v242 : (int64 -> float) = float                                      │

02:05:57 #955 [Debug] > │     let v243 : float = v242 v43                                              │

02:05:57 #956 [Debug] > │     let v244 : UH4 = UH4_1                                                   │

02:05:57 #957 [Debug] > │     let v245 : UH4 = UH4_0(v243, v244)                                       │

02:05:57 #958 [Debug] > │     let v246 : (float []) = method17(v245)                                   │

02:05:57 #959 [Debug] > │     let v247 : UH5 = UH5_1                                                   │

02:05:57 #960 [Debug] > │     let v248 : UH5 = UH5_0(v241, v247)                                       │

02:05:57 #961 [Debug] > │     let v249 : UH5 = UH5_0(v246, v248)                                       │

02:05:57 #962 [Debug] > │     let v250 : ((float []) []) = method20(v249)                              │

02:05:57 #963 [Debug] > │     let v251 : ((float []) []) = v250 |> Array.transpose                     │

02:05:57 #964 [Debug] > │     let v252 : int32 = v251.Length                                           │

02:05:57 #965 [Debug] > │     let v253 : (float []) = Array.zeroCreate<float> (v252)                   │

02:05:57 #966 [Debug] > │     let v254 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #967 [Debug] > │     while method11(v252, v254) do                                            │

02:05:57 #968 [Debug] > │         let v256 : int32 = v254.l0                                           │

02:05:57 #969 [Debug] > │         let v257 : (float []) = v251.[int v256]                              │

02:05:57 #970 [Debug] > │         let v258 : float = v257 |> Array.average                             │

02:05:57 #971 [Debug] > │         v253.[int v256] <- v258                                              │

02:05:57 #972 [Debug] > │         let v259 : int32 = v256 + 1                                          │

02:05:57 #973 [Debug] > │         v254.l0 <- v259                                                      │

02:05:57 #974 [Debug] > │         ()                                                                   │

02:05:57 #975 [Debug] > │     let v260 : (float -> int64) = int64                                      │

02:05:57 #976 [Debug] > │     let v261 : int32 = v253.Length                                           │

02:05:57 #977 [Debug] > │     let v262 : (int64 []) = Array.zeroCreate<int64> (v261)                   │

02:05:57 #978 [Debug] > │     let v263 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #979 [Debug] > │     while method11(v261, v263) do                                            │

02:05:57 #980 [Debug] > │         let v265 : int32 = v263.l0                                           │

02:05:57 #981 [Debug] > │         let v266 : float = v253.[int v265]                                   │

02:05:57 #982 [Debug] > │         let v267 : int64 = v260 v266                                         │

02:05:57 #983 [Debug] > │         v262.[int v265] <- v267                                              │

02:05:57 #984 [Debug] > │         let v268 : int32 = v265 + 1                                          │

02:05:57 #985 [Debug] > │         v263.l0 <- v268                                                      │

02:05:57 #986 [Debug] > │         ()                                                                   │

02:05:57 #987 [Debug] > │     let v269 : int32 = v262.Length                                           │

02:05:57 #988 [Debug] > │     let v270 : UH3 = UH3_1                                                   │

02:05:57 #989 [Debug] > │     let v271 : Mut1 = {l0 = 0; l1 = v270; l2 = 0} : Mut1                     │

02:05:57 #990 [Debug] > │     while method12(v269, v271) do                                            │

02:05:57 #991 [Debug] > │         let v273 : int32 = v271.l0                                           │

02:05:57 #992 [Debug] > │         let struct (v274 : UH3, v275 : int32) = v271.l1, v271.l2             │

02:05:57 #993 [Debug] > │         let v276 : int64 = v262.[int v273]                                   │

02:05:57 #994 [Debug] > │         let v277 : int32 = v275 + 1                                          │

02:05:57 #995 [Debug] > │         let v278 : int32 = v273 + 1                                          │

02:05:57 #996 [Debug] > │         let v279 : UH3 = UH3_0(v275, v276, v274)                             │

02:05:57 #997 [Debug] > │         v271.l0 <- v278                                                      │

02:05:57 #998 [Debug] > │         v271.l1 <- v279                                                      │

02:05:57 #999 [Debug] > │         v271.l2 <- v277                                                      │

02:05:57 #1000 [Debug] > │         ()                                                                   │

02:05:57 #1001 [Debug] > │     let struct (v280 : UH3, v281 : int32) = v271.l1, v271.l2                 │

02:05:57 #1002 [Debug] > │     let v282 : UH3 = UH3_1                                                   │

02:05:57 #1003 [Debug] > │     let v283 : UH3 = method13(v280, v282)                                    │

02:05:57 #1004 [Debug] > │     let v284 : (struct (int32 * int64) []) = method14(v283)                  │

02:05:57 #1005 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1006 [Debug] > │     let v285 : string = "Average Ranking  "                                  │

02:05:57 #1007 [Debug] > │     System.Console.WriteLine v285                                            │

02:05:57 #1008 [Debug] > │     let v286 : (struct (int32 * int64) -> int64) = closure10()               │

02:05:57 #1009 [Debug] > │     let v287 : (struct (int32 * int64) []) = v284 |> Array.sortBy v286       │

02:05:57 #1010 [Debug] > │     let v288 : int32 = v287.Length                                           │

02:05:57 #1011 [Debug] > │     let v289 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #1012 [Debug] > │     while method11(v288, v289) do                                            │

02:05:57 #1013 [Debug] > │         let v291 : int32 = v289.l0                                           │

02:05:57 #1014 [Debug] > │         let struct (v292 : int32, v293 : int64) = v287.[int v291]            │

02:05:57 #1015 [Debug] > │         let v294 : string = $"Test case %d{v292 + 1}. Average Time: %A{v293} │

02:05:57 #1016 [Debug] > │ "                                                                            │

02:05:57 #1017 [Debug] > │         System.Console.WriteLine v294                                        │

02:05:57 #1018 [Debug] > │         let v295 : int32 = v291 + 1                                          │

02:05:57 #1019 [Debug] > │         v289.l0 <- v295                                                      │

02:05:57 #1020 [Debug] > │         ()                                                                   │

02:05:57 #1021 [Debug] > │     ()                                                                       │

02:05:57 #1022 [Debug] > │ and method0 () : unit =                                                      │

02:05:57 #1023 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:05:57 #1024 [Debug] > │     let v1 : string = nameof v0                                              │

02:05:57 #1025 [Debug] > │     let v2 : string = ""                                                     │

02:05:57 #1026 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1027 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1028 [Debug] > │     let v3 : string = $"Test: {v1}"                                          │

02:05:57 #1029 [Debug] > │     System.Console.WriteLine v3                                              │

02:05:57 #1030 [Debug] > │     let v4 : string = "a"                                                    │

02:05:57 #1031 [Debug] > │     let v5 : string = struct (v4, v4).ToString ()                            │

02:05:57 #1032 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1033 [Debug] > │     let v6 : string = $"Solution: {v5}  "                                    │

02:05:57 #1034 [Debug] > │     System.Console.WriteLine v6                                              │

02:05:57 #1035 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1036 [Debug] > │     let v7 : (unit -> unit) = closure1()                                     │

02:05:57 #1037 [Debug] > │     v7 ()                                                                    │

02:05:57 #1038 [Debug] > │     #else                                                                    │

02:05:57 #1039 [Debug] > │     let v8 : (unit -> unit) = closure2()                                     │

02:05:57 #1040 [Debug] > │     v8 ()                                                                    │

02:05:57 #1041 [Debug] > │     #endif                                                                   │

02:05:57 #1042 [Debug] > │     let v9 : (unit -> System.Diagnostics.Stopwatch) =                        │

02:05:57 #1043 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:57 #1044 [Debug] > │     let v10 : System.Diagnostics.Stopwatch = v9 ()                           │

02:05:57 #1045 [Debug] > │     v10.Start ()                                                             │

02:05:57 #1046 [Debug] > │     let v11 : int64 = v10.ElapsedMilliseconds                                │

02:05:57 #1047 [Debug] > │     let v12 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:57 #1048 [Debug] > │     let v13 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:57 #1049 [Debug] > │     while method1(v13) do                                                    │

02:05:57 #1050 [Debug] > │         let v15 : int32 = v13.l0                                             │

02:05:57 #1051 [Debug] > │         v12.[int v15] <- v15                                                 │

02:05:57 #1052 [Debug] > │         let v16 : int32 = v15 + 1                                            │

02:05:57 #1053 [Debug] > │         v13.l0 <- v16                                                        │

02:05:57 #1054 [Debug] > │         ()                                                                   │

02:05:57 #1055 [Debug] > │     let v17 : (int32 -> string) = closure3()                                 │

02:05:57 #1056 [Debug] > │     let v18 : (string []) = v12 |> Array.Parallel.map v17                    │

02:05:57 #1057 [Debug] > │     let v19 : int32 = v18.Length                                             │

02:05:57 #1058 [Debug] > │     let v20 : int32 = v19 - 1                                                │

02:05:57 #1059 [Debug] > │     let v21 : string = v18.[int v20]                                         │

02:05:57 #1060 [Debug] > │     let v22 : int64 = v10.ElapsedMilliseconds                                │

02:05:57 #1061 [Debug] > │     let v23 : int64 = v22 - v11                                              │

02:05:57 #1062 [Debug] > │     let v24 : string = "A"                                                   │

02:05:57 #1063 [Debug] > │     let v25 : string = $"Test case {0 + 1}. {v24}. Time: {v23}  "            │

02:05:57 #1064 [Debug] > │     System.Console.WriteLine v25                                             │

02:05:57 #1065 [Debug] > │     let v26 : string = v4.ToString ()                                        │

02:05:57 #1066 [Debug] > │     let v27 : string = v21.ToString ()                                       │

02:05:57 #1067 [Debug] > │     let v28 : string = struct (v4, v4).ToString ()                           │

02:05:57 #1068 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1069 [Debug] > │     let v29 : string = $"Solution: {v28}  "                                  │

02:05:57 #1070 [Debug] > │     System.Console.WriteLine v29                                             │

02:05:57 #1071 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1072 [Debug] > │     v7 ()                                                                    │

02:05:57 #1073 [Debug] > │     #else                                                                    │

02:05:57 #1074 [Debug] > │     v8 ()                                                                    │

02:05:57 #1075 [Debug] > │     #endif                                                                   │

02:05:57 #1076 [Debug] > │     let v30 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:05:57 #1077 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:57 #1078 [Debug] > │     let v31 : System.Diagnostics.Stopwatch = v30 ()                          │

02:05:57 #1079 [Debug] > │     v31.Start ()                                                             │

02:05:57 #1080 [Debug] > │     let v32 : int64 = v31.ElapsedMilliseconds                                │

02:05:57 #1081 [Debug] > │     let v33 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:57 #1082 [Debug] > │     let v34 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:57 #1083 [Debug] > │     while method1(v34) do                                                    │

02:05:57 #1084 [Debug] > │         let v36 : int32 = v34.l0                                             │

02:05:57 #1085 [Debug] > │         v33.[int v36] <- v36                                                 │

02:05:57 #1086 [Debug] > │         let v37 : int32 = v36 + 1                                            │

02:05:57 #1087 [Debug] > │         v34.l0 <- v37                                                        │

02:05:57 #1088 [Debug] > │         ()                                                                   │

02:05:57 #1089 [Debug] > │     let v38 : (string []) = v33 |> Array.Parallel.map v17                    │

02:05:57 #1090 [Debug] > │     let v39 : int32 = v38.Length                                             │

02:05:57 #1091 [Debug] > │     let v40 : int32 = v39 - 1                                                │

02:05:57 #1092 [Debug] > │     let v41 : string = v38.[int v40]                                         │

02:05:57 #1093 [Debug] > │     let v42 : int64 = v31.ElapsedMilliseconds                                │

02:05:57 #1094 [Debug] > │     let v43 : int64 = v42 - v32                                              │

02:05:57 #1095 [Debug] > │     let v44 : string = $"Test case {0 + 1}. {v24}. Time: {v43}  "            │

02:05:57 #1096 [Debug] > │     System.Console.WriteLine v44                                             │

02:05:57 #1097 [Debug] > │     let v45 : string = v4.ToString ()                                        │

02:05:57 #1098 [Debug] > │     let v46 : string = v41.ToString ()                                       │

02:05:57 #1099 [Debug] > │     let v47 : int64 = 1L                                                     │

02:05:57 #1100 [Debug] > │     let v48 : UH0 = UH0_1                                                    │

02:05:57 #1101 [Debug] > │     let v49 : UH0 = UH0_0(v47, v23, v48)                                     │

02:05:57 #1102 [Debug] > │     let v50 : (struct (int64 * int64) []) = method2(v49)                     │

02:05:57 #1103 [Debug] > │     let v51 : (struct (int64 * int64) -> int64) = closure4()                 │

02:05:57 #1104 [Debug] > │     let v52 : (struct (int64 * int64) []) = v50 |> Array.sortBy v51          │

02:05:57 #1105 [Debug] > │     let struct (v53 : int64, v54 : int64) = v52.[int 0]                      │

02:05:57 #1106 [Debug] > │     let v55 : string = $"%A{struct (v53, v54)}"                              │

02:05:57 #1107 [Debug] > │     let v56 : bool = v26 = v27                                               │

02:05:57 #1108 [Debug] > │     let v61 : US0 =                                                          │

02:05:57 #1109 [Debug] > │         if v56 then                                                          │

02:05:57 #1110 [Debug] > │             let v57 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:05:57 #1111 [Debug] > │             US0_1(v57)                                                       │

02:05:57 #1112 [Debug] > │         else                                                                 │

02:05:57 #1113 [Debug] > │             let v59 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:05:57 #1114 [Debug] > │             US0_1(v59)                                                       │

02:05:57 #1115 [Debug] > │     let v62 : int64 = 1L                                                     │

02:05:57 #1116 [Debug] > │     let v63 : UH0 = UH0_1                                                    │

02:05:57 #1117 [Debug] > │     let v64 : UH0 = UH0_0(v62, v43, v63)                                     │

02:05:57 #1118 [Debug] > │     let v65 : (struct (int64 * int64) []) = method2(v64)                     │

02:05:57 #1119 [Debug] > │     let v66 : (struct (int64 * int64) []) = v65 |> Array.sortBy v51          │

02:05:57 #1120 [Debug] > │     let struct (v67 : int64, v68 : int64) = v66.[int 0]                      │

02:05:57 #1121 [Debug] > │     let v69 : string = $"%A{struct (v67, v68)}"                              │

02:05:57 #1122 [Debug] > │     let v70 : bool = v45 = v46                                               │

02:05:57 #1123 [Debug] > │     let v75 : US0 =                                                          │

02:05:57 #1124 [Debug] > │         if v70 then                                                          │

02:05:57 #1125 [Debug] > │             let v71 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:05:57 #1126 [Debug] > │             US0_1(v71)                                                       │

02:05:57 #1127 [Debug] > │         else                                                                 │

02:05:57 #1128 [Debug] > │             let v73 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:05:57 #1129 [Debug] > │             US0_1(v73)                                                       │

02:05:57 #1130 [Debug] > │     let v76 : UH1 = UH1_1                                                    │

02:05:57 #1131 [Debug] > │     let v77 : UH1 = UH1_0(v55, v76)                                          │

02:05:57 #1132 [Debug] > │     let v78 : UH1 = UH1_0(v27, v77)                                          │

02:05:57 #1133 [Debug] > │     let v79 : UH1 = UH1_0(v26, v78)                                          │

02:05:57 #1134 [Debug] > │     let v80 : UH1 = UH1_0(v5, v79)                                           │

02:05:57 #1135 [Debug] > │     let v81 : (string []) = method5(v80)                                     │

02:05:57 #1136 [Debug] > │     let v82 : UH1 = UH1_1                                                    │

02:05:57 #1137 [Debug] > │     let v83 : UH1 = UH1_0(v69, v82)                                          │

02:05:57 #1138 [Debug] > │     let v84 : UH1 = UH1_0(v46, v83)                                          │

02:05:57 #1139 [Debug] > │     let v85 : UH1 = UH1_0(v45, v84)                                          │

02:05:57 #1140 [Debug] > │     let v86 : UH1 = UH1_0(v28, v85)                                          │

02:05:57 #1141 [Debug] > │     let v87 : (string []) = method5(v86)                                     │

02:05:57 #1142 [Debug] > │     let v88 : string = "---"                                                 │

02:05:57 #1143 [Debug] > │     let v89 : UH1 = UH1_1                                                    │

02:05:57 #1144 [Debug] > │     let v90 : UH1 = UH1_0(v88, v89)                                          │

02:05:57 #1145 [Debug] > │     let v91 : UH1 = UH1_0(v88, v90)                                          │

02:05:57 #1146 [Debug] > │     let v92 : UH1 = UH1_0(v88, v91)                                          │

02:05:57 #1147 [Debug] > │     let v93 : UH1 = UH1_0(v88, v92)                                          │

02:05:57 #1148 [Debug] > │     let v94 : (string []) = method5(v93)                                     │

02:05:57 #1149 [Debug] > │     let v95 : string = "Input"                                               │

02:05:57 #1150 [Debug] > │     let v96 : string = "Expected"                                            │

02:05:57 #1151 [Debug] > │     let v97 : string = "Result"                                              │

02:05:57 #1152 [Debug] > │     let v98 : string = "Best"                                                │

02:05:57 #1153 [Debug] > │     let v99 : UH1 = UH1_1                                                    │

02:05:57 #1154 [Debug] > │     let v100 : UH1 = UH1_0(v98, v99)                                         │

02:05:57 #1155 [Debug] > │     let v101 : UH1 = UH1_0(v97, v100)                                        │

02:05:57 #1156 [Debug] > │     let v102 : UH1 = UH1_0(v96, v101)                                        │

02:05:57 #1157 [Debug] > │     let v103 : UH1 = UH1_0(v95, v102)                                        │

02:05:57 #1158 [Debug] > │     let v104 : (string []) = method5(v103)                                   │

02:05:57 #1159 [Debug] > │     let v105 : UH2 = UH2_1                                                   │

02:05:57 #1160 [Debug] > │     let v106 : UH2 = UH2_0(v81, v105)                                        │

02:05:57 #1161 [Debug] > │     let v107 : UH2 = UH2_0(v87, v106)                                        │

02:05:57 #1162 [Debug] > │     let v108 : UH2 = UH2_0(v94, v107)                                        │

02:05:57 #1163 [Debug] > │     let v109 : UH2 = UH2_0(v104, v108)                                       │

02:05:57 #1164 [Debug] > │     let v110 : ((string []) []) = method8(v109)                              │

02:05:57 #1165 [Debug] > │     let v111 : ((string []) []) = v110 |> Array.transpose                    │

02:05:57 #1166 [Debug] > │     let v112 : int32 = v111.Length                                           │

02:05:57 #1167 [Debug] > │     let v113 : (int64 []) = Array.zeroCreate<int64> (v112)                   │

02:05:57 #1168 [Debug] > │     let v114 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #1169 [Debug] > │     while method11(v112, v114) do                                            │

02:05:57 #1170 [Debug] > │         let v116 : int32 = v114.l0                                           │

02:05:57 #1171 [Debug] > │         let v117 : (string []) = v111.[int v116]                             │

02:05:57 #1172 [Debug] > │         let v118 : int32 = v117.Length                                       │

02:05:57 #1173 [Debug] > │         let v119 : (int64 []) = Array.zeroCreate<int64> (v118)               │

02:05:57 #1174 [Debug] > │         let v120 : Mut0 = {l0 = 0} : Mut0                                    │

02:05:57 #1175 [Debug] > │         while method11(v118, v120) do                                        │

02:05:57 #1176 [Debug] > │             let v122 : int32 = v120.l0                                       │

02:05:57 #1177 [Debug] > │             let v123 : string = v117.[int v122]                              │

02:05:57 #1178 [Debug] > │             let v124 : int64 = System.Convert.ToInt64 v123.Length            │

02:05:57 #1179 [Debug] > │             v119.[int v122] <- v124                                          │

02:05:57 #1180 [Debug] > │             let v125 : int32 = v122 + 1                                      │

02:05:57 #1181 [Debug] > │             v120.l0 <- v125                                                  │

02:05:57 #1182 [Debug] > │             ()                                                               │

02:05:57 #1183 [Debug] > │         let v126 : (int64 []) = v119 |> Array.sortDescending                 │

02:05:57 #1184 [Debug] > │         let v127 : int64 option = v126 |> Array.tryItem 0                    │

02:05:57 #1185 [Debug] > │         let v128 : (int64 -> US1) = closure5()                               │

02:05:57 #1186 [Debug] > │         let v129 : US1 = US1_0                                               │

02:05:57 #1187 [Debug] > │         let v130 : US1 = v127 |> Option.map v128 |> Option.defaultValue v129 │

02:05:57 #1188 [Debug] > │         let v133 : int64 =                                                   │

02:05:57 #1189 [Debug] > │             match v130 with                                                  │

02:05:57 #1190 [Debug] > │             | US1_0 -> (* None *)                                            │

02:05:57 #1191 [Debug] > │                 0L                                                           │

02:05:57 #1192 [Debug] > │             | US1_1(v131) -> (* Some *)                                      │

02:05:57 #1193 [Debug] > │                 v131                                                         │

02:05:57 #1194 [Debug] > │         v113.[int v116] <- v133                                              │

02:05:57 #1195 [Debug] > │         let v134 : int32 = v116 + 1                                          │

02:05:57 #1196 [Debug] > │         v114.l0 <- v134                                                      │

02:05:57 #1197 [Debug] > │         ()                                                                   │

02:05:57 #1198 [Debug] > │     let v135 : int32 = v113.Length                                           │

02:05:57 #1199 [Debug] > │     let v136 : UH3 = UH3_1                                                   │

02:05:57 #1200 [Debug] > │     let v137 : Mut1 = {l0 = 0; l1 = v136; l2 = 0} : Mut1                     │

02:05:57 #1201 [Debug] > │     while method12(v135, v137) do                                            │

02:05:57 #1202 [Debug] > │         let v139 : int32 = v137.l0                                           │

02:05:57 #1203 [Debug] > │         let struct (v140 : UH3, v141 : int32) = v137.l1, v137.l2             │

02:05:57 #1204 [Debug] > │         let v142 : int64 = v113.[int v139]                                   │

02:05:57 #1205 [Debug] > │         let v143 : int32 = v141 + 1                                          │

02:05:57 #1206 [Debug] > │         let v144 : int32 = v139 + 1                                          │

02:05:57 #1207 [Debug] > │         let v145 : UH3 = UH3_0(v141, v142, v140)                             │

02:05:57 #1208 [Debug] > │         v137.l0 <- v144                                                      │

02:05:57 #1209 [Debug] > │         v137.l1 <- v145                                                      │

02:05:57 #1210 [Debug] > │         v137.l2 <- v143                                                      │

02:05:57 #1211 [Debug] > │         ()                                                                   │

02:05:57 #1212 [Debug] > │     let struct (v146 : UH3, v147 : int32) = v137.l1, v137.l2                 │

02:05:57 #1213 [Debug] > │     let v148 : UH3 = UH3_1                                                   │

02:05:57 #1214 [Debug] > │     let v149 : UH3 = method13(v146, v148)                                    │

02:05:57 #1215 [Debug] > │     let v150 : (struct (int32 * int64) []) = method14(v149)                  │

02:05:57 #1216 [Debug] > │     let v151 : Map<int32, int64> = v150 |> Array.map (fun (struct (a, b)) -> │

02:05:57 #1217 [Debug] > │ a, b) |> Map.ofArray                                                         │

02:05:57 #1218 [Debug] > │     let v152 : int64 = v151.[3]                                              │

02:05:57 #1219 [Debug] > │     let v153 : int32 = int32 v152                                            │

02:05:57 #1220 [Debug] > │     let v154 : string = v55.PadRight v153                                    │

02:05:57 #1221 [Debug] > │     let v155 : int64 = v151.[2]                                              │

02:05:57 #1222 [Debug] > │     let v156 : int32 = int32 v155                                            │

02:05:57 #1223 [Debug] > │     let v157 : string = v27.PadRight v156                                    │

02:05:57 #1224 [Debug] > │     let v158 : int64 = v151.[1]                                              │

02:05:57 #1225 [Debug] > │     let v159 : int32 = int32 v158                                            │

02:05:57 #1226 [Debug] > │     let v160 : string = v26.PadRight v159                                    │

02:05:57 #1227 [Debug] > │     let v161 : int64 = v151.[0]                                              │

02:05:57 #1228 [Debug] > │     let v162 : int32 = int32 v161                                            │

02:05:57 #1229 [Debug] > │     let v163 : string = v5.PadRight v162                                     │

02:05:57 #1230 [Debug] > │     let v164 : UH1 = UH1_1                                                   │

02:05:57 #1231 [Debug] > │     let v165 : UH1 = UH1_0(v154, v164)                                       │

02:05:57 #1232 [Debug] > │     let v166 : UH1 = UH1_0(v157, v165)                                       │

02:05:57 #1233 [Debug] > │     let v167 : UH1 = UH1_0(v160, v166)                                       │

02:05:57 #1234 [Debug] > │     let v168 : UH1 = UH1_0(v163, v167)                                       │

02:05:57 #1235 [Debug] > │     let v169 : (string []) = method5(v168)                                   │

02:05:57 #1236 [Debug] > │     let v170 : int64 = v151.[3]                                              │

02:05:57 #1237 [Debug] > │     let v171 : int32 = int32 v170                                            │

02:05:57 #1238 [Debug] > │     let v172 : string = v69.PadRight v171                                    │

02:05:57 #1239 [Debug] > │     let v173 : int64 = v151.[2]                                              │

02:05:57 #1240 [Debug] > │     let v174 : int32 = int32 v173                                            │

02:05:57 #1241 [Debug] > │     let v175 : string = v46.PadRight v174                                    │

02:05:57 #1242 [Debug] > │     let v176 : int64 = v151.[1]                                              │

02:05:57 #1243 [Debug] > │     let v177 : int32 = int32 v176                                            │

02:05:57 #1244 [Debug] > │     let v178 : string = v45.PadRight v177                                    │

02:05:57 #1245 [Debug] > │     let v179 : int64 = v151.[0]                                              │

02:05:57 #1246 [Debug] > │     let v180 : int32 = int32 v179                                            │

02:05:57 #1247 [Debug] > │     let v181 : string = v28.PadRight v180                                    │

02:05:57 #1248 [Debug] > │     let v182 : UH1 = UH1_1                                                   │

02:05:57 #1249 [Debug] > │     let v183 : UH1 = UH1_0(v172, v182)                                       │

02:05:57 #1250 [Debug] > │     let v184 : UH1 = UH1_0(v175, v183)                                       │

02:05:57 #1251 [Debug] > │     let v185 : UH1 = UH1_0(v178, v184)                                       │

02:05:57 #1252 [Debug] > │     let v186 : UH1 = UH1_0(v181, v185)                                       │

02:05:57 #1253 [Debug] > │     let v187 : (string []) = method5(v186)                                   │

02:05:57 #1254 [Debug] > │     let v188 : int64 = v151.[3]                                              │

02:05:57 #1255 [Debug] > │     let v189 : int32 = int32 v188                                            │

02:05:57 #1256 [Debug] > │     let v190 : string = v88.PadRight v189                                    │

02:05:57 #1257 [Debug] > │     let v191 : int64 = v151.[2]                                              │

02:05:57 #1258 [Debug] > │     let v192 : int32 = int32 v191                                            │

02:05:57 #1259 [Debug] > │     let v193 : string = v88.PadRight v192                                    │

02:05:57 #1260 [Debug] > │     let v194 : int64 = v151.[1]                                              │

02:05:57 #1261 [Debug] > │     let v195 : int32 = int32 v194                                            │

02:05:57 #1262 [Debug] > │     let v196 : string = v88.PadRight v195                                    │

02:05:57 #1263 [Debug] > │     let v197 : int64 = v151.[0]                                              │

02:05:57 #1264 [Debug] > │     let v198 : int32 = int32 v197                                            │

02:05:57 #1265 [Debug] > │     let v199 : string = v88.PadRight v198                                    │

02:05:57 #1266 [Debug] > │     let v200 : UH1 = UH1_1                                                   │

02:05:57 #1267 [Debug] > │     let v201 : UH1 = UH1_0(v190, v200)                                       │

02:05:57 #1268 [Debug] > │     let v202 : UH1 = UH1_0(v193, v201)                                       │

02:05:57 #1269 [Debug] > │     let v203 : UH1 = UH1_0(v196, v202)                                       │

02:05:57 #1270 [Debug] > │     let v204 : UH1 = UH1_0(v199, v203)                                       │

02:05:57 #1271 [Debug] > │     let v205 : (string []) = method5(v204)                                   │

02:05:57 #1272 [Debug] > │     let v206 : int64 = v151.[3]                                              │

02:05:57 #1273 [Debug] > │     let v207 : int32 = int32 v206                                            │

02:05:57 #1274 [Debug] > │     let v208 : string = v98.PadRight v207                                    │

02:05:57 #1275 [Debug] > │     let v209 : int64 = v151.[2]                                              │

02:05:57 #1276 [Debug] > │     let v210 : int32 = int32 v209                                            │

02:05:57 #1277 [Debug] > │     let v211 : string = v97.PadRight v210                                    │

02:05:57 #1278 [Debug] > │     let v212 : int64 = v151.[1]                                              │

02:05:57 #1279 [Debug] > │     let v213 : int32 = int32 v212                                            │

02:05:57 #1280 [Debug] > │     let v214 : string = v96.PadRight v213                                    │

02:05:57 #1281 [Debug] > │     let v215 : int64 = v151.[0]                                              │

02:05:57 #1282 [Debug] > │     let v216 : int32 = int32 v215                                            │

02:05:57 #1283 [Debug] > │     let v217 : string = v95.PadRight v216                                    │

02:05:57 #1284 [Debug] > │     let v218 : UH1 = UH1_1                                                   │

02:05:57 #1285 [Debug] > │     let v219 : UH1 = UH1_0(v208, v218)                                       │

02:05:57 #1286 [Debug] > │     let v220 : UH1 = UH1_0(v211, v219)                                       │

02:05:57 #1287 [Debug] > │     let v221 : UH1 = UH1_0(v214, v220)                                       │

02:05:57 #1288 [Debug] > │     let v222 : UH1 = UH1_0(v217, v221)                                       │

02:05:57 #1289 [Debug] > │     let v223 : (string []) = method5(v222)                                   │

02:05:57 #1290 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1291 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1292 [Debug] > │     let v224 : (unit -> unit) = closure6()                                   │

02:05:57 #1293 [Debug] > │     v224 ()                                                                  │

02:05:57 #1294 [Debug] > │     #else                                                                    │

02:05:57 #1295 [Debug] > │     let v225 : (unit -> unit) = closure7()                                   │

02:05:57 #1296 [Debug] > │     v225 ()                                                                  │

02:05:57 #1297 [Debug] > │     #endif                                                                   │

02:05:57 #1298 [Debug] > │     let v226 : string = "\t| "                                               │

02:05:57 #1299 [Debug] > │     let v227 : string = System.String.Join (v226, v223)                      │

02:05:57 #1300 [Debug] > │     System.Console.WriteLine v227                                            │

02:05:57 #1301 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1302 [Debug] > │     v224 ()                                                                  │

02:05:57 #1303 [Debug] > │     #else                                                                    │

02:05:57 #1304 [Debug] > │     v225 ()                                                                  │

02:05:57 #1305 [Debug] > │     #endif                                                                   │

02:05:57 #1306 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1307 [Debug] > │     v224 ()                                                                  │

02:05:57 #1308 [Debug] > │     #else                                                                    │

02:05:57 #1309 [Debug] > │     v225 ()                                                                  │

02:05:57 #1310 [Debug] > │     #endif                                                                   │

02:05:57 #1311 [Debug] > │     let v228 : string = System.String.Join (v226, v205)                      │

02:05:57 #1312 [Debug] > │     System.Console.WriteLine v228                                            │

02:05:57 #1313 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1314 [Debug] > │     v224 ()                                                                  │

02:05:57 #1315 [Debug] > │     #else                                                                    │

02:05:57 #1316 [Debug] > │     v225 ()                                                                  │

02:05:57 #1317 [Debug] > │     #endif                                                                   │

02:05:57 #1318 [Debug] > │     match v75 with                                                           │

02:05:57 #1319 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:57 #1320 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #1321 [Debug] > │         v224 ()                                                              │

02:05:57 #1322 [Debug] > │         #else                                                                │

02:05:57 #1323 [Debug] > │         v225 ()                                                              │

02:05:57 #1324 [Debug] > │         #endif                                                               │

02:05:57 #1325 [Debug] > │         ()                                                                   │

02:05:57 #1326 [Debug] > │     | US0_1(v229) -> (* Some *)                                              │

02:05:57 #1327 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #1328 [Debug] > │         let v230 : (unit -> unit) = closure8()                               │

02:05:57 #1329 [Debug] > │         v230 ()                                                              │

02:05:57 #1330 [Debug] > │         #else                                                                │

02:05:57 #1331 [Debug] > │         let v231 : (unit -> unit) = closure9(v229)                           │

02:05:57 #1332 [Debug] > │         v231 ()                                                              │

02:05:57 #1333 [Debug] > │         #endif                                                               │

02:05:57 #1334 [Debug] > │         ()                                                                   │

02:05:57 #1335 [Debug] > │     let v232 : string = System.String.Join (v226, v187)                      │

02:05:57 #1336 [Debug] > │     System.Console.WriteLine v232                                            │

02:05:57 #1337 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1338 [Debug] > │     v224 ()                                                                  │

02:05:57 #1339 [Debug] > │     #else                                                                    │

02:05:57 #1340 [Debug] > │     v225 ()                                                                  │

02:05:57 #1341 [Debug] > │     #endif                                                                   │

02:05:57 #1342 [Debug] > │     match v61 with                                                           │

02:05:57 #1343 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:57 #1344 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #1345 [Debug] > │         v224 ()                                                              │

02:05:57 #1346 [Debug] > │         #else                                                                │

02:05:57 #1347 [Debug] > │         v225 ()                                                              │

02:05:57 #1348 [Debug] > │         #endif                                                               │

02:05:57 #1349 [Debug] > │         ()                                                                   │

02:05:57 #1350 [Debug] > │     | US0_1(v233) -> (* Some *)                                              │

02:05:57 #1351 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:57 #1352 [Debug] > │         let v234 : (unit -> unit) = closure8()                               │

02:05:57 #1353 [Debug] > │         v234 ()                                                              │

02:05:57 #1354 [Debug] > │         #else                                                                │

02:05:57 #1355 [Debug] > │         let v235 : (unit -> unit) = closure9(v233)                           │

02:05:57 #1356 [Debug] > │         v235 ()                                                              │

02:05:57 #1357 [Debug] > │         #endif                                                               │

02:05:57 #1358 [Debug] > │         ()                                                                   │

02:05:57 #1359 [Debug] > │     let v236 : string = System.String.Join (v226, v169)                      │

02:05:57 #1360 [Debug] > │     System.Console.WriteLine v236                                            │

02:05:57 #1361 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:57 #1362 [Debug] > │     v224 ()                                                                  │

02:05:57 #1363 [Debug] > │     #else                                                                    │

02:05:57 #1364 [Debug] > │     v225 ()                                                                  │

02:05:57 #1365 [Debug] > │     #endif                                                                   │

02:05:57 #1366 [Debug] > │     let v237 : (int64 -> float) = float                                      │

02:05:57 #1367 [Debug] > │     let v238 : float = v237 v23                                              │

02:05:57 #1368 [Debug] > │     let v239 : UH4 = UH4_1                                                   │

02:05:57 #1369 [Debug] > │     let v240 : UH4 = UH4_0(v238, v239)                                       │

02:05:57 #1370 [Debug] > │     let v241 : (float []) = method17(v240)                                   │

02:05:57 #1371 [Debug] > │     let v242 : (int64 -> float) = float                                      │

02:05:57 #1372 [Debug] > │     let v243 : float = v242 v43                                              │

02:05:57 #1373 [Debug] > │     let v244 : UH4 = UH4_1                                                   │

02:05:57 #1374 [Debug] > │     let v245 : UH4 = UH4_0(v243, v244)                                       │

02:05:57 #1375 [Debug] > │     let v246 : (float []) = method17(v245)                                   │

02:05:57 #1376 [Debug] > │     let v247 : UH5 = UH5_1                                                   │

02:05:57 #1377 [Debug] > │     let v248 : UH5 = UH5_0(v241, v247)                                       │

02:05:57 #1378 [Debug] > │     let v249 : UH5 = UH5_0(v246, v248)                                       │

02:05:57 #1379 [Debug] > │     let v250 : ((float []) []) = method20(v249)                              │

02:05:57 #1380 [Debug] > │     let v251 : ((float []) []) = v250 |> Array.transpose                     │

02:05:57 #1381 [Debug] > │     let v252 : int32 = v251.Length                                           │

02:05:57 #1382 [Debug] > │     let v253 : (float []) = Array.zeroCreate<float> (v252)                   │

02:05:57 #1383 [Debug] > │     let v254 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #1384 [Debug] > │     while method11(v252, v254) do                                            │

02:05:57 #1385 [Debug] > │         let v256 : int32 = v254.l0                                           │

02:05:57 #1386 [Debug] > │         let v257 : (float []) = v251.[int v256]                              │

02:05:57 #1387 [Debug] > │         let v258 : float = v257 |> Array.average                             │

02:05:57 #1388 [Debug] > │         v253.[int v256] <- v258                                              │

02:05:57 #1389 [Debug] > │         let v259 : int32 = v256 + 1                                          │

02:05:57 #1390 [Debug] > │         v254.l0 <- v259                                                      │

02:05:57 #1391 [Debug] > │         ()                                                                   │

02:05:57 #1392 [Debug] > │     let v260 : (float -> int64) = int64                                      │

02:05:57 #1393 [Debug] > │     let v261 : int32 = v253.Length                                           │

02:05:57 #1394 [Debug] > │     let v262 : (int64 []) = Array.zeroCreate<int64> (v261)                   │

02:05:57 #1395 [Debug] > │     let v263 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #1396 [Debug] > │     while method11(v261, v263) do                                            │

02:05:57 #1397 [Debug] > │         let v265 : int32 = v263.l0                                           │

02:05:57 #1398 [Debug] > │         let v266 : float = v253.[int v265]                                   │

02:05:57 #1399 [Debug] > │         let v267 : int64 = v260 v266                                         │

02:05:57 #1400 [Debug] > │         v262.[int v265] <- v267                                              │

02:05:57 #1401 [Debug] > │         let v268 : int32 = v265 + 1                                          │

02:05:57 #1402 [Debug] > │         v263.l0 <- v268                                                      │

02:05:57 #1403 [Debug] > │         ()                                                                   │

02:05:57 #1404 [Debug] > │     let v269 : int32 = v262.Length                                           │

02:05:57 #1405 [Debug] > │     let v270 : UH3 = UH3_1                                                   │

02:05:57 #1406 [Debug] > │     let v271 : Mut1 = {l0 = 0; l1 = v270; l2 = 0} : Mut1                     │

02:05:57 #1407 [Debug] > │     while method12(v269, v271) do                                            │

02:05:57 #1408 [Debug] > │         let v273 : int32 = v271.l0                                           │

02:05:57 #1409 [Debug] > │         let struct (v274 : UH3, v275 : int32) = v271.l1, v271.l2             │

02:05:57 #1410 [Debug] > │         let v276 : int64 = v262.[int v273]                                   │

02:05:57 #1411 [Debug] > │         let v277 : int32 = v275 + 1                                          │

02:05:57 #1412 [Debug] > │         let v278 : int32 = v273 + 1                                          │

02:05:57 #1413 [Debug] > │         let v279 : UH3 = UH3_0(v275, v276, v274)                             │

02:05:57 #1414 [Debug] > │         v271.l0 <- v278                                                      │

02:05:57 #1415 [Debug] > │         v271.l1 <- v279                                                      │

02:05:57 #1416 [Debug] > │         v271.l2 <- v277                                                      │

02:05:57 #1417 [Debug] > │         ()                                                                   │

02:05:57 #1418 [Debug] > │     let struct (v280 : UH3, v281 : int32) = v271.l1, v271.l2                 │

02:05:57 #1419 [Debug] > │     let v282 : UH3 = UH3_1                                                   │

02:05:57 #1420 [Debug] > │     let v283 : UH3 = method13(v280, v282)                                    │

02:05:57 #1421 [Debug] > │     let v284 : (struct (int32 * int64) []) = method14(v283)                  │

02:05:57 #1422 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:57 #1423 [Debug] > │     let v285 : string = "Average Ranking  "                                  │

02:05:57 #1424 [Debug] > │     System.Console.WriteLine v285                                            │

02:05:57 #1425 [Debug] > │     let v286 : (struct (int32 * int64) -> int64) = closure10()               │

02:05:57 #1426 [Debug] > │     let v287 : (struct (int32 * int64) []) = v284 |> Array.sortBy v286       │

02:05:57 #1427 [Debug] > │     let v288 : int32 = v287.Length                                           │

02:05:57 #1428 [Debug] > │     let v289 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:57 #1429 [Debug] > │     while method11(v288, v289) do                                            │

02:05:57 #1430 [Debug] > │         let v291 : int32 = v289.l0                                           │

02:05:57 #1431 [Debug] > │         let struct (v292 : int32, v293 : int64) = v287.[int v291]            │

02:05:57 #1432 [Debug] > │         let v294 : string = $"Test case %d{v292 + 1}. Average Time: %A{v293} │

02:05:57 #1433 [Debug] > │ "                                                                            │

02:05:57 #1434 [Debug] > │         System.Console.WriteLine v294                                        │

02:05:57 #1435 [Debug] > │         let v295 : int32 = v291 + 1                                          │

02:05:57 #1436 [Debug] > │         v289.l0 <- v295                                                      │

02:05:57 #1437 [Debug] > │         ()                                                                   │

02:05:57 #1438 [Debug] > │     ()                                                                       │

02:05:57 #1439 [Debug] > │ method0()                                                                    │

02:05:57 #1440 [Debug] > │                                                                              │

02:05:57 #1441 [Debug] > │                                                                              │

02:05:57 #1442 [Debug] > │                                                                              │

02:05:57 #1443 [Debug] > │ Test: v0                                                                     │

02:05:57 #1444 [Debug] > │                                                                              │

02:05:57 #1445 [Debug] > │ Solution: (a, a)                                                             │

02:05:57 #1446 [Debug] > │ Test case 1. A. Time: 27                                                     │

02:05:57 #1447 [Debug] > │                                                                              │

02:05:57 #1448 [Debug] > │ Solution: (a, a)                                                             │

02:05:57 #1449 [Debug] > │ Test case 1. A. Time: 12                                                     │

02:05:57 #1450 [Debug] > │                                                                              │

02:05:57 #1451 [Debug] > │ Input 	| Expected	| Result	| Best                                                  │

02:05:57 #1452 [Debug] > │ ---   	| ---     	| ---   	| ---                                                   │

02:05:57 #1453 [Debug] > │ (a, a)	| a       	| a     	| struct (1L, 12L)                                      │

02:05:57 #1454 [Debug] > │ (a, a)	| a       	| a     	| struct (1L, 27L)                                      │

02:05:57 #1455 [Debug] > │                                                                              │

02:05:57 #1456 [Debug] > │ Average Ranking                                                              │

02:05:57 #1457 [Debug] > │ Test case 1. Average Time: 19L                                               │

02:05:57 #1458 [Debug] > │                                                                              │

02:05:57 #1459 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:57 #1460 [Debug] >

02:05:57 #1461 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:57 #1462 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:57 #1463 [Debug] > │ ## emptyTests                                                                │

02:05:57 #1464 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:57 #1465 [Debug] >

02:05:57 #1466 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:05:57 #1467 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:05:57 #1468 [Debug] > │ Test: Empty                                                                  │

02:05:57 #1469 [Debug] > │                                                                              │

02:05:57 #1470 [Debug] > │ Solution: 0                                                                  │

02:05:57 #1471 [Debug] > │ Test case 1. A. Time: 61L                                                    │

02:05:57 #1472 [Debug] > │                                                                              │

02:05:57 #1473 [Debug] > │ Solution: 2                                                                  │

02:05:57 #1474 [Debug] > │ Test case 1. A. Time: 62L                                                    │

02:05:57 #1475 [Debug] > │                                                                              │

02:05:57 #1476 [Debug] > │ Solution: 5                                                                  │

02:05:57 #1477 [Debug] > │ Test case 1. A. Time: 70L                                                    │

02:05:57 #1478 [Debug] > │                                                                              │

02:05:57 #1479 [Debug] > │ Input   | Expected        | Result  | Best                                   │

02:05:57 #1480 [Debug] > │ ---     | ---             | ---     | ---                                    │

02:05:57 #1481 [Debug] > │ 0       | 0               | 0       | (1, 61)                                │

02:05:57 #1482 [Debug] > │ 2       | 2               | 2       | (1, 62)                                │

02:05:57 #1483 [Debug] > │ 5       | 5               | 5       | (1, 70)                                │

02:05:57 #1484 [Debug] > │                                                                              │

02:05:57 #1485 [Debug] > │ Averages                                                                     │

02:05:57 #1486 [Debug] > │ Test case 1. Average Time: 64L                                               │

02:05:57 #1487 [Debug] > │                                                                              │

02:05:57 #1488 [Debug] > │ Ranking                                                                      │

02:05:57 #1489 [Debug] > │ Test case 1. Average Time: 64L                                               │

02:05:57 #1490 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:05:57 #1491 [Debug] >

02:05:57 #1492 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:05:57 #1493 [Debug] > // // test

02:05:57 #1494 [Debug] >

02:05:57 #1495 [Debug] > inl get_solutions () =

02:05:57 #1496 [Debug] >     [[

02:05:57 #1497 [Debug] >         "A",

02:05:57 #1498 [Debug] >         fun n =>

02:05:57 #1499 [Debug] >             n + 1f64

02:05:57 #1500 [Debug] >     ]]

02:05:57 #1501 [Debug] >

02:05:57 #1502 [Debug] > inl rec empty_1_tests () =

02:05:57 #1503 [Debug] >     inl test_cases = [[

02:05:57 #1504 [Debug] >         0, 1

02:05:57 #1505 [Debug] >         2, 3

02:05:57 #1506 [Debug] >         5, 6

02:05:57 #1507 [Debug] >     ]]

02:05:57 #1508 [Debug] >

02:05:57 #1509 [Debug] >     inl solutions = get_solutions ()

02:05:57 #1510 [Debug] >

02:05:57 #1511 [Debug] >     run_all (nameof empty_1_tests) (get_count ()) solutions test_cases

02:05:57 #1512 [Debug] >     |> sort_result_list

02:05:57 #1513 [Debug] >

02:05:57 #1514 [Debug] > empty_1_tests ()

02:05:57 #1515 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0205-5743-4339-46c81af7ba46\main.spi

02:05:59 #1516 [Debug] >

02:05:59 #1517 [Debug] > ╭─[ 2.13s - stdout ]───────────────────────────────────────────────────────────╮

02:05:59 #1518 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:05:59 #1519 [Debug] > │ and UH0 =                                                                    │

02:05:59 #1520 [Debug] > │     | UH0_0 of int64 * int64 * UH0                                           │

02:05:59 #1521 [Debug] > │     | UH0_1                                                                  │

02:05:59 #1522 [Debug] > │ and [<Struct>] US0 =                                                         │

02:05:59 #1523 [Debug] > │     | US0_0                                                                  │

02:05:59 #1524 [Debug] > │     | US0_1 of f1_0 : System.ConsoleColor                                    │

02:05:59 #1525 [Debug] > │ and UH1 =                                                                    │

02:05:59 #1526 [Debug] > │     | UH1_0 of string * UH1                                                  │

02:05:59 #1527 [Debug] > │     | UH1_1                                                                  │

02:05:59 #1528 [Debug] > │ and UH2 =                                                                    │

02:05:59 #1529 [Debug] > │     | UH2_0 of (string []) * UH2                                             │

02:05:59 #1530 [Debug] > │     | UH2_1                                                                  │

02:05:59 #1531 [Debug] > │ and [<Struct>] US1 =                                                         │

02:05:59 #1532 [Debug] > │     | US1_0                                                                  │

02:05:59 #1533 [Debug] > │     | US1_1 of f1_0 : int64                                                  │

02:05:59 #1534 [Debug] > │ and UH3 =                                                                    │

02:05:59 #1535 [Debug] > │     | UH3_0 of int32 * int64 * UH3                                           │

02:05:59 #1536 [Debug] > │     | UH3_1                                                                  │

02:05:59 #1537 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : UH3; mutable l2 : int32}        │

02:05:59 #1538 [Debug] > │ and UH4 =                                                                    │

02:05:59 #1539 [Debug] > │     | UH4_0 of float * UH4                                                   │

02:05:59 #1540 [Debug] > │     | UH4_1                                                                  │

02:05:59 #1541 [Debug] > │ and UH5 =                                                                    │

02:05:59 #1542 [Debug] > │     | UH5_0 of (float []) * UH5                                              │

02:05:59 #1543 [Debug] > │     | UH5_1                                                                  │

02:05:59 #1544 [Debug] > │ let rec closure1 () () : unit =                                              │

02:05:59 #1545 [Debug] > │     ()                                                                       │

02:05:59 #1546 [Debug] > │ and closure2 () () : unit =                                                  │

02:05:59 #1547 [Debug] > │     System.GC.Collect ()                                                     │

02:05:59 #1548 [Debug] > │     ()                                                                       │

02:05:59 #1549 [Debug] > │ and method1 (v0 : Mut0) : bool =                                             │

02:05:59 #1550 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:05:59 #1551 [Debug] > │     let v2 : bool = v1 < 2000001                                             │

02:05:59 #1552 [Debug] > │     v2                                                                       │

02:05:59 #1553 [Debug] > │ and closure3 () (v0 : int32) : float =                                       │

02:05:59 #1554 [Debug] > │     6.0                                                                      │

02:05:59 #1555 [Debug] > │ and closure4 () (v0 : int32) : float =                                       │

02:05:59 #1556 [Debug] > │     3.0                                                                      │

02:05:59 #1557 [Debug] > │ and closure5 () (v0 : int32) : float =                                       │

02:05:59 #1558 [Debug] > │     1.0                                                                      │

02:05:59 #1559 [Debug] > │ and method3 (v0 : UH0, v1 : int32) : int32 =                                 │

02:05:59 #1560 [Debug] > │     match v0 with                                                            │

02:05:59 #1561 [Debug] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:59 #1562 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:05:59 #1563 [Debug] > │         method3(v4, v5)                                                      │

02:05:59 #1564 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:59 #1565 [Debug] > │         v1                                                                   │

02:05:59 #1566 [Debug] > │ and method4 (v0 : (struct (int64 * int64) []), v1 : UH0, v2 : int32) : int32 │

02:05:59 #1567 [Debug] > │ =                                                                            │

02:05:59 #1568 [Debug] > │     match v1 with                                                            │

02:05:59 #1569 [Debug] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

02:05:59 #1570 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:05:59 #1571 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:05:59 #1572 [Debug] > │         method4(v0, v5, v6)                                                  │

02:05:59 #1573 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:05:59 #1574 [Debug] > │         v2                                                                   │

02:05:59 #1575 [Debug] > │ and method2 (v0 : UH0) : (struct (int64 * int64) []) =                       │

02:05:59 #1576 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:59 #1577 [Debug] > │     let v2 : int32 = method3(v0, v1)                                         │

02:05:59 #1578 [Debug] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

02:05:59 #1579 [Debug] > │ int64)> (v2)                                                                 │

02:05:59 #1580 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:59 #1581 [Debug] > │     let v5 : int32 = method4(v3, v0, v4)                                     │

02:05:59 #1582 [Debug] > │     v3                                                                       │

02:05:59 #1583 [Debug] > │ and closure6 () struct (v0 : int64, v1 : int64) : int64 =                    │

02:05:59 #1584 [Debug] > │     v1                                                                       │

02:05:59 #1585 [Debug] > │ and method6 (v0 : UH1, v1 : int32) : int32 =                                 │

02:05:59 #1586 [Debug] > │     match v0 with                                                            │

02:05:59 #1587 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:05:59 #1588 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:59 #1589 [Debug] > │         method6(v3, v4)                                                      │

02:05:59 #1590 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:05:59 #1591 [Debug] > │         v1                                                                   │

02:05:59 #1592 [Debug] > │ and method7 (v0 : (string []), v1 : UH1, v2 : int32) : int32 =               │

02:05:59 #1593 [Debug] > │     match v1 with                                                            │

02:05:59 #1594 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:05:59 #1595 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:59 #1596 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:59 #1597 [Debug] > │         method7(v0, v4, v5)                                                  │

02:05:59 #1598 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:05:59 #1599 [Debug] > │         v2                                                                   │

02:05:59 #1600 [Debug] > │ and method5 (v0 : UH1) : (string []) =                                       │

02:05:59 #1601 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:59 #1602 [Debug] > │     let v2 : int32 = method6(v0, v1)                                         │

02:05:59 #1603 [Debug] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

02:05:59 #1604 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:59 #1605 [Debug] > │     let v5 : int32 = method7(v3, v0, v4)                                     │

02:05:59 #1606 [Debug] > │     v3                                                                       │

02:05:59 #1607 [Debug] > │ and method9 (v0 : UH2, v1 : int32) : int32 =                                 │

02:05:59 #1608 [Debug] > │     match v0 with                                                            │

02:05:59 #1609 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:05:59 #1610 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:59 #1611 [Debug] > │         method9(v3, v4)                                                      │

02:05:59 #1612 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:05:59 #1613 [Debug] > │         v1                                                                   │

02:05:59 #1614 [Debug] > │ and method10 (v0 : ((string []) []), v1 : UH2, v2 : int32) : int32 =         │

02:05:59 #1615 [Debug] > │     match v1 with                                                            │

02:05:59 #1616 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:05:59 #1617 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:59 #1618 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:59 #1619 [Debug] > │         method10(v0, v4, v5)                                                 │

02:05:59 #1620 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:05:59 #1621 [Debug] > │         v2                                                                   │

02:05:59 #1622 [Debug] > │ and method8 (v0 : UH2) : ((string []) []) =                                  │

02:05:59 #1623 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:59 #1624 [Debug] > │     let v2 : int32 = method9(v0, v1)                                         │

02:05:59 #1625 [Debug] > │     let v3 : ((string []) []) = Array.zeroCreate<(string [])> (v2)           │

02:05:59 #1626 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:59 #1627 [Debug] > │     let v5 : int32 = method10(v3, v0, v4)                                    │

02:05:59 #1628 [Debug] > │     v3                                                                       │

02:05:59 #1629 [Debug] > │ and method11 (v0 : int32, v1 : Mut0) : bool =                                │

02:05:59 #1630 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:05:59 #1631 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:05:59 #1632 [Debug] > │     v3                                                                       │

02:05:59 #1633 [Debug] > │ and closure7 () (v0 : int64) : US1 =                                         │

02:05:59 #1634 [Debug] > │     US1_1(v0)                                                                │

02:05:59 #1635 [Debug] > │ and method12 (v0 : int32, v1 : Mut1) : bool =                                │

02:05:59 #1636 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:05:59 #1637 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:05:59 #1638 [Debug] > │     v3                                                                       │

02:05:59 #1639 [Debug] > │ and method13 (v0 : UH3, v1 : UH3) : UH3 =                                    │

02:05:59 #1640 [Debug] > │     match v0 with                                                            │

02:05:59 #1641 [Debug] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:59 #1642 [Debug] > │         let v5 : UH3 = UH3_0(v2, v3, v1)                                     │

02:05:59 #1643 [Debug] > │         method13(v4, v5)                                                     │

02:05:59 #1644 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:05:59 #1645 [Debug] > │         v1                                                                   │

02:05:59 #1646 [Debug] > │ and method15 (v0 : UH3, v1 : int32) : int32 =                                │

02:05:59 #1647 [Debug] > │     match v0 with                                                            │

02:05:59 #1648 [Debug] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

02:05:59 #1649 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:05:59 #1650 [Debug] > │         method15(v4, v5)                                                     │

02:05:59 #1651 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:05:59 #1652 [Debug] > │         v1                                                                   │

02:05:59 #1653 [Debug] > │ and method16 (v0 : (struct (int32 * int64) []), v1 : UH3, v2 : int32) :      │

02:05:59 #1654 [Debug] > │ int32 =                                                                      │

02:05:59 #1655 [Debug] > │     match v1 with                                                            │

02:05:59 #1656 [Debug] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

02:05:59 #1657 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:05:59 #1658 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:05:59 #1659 [Debug] > │         method16(v0, v5, v6)                                                 │

02:05:59 #1660 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:05:59 #1661 [Debug] > │         v2                                                                   │

02:05:59 #1662 [Debug] > │ and method14 (v0 : UH3) : (struct (int32 * int64) []) =                      │

02:05:59 #1663 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:59 #1664 [Debug] > │     let v2 : int32 = method15(v0, v1)                                        │

02:05:59 #1665 [Debug] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

02:05:59 #1666 [Debug] > │ int64)> (v2)                                                                 │

02:05:59 #1667 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:59 #1668 [Debug] > │     let v5 : int32 = method16(v3, v0, v4)                                    │

02:05:59 #1669 [Debug] > │     v3                                                                       │

02:05:59 #1670 [Debug] > │ and closure8 () () : unit =                                                  │

02:05:59 #1671 [Debug] > │     ()                                                                       │

02:05:59 #1672 [Debug] > │ and closure9 () () : unit =                                                  │

02:05:59 #1673 [Debug] > │     System.Console.ResetColor ()                                             │

02:05:59 #1674 [Debug] > │     ()                                                                       │

02:05:59 #1675 [Debug] > │ and closure10 () () : unit =                                                 │

02:05:59 #1676 [Debug] > │     ()                                                                       │

02:05:59 #1677 [Debug] > │ and closure11 (v0 : System.ConsoleColor) () : unit =                         │

02:05:59 #1678 [Debug] > │     System.Console.ForegroundColor <- v0                                     │

02:05:59 #1679 [Debug] > │     ()                                                                       │

02:05:59 #1680 [Debug] > │ and method18 (v0 : UH4, v1 : int32) : int32 =                                │

02:05:59 #1681 [Debug] > │     match v0 with                                                            │

02:05:59 #1682 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:05:59 #1683 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:59 #1684 [Debug] > │         method18(v3, v4)                                                     │

02:05:59 #1685 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:05:59 #1686 [Debug] > │         v1                                                                   │

02:05:59 #1687 [Debug] > │ and method19 (v0 : (float []), v1 : UH4, v2 : int32) : int32 =               │

02:05:59 #1688 [Debug] > │     match v1 with                                                            │

02:05:59 #1689 [Debug] > │     | UH4_0(v3, v4) -> (* Cons *)                                            │

02:05:59 #1690 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:59 #1691 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:59 #1692 [Debug] > │         method19(v0, v4, v5)                                                 │

02:05:59 #1693 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:05:59 #1694 [Debug] > │         v2                                                                   │

02:05:59 #1695 [Debug] > │ and method17 (v0 : UH4) : (float []) =                                       │

02:05:59 #1696 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:59 #1697 [Debug] > │     let v2 : int32 = method18(v0, v1)                                        │

02:05:59 #1698 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:05:59 #1699 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:59 #1700 [Debug] > │     let v5 : int32 = method19(v3, v0, v4)                                    │

02:05:59 #1701 [Debug] > │     v3                                                                       │

02:05:59 #1702 [Debug] > │ and method21 (v0 : UH5, v1 : int32) : int32 =                                │

02:05:59 #1703 [Debug] > │     match v0 with                                                            │

02:05:59 #1704 [Debug] > │     | UH5_0(v2, v3) -> (* Cons *)                                            │

02:05:59 #1705 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:05:59 #1706 [Debug] > │         method21(v3, v4)                                                     │

02:05:59 #1707 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:05:59 #1708 [Debug] > │         v1                                                                   │

02:05:59 #1709 [Debug] > │ and method22 (v0 : ((float []) []), v1 : UH5, v2 : int32) : int32 =          │

02:05:59 #1710 [Debug] > │     match v1 with                                                            │

02:05:59 #1711 [Debug] > │     | UH5_0(v3, v4) -> (* Cons *)                                            │

02:05:59 #1712 [Debug] > │         v0.[int v2] <- v3                                                    │

02:05:59 #1713 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:05:59 #1714 [Debug] > │         method22(v0, v4, v5)                                                 │

02:05:59 #1715 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:05:59 #1716 [Debug] > │         v2                                                                   │

02:05:59 #1717 [Debug] > │ and method20 (v0 : UH5) : ((float []) []) =                                  │

02:05:59 #1718 [Debug] > │     let v1 : int32 = 0                                                       │

02:05:59 #1719 [Debug] > │     let v2 : int32 = method21(v0, v1)                                        │

02:05:59 #1720 [Debug] > │     let v3 : ((float []) []) = Array.zeroCreate<(float [])> (v2)             │

02:05:59 #1721 [Debug] > │     let v4 : int32 = 0                                                       │

02:05:59 #1722 [Debug] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

02:05:59 #1723 [Debug] > │     v3                                                                       │

02:05:59 #1724 [Debug] > │ and closure12 () struct (v0 : int32, v1 : int64) : int64 =                   │

02:05:59 #1725 [Debug] > │     v1                                                                       │

02:05:59 #1726 [Debug] > │ and closure0 () () : unit =                                                  │

02:05:59 #1727 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:05:59 #1728 [Debug] > │     let v1 : string = nameof v0                                              │

02:05:59 #1729 [Debug] > │     let v2 : string = ""                                                     │

02:05:59 #1730 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #1731 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #1732 [Debug] > │     let v3 : string = $"Test: {v1}"                                          │

02:05:59 #1733 [Debug] > │     System.Console.WriteLine v3                                              │

02:05:59 #1734 [Debug] > │     let v4 : string = 5.0.ToString ()                                        │

02:05:59 #1735 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #1736 [Debug] > │     let v5 : string = $"Solution: {v4}  "                                    │

02:05:59 #1737 [Debug] > │     System.Console.WriteLine v5                                              │

02:05:59 #1738 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #1739 [Debug] > │     let v6 : (unit -> unit) = closure1()                                     │

02:05:59 #1740 [Debug] > │     v6 ()                                                                    │

02:05:59 #1741 [Debug] > │     #else                                                                    │

02:05:59 #1742 [Debug] > │     let v7 : (unit -> unit) = closure2()                                     │

02:05:59 #1743 [Debug] > │     v7 ()                                                                    │

02:05:59 #1744 [Debug] > │     #endif                                                                   │

02:05:59 #1745 [Debug] > │     let v8 : (unit -> System.Diagnostics.Stopwatch) =                        │

02:05:59 #1746 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:59 #1747 [Debug] > │     let v9 : System.Diagnostics.Stopwatch = v8 ()                            │

02:05:59 #1748 [Debug] > │     v9.Start ()                                                              │

02:05:59 #1749 [Debug] > │     let v10 : int64 = v9.ElapsedMilliseconds                                 │

02:05:59 #1750 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:59 #1751 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:59 #1752 [Debug] > │     while method1(v12) do                                                    │

02:05:59 #1753 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:05:59 #1754 [Debug] > │         v11.[int v14] <- v14                                                 │

02:05:59 #1755 [Debug] > │         let v15 : int32 = v14 + 1                                            │

02:05:59 #1756 [Debug] > │         v12.l0 <- v15                                                        │

02:05:59 #1757 [Debug] > │         ()                                                                   │

02:05:59 #1758 [Debug] > │     let v16 : (int32 -> float) = closure3()                                  │

02:05:59 #1759 [Debug] > │     let v17 : (float []) = v11 |> Array.Parallel.map v16                     │

02:05:59 #1760 [Debug] > │     let v18 : int32 = v17.Length                                             │

02:05:59 #1761 [Debug] > │     let v19 : int32 = v18 - 1                                                │

02:05:59 #1762 [Debug] > │     let v20 : float = v17.[int v19]                                          │

02:05:59 #1763 [Debug] > │     let v21 : int64 = v9.ElapsedMilliseconds                                 │

02:05:59 #1764 [Debug] > │     let v22 : int64 = v21 - v10                                              │

02:05:59 #1765 [Debug] > │     let v23 : string = "A"                                                   │

02:05:59 #1766 [Debug] > │     let v24 : string = $"Test case {0 + 1}. {v23}. Time: {v22}  "            │

02:05:59 #1767 [Debug] > │     System.Console.WriteLine v24                                             │

02:05:59 #1768 [Debug] > │     let v25 : string = 6.0.ToString ()                                       │

02:05:59 #1769 [Debug] > │     let v26 : string = v20.ToString ()                                       │

02:05:59 #1770 [Debug] > │     let v27 : string = 2.0.ToString ()                                       │

02:05:59 #1771 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #1772 [Debug] > │     let v28 : string = $"Solution: {v27}  "                                  │

02:05:59 #1773 [Debug] > │     System.Console.WriteLine v28                                             │

02:05:59 #1774 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #1775 [Debug] > │     v6 ()                                                                    │

02:05:59 #1776 [Debug] > │     #else                                                                    │

02:05:59 #1777 [Debug] > │     v7 ()                                                                    │

02:05:59 #1778 [Debug] > │     #endif                                                                   │

02:05:59 #1779 [Debug] > │     let v29 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:05:59 #1780 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:59 #1781 [Debug] > │     let v30 : System.Diagnostics.Stopwatch = v29 ()                          │

02:05:59 #1782 [Debug] > │     v30.Start ()                                                             │

02:05:59 #1783 [Debug] > │     let v31 : int64 = v30.ElapsedMilliseconds                                │

02:05:59 #1784 [Debug] > │     let v32 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:59 #1785 [Debug] > │     let v33 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:59 #1786 [Debug] > │     while method1(v33) do                                                    │

02:05:59 #1787 [Debug] > │         let v35 : int32 = v33.l0                                             │

02:05:59 #1788 [Debug] > │         v32.[int v35] <- v35                                                 │

02:05:59 #1789 [Debug] > │         let v36 : int32 = v35 + 1                                            │

02:05:59 #1790 [Debug] > │         v33.l0 <- v36                                                        │

02:05:59 #1791 [Debug] > │         ()                                                                   │

02:05:59 #1792 [Debug] > │     let v37 : (int32 -> float) = closure4()                                  │

02:05:59 #1793 [Debug] > │     let v38 : (float []) = v32 |> Array.Parallel.map v37                     │

02:05:59 #1794 [Debug] > │     let v39 : int32 = v38.Length                                             │

02:05:59 #1795 [Debug] > │     let v40 : int32 = v39 - 1                                                │

02:05:59 #1796 [Debug] > │     let v41 : float = v38.[int v40]                                          │

02:05:59 #1797 [Debug] > │     let v42 : int64 = v30.ElapsedMilliseconds                                │

02:05:59 #1798 [Debug] > │     let v43 : int64 = v42 - v31                                              │

02:05:59 #1799 [Debug] > │     let v44 : string = $"Test case {0 + 1}. {v23}. Time: {v43}  "            │

02:05:59 #1800 [Debug] > │     System.Console.WriteLine v44                                             │

02:05:59 #1801 [Debug] > │     let v45 : string = 3.0.ToString ()                                       │

02:05:59 #1802 [Debug] > │     let v46 : string = v41.ToString ()                                       │

02:05:59 #1803 [Debug] > │     let v47 : string = 0.0.ToString ()                                       │

02:05:59 #1804 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #1805 [Debug] > │     let v48 : string = $"Solution: {v47}  "                                  │

02:05:59 #1806 [Debug] > │     System.Console.WriteLine v48                                             │

02:05:59 #1807 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #1808 [Debug] > │     v6 ()                                                                    │

02:05:59 #1809 [Debug] > │     #else                                                                    │

02:05:59 #1810 [Debug] > │     v7 ()                                                                    │

02:05:59 #1811 [Debug] > │     #endif                                                                   │

02:05:59 #1812 [Debug] > │     let v49 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:05:59 #1813 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:59 #1814 [Debug] > │     let v50 : System.Diagnostics.Stopwatch = v49 ()                          │

02:05:59 #1815 [Debug] > │     v50.Start ()                                                             │

02:05:59 #1816 [Debug] > │     let v51 : int64 = v50.ElapsedMilliseconds                                │

02:05:59 #1817 [Debug] > │     let v52 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:59 #1818 [Debug] > │     let v53 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:59 #1819 [Debug] > │     while method1(v53) do                                                    │

02:05:59 #1820 [Debug] > │         let v55 : int32 = v53.l0                                             │

02:05:59 #1821 [Debug] > │         v52.[int v55] <- v55                                                 │

02:05:59 #1822 [Debug] > │         let v56 : int32 = v55 + 1                                            │

02:05:59 #1823 [Debug] > │         v53.l0 <- v56                                                        │

02:05:59 #1824 [Debug] > │         ()                                                                   │

02:05:59 #1825 [Debug] > │     let v57 : (int32 -> float) = closure5()                                  │

02:05:59 #1826 [Debug] > │     let v58 : (float []) = v52 |> Array.Parallel.map v57                     │

02:05:59 #1827 [Debug] > │     let v59 : int32 = v58.Length                                             │

02:05:59 #1828 [Debug] > │     let v60 : int32 = v59 - 1                                                │

02:05:59 #1829 [Debug] > │     let v61 : float = v58.[int v60]                                          │

02:05:59 #1830 [Debug] > │     let v62 : int64 = v50.ElapsedMilliseconds                                │

02:05:59 #1831 [Debug] > │     let v63 : int64 = v62 - v51                                              │

02:05:59 #1832 [Debug] > │     let v64 : string = $"Test case {0 + 1}. {v23}. Time: {v63}  "            │

02:05:59 #1833 [Debug] > │     System.Console.WriteLine v64                                             │

02:05:59 #1834 [Debug] > │     let v65 : string = 1.0.ToString ()                                       │

02:05:59 #1835 [Debug] > │     let v66 : string = v61.ToString ()                                       │

02:05:59 #1836 [Debug] > │     let v67 : int64 = 1L                                                     │

02:05:59 #1837 [Debug] > │     let v68 : UH0 = UH0_1                                                    │

02:05:59 #1838 [Debug] > │     let v69 : UH0 = UH0_0(v67, v22, v68)                                     │

02:05:59 #1839 [Debug] > │     let v70 : (struct (int64 * int64) []) = method2(v69)                     │

02:05:59 #1840 [Debug] > │     let v71 : (struct (int64 * int64) -> int64) = closure6()                 │

02:05:59 #1841 [Debug] > │     let v72 : (struct (int64 * int64) []) = v70 |> Array.sortBy v71          │

02:05:59 #1842 [Debug] > │     let struct (v73 : int64, v74 : int64) = v72.[int 0]                      │

02:05:59 #1843 [Debug] > │     let v75 : string = $"%A{struct (v73, v74)}"                              │

02:05:59 #1844 [Debug] > │     let v76 : bool = v25 = v26                                               │

02:05:59 #1845 [Debug] > │     let v81 : US0 =                                                          │

02:05:59 #1846 [Debug] > │         if v76 then                                                          │

02:05:59 #1847 [Debug] > │             let v77 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:05:59 #1848 [Debug] > │             US0_1(v77)                                                       │

02:05:59 #1849 [Debug] > │         else                                                                 │

02:05:59 #1850 [Debug] > │             let v79 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:05:59 #1851 [Debug] > │             US0_1(v79)                                                       │

02:05:59 #1852 [Debug] > │     let v82 : int64 = 1L                                                     │

02:05:59 #1853 [Debug] > │     let v83 : UH0 = UH0_1                                                    │

02:05:59 #1854 [Debug] > │     let v84 : UH0 = UH0_0(v82, v43, v83)                                     │

02:05:59 #1855 [Debug] > │     let v85 : (struct (int64 * int64) []) = method2(v84)                     │

02:05:59 #1856 [Debug] > │     let v86 : (struct (int64 * int64) []) = v85 |> Array.sortBy v71          │

02:05:59 #1857 [Debug] > │     let struct (v87 : int64, v88 : int64) = v86.[int 0]                      │

02:05:59 #1858 [Debug] > │     let v89 : string = $"%A{struct (v87, v88)}"                              │

02:05:59 #1859 [Debug] > │     let v90 : bool = v45 = v46                                               │

02:05:59 #1860 [Debug] > │     let v95 : US0 =                                                          │

02:05:59 #1861 [Debug] > │         if v90 then                                                          │

02:05:59 #1862 [Debug] > │             let v91 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:05:59 #1863 [Debug] > │             US0_1(v91)                                                       │

02:05:59 #1864 [Debug] > │         else                                                                 │

02:05:59 #1865 [Debug] > │             let v93 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:05:59 #1866 [Debug] > │             US0_1(v93)                                                       │

02:05:59 #1867 [Debug] > │     let v96 : int64 = 1L                                                     │

02:05:59 #1868 [Debug] > │     let v97 : UH0 = UH0_1                                                    │

02:05:59 #1869 [Debug] > │     let v98 : UH0 = UH0_0(v96, v63, v97)                                     │

02:05:59 #1870 [Debug] > │     let v99 : (struct (int64 * int64) []) = method2(v98)                     │

02:05:59 #1871 [Debug] > │     let v100 : (struct (int64 * int64) []) = v99 |> Array.sortBy v71         │

02:05:59 #1872 [Debug] > │     let struct (v101 : int64, v102 : int64) = v100.[int 0]                   │

02:05:59 #1873 [Debug] > │     let v103 : string = $"%A{struct (v101, v102)}"                           │

02:05:59 #1874 [Debug] > │     let v104 : bool = v65 = v66                                              │

02:05:59 #1875 [Debug] > │     let v109 : US0 =                                                         │

02:05:59 #1876 [Debug] > │         if v104 then                                                         │

02:05:59 #1877 [Debug] > │             let v105 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:05:59 #1878 [Debug] > │             US0_1(v105)                                                      │

02:05:59 #1879 [Debug] > │         else                                                                 │

02:05:59 #1880 [Debug] > │             let v107 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:05:59 #1881 [Debug] > │             US0_1(v107)                                                      │

02:05:59 #1882 [Debug] > │     let v110 : UH1 = UH1_1                                                   │

02:05:59 #1883 [Debug] > │     let v111 : UH1 = UH1_0(v75, v110)                                        │

02:05:59 #1884 [Debug] > │     let v112 : UH1 = UH1_0(v26, v111)                                        │

02:05:59 #1885 [Debug] > │     let v113 : UH1 = UH1_0(v25, v112)                                        │

02:05:59 #1886 [Debug] > │     let v114 : UH1 = UH1_0(v4, v113)                                         │

02:05:59 #1887 [Debug] > │     let v115 : (string []) = method5(v114)                                   │

02:05:59 #1888 [Debug] > │     let v116 : UH1 = UH1_1                                                   │

02:05:59 #1889 [Debug] > │     let v117 : UH1 = UH1_0(v89, v116)                                        │

02:05:59 #1890 [Debug] > │     let v118 : UH1 = UH1_0(v46, v117)                                        │

02:05:59 #1891 [Debug] > │     let v119 : UH1 = UH1_0(v45, v118)                                        │

02:05:59 #1892 [Debug] > │     let v120 : UH1 = UH1_0(v27, v119)                                        │

02:05:59 #1893 [Debug] > │     let v121 : (string []) = method5(v120)                                   │

02:05:59 #1894 [Debug] > │     let v122 : UH1 = UH1_1                                                   │

02:05:59 #1895 [Debug] > │     let v123 : UH1 = UH1_0(v103, v122)                                       │

02:05:59 #1896 [Debug] > │     let v124 : UH1 = UH1_0(v66, v123)                                        │

02:05:59 #1897 [Debug] > │     let v125 : UH1 = UH1_0(v65, v124)                                        │

02:05:59 #1898 [Debug] > │     let v126 : UH1 = UH1_0(v47, v125)                                        │

02:05:59 #1899 [Debug] > │     let v127 : (string []) = method5(v126)                                   │

02:05:59 #1900 [Debug] > │     let v128 : string = "---"                                                │

02:05:59 #1901 [Debug] > │     let v129 : UH1 = UH1_1                                                   │

02:05:59 #1902 [Debug] > │     let v130 : UH1 = UH1_0(v128, v129)                                       │

02:05:59 #1903 [Debug] > │     let v131 : UH1 = UH1_0(v128, v130)                                       │

02:05:59 #1904 [Debug] > │     let v132 : UH1 = UH1_0(v128, v131)                                       │

02:05:59 #1905 [Debug] > │     let v133 : UH1 = UH1_0(v128, v132)                                       │

02:05:59 #1906 [Debug] > │     let v134 : (string []) = method5(v133)                                   │

02:05:59 #1907 [Debug] > │     let v135 : string = "Input"                                              │

02:05:59 #1908 [Debug] > │     let v136 : string = "Expected"                                           │

02:05:59 #1909 [Debug] > │     let v137 : string = "Result"                                             │

02:05:59 #1910 [Debug] > │     let v138 : string = "Best"                                               │

02:05:59 #1911 [Debug] > │     let v139 : UH1 = UH1_1                                                   │

02:05:59 #1912 [Debug] > │     let v140 : UH1 = UH1_0(v138, v139)                                       │

02:05:59 #1913 [Debug] > │     let v141 : UH1 = UH1_0(v137, v140)                                       │

02:05:59 #1914 [Debug] > │     let v142 : UH1 = UH1_0(v136, v141)                                       │

02:05:59 #1915 [Debug] > │     let v143 : UH1 = UH1_0(v135, v142)                                       │

02:05:59 #1916 [Debug] > │     let v144 : (string []) = method5(v143)                                   │

02:05:59 #1917 [Debug] > │     let v145 : UH2 = UH2_1                                                   │

02:05:59 #1918 [Debug] > │     let v146 : UH2 = UH2_0(v115, v145)                                       │

02:05:59 #1919 [Debug] > │     let v147 : UH2 = UH2_0(v121, v146)                                       │

02:05:59 #1920 [Debug] > │     let v148 : UH2 = UH2_0(v127, v147)                                       │

02:05:59 #1921 [Debug] > │     let v149 : UH2 = UH2_0(v134, v148)                                       │

02:05:59 #1922 [Debug] > │     let v150 : UH2 = UH2_0(v144, v149)                                       │

02:05:59 #1923 [Debug] > │     let v151 : ((string []) []) = method8(v150)                              │

02:05:59 #1924 [Debug] > │     let v152 : ((string []) []) = v151 |> Array.transpose                    │

02:05:59 #1925 [Debug] > │     let v153 : int32 = v152.Length                                           │

02:05:59 #1926 [Debug] > │     let v154 : (int64 []) = Array.zeroCreate<int64> (v153)                   │

02:05:59 #1927 [Debug] > │     let v155 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:59 #1928 [Debug] > │     while method11(v153, v155) do                                            │

02:05:59 #1929 [Debug] > │         let v157 : int32 = v155.l0                                           │

02:05:59 #1930 [Debug] > │         let v158 : (string []) = v152.[int v157]                             │

02:05:59 #1931 [Debug] > │         let v159 : int32 = v158.Length                                       │

02:05:59 #1932 [Debug] > │         let v160 : (int64 []) = Array.zeroCreate<int64> (v159)               │

02:05:59 #1933 [Debug] > │         let v161 : Mut0 = {l0 = 0} : Mut0                                    │

02:05:59 #1934 [Debug] > │         while method11(v159, v161) do                                        │

02:05:59 #1935 [Debug] > │             let v163 : int32 = v161.l0                                       │

02:05:59 #1936 [Debug] > │             let v164 : string = v158.[int v163]                              │

02:05:59 #1937 [Debug] > │             let v165 : int64 = System.Convert.ToInt64 v164.Length            │

02:05:59 #1938 [Debug] > │             v160.[int v163] <- v165                                          │

02:05:59 #1939 [Debug] > │             let v166 : int32 = v163 + 1                                      │

02:05:59 #1940 [Debug] > │             v161.l0 <- v166                                                  │

02:05:59 #1941 [Debug] > │             ()                                                               │

02:05:59 #1942 [Debug] > │         let v167 : (int64 []) = v160 |> Array.sortDescending                 │

02:05:59 #1943 [Debug] > │         let v168 : int64 option = v167 |> Array.tryItem 0                    │

02:05:59 #1944 [Debug] > │         let v169 : (int64 -> US1) = closure7()                               │

02:05:59 #1945 [Debug] > │         let v170 : US1 = US1_0                                               │

02:05:59 #1946 [Debug] > │         let v171 : US1 = v168 |> Option.map v169 |> Option.defaultValue v170 │

02:05:59 #1947 [Debug] > │         let v174 : int64 =                                                   │

02:05:59 #1948 [Debug] > │             match v171 with                                                  │

02:05:59 #1949 [Debug] > │             | US1_0 -> (* None *)                                            │

02:05:59 #1950 [Debug] > │                 0L                                                           │

02:05:59 #1951 [Debug] > │             | US1_1(v172) -> (* Some *)                                      │

02:05:59 #1952 [Debug] > │                 v172                                                         │

02:05:59 #1953 [Debug] > │         v154.[int v157] <- v174                                              │

02:05:59 #1954 [Debug] > │         let v175 : int32 = v157 + 1                                          │

02:05:59 #1955 [Debug] > │         v155.l0 <- v175                                                      │

02:05:59 #1956 [Debug] > │         ()                                                                   │

02:05:59 #1957 [Debug] > │     let v176 : int32 = v154.Length                                           │

02:05:59 #1958 [Debug] > │     let v177 : UH3 = UH3_1                                                   │

02:05:59 #1959 [Debug] > │     let v178 : Mut1 = {l0 = 0; l1 = v177; l2 = 0} : Mut1                     │

02:05:59 #1960 [Debug] > │     while method12(v176, v178) do                                            │

02:05:59 #1961 [Debug] > │         let v180 : int32 = v178.l0                                           │

02:05:59 #1962 [Debug] > │         let struct (v181 : UH3, v182 : int32) = v178.l1, v178.l2             │

02:05:59 #1963 [Debug] > │         let v183 : int64 = v154.[int v180]                                   │

02:05:59 #1964 [Debug] > │         let v184 : int32 = v182 + 1                                          │

02:05:59 #1965 [Debug] > │         let v185 : int32 = v180 + 1                                          │

02:05:59 #1966 [Debug] > │         let v186 : UH3 = UH3_0(v182, v183, v181)                             │

02:05:59 #1967 [Debug] > │         v178.l0 <- v185                                                      │

02:05:59 #1968 [Debug] > │         v178.l1 <- v186                                                      │

02:05:59 #1969 [Debug] > │         v178.l2 <- v184                                                      │

02:05:59 #1970 [Debug] > │         ()                                                                   │

02:05:59 #1971 [Debug] > │     let struct (v187 : UH3, v188 : int32) = v178.l1, v178.l2                 │

02:05:59 #1972 [Debug] > │     let v189 : UH3 = UH3_1                                                   │

02:05:59 #1973 [Debug] > │     let v190 : UH3 = method13(v187, v189)                                    │

02:05:59 #1974 [Debug] > │     let v191 : (struct (int32 * int64) []) = method14(v190)                  │

02:05:59 #1975 [Debug] > │     let v192 : Map<int32, int64> = v191 |> Array.map (fun (struct (a, b)) -> │

02:05:59 #1976 [Debug] > │ a, b) |> Map.ofArray                                                         │

02:05:59 #1977 [Debug] > │     let v193 : int64 = v192.[3]                                              │

02:05:59 #1978 [Debug] > │     let v194 : int32 = int32 v193                                            │

02:05:59 #1979 [Debug] > │     let v195 : string = v75.PadRight v194                                    │

02:05:59 #1980 [Debug] > │     let v196 : int64 = v192.[2]                                              │

02:05:59 #1981 [Debug] > │     let v197 : int32 = int32 v196                                            │

02:05:59 #1982 [Debug] > │     let v198 : string = v26.PadRight v197                                    │

02:05:59 #1983 [Debug] > │     let v199 : int64 = v192.[1]                                              │

02:05:59 #1984 [Debug] > │     let v200 : int32 = int32 v199                                            │

02:05:59 #1985 [Debug] > │     let v201 : string = v25.PadRight v200                                    │

02:05:59 #1986 [Debug] > │     let v202 : int64 = v192.[0]                                              │

02:05:59 #1987 [Debug] > │     let v203 : int32 = int32 v202                                            │

02:05:59 #1988 [Debug] > │     let v204 : string = v4.PadRight v203                                     │

02:05:59 #1989 [Debug] > │     let v205 : UH1 = UH1_1                                                   │

02:05:59 #1990 [Debug] > │     let v206 : UH1 = UH1_0(v195, v205)                                       │

02:05:59 #1991 [Debug] > │     let v207 : UH1 = UH1_0(v198, v206)                                       │

02:05:59 #1992 [Debug] > │     let v208 : UH1 = UH1_0(v201, v207)                                       │

02:05:59 #1993 [Debug] > │     let v209 : UH1 = UH1_0(v204, v208)                                       │

02:05:59 #1994 [Debug] > │     let v210 : (string []) = method5(v209)                                   │

02:05:59 #1995 [Debug] > │     let v211 : int64 = v192.[3]                                              │

02:05:59 #1996 [Debug] > │     let v212 : int32 = int32 v211                                            │

02:05:59 #1997 [Debug] > │     let v213 : string = v89.PadRight v212                                    │

02:05:59 #1998 [Debug] > │     let v214 : int64 = v192.[2]                                              │

02:05:59 #1999 [Debug] > │     let v215 : int32 = int32 v214                                            │

02:05:59 #2000 [Debug] > │     let v216 : string = v46.PadRight v215                                    │

02:05:59 #2001 [Debug] > │     let v217 : int64 = v192.[1]                                              │

02:05:59 #2002 [Debug] > │     let v218 : int32 = int32 v217                                            │

02:05:59 #2003 [Debug] > │     let v219 : string = v45.PadRight v218                                    │

02:05:59 #2004 [Debug] > │     let v220 : int64 = v192.[0]                                              │

02:05:59 #2005 [Debug] > │     let v221 : int32 = int32 v220                                            │

02:05:59 #2006 [Debug] > │     let v222 : string = v27.PadRight v221                                    │

02:05:59 #2007 [Debug] > │     let v223 : UH1 = UH1_1                                                   │

02:05:59 #2008 [Debug] > │     let v224 : UH1 = UH1_0(v213, v223)                                       │

02:05:59 #2009 [Debug] > │     let v225 : UH1 = UH1_0(v216, v224)                                       │

02:05:59 #2010 [Debug] > │     let v226 : UH1 = UH1_0(v219, v225)                                       │

02:05:59 #2011 [Debug] > │     let v227 : UH1 = UH1_0(v222, v226)                                       │

02:05:59 #2012 [Debug] > │     let v228 : (string []) = method5(v227)                                   │

02:05:59 #2013 [Debug] > │     let v229 : int64 = v192.[3]                                              │

02:05:59 #2014 [Debug] > │     let v230 : int32 = int32 v229                                            │

02:05:59 #2015 [Debug] > │     let v231 : string = v103.PadRight v230                                   │

02:05:59 #2016 [Debug] > │     let v232 : int64 = v192.[2]                                              │

02:05:59 #2017 [Debug] > │     let v233 : int32 = int32 v232                                            │

02:05:59 #2018 [Debug] > │     let v234 : string = v66.PadRight v233                                    │

02:05:59 #2019 [Debug] > │     let v235 : int64 = v192.[1]                                              │

02:05:59 #2020 [Debug] > │     let v236 : int32 = int32 v235                                            │

02:05:59 #2021 [Debug] > │     let v237 : string = v65.PadRight v236                                    │

02:05:59 #2022 [Debug] > │     let v238 : int64 = v192.[0]                                              │

02:05:59 #2023 [Debug] > │     let v239 : int32 = int32 v238                                            │

02:05:59 #2024 [Debug] > │     let v240 : string = v47.PadRight v239                                    │

02:05:59 #2025 [Debug] > │     let v241 : UH1 = UH1_1                                                   │

02:05:59 #2026 [Debug] > │     let v242 : UH1 = UH1_0(v231, v241)                                       │

02:05:59 #2027 [Debug] > │     let v243 : UH1 = UH1_0(v234, v242)                                       │

02:05:59 #2028 [Debug] > │     let v244 : UH1 = UH1_0(v237, v243)                                       │

02:05:59 #2029 [Debug] > │     let v245 : UH1 = UH1_0(v240, v244)                                       │

02:05:59 #2030 [Debug] > │     let v246 : (string []) = method5(v245)                                   │

02:05:59 #2031 [Debug] > │     let v247 : int64 = v192.[3]                                              │

02:05:59 #2032 [Debug] > │     let v248 : int32 = int32 v247                                            │

02:05:59 #2033 [Debug] > │     let v249 : string = v128.PadRight v248                                   │

02:05:59 #2034 [Debug] > │     let v250 : int64 = v192.[2]                                              │

02:05:59 #2035 [Debug] > │     let v251 : int32 = int32 v250                                            │

02:05:59 #2036 [Debug] > │     let v252 : string = v128.PadRight v251                                   │

02:05:59 #2037 [Debug] > │     let v253 : int64 = v192.[1]                                              │

02:05:59 #2038 [Debug] > │     let v254 : int32 = int32 v253                                            │

02:05:59 #2039 [Debug] > │     let v255 : string = v128.PadRight v254                                   │

02:05:59 #2040 [Debug] > │     let v256 : int64 = v192.[0]                                              │

02:05:59 #2041 [Debug] > │     let v257 : int32 = int32 v256                                            │

02:05:59 #2042 [Debug] > │     let v258 : string = v128.PadRight v257                                   │

02:05:59 #2043 [Debug] > │     let v259 : UH1 = UH1_1                                                   │

02:05:59 #2044 [Debug] > │     let v260 : UH1 = UH1_0(v249, v259)                                       │

02:05:59 #2045 [Debug] > │     let v261 : UH1 = UH1_0(v252, v260)                                       │

02:05:59 #2046 [Debug] > │     let v262 : UH1 = UH1_0(v255, v261)                                       │

02:05:59 #2047 [Debug] > │     let v263 : UH1 = UH1_0(v258, v262)                                       │

02:05:59 #2048 [Debug] > │     let v264 : (string []) = method5(v263)                                   │

02:05:59 #2049 [Debug] > │     let v265 : int64 = v192.[3]                                              │

02:05:59 #2050 [Debug] > │     let v266 : int32 = int32 v265                                            │

02:05:59 #2051 [Debug] > │     let v267 : string = v138.PadRight v266                                   │

02:05:59 #2052 [Debug] > │     let v268 : int64 = v192.[2]                                              │

02:05:59 #2053 [Debug] > │     let v269 : int32 = int32 v268                                            │

02:05:59 #2054 [Debug] > │     let v270 : string = v137.PadRight v269                                   │

02:05:59 #2055 [Debug] > │     let v271 : int64 = v192.[1]                                              │

02:05:59 #2056 [Debug] > │     let v272 : int32 = int32 v271                                            │

02:05:59 #2057 [Debug] > │     let v273 : string = v136.PadRight v272                                   │

02:05:59 #2058 [Debug] > │     let v274 : int64 = v192.[0]                                              │

02:05:59 #2059 [Debug] > │     let v275 : int32 = int32 v274                                            │

02:05:59 #2060 [Debug] > │     let v276 : string = v135.PadRight v275                                   │

02:05:59 #2061 [Debug] > │     let v277 : UH1 = UH1_1                                                   │

02:05:59 #2062 [Debug] > │     let v278 : UH1 = UH1_0(v267, v277)                                       │

02:05:59 #2063 [Debug] > │     let v279 : UH1 = UH1_0(v270, v278)                                       │

02:05:59 #2064 [Debug] > │     let v280 : UH1 = UH1_0(v273, v279)                                       │

02:05:59 #2065 [Debug] > │     let v281 : UH1 = UH1_0(v276, v280)                                       │

02:05:59 #2066 [Debug] > │     let v282 : (string []) = method5(v281)                                   │

02:05:59 #2067 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2068 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2069 [Debug] > │     let v283 : (unit -> unit) = closure8()                                   │

02:05:59 #2070 [Debug] > │     v283 ()                                                                  │

02:05:59 #2071 [Debug] > │     #else                                                                    │

02:05:59 #2072 [Debug] > │     let v284 : (unit -> unit) = closure9()                                   │

02:05:59 #2073 [Debug] > │     v284 ()                                                                  │

02:05:59 #2074 [Debug] > │     #endif                                                                   │

02:05:59 #2075 [Debug] > │     let v285 : string = "\t| "                                               │

02:05:59 #2076 [Debug] > │     let v286 : string = System.String.Join (v285, v282)                      │

02:05:59 #2077 [Debug] > │     System.Console.WriteLine v286                                            │

02:05:59 #2078 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2079 [Debug] > │     v283 ()                                                                  │

02:05:59 #2080 [Debug] > │     #else                                                                    │

02:05:59 #2081 [Debug] > │     v284 ()                                                                  │

02:05:59 #2082 [Debug] > │     #endif                                                                   │

02:05:59 #2083 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2084 [Debug] > │     v283 ()                                                                  │

02:05:59 #2085 [Debug] > │     #else                                                                    │

02:05:59 #2086 [Debug] > │     v284 ()                                                                  │

02:05:59 #2087 [Debug] > │     #endif                                                                   │

02:05:59 #2088 [Debug] > │     let v287 : string = System.String.Join (v285, v264)                      │

02:05:59 #2089 [Debug] > │     System.Console.WriteLine v287                                            │

02:05:59 #2090 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2091 [Debug] > │     v283 ()                                                                  │

02:05:59 #2092 [Debug] > │     #else                                                                    │

02:05:59 #2093 [Debug] > │     v284 ()                                                                  │

02:05:59 #2094 [Debug] > │     #endif                                                                   │

02:05:59 #2095 [Debug] > │     match v109 with                                                          │

02:05:59 #2096 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:59 #2097 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:59 #2098 [Debug] > │         v283 ()                                                              │

02:05:59 #2099 [Debug] > │         #else                                                                │

02:05:59 #2100 [Debug] > │         v284 ()                                                              │

02:05:59 #2101 [Debug] > │         #endif                                                               │

02:05:59 #2102 [Debug] > │         ()                                                                   │

02:05:59 #2103 [Debug] > │     | US0_1(v288) -> (* Some *)                                              │

02:05:59 #2104 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:59 #2105 [Debug] > │         let v289 : (unit -> unit) = closure10()                              │

02:05:59 #2106 [Debug] > │         v289 ()                                                              │

02:05:59 #2107 [Debug] > │         #else                                                                │

02:05:59 #2108 [Debug] > │         let v290 : (unit -> unit) = closure11(v288)                          │

02:05:59 #2109 [Debug] > │         v290 ()                                                              │

02:05:59 #2110 [Debug] > │         #endif                                                               │

02:05:59 #2111 [Debug] > │         ()                                                                   │

02:05:59 #2112 [Debug] > │     let v291 : string = System.String.Join (v285, v246)                      │

02:05:59 #2113 [Debug] > │     System.Console.WriteLine v291                                            │

02:05:59 #2114 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2115 [Debug] > │     v283 ()                                                                  │

02:05:59 #2116 [Debug] > │     #else                                                                    │

02:05:59 #2117 [Debug] > │     v284 ()                                                                  │

02:05:59 #2118 [Debug] > │     #endif                                                                   │

02:05:59 #2119 [Debug] > │     match v95 with                                                           │

02:05:59 #2120 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:59 #2121 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:59 #2122 [Debug] > │         v283 ()                                                              │

02:05:59 #2123 [Debug] > │         #else                                                                │

02:05:59 #2124 [Debug] > │         v284 ()                                                              │

02:05:59 #2125 [Debug] > │         #endif                                                               │

02:05:59 #2126 [Debug] > │         ()                                                                   │

02:05:59 #2127 [Debug] > │     | US0_1(v292) -> (* Some *)                                              │

02:05:59 #2128 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:59 #2129 [Debug] > │         let v293 : (unit -> unit) = closure10()                              │

02:05:59 #2130 [Debug] > │         v293 ()                                                              │

02:05:59 #2131 [Debug] > │         #else                                                                │

02:05:59 #2132 [Debug] > │         let v294 : (unit -> unit) = closure11(v292)                          │

02:05:59 #2133 [Debug] > │         v294 ()                                                              │

02:05:59 #2134 [Debug] > │         #endif                                                               │

02:05:59 #2135 [Debug] > │         ()                                                                   │

02:05:59 #2136 [Debug] > │     let v295 : string = System.String.Join (v285, v228)                      │

02:05:59 #2137 [Debug] > │     System.Console.WriteLine v295                                            │

02:05:59 #2138 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2139 [Debug] > │     v283 ()                                                                  │

02:05:59 #2140 [Debug] > │     #else                                                                    │

02:05:59 #2141 [Debug] > │     v284 ()                                                                  │

02:05:59 #2142 [Debug] > │     #endif                                                                   │

02:05:59 #2143 [Debug] > │     match v81 with                                                           │

02:05:59 #2144 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:05:59 #2145 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:59 #2146 [Debug] > │         v283 ()                                                              │

02:05:59 #2147 [Debug] > │         #else                                                                │

02:05:59 #2148 [Debug] > │         v284 ()                                                              │

02:05:59 #2149 [Debug] > │         #endif                                                               │

02:05:59 #2150 [Debug] > │         ()                                                                   │

02:05:59 #2151 [Debug] > │     | US0_1(v296) -> (* Some *)                                              │

02:05:59 #2152 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:05:59 #2153 [Debug] > │         let v297 : (unit -> unit) = closure10()                              │

02:05:59 #2154 [Debug] > │         v297 ()                                                              │

02:05:59 #2155 [Debug] > │         #else                                                                │

02:05:59 #2156 [Debug] > │         let v298 : (unit -> unit) = closure11(v296)                          │

02:05:59 #2157 [Debug] > │         v298 ()                                                              │

02:05:59 #2158 [Debug] > │         #endif                                                               │

02:05:59 #2159 [Debug] > │         ()                                                                   │

02:05:59 #2160 [Debug] > │     let v299 : string = System.String.Join (v285, v210)                      │

02:05:59 #2161 [Debug] > │     System.Console.WriteLine v299                                            │

02:05:59 #2162 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2163 [Debug] > │     v283 ()                                                                  │

02:05:59 #2164 [Debug] > │     #else                                                                    │

02:05:59 #2165 [Debug] > │     v284 ()                                                                  │

02:05:59 #2166 [Debug] > │     #endif                                                                   │

02:05:59 #2167 [Debug] > │     let v300 : (int64 -> float) = float                                      │

02:05:59 #2168 [Debug] > │     let v301 : float = v300 v22                                              │

02:05:59 #2169 [Debug] > │     let v302 : UH4 = UH4_1                                                   │

02:05:59 #2170 [Debug] > │     let v303 : UH4 = UH4_0(v301, v302)                                       │

02:05:59 #2171 [Debug] > │     let v304 : (float []) = method17(v303)                                   │

02:05:59 #2172 [Debug] > │     let v305 : (int64 -> float) = float                                      │

02:05:59 #2173 [Debug] > │     let v306 : float = v305 v43                                              │

02:05:59 #2174 [Debug] > │     let v307 : UH4 = UH4_1                                                   │

02:05:59 #2175 [Debug] > │     let v308 : UH4 = UH4_0(v306, v307)                                       │

02:05:59 #2176 [Debug] > │     let v309 : (float []) = method17(v308)                                   │

02:05:59 #2177 [Debug] > │     let v310 : (int64 -> float) = float                                      │

02:05:59 #2178 [Debug] > │     let v311 : float = v310 v63                                              │

02:05:59 #2179 [Debug] > │     let v312 : UH4 = UH4_1                                                   │

02:05:59 #2180 [Debug] > │     let v313 : UH4 = UH4_0(v311, v312)                                       │

02:05:59 #2181 [Debug] > │     let v314 : (float []) = method17(v313)                                   │

02:05:59 #2182 [Debug] > │     let v315 : UH5 = UH5_1                                                   │

02:05:59 #2183 [Debug] > │     let v316 : UH5 = UH5_0(v304, v315)                                       │

02:05:59 #2184 [Debug] > │     let v317 : UH5 = UH5_0(v309, v316)                                       │

02:05:59 #2185 [Debug] > │     let v318 : UH5 = UH5_0(v314, v317)                                       │

02:05:59 #2186 [Debug] > │     let v319 : ((float []) []) = method20(v318)                              │

02:05:59 #2187 [Debug] > │     let v320 : ((float []) []) = v319 |> Array.transpose                     │

02:05:59 #2188 [Debug] > │     let v321 : int32 = v320.Length                                           │

02:05:59 #2189 [Debug] > │     let v322 : (float []) = Array.zeroCreate<float> (v321)                   │

02:05:59 #2190 [Debug] > │     let v323 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:59 #2191 [Debug] > │     while method11(v321, v323) do                                            │

02:05:59 #2192 [Debug] > │         let v325 : int32 = v323.l0                                           │

02:05:59 #2193 [Debug] > │         let v326 : (float []) = v320.[int v325]                              │

02:05:59 #2194 [Debug] > │         let v327 : float = v326 |> Array.average                             │

02:05:59 #2195 [Debug] > │         v322.[int v325] <- v327                                              │

02:05:59 #2196 [Debug] > │         let v328 : int32 = v325 + 1                                          │

02:05:59 #2197 [Debug] > │         v323.l0 <- v328                                                      │

02:05:59 #2198 [Debug] > │         ()                                                                   │

02:05:59 #2199 [Debug] > │     let v329 : (float -> int64) = int64                                      │

02:05:59 #2200 [Debug] > │     let v330 : int32 = v322.Length                                           │

02:05:59 #2201 [Debug] > │     let v331 : (int64 []) = Array.zeroCreate<int64> (v330)                   │

02:05:59 #2202 [Debug] > │     let v332 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:59 #2203 [Debug] > │     while method11(v330, v332) do                                            │

02:05:59 #2204 [Debug] > │         let v334 : int32 = v332.l0                                           │

02:05:59 #2205 [Debug] > │         let v335 : float = v322.[int v334]                                   │

02:05:59 #2206 [Debug] > │         let v336 : int64 = v329 v335                                         │

02:05:59 #2207 [Debug] > │         v331.[int v334] <- v336                                              │

02:05:59 #2208 [Debug] > │         let v337 : int32 = v334 + 1                                          │

02:05:59 #2209 [Debug] > │         v332.l0 <- v337                                                      │

02:05:59 #2210 [Debug] > │         ()                                                                   │

02:05:59 #2211 [Debug] > │     let v338 : int32 = v331.Length                                           │

02:05:59 #2212 [Debug] > │     let v339 : UH3 = UH3_1                                                   │

02:05:59 #2213 [Debug] > │     let v340 : Mut1 = {l0 = 0; l1 = v339; l2 = 0} : Mut1                     │

02:05:59 #2214 [Debug] > │     while method12(v338, v340) do                                            │

02:05:59 #2215 [Debug] > │         let v342 : int32 = v340.l0                                           │

02:05:59 #2216 [Debug] > │         let struct (v343 : UH3, v344 : int32) = v340.l1, v340.l2             │

02:05:59 #2217 [Debug] > │         let v345 : int64 = v331.[int v342]                                   │

02:05:59 #2218 [Debug] > │         let v346 : int32 = v344 + 1                                          │

02:05:59 #2219 [Debug] > │         let v347 : int32 = v342 + 1                                          │

02:05:59 #2220 [Debug] > │         let v348 : UH3 = UH3_0(v344, v345, v343)                             │

02:05:59 #2221 [Debug] > │         v340.l0 <- v347                                                      │

02:05:59 #2222 [Debug] > │         v340.l1 <- v348                                                      │

02:05:59 #2223 [Debug] > │         v340.l2 <- v346                                                      │

02:05:59 #2224 [Debug] > │         ()                                                                   │

02:05:59 #2225 [Debug] > │     let struct (v349 : UH3, v350 : int32) = v340.l1, v340.l2                 │

02:05:59 #2226 [Debug] > │     let v351 : UH3 = UH3_1                                                   │

02:05:59 #2227 [Debug] > │     let v352 : UH3 = method13(v349, v351)                                    │

02:05:59 #2228 [Debug] > │     let v353 : (struct (int32 * int64) []) = method14(v352)                  │

02:05:59 #2229 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2230 [Debug] > │     let v354 : string = "Average Ranking  "                                  │

02:05:59 #2231 [Debug] > │     System.Console.WriteLine v354                                            │

02:05:59 #2232 [Debug] > │     let v355 : (struct (int32 * int64) -> int64) = closure12()               │

02:05:59 #2233 [Debug] > │     let v356 : (struct (int32 * int64) []) = v353 |> Array.sortBy v355       │

02:05:59 #2234 [Debug] > │     let v357 : int32 = v356.Length                                           │

02:05:59 #2235 [Debug] > │     let v358 : Mut0 = {l0 = 0} : Mut0                                        │

02:05:59 #2236 [Debug] > │     while method11(v357, v358) do                                            │

02:05:59 #2237 [Debug] > │         let v360 : int32 = v358.l0                                           │

02:05:59 #2238 [Debug] > │         let struct (v361 : int32, v362 : int64) = v356.[int v360]            │

02:05:59 #2239 [Debug] > │         let v363 : string = $"Test case %d{v361 + 1}. Average Time: %A{v362} │

02:05:59 #2240 [Debug] > │ "                                                                            │

02:05:59 #2241 [Debug] > │         System.Console.WriteLine v363                                        │

02:05:59 #2242 [Debug] > │         let v364 : int32 = v360 + 1                                          │

02:05:59 #2243 [Debug] > │         v358.l0 <- v364                                                      │

02:05:59 #2244 [Debug] > │         ()                                                                   │

02:05:59 #2245 [Debug] > │     ()                                                                       │

02:05:59 #2246 [Debug] > │ and method0 () : unit =                                                      │

02:05:59 #2247 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:05:59 #2248 [Debug] > │     let v1 : string = nameof v0                                              │

02:05:59 #2249 [Debug] > │     let v2 : string = ""                                                     │

02:05:59 #2250 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2251 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2252 [Debug] > │     let v3 : string = $"Test: {v1}"                                          │

02:05:59 #2253 [Debug] > │     System.Console.WriteLine v3                                              │

02:05:59 #2254 [Debug] > │     let v4 : string = 5.0.ToString ()                                        │

02:05:59 #2255 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2256 [Debug] > │     let v5 : string = $"Solution: {v4}  "                                    │

02:05:59 #2257 [Debug] > │     System.Console.WriteLine v5                                              │

02:05:59 #2258 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2259 [Debug] > │     let v6 : (unit -> unit) = closure1()                                     │

02:05:59 #2260 [Debug] > │     v6 ()                                                                    │

02:05:59 #2261 [Debug] > │     #else                                                                    │

02:05:59 #2262 [Debug] > │     let v7 : (unit -> unit) = closure2()                                     │

02:05:59 #2263 [Debug] > │     v7 ()                                                                    │

02:05:59 #2264 [Debug] > │     #endif                                                                   │

02:05:59 #2265 [Debug] > │     let v8 : (unit -> System.Diagnostics.Stopwatch) =                        │

02:05:59 #2266 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:59 #2267 [Debug] > │     let v9 : System.Diagnostics.Stopwatch = v8 ()                            │

02:05:59 #2268 [Debug] > │     v9.Start ()                                                              │

02:05:59 #2269 [Debug] > │     let v10 : int64 = v9.ElapsedMilliseconds                                 │

02:05:59 #2270 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:59 #2271 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:59 #2272 [Debug] > │     while method1(v12) do                                                    │

02:05:59 #2273 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:05:59 #2274 [Debug] > │         v11.[int v14] <- v14                                                 │

02:05:59 #2275 [Debug] > │         let v15 : int32 = v14 + 1                                            │

02:05:59 #2276 [Debug] > │         v12.l0 <- v15                                                        │

02:05:59 #2277 [Debug] > │         ()                                                                   │

02:05:59 #2278 [Debug] > │     let v16 : (int32 -> float) = closure3()                                  │

02:05:59 #2279 [Debug] > │     let v17 : (float []) = v11 |> Array.Parallel.map v16                     │

02:05:59 #2280 [Debug] > │     let v18 : int32 = v17.Length                                             │

02:05:59 #2281 [Debug] > │     let v19 : int32 = v18 - 1                                                │

02:05:59 #2282 [Debug] > │     let v20 : float = v17.[int v19]                                          │

02:05:59 #2283 [Debug] > │     let v21 : int64 = v9.ElapsedMilliseconds                                 │

02:05:59 #2284 [Debug] > │     let v22 : int64 = v21 - v10                                              │

02:05:59 #2285 [Debug] > │     let v23 : string = "A"                                                   │

02:05:59 #2286 [Debug] > │     let v24 : string = $"Test case {0 + 1}. {v23}. Time: {v22}  "            │

02:05:59 #2287 [Debug] > │     System.Console.WriteLine v24                                             │

02:05:59 #2288 [Debug] > │     let v25 : string = 6.0.ToString ()                                       │

02:05:59 #2289 [Debug] > │     let v26 : string = v20.ToString ()                                       │

02:05:59 #2290 [Debug] > │     let v27 : string = 2.0.ToString ()                                       │

02:05:59 #2291 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2292 [Debug] > │     let v28 : string = $"Solution: {v27}  "                                  │

02:05:59 #2293 [Debug] > │     System.Console.WriteLine v28                                             │

02:05:59 #2294 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2295 [Debug] > │     v6 ()                                                                    │

02:05:59 #2296 [Debug] > │     #else                                                                    │

02:05:59 #2297 [Debug] > │     v7 ()                                                                    │

02:05:59 #2298 [Debug] > │     #endif                                                                   │

02:05:59 #2299 [Debug] > │     let v29 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:05:59 #2300 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:59 #2301 [Debug] > │     let v30 : System.Diagnostics.Stopwatch = v29 ()                          │

02:05:59 #2302 [Debug] > │     v30.Start ()                                                             │

02:05:59 #2303 [Debug] > │     let v31 : int64 = v30.ElapsedMilliseconds                                │

02:05:59 #2304 [Debug] > │     let v32 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:59 #2305 [Debug] > │     let v33 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:59 #2306 [Debug] > │     while method1(v33) do                                                    │

02:05:59 #2307 [Debug] > │         let v35 : int32 = v33.l0                                             │

02:05:59 #2308 [Debug] > │         v32.[int v35] <- v35                                                 │

02:05:59 #2309 [Debug] > │         let v36 : int32 = v35 + 1                                            │

02:05:59 #2310 [Debug] > │         v33.l0 <- v36                                                        │

02:05:59 #2311 [Debug] > │         ()                                                                   │

02:05:59 #2312 [Debug] > │     let v37 : (int32 -> float) = closure4()                                  │

02:05:59 #2313 [Debug] > │     let v38 : (float []) = v32 |> Array.Parallel.map v37                     │

02:05:59 #2314 [Debug] > │     let v39 : int32 = v38.Length                                             │

02:05:59 #2315 [Debug] > │     let v40 : int32 = v39 - 1                                                │

02:05:59 #2316 [Debug] > │     let v41 : float = v38.[int v40]                                          │

02:05:59 #2317 [Debug] > │     let v42 : int64 = v30.ElapsedMilliseconds                                │

02:05:59 #2318 [Debug] > │     let v43 : int64 = v42 - v31                                              │

02:05:59 #2319 [Debug] > │     let v44 : string = $"Test case {0 + 1}. {v23}. Time: {v43}  "            │

02:05:59 #2320 [Debug] > │     System.Console.WriteLine v44                                             │

02:05:59 #2321 [Debug] > │     let v45 : string = 3.0.ToString ()                                       │

02:05:59 #2322 [Debug] > │     let v46 : string = v41.ToString ()                                       │

02:05:59 #2323 [Debug] > │     let v47 : string = 0.0.ToString ()                                       │

02:05:59 #2324 [Debug] > │     System.Console.WriteLine v2                                              │

02:05:59 #2325 [Debug] > │     let v48 : string = $"Solution: {v47}  "                                  │

02:05:59 #2326 [Debug] > │     System.Console.WriteLine v48                                             │

02:05:59 #2327 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:05:59 #2328 [Debug] > │     v6 ()                                                                    │

02:05:59 #2329 [Debug] > │     #else                                                                    │

02:05:59 #2330 [Debug] > │     v7 ()                                                                    │

02:05:59 #2331 [Debug] > │     #endif                                                                   │

02:05:59 #2332 [Debug] > │     let v49 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:05:59 #2333 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:05:59 #2334 [Debug] > │     let v50 : System.Diagnostics.Stopwatch = v49 ()                          │

02:05:59 #2335 [Debug] > │     v50.Start ()                                                             │

02:05:59 #2336 [Debug] > │     let v51 : int64 = v50.ElapsedMilliseconds                                │

02:05:59 #2337 [Debug] > │     let v52 : (int32 []) = Array.zeroCreate<int32> (2000001)                 │

02:05:59 #2338 [Debug] > │     let v53 : Mut0 = {l0 = 0} : Mut0                                         │

02:05:59 #2339 [Debug] > │     while method1(v53) do                                                    │

02:05:59 #2340 [Debug] > │         let v55 : int32 = v53.l0                                             │

02:05:59 #2341 [Debug] > │         v52.[int v55] <- v55                                                 │

02:05:59 #2342 [Debug] > │         let v56 : int32 = v55 + 1                                            │

02:05:59 #2343 [Debug] > │         v53.l0 <- v56                                                        │

02:05:59 #2344 [Debug] > │         ()                                                                   │

02:05:59 #2345 [Debug] > │     let v57 : (int32 -> float) = closure5()                                  │

02:05:59 #2346 [Debug] > │     let v58 : (float []) = v52 |> Array.Parallel.map v57                     │

02:05:59 #2347 [Debug] > │     let v59 : int32 = v58.Length                                             │

02:05:59 #2348 [Debug] > │     let v60 : int32 = v59 - 1                                                │

02:05:59 #2349 [Debug] > │     let v61 : float = v58.[int v60]                                          │

02:05:59 #2350 [Debug] > │     let v62 : int64 = v50.ElapsedMilliseconds                                │

02:05:59 #2351 [Debug] > │     let v63 : int64 = v62 - v51                                              │

02:05:59 #2352 [Debug] > │     let v64 : string = $"Test case {0 + 1}. {v23}. Time: {v63}  "            │

02:05:59 #2353 [Debug] > │     System.Console.WriteLine v64                                             │

02:05:59 #2354 [Debug] > │     let v65 : string = 1.0.ToString ()                                       │

02:05:59 #2355 [Debug] > │     let v66 : string = v61.ToString ()                                       │

02:05:59 #2356 [Debug] > │     let v67 : int64 = 1L                                                     │

02:05:59 #2357 [Debug] > │     let v68 : UH0 = UH0_1                                                    │

02:05:59 #2358 [Debug] > │     let v69 : UH0 = UH0_0(v67, v22, v68)                                     │

02:05:59 #2359 [Debug] > │     let v70 : (struct (int64 * int64) []) = method2(v69)                     │

02:06:00 #2360 [Debug] > │     let v71 : (struct (int64 * int64) -> int64) = closure6()                 │

02:06:00 #2361 [Debug] > │     let v72 : (struct (int64 * int64) []) = v70 |> Array.sortBy v71          │

02:06:00 #2362 [Debug] > │     let struct (v73 : int64, v74 : int64) = v72.[int 0]                      │

02:06:00 #2363 [Debug] > │     let v75 : string = $"%A{struct (v73, v74)}"                              │

02:06:00 #2364 [Debug] > │     let v76 : bool = v25 = v26                                               │

02:06:00 #2365 [Debug] > │     let v81 : US0 =                                                          │

02:06:00 #2366 [Debug] > │         if v76 then                                                          │

02:06:00 #2367 [Debug] > │             let v77 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:06:00 #2368 [Debug] > │             US0_1(v77)                                                       │

02:06:00 #2369 [Debug] > │         else                                                                 │

02:06:00 #2370 [Debug] > │             let v79 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:06:00 #2371 [Debug] > │             US0_1(v79)                                                       │

02:06:00 #2372 [Debug] > │     let v82 : int64 = 1L                                                     │

02:06:00 #2373 [Debug] > │     let v83 : UH0 = UH0_1                                                    │

02:06:00 #2374 [Debug] > │     let v84 : UH0 = UH0_0(v82, v43, v83)                                     │

02:06:00 #2375 [Debug] > │     let v85 : (struct (int64 * int64) []) = method2(v84)                     │

02:06:00 #2376 [Debug] > │     let v86 : (struct (int64 * int64) []) = v85 |> Array.sortBy v71          │

02:06:00 #2377 [Debug] > │     let struct (v87 : int64, v88 : int64) = v86.[int 0]                      │

02:06:00 #2378 [Debug] > │     let v89 : string = $"%A{struct (v87, v88)}"                              │

02:06:00 #2379 [Debug] > │     let v90 : bool = v45 = v46                                               │

02:06:00 #2380 [Debug] > │     let v95 : US0 =                                                          │

02:06:00 #2381 [Debug] > │         if v90 then                                                          │

02:06:00 #2382 [Debug] > │             let v91 : System.ConsoleColor = System.ConsoleColor.DarkGreen    │

02:06:00 #2383 [Debug] > │             US0_1(v91)                                                       │

02:06:00 #2384 [Debug] > │         else                                                                 │

02:06:00 #2385 [Debug] > │             let v93 : System.ConsoleColor = System.ConsoleColor.DarkRed      │

02:06:00 #2386 [Debug] > │             US0_1(v93)                                                       │

02:06:00 #2387 [Debug] > │     let v96 : int64 = 1L                                                     │

02:06:00 #2388 [Debug] > │     let v97 : UH0 = UH0_1                                                    │

02:06:00 #2389 [Debug] > │     let v98 : UH0 = UH0_0(v96, v63, v97)                                     │

02:06:00 #2390 [Debug] > │     let v99 : (struct (int64 * int64) []) = method2(v98)                     │

02:06:00 #2391 [Debug] > │     let v100 : (struct (int64 * int64) []) = v99 |> Array.sortBy v71         │

02:06:00 #2392 [Debug] > │     let struct (v101 : int64, v102 : int64) = v100.[int 0]                   │

02:06:00 #2393 [Debug] > │     let v103 : string = $"%A{struct (v101, v102)}"                           │

02:06:00 #2394 [Debug] > │     let v104 : bool = v65 = v66                                              │

02:06:00 #2395 [Debug] > │     let v109 : US0 =                                                         │

02:06:00 #2396 [Debug] > │         if v104 then                                                         │

02:06:00 #2397 [Debug] > │             let v105 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:06:00 #2398 [Debug] > │             US0_1(v105)                                                      │

02:06:00 #2399 [Debug] > │         else                                                                 │

02:06:00 #2400 [Debug] > │             let v107 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:06:00 #2401 [Debug] > │             US0_1(v107)                                                      │

02:06:00 #2402 [Debug] > │     let v110 : UH1 = UH1_1                                                   │

02:06:00 #2403 [Debug] > │     let v111 : UH1 = UH1_0(v75, v110)                                        │

02:06:00 #2404 [Debug] > │     let v112 : UH1 = UH1_0(v26, v111)                                        │

02:06:00 #2405 [Debug] > │     let v113 : UH1 = UH1_0(v25, v112)                                        │

02:06:00 #2406 [Debug] > │     let v114 : UH1 = UH1_0(v4, v113)                                         │

02:06:00 #2407 [Debug] > │     let v115 : (string []) = method5(v114)                                   │

02:06:00 #2408 [Debug] > │     let v116 : UH1 = UH1_1                                                   │

02:06:00 #2409 [Debug] > │     let v117 : UH1 = UH1_0(v89, v116)                                        │

02:06:00 #2410 [Debug] > │     let v118 : UH1 = UH1_0(v46, v117)                                        │

02:06:00 #2411 [Debug] > │     let v119 : UH1 = UH1_0(v45, v118)                                        │

02:06:00 #2412 [Debug] > │     let v120 : UH1 = UH1_0(v27, v119)                                        │

02:06:00 #2413 [Debug] > │     let v121 : (string []) = method5(v120)                                   │

02:06:00 #2414 [Debug] > │     let v122 : UH1 = UH1_1                                                   │

02:06:00 #2415 [Debug] > │     let v123 : UH1 = UH1_0(v103, v122)                                       │

02:06:00 #2416 [Debug] > │     let v124 : UH1 = UH1_0(v66, v123)                                        │

02:06:00 #2417 [Debug] > │     let v125 : UH1 = UH1_0(v65, v124)                                        │

02:06:00 #2418 [Debug] > │     let v126 : UH1 = UH1_0(v47, v125)                                        │

02:06:00 #2419 [Debug] > │     let v127 : (string []) = method5(v126)                                   │

02:06:00 #2420 [Debug] > │     let v128 : string = "---"                                                │

02:06:00 #2421 [Debug] > │     let v129 : UH1 = UH1_1                                                   │

02:06:00 #2422 [Debug] > │     let v130 : UH1 = UH1_0(v128, v129)                                       │

02:06:00 #2423 [Debug] > │     let v131 : UH1 = UH1_0(v128, v130)                                       │

02:06:00 #2424 [Debug] > │     let v132 : UH1 = UH1_0(v128, v131)                                       │

02:06:00 #2425 [Debug] > │     let v133 : UH1 = UH1_0(v128, v132)                                       │

02:06:00 #2426 [Debug] > │     let v134 : (string []) = method5(v133)                                   │

02:06:00 #2427 [Debug] > │     let v135 : string = "Input"                                              │

02:06:00 #2428 [Debug] > │     let v136 : string = "Expected"                                           │

02:06:00 #2429 [Debug] > │     let v137 : string = "Result"                                             │

02:06:00 #2430 [Debug] > │     let v138 : string = "Best"                                               │

02:06:00 #2431 [Debug] > │     let v139 : UH1 = UH1_1                                                   │

02:06:00 #2432 [Debug] > │     let v140 : UH1 = UH1_0(v138, v139)                                       │

02:06:00 #2433 [Debug] > │     let v141 : UH1 = UH1_0(v137, v140)                                       │

02:06:00 #2434 [Debug] > │     let v142 : UH1 = UH1_0(v136, v141)                                       │

02:06:00 #2435 [Debug] > │     let v143 : UH1 = UH1_0(v135, v142)                                       │

02:06:00 #2436 [Debug] > │     let v144 : (string []) = method5(v143)                                   │

02:06:00 #2437 [Debug] > │     let v145 : UH2 = UH2_1                                                   │

02:06:00 #2438 [Debug] > │     let v146 : UH2 = UH2_0(v115, v145)                                       │

02:06:00 #2439 [Debug] > │     let v147 : UH2 = UH2_0(v121, v146)                                       │

02:06:00 #2440 [Debug] > │     let v148 : UH2 = UH2_0(v127, v147)                                       │

02:06:00 #2441 [Debug] > │     let v149 : UH2 = UH2_0(v134, v148)                                       │

02:06:00 #2442 [Debug] > │     let v150 : UH2 = UH2_0(v144, v149)                                       │

02:06:00 #2443 [Debug] > │     let v151 : ((string []) []) = method8(v150)                              │

02:06:00 #2444 [Debug] > │     let v152 : ((string []) []) = v151 |> Array.transpose                    │

02:06:00 #2445 [Debug] > │     let v153 : int32 = v152.Length                                           │

02:06:00 #2446 [Debug] > │     let v154 : (int64 []) = Array.zeroCreate<int64> (v153)                   │

02:06:00 #2447 [Debug] > │     let v155 : Mut0 = {l0 = 0} : Mut0                                        │

02:06:00 #2448 [Debug] > │     while method11(v153, v155) do                                            │

02:06:00 #2449 [Debug] > │         let v157 : int32 = v155.l0                                           │

02:06:00 #2450 [Debug] > │         let v158 : (string []) = v152.[int v157]                             │

02:06:00 #2451 [Debug] > │         let v159 : int32 = v158.Length                                       │

02:06:00 #2452 [Debug] > │         let v160 : (int64 []) = Array.zeroCreate<int64> (v159)               │

02:06:00 #2453 [Debug] > │         let v161 : Mut0 = {l0 = 0} : Mut0                                    │

02:06:00 #2454 [Debug] > │         while method11(v159, v161) do                                        │

02:06:00 #2455 [Debug] > │             let v163 : int32 = v161.l0                                       │

02:06:00 #2456 [Debug] > │             let v164 : string = v158.[int v163]                              │

02:06:00 #2457 [Debug] > │             let v165 : int64 = System.Convert.ToInt64 v164.Length            │

02:06:00 #2458 [Debug] > │             v160.[int v163] <- v165                                          │

02:06:00 #2459 [Debug] > │             let v166 : int32 = v163 + 1                                      │

02:06:00 #2460 [Debug] > │             v161.l0 <- v166                                                  │

02:06:00 #2461 [Debug] > │             ()                                                               │

02:06:00 #2462 [Debug] > │         let v167 : (int64 []) = v160 |> Array.sortDescending                 │

02:06:00 #2463 [Debug] > │         let v168 : int64 option = v167 |> Array.tryItem 0                    │

02:06:00 #2464 [Debug] > │         let v169 : (int64 -> US1) = closure7()                               │

02:06:00 #2465 [Debug] > │         let v170 : US1 = US1_0                                               │

02:06:00 #2466 [Debug] > │         let v171 : US1 = v168 |> Option.map v169 |> Option.defaultValue v170 │

02:06:00 #2467 [Debug] > │         let v174 : int64 =                                                   │

02:06:00 #2468 [Debug] > │             match v171 with                                                  │

02:06:00 #2469 [Debug] > │             | US1_0 -> (* None *)                                            │

02:06:00 #2470 [Debug] > │                 0L                                                           │

02:06:00 #2471 [Debug] > │             | US1_1(v172) -> (* Some *)                                      │

02:06:00 #2472 [Debug] > │                 v172                                                         │

02:06:00 #2473 [Debug] > │         v154.[int v157] <- v174                                              │

02:06:00 #2474 [Debug] > │         let v175 : int32 = v157 + 1                                          │

02:06:00 #2475 [Debug] > │         v155.l0 <- v175                                                      │

02:06:00 #2476 [Debug] > │         ()                                                                   │

02:06:00 #2477 [Debug] > │     let v176 : int32 = v154.Length                                           │

02:06:00 #2478 [Debug] > │     let v177 : UH3 = UH3_1                                                   │

02:06:00 #2479 [Debug] > │     let v178 : Mut1 = {l0 = 0; l1 = v177; l2 = 0} : Mut1                     │

02:06:00 #2480 [Debug] > │     while method12(v176, v178) do                                            │

02:06:00 #2481 [Debug] > │         let v180 : int32 = v178.l0                                           │

02:06:00 #2482 [Debug] > │         let struct (v181 : UH3, v182 : int32) = v178.l1, v178.l2             │

02:06:00 #2483 [Debug] > │         let v183 : int64 = v154.[int v180]                                   │

02:06:00 #2484 [Debug] > │         let v184 : int32 = v182 + 1                                          │

02:06:00 #2485 [Debug] > │         let v185 : int32 = v180 + 1                                          │

02:06:00 #2486 [Debug] > │         let v186 : UH3 = UH3_0(v182, v183, v181)                             │

02:06:00 #2487 [Debug] > │         v178.l0 <- v185                                                      │

02:06:00 #2488 [Debug] > │         v178.l1 <- v186                                                      │

02:06:00 #2489 [Debug] > │         v178.l2 <- v184                                                      │

02:06:00 #2490 [Debug] > │         ()                                                                   │

02:06:00 #2491 [Debug] > │     let struct (v187 : UH3, v188 : int32) = v178.l1, v178.l2                 │

02:06:00 #2492 [Debug] > │     let v189 : UH3 = UH3_1                                                   │

02:06:00 #2493 [Debug] > │     let v190 : UH3 = method13(v187, v189)                                    │

02:06:00 #2494 [Debug] > │     let v191 : (struct (int32 * int64) []) = method14(v190)                  │

02:06:00 #2495 [Debug] > │     let v192 : Map<int32, int64> = v191 |> Array.map (fun (struct (a, b)) -> │

02:06:00 #2496 [Debug] > │ a, b) |> Map.ofArray                                                         │

02:06:00 #2497 [Debug] > │     let v193 : int64 = v192.[3]                                              │

02:06:00 #2498 [Debug] > │     let v194 : int32 = int32 v193                                            │

02:06:00 #2499 [Debug] > │     let v195 : string = v75.PadRight v194                                    │

02:06:00 #2500 [Debug] > │     let v196 : int64 = v192.[2]                                              │

02:06:00 #2501 [Debug] > │     let v197 : int32 = int32 v196                                            │

02:06:00 #2502 [Debug] > │     let v198 : string = v26.PadRight v197                                    │

02:06:00 #2503 [Debug] > │     let v199 : int64 = v192.[1]                                              │

02:06:00 #2504 [Debug] > │     let v200 : int32 = int32 v199                                            │

02:06:00 #2505 [Debug] > │     let v201 : string = v25.PadRight v200                                    │

02:06:00 #2506 [Debug] > │     let v202 : int64 = v192.[0]                                              │

02:06:00 #2507 [Debug] > │     let v203 : int32 = int32 v202                                            │

02:06:00 #2508 [Debug] > │     let v204 : string = v4.PadRight v203                                     │

02:06:00 #2509 [Debug] > │     let v205 : UH1 = UH1_1                                                   │

02:06:00 #2510 [Debug] > │     let v206 : UH1 = UH1_0(v195, v205)                                       │

02:06:00 #2511 [Debug] > │     let v207 : UH1 = UH1_0(v198, v206)                                       │

02:06:00 #2512 [Debug] > │     let v208 : UH1 = UH1_0(v201, v207)                                       │

02:06:00 #2513 [Debug] > │     let v209 : UH1 = UH1_0(v204, v208)                                       │

02:06:00 #2514 [Debug] > │     let v210 : (string []) = method5(v209)                                   │

02:06:00 #2515 [Debug] > │     let v211 : int64 = v192.[3]                                              │

02:06:00 #2516 [Debug] > │     let v212 : int32 = int32 v211                                            │

02:06:00 #2517 [Debug] > │     let v213 : string = v89.PadRight v212                                    │

02:06:00 #2518 [Debug] > │     let v214 : int64 = v192.[2]                                              │

02:06:00 #2519 [Debug] > │     let v215 : int32 = int32 v214                                            │

02:06:00 #2520 [Debug] > │     let v216 : string = v46.PadRight v215                                    │

02:06:00 #2521 [Debug] > │     let v217 : int64 = v192.[1]                                              │

02:06:00 #2522 [Debug] > │     let v218 : int32 = int32 v217                                            │

02:06:00 #2523 [Debug] > │     let v219 : string = v45.PadRight v218                                    │

02:06:00 #2524 [Debug] > │     let v220 : int64 = v192.[0]                                              │

02:06:00 #2525 [Debug] > │     let v221 : int32 = int32 v220                                            │

02:06:00 #2526 [Debug] > │     let v222 : string = v27.PadRight v221                                    │

02:06:00 #2527 [Debug] > │     let v223 : UH1 = UH1_1                                                   │

02:06:00 #2528 [Debug] > │     let v224 : UH1 = UH1_0(v213, v223)                                       │

02:06:00 #2529 [Debug] > │     let v225 : UH1 = UH1_0(v216, v224)                                       │

02:06:00 #2530 [Debug] > │     let v226 : UH1 = UH1_0(v219, v225)                                       │

02:06:00 #2531 [Debug] > │     let v227 : UH1 = UH1_0(v222, v226)                                       │

02:06:00 #2532 [Debug] > │     let v228 : (string []) = method5(v227)                                   │

02:06:00 #2533 [Debug] > │     let v229 : int64 = v192.[3]                                              │

02:06:00 #2534 [Debug] > │     let v230 : int32 = int32 v229                                            │

02:06:00 #2535 [Debug] > │     let v231 : string = v103.PadRight v230                                   │

02:06:00 #2536 [Debug] > │     let v232 : int64 = v192.[2]                                              │

02:06:00 #2537 [Debug] > │     let v233 : int32 = int32 v232                                            │

02:06:00 #2538 [Debug] > │     let v234 : string = v66.PadRight v233                                    │

02:06:00 #2539 [Debug] > │     let v235 : int64 = v192.[1]                                              │

02:06:00 #2540 [Debug] > │     let v236 : int32 = int32 v235                                            │

02:06:00 #2541 [Debug] > │     let v237 : string = v65.PadRight v236                                    │

02:06:00 #2542 [Debug] > │     let v238 : int64 = v192.[0]                                              │

02:06:00 #2543 [Debug] > │     let v239 : int32 = int32 v238                                            │

02:06:00 #2544 [Debug] > │     let v240 : string = v47.PadRight v239                                    │

02:06:00 #2545 [Debug] > │     let v241 : UH1 = UH1_1                                                   │

02:06:00 #2546 [Debug] > │     let v242 : UH1 = UH1_0(v231, v241)                                       │

02:06:00 #2547 [Debug] > │     let v243 : UH1 = UH1_0(v234, v242)                                       │

02:06:00 #2548 [Debug] > │     let v244 : UH1 = UH1_0(v237, v243)                                       │

02:06:00 #2549 [Debug] > │     let v245 : UH1 = UH1_0(v240, v244)                                       │

02:06:00 #2550 [Debug] > │     let v246 : (string []) = method5(v245)                                   │

02:06:00 #2551 [Debug] > │     let v247 : int64 = v192.[3]                                              │

02:06:00 #2552 [Debug] > │     let v248 : int32 = int32 v247                                            │

02:06:00 #2553 [Debug] > │     let v249 : string = v128.PadRight v248                                   │

02:06:00 #2554 [Debug] > │     let v250 : int64 = v192.[2]                                              │

02:06:00 #2555 [Debug] > │     let v251 : int32 = int32 v250                                            │

02:06:00 #2556 [Debug] > │     let v252 : string = v128.PadRight v251                                   │

02:06:00 #2557 [Debug] > │     let v253 : int64 = v192.[1]                                              │

02:06:00 #2558 [Debug] > │     let v254 : int32 = int32 v253                                            │

02:06:00 #2559 [Debug] > │     let v255 : string = v128.PadRight v254                                   │

02:06:00 #2560 [Debug] > │     let v256 : int64 = v192.[0]                                              │

02:06:00 #2561 [Debug] > │     let v257 : int32 = int32 v256                                            │

02:06:00 #2562 [Debug] > │     let v258 : string = v128.PadRight v257                                   │

02:06:00 #2563 [Debug] > │     let v259 : UH1 = UH1_1                                                   │

02:06:00 #2564 [Debug] > │     let v260 : UH1 = UH1_0(v249, v259)                                       │

02:06:00 #2565 [Debug] > │     let v261 : UH1 = UH1_0(v252, v260)                                       │

02:06:00 #2566 [Debug] > │     let v262 : UH1 = UH1_0(v255, v261)                                       │

02:06:00 #2567 [Debug] > │     let v263 : UH1 = UH1_0(v258, v262)                                       │

02:06:00 #2568 [Debug] > │     let v264 : (string []) = method5(v263)                                   │

02:06:00 #2569 [Debug] > │     let v265 : int64 = v192.[3]                                              │

02:06:00 #2570 [Debug] > │     let v266 : int32 = int32 v265                                            │

02:06:00 #2571 [Debug] > │     let v267 : string = v138.PadRight v266                                   │

02:06:00 #2572 [Debug] > │     let v268 : int64 = v192.[2]                                              │

02:06:00 #2573 [Debug] > │     let v269 : int32 = int32 v268                                            │

02:06:00 #2574 [Debug] > │     let v270 : string = v137.PadRight v269                                   │

02:06:00 #2575 [Debug] > │     let v271 : int64 = v192.[1]                                              │

02:06:00 #2576 [Debug] > │     let v272 : int32 = int32 v271                                            │

02:06:00 #2577 [Debug] > │     let v273 : string = v136.PadRight v272                                   │

02:06:00 #2578 [Debug] > │     let v274 : int64 = v192.[0]                                              │

02:06:00 #2579 [Debug] > │     let v275 : int32 = int32 v274                                            │

02:06:00 #2580 [Debug] > │     let v276 : string = v135.PadRight v275                                   │

02:06:00 #2581 [Debug] > │     let v277 : UH1 = UH1_1                                                   │

02:06:00 #2582 [Debug] > │     let v278 : UH1 = UH1_0(v267, v277)                                       │

02:06:00 #2583 [Debug] > │     let v279 : UH1 = UH1_0(v270, v278)                                       │

02:06:00 #2584 [Debug] > │     let v280 : UH1 = UH1_0(v273, v279)                                       │

02:06:00 #2585 [Debug] > │     let v281 : UH1 = UH1_0(v276, v280)                                       │

02:06:00 #2586 [Debug] > │     let v282 : (string []) = method5(v281)                                   │

02:06:00 #2587 [Debug] > │     System.Console.WriteLine v2                                              │

02:06:00 #2588 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2589 [Debug] > │     let v283 : (unit -> unit) = closure8()                                   │

02:06:00 #2590 [Debug] > │     v283 ()                                                                  │

02:06:00 #2591 [Debug] > │     #else                                                                    │

02:06:00 #2592 [Debug] > │     let v284 : (unit -> unit) = closure9()                                   │

02:06:00 #2593 [Debug] > │     v284 ()                                                                  │

02:06:00 #2594 [Debug] > │     #endif                                                                   │

02:06:00 #2595 [Debug] > │     let v285 : string = "\t| "                                               │

02:06:00 #2596 [Debug] > │     let v286 : string = System.String.Join (v285, v282)                      │

02:06:00 #2597 [Debug] > │     System.Console.WriteLine v286                                            │

02:06:00 #2598 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2599 [Debug] > │     v283 ()                                                                  │

02:06:00 #2600 [Debug] > │     #else                                                                    │

02:06:00 #2601 [Debug] > │     v284 ()                                                                  │

02:06:00 #2602 [Debug] > │     #endif                                                                   │

02:06:00 #2603 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2604 [Debug] > │     v283 ()                                                                  │

02:06:00 #2605 [Debug] > │     #else                                                                    │

02:06:00 #2606 [Debug] > │     v284 ()                                                                  │

02:06:00 #2607 [Debug] > │     #endif                                                                   │

02:06:00 #2608 [Debug] > │     let v287 : string = System.String.Join (v285, v264)                      │

02:06:00 #2609 [Debug] > │     System.Console.WriteLine v287                                            │

02:06:00 #2610 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2611 [Debug] > │     v283 ()                                                                  │

02:06:00 #2612 [Debug] > │     #else                                                                    │

02:06:00 #2613 [Debug] > │     v284 ()                                                                  │

02:06:00 #2614 [Debug] > │     #endif                                                                   │

02:06:00 #2615 [Debug] > │     match v109 with                                                          │

02:06:00 #2616 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:06:00 #2617 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:06:00 #2618 [Debug] > │         v283 ()                                                              │

02:06:00 #2619 [Debug] > │         #else                                                                │

02:06:00 #2620 [Debug] > │         v284 ()                                                              │

02:06:00 #2621 [Debug] > │         #endif                                                               │

02:06:00 #2622 [Debug] > │         ()                                                                   │

02:06:00 #2623 [Debug] > │     | US0_1(v288) -> (* Some *)                                              │

02:06:00 #2624 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:06:00 #2625 [Debug] > │         let v289 : (unit -> unit) = closure10()                              │

02:06:00 #2626 [Debug] > │         v289 ()                                                              │

02:06:00 #2627 [Debug] > │         #else                                                                │

02:06:00 #2628 [Debug] > │         let v290 : (unit -> unit) = closure11(v288)                          │

02:06:00 #2629 [Debug] > │         v290 ()                                                              │

02:06:00 #2630 [Debug] > │         #endif                                                               │

02:06:00 #2631 [Debug] > │         ()                                                                   │

02:06:00 #2632 [Debug] > │     let v291 : string = System.String.Join (v285, v246)                      │

02:06:00 #2633 [Debug] > │     System.Console.WriteLine v291                                            │

02:06:00 #2634 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2635 [Debug] > │     v283 ()                                                                  │

02:06:00 #2636 [Debug] > │     #else                                                                    │

02:06:00 #2637 [Debug] > │     v284 ()                                                                  │

02:06:00 #2638 [Debug] > │     #endif                                                                   │

02:06:00 #2639 [Debug] > │     match v95 with                                                           │

02:06:00 #2640 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:06:00 #2641 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:06:00 #2642 [Debug] > │         v283 ()                                                              │

02:06:00 #2643 [Debug] > │         #else                                                                │

02:06:00 #2644 [Debug] > │         v284 ()                                                              │

02:06:00 #2645 [Debug] > │         #endif                                                               │

02:06:00 #2646 [Debug] > │         ()                                                                   │

02:06:00 #2647 [Debug] > │     | US0_1(v292) -> (* Some *)                                              │

02:06:00 #2648 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:06:00 #2649 [Debug] > │         let v293 : (unit -> unit) = closure10()                              │

02:06:00 #2650 [Debug] > │         v293 ()                                                              │

02:06:00 #2651 [Debug] > │         #else                                                                │

02:06:00 #2652 [Debug] > │         let v294 : (unit -> unit) = closure11(v292)                          │

02:06:00 #2653 [Debug] > │         v294 ()                                                              │

02:06:00 #2654 [Debug] > │         #endif                                                               │

02:06:00 #2655 [Debug] > │         ()                                                                   │

02:06:00 #2656 [Debug] > │     let v295 : string = System.String.Join (v285, v228)                      │

02:06:00 #2657 [Debug] > │     System.Console.WriteLine v295                                            │

02:06:00 #2658 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2659 [Debug] > │     v283 ()                                                                  │

02:06:00 #2660 [Debug] > │     #else                                                                    │

02:06:00 #2661 [Debug] > │     v284 ()                                                                  │

02:06:00 #2662 [Debug] > │     #endif                                                                   │

02:06:00 #2663 [Debug] > │     match v81 with                                                           │

02:06:00 #2664 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:06:00 #2665 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:06:00 #2666 [Debug] > │         v283 ()                                                              │

02:06:00 #2667 [Debug] > │         #else                                                                │

02:06:00 #2668 [Debug] > │         v284 ()                                                              │

02:06:00 #2669 [Debug] > │         #endif                                                               │

02:06:00 #2670 [Debug] > │         ()                                                                   │

02:06:00 #2671 [Debug] > │     | US0_1(v296) -> (* Some *)                                              │

02:06:00 #2672 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:06:00 #2673 [Debug] > │         let v297 : (unit -> unit) = closure10()                              │

02:06:00 #2674 [Debug] > │         v297 ()                                                              │

02:06:00 #2675 [Debug] > │         #else                                                                │

02:06:00 #2676 [Debug] > │         let v298 : (unit -> unit) = closure11(v296)                          │

02:06:00 #2677 [Debug] > │         v298 ()                                                              │

02:06:00 #2678 [Debug] > │         #endif                                                               │

02:06:00 #2679 [Debug] > │         ()                                                                   │

02:06:00 #2680 [Debug] > │     let v299 : string = System.String.Join (v285, v210)                      │

02:06:00 #2681 [Debug] > │     System.Console.WriteLine v299                                            │

02:06:00 #2682 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:06:00 #2683 [Debug] > │     v283 ()                                                                  │

02:06:00 #2684 [Debug] > │     #else                                                                    │

02:06:00 #2685 [Debug] > │     v284 ()                                                                  │

02:06:00 #2686 [Debug] > │     #endif                                                                   │

02:06:00 #2687 [Debug] > │     let v300 : (int64 -> float) = float                                      │

02:06:00 #2688 [Debug] > │     let v301 : float = v300 v22                                              │

02:06:00 #2689 [Debug] > │     let v302 : UH4 = UH4_1                                                   │

02:06:00 #2690 [Debug] > │     let v303 : UH4 = UH4_0(v301, v302)                                       │

02:06:00 #2691 [Debug] > │     let v304 : (float []) = method17(v303)                                   │

02:06:00 #2692 [Debug] > │     let v305 : (int64 -> float) = float                                      │

02:06:00 #2693 [Debug] > │     let v306 : float = v305 v43                                              │

02:06:00 #2694 [Debug] > │     let v307 : UH4 = UH4_1                                                   │

02:06:00 #2695 [Debug] > │     let v308 : UH4 = UH4_0(v306, v307)                                       │

02:06:00 #2696 [Debug] > │     let v309 : (float []) = method17(v308)                                   │

02:06:00 #2697 [Debug] > │     let v310 : (int64 -> float) = float                                      │

02:06:00 #2698 [Debug] > │     let v311 : float = v310 v63                                              │

02:06:00 #2699 [Debug] > │     let v312 : UH4 = UH4_1                                                   │

02:06:00 #2700 [Debug] > │     let v313 : UH4 = UH4_0(v311, v312)                                       │

02:06:00 #2701 [Debug] > │     let v314 : (float []) = method17(v313)                                   │

02:06:00 #2702 [Debug] > │     let v315 : UH5 = UH5_1                                                   │

02:06:00 #2703 [Debug] > │     let v316 : UH5 = UH5_0(v304, v315)                                       │

02:06:00 #2704 [Debug] > │     let v317 : UH5 = UH5_0(v309, v316)                                       │

02:06:00 #2705 [Debug] > │     let v318 : UH5 = UH5_0(v314, v317)                                       │

02:06:00 #2706 [Debug] > │     let v319 : ((float []) []) = method20(v318)                              │

02:06:00 #2707 [Debug] > │     let v320 : ((float []) []) = v319 |> Array.transpose                     │

02:06:00 #2708 [Debug] > │     let v321 : int32 = v320.Length                                           │

02:06:00 #2709 [Debug] > │     let v322 : (float []) = Array.zeroCreate<float> (v321)                   │

02:06:00 #2710 [Debug] > │     let v323 : Mut0 = {l0 = 0} : Mut0                                        │

02:06:00 #2711 [Debug] > │     while method11(v321, v323) do                                            │

02:06:00 #2712 [Debug] > │         let v325 : int32 = v323.l0                                           │

02:06:00 #2713 [Debug] > │         let v326 : (float []) = v320.[int v325]                              │

02:06:00 #2714 [Debug] > │         let v327 : float = v326 |> Array.average                             │

02:06:00 #2715 [Debug] > │         v322.[int v325] <- v327                                              │

02:06:00 #2716 [Debug] > │         let v328 : int32 = v325 + 1                                          │

02:06:00 #2717 [Debug] > │         v323.l0 <- v328                                                      │

02:06:00 #2718 [Debug] > │         ()                                                                   │

02:06:00 #2719 [Debug] > │     let v329 : (float -> int64) = int64                                      │

02:06:00 #2720 [Debug] > │     let v330 : int32 = v322.Length                                           │

02:06:00 #2721 [Debug] > │     let v331 : (int64 []) = Array.zeroCreate<int64> (v330)                   │

02:06:00 #2722 [Debug] > │     let v332 : Mut0 = {l0 = 0} : Mut0                                        │

02:06:00 #2723 [Debug] > │     while method11(v330, v332) do                                            │

02:06:00 #2724 [Debug] > │         let v334 : int32 = v332.l0                                           │

02:06:00 #2725 [Debug] > │         let v335 : float = v322.[int v334]                                   │

02:06:00 #2726 [Debug] > │         let v336 : int64 = v329 v335                                         │

02:06:00 #2727 [Debug] > │         v331.[int v334] <- v336                                              │

02:06:00 #2728 [Debug] > │         let v337 : int32 = v334 + 1                                          │

02:06:00 #2729 [Debug] > │         v332.l0 <- v337                                                      │

02:06:00 #2730 [Debug] > │         ()                                                                   │

02:06:00 #2731 [Debug] > │     let v338 : int32 = v331.Length                                           │

02:06:00 #2732 [Debug] > │     let v339 : UH3 = UH3_1                                                   │

02:06:00 #2733 [Debug] > │     let v340 : Mut1 = {l0 = 0; l1 = v339; l2 = 0} : Mut1                     │

02:06:00 #2734 [Debug] > │     while method12(v338, v340) do                                            │

02:06:00 #2735 [Debug] > │         let v342 : int32 = v340.l0                                           │

02:06:00 #2736 [Debug] > │         let struct (v343 : UH3, v344 : int32) = v340.l1, v340.l2             │

02:06:00 #2737 [Debug] > │         let v345 : int64 = v331.[int v342]                                   │

02:06:00 #2738 [Debug] > │         let v346 : int32 = v344 + 1                                          │

02:06:00 #2739 [Debug] > │         let v347 : int32 = v342 + 1                                          │

02:06:00 #2740 [Debug] > │         let v348 : UH3 = UH3_0(v344, v345, v343)                             │

02:06:00 #2741 [Debug] > │         v340.l0 <- v347                                                      │

02:06:00 #2742 [Debug] > │         v340.l1 <- v348                                                      │

02:06:00 #2743 [Debug] > │         v340.l2 <- v346                                                      │

02:06:00 #2744 [Debug] > │         ()                                                                   │

02:06:00 #2745 [Debug] > │     let struct (v349 : UH3, v350 : int32) = v340.l1, v340.l2                 │

02:06:00 #2746 [Debug] > │     let v351 : UH3 = UH3_1                                                   │

02:06:00 #2747 [Debug] > │     let v352 : UH3 = method13(v349, v351)                                    │

02:06:00 #2748 [Debug] > │     let v353 : (struct (int32 * int64) []) = method14(v352)                  │

02:06:00 #2749 [Debug] > │     System.Console.WriteLine v2                                              │

02:06:00 #2750 [Debug] > │     let v354 : string = "Average Ranking  "                                  │

02:06:00 #2751 [Debug] > │     System.Console.WriteLine v354                                            │

02:06:00 #2752 [Debug] > │     let v355 : (struct (int32 * int64) -> int64) = closure12()               │

02:06:00 #2753 [Debug] > │     let v356 : (struct (int32 * int64) []) = v353 |> Array.sortBy v355       │

02:06:00 #2754 [Debug] > │     let v357 : int32 = v356.Length                                           │

02:06:00 #2755 [Debug] > │     let v358 : Mut0 = {l0 = 0} : Mut0                                        │

02:06:00 #2756 [Debug] > │     while method11(v357, v358) do                                            │

02:06:00 #2757 [Debug] > │         let v360 : int32 = v358.l0                                           │

02:06:00 #2758 [Debug] > │         let struct (v361 : int32, v362 : int64) = v356.[int v360]            │

02:06:00 #2759 [Debug] > │         let v363 : string = $"Test case %d{v361 + 1}. Average Time: %A{v362} │

02:06:00 #2760 [Debug] > │ "                                                                            │

02:06:00 #2761 [Debug] > │         System.Console.WriteLine v363                                        │

02:06:00 #2762 [Debug] > │         let v364 : int32 = v360 + 1                                          │

02:06:00 #2763 [Debug] > │         v358.l0 <- v364                                                      │

02:06:00 #2764 [Debug] > │         ()                                                                   │

02:06:00 #2765 [Debug] > │     ()                                                                       │

02:06:00 #2766 [Debug] > │ method0()                                                                    │

02:06:00 #2767 [Debug] > │                                                                              │

02:06:00 #2768 [Debug] > │                                                                              │

02:06:00 #2769 [Debug] > │                                                                              │

02:06:00 #2770 [Debug] > │ Test: v0                                                                     │

02:06:00 #2771 [Debug] > │                                                                              │

02:06:00 #2772 [Debug] > │ Solution: 5                                                                  │

02:06:00 #2773 [Debug] > │ Test case 1. A. Time: 23                                                     │

02:06:00 #2774 [Debug] > │                                                                              │

02:06:00 #2775 [Debug] > │ Solution: 2                                                                  │

02:06:00 #2776 [Debug] > │ Test case 1. A. Time: 13                                                     │

02:06:00 #2777 [Debug] > │                                                                              │

02:06:00 #2778 [Debug] > │ Solution: 0                                                                  │

02:06:00 #2779 [Debug] > │ Test case 1. A. Time: 11                                                     │

02:06:00 #2780 [Debug] > │                                                                              │

02:06:00 #2781 [Debug] > │ Input	| Expected	| Result	| Best                                                   │

02:06:00 #2782 [Debug] > │ ---  	| ---     	| ---   	| ---                                                    │

02:06:00 #2783 [Debug] > │ 0    	| 1       	| 1     	| struct (1L, 11L)                                       │

02:06:00 #2784 [Debug] > │ 2    	| 3       	| 3     	| struct (1L, 13L)                                       │

02:06:00 #2785 [Debug] > │ 5    	| 6       	| 6     	| struct (1L, 23L)                                       │

02:06:00 #2786 [Debug] > │                                                                              │

02:06:00 #2787 [Debug] > │ Average Ranking                                                              │

02:06:00 #2788 [Debug] > │ Test case 1. Average Time: 15L                                               │

02:06:00 #2789 [Debug] > │                                                                              │

02:06:00 #2790 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:02 #2791 [Debug] > [NbConvertApp] Converting notebook benchmark.dib.ipynb to html

02:06:02 #2792 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:06:02 #2793 [Debug] >   validate(nb)

02:06:02 #2794 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:06:02 #2795 [Debug] >   return _pygments_highlight(

02:06:02 #2796 [Debug] > [NbConvertApp] Writing 395499 bytes to benchmark.dib.html

02:06:03 #2797 [Debug] executeAsync / exitCode: 0 / proc.Id: 50996 / output.Length: 207904

02:06:03 #2798 [Debug] main / executeCommand / exitCode: 0

02:06:04 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:06:04 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:06:04 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:06:04 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:06:04 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:06:04 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:06:05 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:06:05 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:06:05 #9 [Debug] > Server bound to: http://localhost:13805

02:06:05 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 stream.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:06:07 #11 [Debug] >

02:06:07 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:07 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:07 #14 [Debug] > │ # stream                                                                     │

02:06:07 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:08 #16 [Debug] >

02:06:08 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:08 #18 [Debug] > // // test

02:06:08 #19 [Debug] >

02:06:08 #20 [Debug] > open testing

02:06:11 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1037-3766-35f611037626\main.spi

02:06:13 #22 [Debug] >

02:06:13 #23 [Debug] > ╭─[ 5.39s - stdout ]───────────────────────────────────────────────────────────╮

02:06:13 #24 [Debug] > │ ()                                                                           │

02:06:13 #25 [Debug] > │                                                                              │

02:06:13 #26 [Debug] > │                                                                              │

02:06:13 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:13 #28 [Debug] >

02:06:13 #29 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:13 #30 [Debug] > union rec stream t =

02:06:13 #31 [Debug] >     | StreamCons : t * (() -> stream t)

02:06:13 #32 [Debug] >     | StreamNil

02:06:13 #33 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1337-3765-347f4e1c1bb3\main.spi

02:06:13 #34 [Debug] >

02:06:13 #35 [Debug] > ╭─[ 240.72ms - stdout ]────────────────────────────────────────────────────────╮

02:06:13 #36 [Debug] > │ ()                                                                           │

02:06:13 #37 [Debug] > │                                                                              │

02:06:13 #38 [Debug] > │                                                                              │

02:06:13 #39 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:13 #40 [Debug] >

02:06:13 #41 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:13 #42 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:13 #43 [Debug] > │ ## fold                                                                      │

02:06:13 #44 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:13 #45 [Debug] >

02:06:13 #46 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:13 #47 [Debug] > inl fold fn init s =

02:06:13 #48 [Debug] >     inl rec body acc = function

02:06:13 #49 [Debug] >         | StreamCons (st, fn') => loop (fn acc st) (fn' ())

02:06:13 #50 [Debug] >         | StreamNil => acc

02:06:13 #51 [Debug] >     and inl loop acc = join_body body acc

02:06:13 #52 [Debug] >     loop init s

02:06:13 #53 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1361-6185-6ced87776008\main.spi

02:06:13 #54 [Debug] >

02:06:13 #55 [Debug] > ╭─[ 197.60ms - stdout ]────────────────────────────────────────────────────────╮

02:06:13 #56 [Debug] > │ ()                                                                           │

02:06:13 #57 [Debug] > │                                                                              │

02:06:13 #58 [Debug] > │                                                                              │

02:06:13 #59 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:13 #60 [Debug] >

02:06:13 #61 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:13 #62 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:13 #63 [Debug] > │ ## fold_back                                                                 │

02:06:13 #64 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:13 #65 [Debug] >

02:06:13 #66 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:13 #67 [Debug] > inl fold_back fn s init =

02:06:13 #68 [Debug] >     inl rec body acc = function

02:06:13 #69 [Debug] >         | StreamCons (st, fn') => fn st (loop acc (fn' ()))

02:06:13 #70 [Debug] >         | StreamNil => acc

02:06:13 #71 [Debug] >     and inl loop acc = join_body body acc

02:06:13 #72 [Debug] >     loop init s

02:06:13 #73 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1382-8209-8603c5db59d5\main.spi

02:06:14 #74 [Debug] >

02:06:14 #75 [Debug] > ╭─[ 183.51ms - stdout ]────────────────────────────────────────────────────────╮

02:06:14 #76 [Debug] > │ ()                                                                           │

02:06:14 #77 [Debug] > │                                                                              │

02:06:14 #78 [Debug] > │                                                                              │

02:06:14 #79 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #80 [Debug] >

02:06:14 #81 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:14 #82 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:14 #83 [Debug] > │ ## to_list                                                                   │

02:06:14 #84 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #85 [Debug] >

02:06:14 #86 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:14 #87 [Debug] > inl to_list s =

02:06:14 #88 [Debug] >     (s, [[]])

02:06:14 #89 [Debug] >     ||> fold_back fun x acc =>

02:06:14 #90 [Debug] >         x :: acc

02:06:14 #91 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1401-0100-0691e87c5a58\main.spi

02:06:14 #92 [Debug] >

02:06:14 #93 [Debug] > ╭─[ 230.32ms - stdout ]────────────────────────────────────────────────────────╮

02:06:14 #94 [Debug] > │ ()                                                                           │

02:06:14 #95 [Debug] > │                                                                              │

02:06:14 #96 [Debug] > │                                                                              │

02:06:14 #97 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #98 [Debug] >

02:06:14 #99 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:14 #100 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:14 #101 [Debug] > │ ## rev                                                                       │

02:06:14 #102 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #103 [Debug] >

02:06:14 #104 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:14 #105 [Debug] > inl rev s =

02:06:14 #106 [Debug] >     (StreamNil, s)

02:06:14 #107 [Debug] >     ||> fold fun s x =>

02:06:14 #108 [Debug] >         StreamCons (x, fun () => s)

02:06:14 #109 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1424-2454-28d9fbb7bb34\main.spi

02:06:14 #110 [Debug] >

02:06:14 #111 [Debug] > ╭─[ 181.50ms - stdout ]────────────────────────────────────────────────────────╮

02:06:14 #112 [Debug] > │ ()                                                                           │

02:06:14 #113 [Debug] > │                                                                              │

02:06:14 #114 [Debug] > │                                                                              │

02:06:14 #115 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #116 [Debug] >

02:06:14 #117 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:14 #118 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:14 #119 [Debug] > │ ## from_list                                                                 │

02:06:14 #120 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #121 [Debug] >

02:06:14 #122 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:14 #123 [Debug] > inl from_list list =

02:06:14 #124 [Debug] >     (list, StreamNil)

02:06:14 #125 [Debug] >     ||> listm.foldBack fun x acc =>

02:06:14 #126 [Debug] >         StreamCons (x, fun () => acc)

02:06:14 #127 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1443-4317-41be5d8c3015\main.spi

02:06:14 #128 [Debug] >

02:06:14 #129 [Debug] > ╭─[ 180.83ms - stdout ]────────────────────────────────────────────────────────╮

02:06:14 #130 [Debug] > │ ()                                                                           │

02:06:14 #131 [Debug] > │                                                                              │

02:06:14 #132 [Debug] > │                                                                              │

02:06:14 #133 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:14 #134 [Debug] >

02:06:14 #135 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:14 #136 [Debug] > // // test

02:06:14 #137 [Debug] >

02:06:14 #138 [Debug] > listm.init 3i32 id

02:06:14 #139 [Debug] > |> from_list

02:06:14 #140 [Debug] > |> rev

02:06:14 #141 [Debug] > |> to_list

02:06:14 #142 [Debug] > |> _equal [[ 2; 1; 0 ]]

02:06:14 #143 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1461-6150-61e726a2850b\main.spi

02:06:15 #144 [Debug] >

02:06:15 #145 [Debug] > ╭─[ 1.37s - stdout ]───────────────────────────────────────────────────────────╮

02:06:15 #146 [Debug] > │ type UH0 =                                                                   │

02:06:15 #147 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:06:15 #148 [Debug] > │     | UH0_1                                                                  │

02:06:15 #149 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:15 #150 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:06:15 #151 [Debug] > │     let v19 : UH0 = UH0_0(0, v18)                                            │

02:06:15 #152 [Debug] > │     let v20 : UH0 = UH0_0(1, v19)                                            │

02:06:15 #153 [Debug] > │     let v21 : UH0 = UH0_0(2, v20)                                            │

02:06:15 #154 [Debug] > │     let v22 : UH0 = UH0_1                                                    │

02:06:15 #155 [Debug] > │     let v23 : UH0 = UH0_0(0, v22)                                            │

02:06:15 #156 [Debug] > │     let v24 : UH0 = UH0_0(1, v23)                                            │

02:06:15 #157 [Debug] > │     let v25 : UH0 = UH0_0(2, v24)                                            │

02:06:15 #158 [Debug] > │     let v26 : string = $"_equal / actual: %A{v21} / expected: %A{v25}"       │

02:06:15 #159 [Debug] > │     ()                                                                       │

02:06:15 #160 [Debug] > │ method0()                                                                    │

02:06:15 #161 [Debug] > │                                                                              │

02:06:15 #162 [Debug] > │                                                                              │

02:06:15 #163 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:15 #164 [Debug] >

02:06:15 #165 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:15 #166 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:15 #167 [Debug] > │ ## try_item                                                                  │

02:06:15 #168 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:15 #169 [Debug] >

02:06:15 #170 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:15 #171 [Debug] > inl try_item i s =

02:06:15 #172 [Debug] >     inl rec body i = function

02:06:15 #173 [Debug] >         | StreamCons (x, _) when i <= 0 => Some x

02:06:15 #174 [Debug] >         | StreamCons (_, fn) => loop (i - 1) (fn ())

02:06:15 #175 [Debug] >         | StreamNil => None

02:06:15 #176 [Debug] >     and inl loop acc s' =

02:06:15 #177 [Debug] >         match var_is acc, var_is s' with

02:06:15 #178 [Debug] >         | false, false => body acc s'

02:06:15 #179 [Debug] >         | _ =>

02:06:15 #180 [Debug] >             inl acc = dyn acc

02:06:15 #181 [Debug] >             inl s' = dyn s'

02:06:15 #182 [Debug] >             join body acc s'

02:06:15 #183 [Debug] >     loop i s

02:06:15 #184 [Debug] >

02:06:15 #185 [Debug] > inl item i =

02:06:15 #186 [Debug] >     try_item i >> optionm.value

02:06:16 #187 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1599-9986-92a4aba16d6f\main.spi

02:06:16 #188 [Debug] >

02:06:16 #189 [Debug] > ╭─[ 186.32ms - stdout ]────────────────────────────────────────────────────────╮

02:06:16 #190 [Debug] > │ ()                                                                           │

02:06:16 #191 [Debug] > │                                                                              │

02:06:16 #192 [Debug] > │                                                                              │

02:06:16 #193 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #194 [Debug] >

02:06:16 #195 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:16 #196 [Debug] > // // test

02:06:16 #197 [Debug] >

02:06:16 #198 [Debug] > listm.init 10i32 id

02:06:16 #199 [Debug] > |> from_list

02:06:16 #200 [Debug] > |> item 9i32

02:06:16 #201 [Debug] > |> _equal 9

02:06:16 #202 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1618-1836-10fabd45ed10\main.spi

02:06:16 #203 [Debug] >

02:06:16 #204 [Debug] > ╭─[ 178.65ms - stdout ]────────────────────────────────────────────────────────╮

02:06:16 #205 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:16 #206 [Debug] > │     let v0 : string = $"_equal / actual: %A{9} / expected: %A{9}"            │

02:06:16 #207 [Debug] > │     ()                                                                       │

02:06:16 #208 [Debug] > │ method0()                                                                    │

02:06:16 #209 [Debug] > │                                                                              │

02:06:16 #210 [Debug] > │                                                                              │

02:06:16 #211 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #212 [Debug] >

02:06:16 #213 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:16 #214 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:16 #215 [Debug] > │ ## new_infinite_stream                                                       │

02:06:16 #216 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #217 [Debug] >

02:06:16 #218 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:16 #219 [Debug] > inl new_infinite_stream fn =

02:06:16 #220 [Debug] >     inl rec loop n =

02:06:16 #221 [Debug] >         StreamCons (fn n, fun () => loop (n + 1))

02:06:16 #222 [Debug] >     loop 0

02:06:16 #223 [Debug] >

02:06:16 #224 [Debug] > inl new_infinite_stream_ fn =

02:06:16 #225 [Debug] >     let rec loop n =

02:06:16 #226 [Debug] >         StreamCons (fn n, fun () => loop (n + 1))

02:06:16 #227 [Debug] >     loop 0

02:06:16 #228 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1636-3697-39a009369696\main.spi

02:06:16 #229 [Debug] >

02:06:16 #230 [Debug] > ╭─[ 188.62ms - stdout ]────────────────────────────────────────────────────────╮

02:06:16 #231 [Debug] > │ ()                                                                           │

02:06:16 #232 [Debug] > │                                                                              │

02:06:16 #233 [Debug] > │                                                                              │

02:06:16 #234 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #235 [Debug] >

02:06:16 #236 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:16 #237 [Debug] > // // test

02:06:16 #238 [Debug] >

02:06:16 #239 [Debug] > new_infinite_stream print_and_return

02:06:16 #240 [Debug] > |> item 4i32

02:06:16 #241 [Debug] > |> _equal 4i32

02:06:16 #242 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1656-5602-54538b606f8c\main.spi

02:06:16 #243 [Debug] >

02:06:16 #244 [Debug] > ╭─[ 212.90ms - stdout ]────────────────────────────────────────────────────────╮

02:06:16 #245 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:16 #246 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:16 #247 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:16 #248 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:16 #249 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:16 #250 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:16 #251 [Debug] > │     let v0 : string = $"_equal / actual: %A{4} / expected: %A{4}"            │

02:06:16 #252 [Debug] > │     ()                                                                       │

02:06:16 #253 [Debug] > │ method0()                                                                    │

02:06:16 #254 [Debug] > │                                                                              │

02:06:16 #255 [Debug] > │ print_and_return / x: 0                                                      │

02:06:16 #256 [Debug] > │ print_and_return / x: 1                                                      │

02:06:16 #257 [Debug] > │ print_and_return / x: 2                                                      │

02:06:16 #258 [Debug] > │ print_and_return / x: 3                                                      │

02:06:16 #259 [Debug] > │ print_and_return / x: 4                                                      │

02:06:16 #260 [Debug] > │                                                                              │

02:06:16 #261 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #262 [Debug] >

02:06:16 #263 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:16 #264 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:16 #265 [Debug] > │ ## new_finite_stream                                                         │

02:06:16 #266 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #267 [Debug] >

02:06:16 #268 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:16 #269 [Debug] > inl new_finite_stream fn max =

02:06:16 #270 [Debug] >     inl rec loop n =

02:06:16 #271 [Debug] >         if n >= max

02:06:16 #272 [Debug] >         then StreamNil

02:06:16 #273 [Debug] >         else StreamCons (fn n, fun () => loop (n + 1))

02:06:16 #274 [Debug] >     loop 0

02:06:16 #275 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1678-7833-7017ccde0549\main.spi

02:06:16 #276 [Debug] >

02:06:16 #277 [Debug] > ╭─[ 185.67ms - stdout ]────────────────────────────────────────────────────────╮

02:06:16 #278 [Debug] > │ ()                                                                           │

02:06:16 #279 [Debug] > │                                                                              │

02:06:16 #280 [Debug] > │                                                                              │

02:06:16 #281 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #282 [Debug] >

02:06:16 #283 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:16 #284 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:16 #285 [Debug] > │ ## memoize                                                                   │

02:06:16 #286 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:16 #287 [Debug] >

02:06:16 #288 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:16 #289 [Debug] > union memoized_stream t =

02:06:16 #290 [Debug] >     | NotComputed : () -> stream t

02:06:16 #291 [Debug] >     | Computed : stream t

02:06:16 #292 [Debug] >

02:06:16 #293 [Debug] > inl memoize s =

02:06:16 #294 [Debug] >     inl rec body s =

02:06:16 #295 [Debug] >         inl state = mut (NotComputed s)

02:06:16 #296 [Debug] >         fun () =>

02:06:16 #297 [Debug] >             match *state with

02:06:16 #298 [Debug] >             | Computed x => x

02:06:16 #299 [Debug] >             | NotComputed fn =>

02:06:16 #300 [Debug] >                 inl new_state =

02:06:16 #301 [Debug] >                     match fn () with

02:06:16 #302 [Debug] >                     | StreamNil => StreamNil

02:06:16 #303 [Debug] >                     | StreamCons (x, fn) => StreamCons (x, loop fn)

02:06:16 #304 [Debug] >                 state <- Computed new_state

02:06:16 #305 [Debug] >                 new_state

02:06:16 #306 [Debug] >     and inl loop s' = join_body_unit body s s'

02:06:16 #307 [Debug] >     loop (fun () => s)

02:06:17 #308 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1697-9751-92fad634e267\main.spi

02:06:17 #309 [Debug] >

02:06:17 #310 [Debug] > ╭─[ 166.45ms - stdout ]────────────────────────────────────────────────────────╮

02:06:17 #311 [Debug] > │ ()                                                                           │

02:06:17 #312 [Debug] > │                                                                              │

02:06:17 #313 [Debug] > │                                                                              │

02:06:17 #314 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:17 #315 [Debug] >

02:06:17 #316 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:17 #317 [Debug] > // // test

02:06:17 #318 [Debug] >

02:06:17 #319 [Debug] > inl memo_stream = new_finite_stream print_and_return 10 |> memoize

02:06:17 #320 [Debug] >

02:06:17 #321 [Debug] > memo_stream ()

02:06:17 #322 [Debug] > |> item 3i32

02:06:17 #323 [Debug] > |> _equal 3i32

02:06:17 #324 [Debug] >

02:06:17 #325 [Debug] > memo_stream ()

02:06:17 #326 [Debug] > |> item 5i32

02:06:17 #327 [Debug] > |> _equal 5i32

02:06:17 #328 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1714-1437-148e6c17356c\main.spi

02:06:17 #329 [Debug] >

02:06:17 #330 [Debug] > ╭─[ 796.16ms - stdout ]────────────────────────────────────────────────────────╮

02:06:17 #331 [Debug] > │ type UH0 =                                                                   │

02:06:17 #332 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:06:17 #333 [Debug] > │     | UH0_1                                                                  │

02:06:17 #334 [Debug] > │ and [<Struct>] US0 =                                                         │

02:06:17 #335 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:06:17 #336 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:06:17 #337 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:06:17 #338 [Debug] > │ and [<Struct>] US1 =                                                         │

02:06:17 #339 [Debug] > │     | US1_0                                                                  │

02:06:17 #340 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:06:17 #341 [Debug] > │ let rec closure10 () () : UH0 =                                              │

02:06:17 #342 [Debug] > │     UH0_1                                                                    │

02:06:17 #343 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:06:17 #344 [Debug] > │     printfn $"print_and_return / x: {9}"                                     │

02:06:17 #345 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:06:17 #346 [Debug] > │     UH0_0(9, v0)                                                             │

02:06:17 #347 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:06:17 #348 [Debug] > │     printfn $"print_and_return / x: {8}"                                     │

02:06:17 #349 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:06:17 #350 [Debug] > │     UH0_0(8, v0)                                                             │

02:06:17 #351 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:06:17 #352 [Debug] > │     printfn $"print_and_return / x: {7}"                                     │

02:06:17 #353 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:06:17 #354 [Debug] > │     UH0_0(7, v0)                                                             │

02:06:17 #355 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:06:17 #356 [Debug] > │     printfn $"print_and_return / x: {6}"                                     │

02:06:17 #357 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:06:17 #358 [Debug] > │     UH0_0(6, v0)                                                             │

02:06:17 #359 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:06:17 #360 [Debug] > │     printfn $"print_and_return / x: {5}"                                     │

02:06:17 #361 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:06:17 #362 [Debug] > │     UH0_0(5, v0)                                                             │

02:06:17 #363 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:06:17 #364 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:17 #365 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:06:17 #366 [Debug] > │     UH0_0(4, v0)                                                             │

02:06:17 #367 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:06:17 #368 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:17 #369 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:06:17 #370 [Debug] > │     UH0_0(3, v0)                                                             │

02:06:17 #371 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:06:17 #372 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:17 #373 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:06:17 #374 [Debug] > │     UH0_0(2, v0)                                                             │

02:06:17 #375 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:06:17 #376 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:17 #377 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:06:17 #378 [Debug] > │     UH0_0(1, v0)                                                             │

02:06:17 #379 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:06:17 #380 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:06:17 #381 [Debug] > │     UH0_0(0, v0)                                                             │

02:06:17 #382 [Debug] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

02:06:17 #383 [Debug] > │     let v1 : US0 = v0.l0                                                     │

02:06:17 #384 [Debug] > │     match v1 with                                                            │

02:06:17 #385 [Debug] > │     | US0_0(v2) -> (* Computed *)                                            │

02:06:17 #386 [Debug] > │         v2                                                                   │

02:06:17 #387 [Debug] > │     | US0_1(v3) -> (* NotComputed *)                                         │

02:06:17 #388 [Debug] > │         let v4 : UH0 = v3 ()                                                 │

02:06:17 #389 [Debug] > │         let v13 : UH0 =                                                      │

02:06:17 #390 [Debug] > │             match v4 with                                                    │

02:06:17 #391 [Debug] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

02:06:17 #392 [Debug] > │                 let v8 : US0 = US0_1(v7)                                     │

02:06:17 #393 [Debug] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

02:06:17 #394 [Debug] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

02:06:17 #395 [Debug] > │                 UH0_0(v6, v10)                                               │

02:06:17 #396 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:06:17 #397 [Debug] > │                 UH0_1                                                        │

02:06:17 #398 [Debug] > │         let v14 : US0 = US0_0(v13)                                           │

02:06:17 #399 [Debug] > │         v0.l0 <- v14                                                         │

02:06:17 #400 [Debug] > │         v13                                                                  │

02:06:17 #401 [Debug] > │ and method1 (v0 : int32, v1 : UH0) : US1 =                                   │

02:06:17 #402 [Debug] > │     match v1 with                                                            │

02:06:17 #403 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:06:17 #404 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:06:17 #405 [Debug] > │         if v4 then                                                           │

02:06:17 #406 [Debug] > │             US1_1(v2)                                                        │

02:06:17 #407 [Debug] > │         else                                                                 │

02:06:17 #408 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:06:17 #409 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:06:17 #410 [Debug] > │             method1(v6, v7)                                                  │

02:06:17 #411 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:06:17 #412 [Debug] > │         US1_0                                                                │

02:06:17 #413 [Debug] > │ and method0 () : unit =                                                      │

02:06:17 #414 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:17 #415 [Debug] > │     let v0 : (unit -> UH0) = closure0()                                      │

02:06:17 #416 [Debug] > │     let v1 : US0 = US0_1(v0)                                                 │

02:06:17 #417 [Debug] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

02:06:17 #418 [Debug] > │     let v3 : US0 = v2.l0                                                     │

02:06:17 #419 [Debug] > │     let v18 : UH0 =                                                          │

02:06:17 #420 [Debug] > │         match v3 with                                                        │

02:06:17 #421 [Debug] > │         | US0_0(v4) -> (* Computed *)                                        │

02:06:17 #422 [Debug] > │             v4                                                               │

02:06:17 #423 [Debug] > │         | US0_1(v5) -> (* NotComputed *)                                     │

02:06:17 #424 [Debug] > │             let v6 : UH0 = v5 ()                                             │

02:06:17 #425 [Debug] > │             let v15 : UH0 =                                                  │

02:06:17 #426 [Debug] > │                 match v6 with                                                │

02:06:17 #427 [Debug] > │                 | UH0_0(v8, v9) -> (* StreamCons *)                          │

02:06:17 #428 [Debug] > │                     let v10 : US0 = US0_1(v9)                                │

02:06:17 #429 [Debug] > │                     let v11 : Mut0 = {l0 = v10} : Mut0                       │

02:06:17 #430 [Debug] > │                     let v12 : (unit -> UH0) = closure11(v11)                 │

02:06:17 #431 [Debug] > │                     UH0_0(v8, v12)                                           │

02:06:17 #432 [Debug] > │                 | UH0_1 -> (* StreamNil *)                                   │

02:06:17 #433 [Debug] > │                     UH0_1                                                    │

02:06:17 #434 [Debug] > │             let v16 : US0 = US0_0(v15)                                       │

02:06:17 #435 [Debug] > │             v2.l0 <- v16                                                     │

02:06:17 #436 [Debug] > │             v15                                                              │

02:06:17 #437 [Debug] > │     let v19 : int32 = 3                                                      │

02:06:17 #438 [Debug] > │     let v20 : US1 = method1(v19, v18)                                        │

02:06:17 #439 [Debug] > │     let v24 : int32 =                                                        │

02:06:17 #440 [Debug] > │         match v20 with                                                       │

02:06:17 #441 [Debug] > │         | US1_0 -> (* None *)                                                │

02:06:17 #442 [Debug] > │             failwith<int32> "Option does not have a value."                  │

02:06:17 #443 [Debug] > │         | US1_1(v21) -> (* Some *)                                           │

02:06:17 #444 [Debug] > │             v21                                                              │

02:06:17 #445 [Debug] > │     let v25 : bool = v24 = 3                                                 │

02:06:17 #446 [Debug] > │     let v26 : string = $"_equal / actual: %A{v24} / expected: %A{3}"         │

02:06:17 #447 [Debug] > │     let v27 : bool = v25 = false                                             │

02:06:17 #448 [Debug] > │     if v27 then                                                              │

02:06:17 #449 [Debug] > │         failwith<unit> v26                                                   │

02:06:17 #450 [Debug] > │     let v28 : US0 = v2.l0                                                    │

02:06:17 #451 [Debug] > │     let v43 : UH0 =                                                          │

02:06:17 #452 [Debug] > │         match v28 with                                                       │

02:06:17 #453 [Debug] > │         | US0_0(v29) -> (* Computed *)                                       │

02:06:17 #454 [Debug] > │             v29                                                              │

02:06:17 #455 [Debug] > │         | US0_1(v30) -> (* NotComputed *)                                    │

02:06:17 #456 [Debug] > │             let v31 : UH0 = v30 ()                                           │

02:06:17 #457 [Debug] > │             let v40 : UH0 =                                                  │

02:06:17 #458 [Debug] > │                 match v31 with                                               │

02:06:17 #459 [Debug] > │                 | UH0_0(v33, v34) -> (* StreamCons *)                        │

02:06:17 #460 [Debug] > │                     let v35 : US0 = US0_1(v34)                               │

02:06:17 #461 [Debug] > │                     let v36 : Mut0 = {l0 = v35} : Mut0                       │

02:06:17 #462 [Debug] > │                     let v37 : (unit -> UH0) = closure11(v36)                 │

02:06:17 #463 [Debug] > │                     UH0_0(v33, v37)                                          │

02:06:17 #464 [Debug] > │                 | UH0_1 -> (* StreamNil *)                                   │

02:06:17 #465 [Debug] > │                     UH0_1                                                    │

02:06:17 #466 [Debug] > │             let v41 : US0 = US0_0(v40)                                       │

02:06:17 #467 [Debug] > │             v2.l0 <- v41                                                     │

02:06:17 #468 [Debug] > │             v40                                                              │

02:06:17 #469 [Debug] > │     let v44 : int32 = 5                                                      │

02:06:17 #470 [Debug] > │     let v45 : US1 = method1(v44, v43)                                        │

02:06:17 #471 [Debug] > │     let v49 : int32 =                                                        │

02:06:17 #472 [Debug] > │         match v45 with                                                       │

02:06:17 #473 [Debug] > │         | US1_0 -> (* None *)                                                │

02:06:17 #474 [Debug] > │             failwith<int32> "Option does not have a value."                  │

02:06:17 #475 [Debug] > │         | US1_1(v46) -> (* Some *)                                           │

02:06:17 #476 [Debug] > │             v46                                                              │

02:06:18 #477 [Debug] > │     let v50 : bool = v49 = 5                                                 │

02:06:18 #478 [Debug] > │     let v51 : string = $"_equal / actual: %A{v49} / expected: %A{5}"         │

02:06:18 #479 [Debug] > │     let v52 : bool = v50 = false                                             │

02:06:18 #480 [Debug] > │     if v52 then                                                              │

02:06:18 #481 [Debug] > │         failwith<unit> v51                                                   │

02:06:18 #482 [Debug] > │ method0()                                                                    │

02:06:18 #483 [Debug] > │                                                                              │

02:06:18 #484 [Debug] > │ print_and_return / x: 0                                                      │

02:06:18 #485 [Debug] > │ print_and_return / x: 1                                                      │

02:06:18 #486 [Debug] > │ print_and_return / x: 2                                                      │

02:06:18 #487 [Debug] > │ print_and_return / x: 3                                                      │

02:06:18 #488 [Debug] > │ print_and_return / x: 4                                                      │

02:06:18 #489 [Debug] > │ print_and_return / x: 5                                                      │

02:06:18 #490 [Debug] > │                                                                              │

02:06:18 #491 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #492 [Debug] >

02:06:18 #493 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:18 #494 [Debug] > // // test

02:06:18 #495 [Debug] >

02:06:18 #496 [Debug] > inl memo_stream = new_infinite_stream_ print_and_return |> memoize

02:06:18 #497 [Debug] >

02:06:18 #498 [Debug] > memo_stream ()

02:06:18 #499 [Debug] > |> item 3i32

02:06:18 #500 [Debug] > |> _equal 3i32

02:06:18 #501 [Debug] >

02:06:18 #502 [Debug] > memo_stream ()

02:06:18 #503 [Debug] > |> item 5i32

02:06:18 #504 [Debug] > |> _equal 5i32

02:06:18 #505 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1801-0130-085c423ee209\main.spi

02:06:18 #506 [Debug] >

02:06:18 #507 [Debug] > ╭─[ 250.84ms - stdout ]────────────────────────────────────────────────────────╮

02:06:18 #508 [Debug] > │ type UH0 =                                                                   │

02:06:18 #509 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:06:18 #510 [Debug] > │     | UH0_1                                                                  │

02:06:18 #511 [Debug] > │ and [<Struct>] US0 =                                                         │

02:06:18 #512 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:06:18 #513 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:06:18 #514 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:06:18 #515 [Debug] > │ and [<Struct>] US1 =                                                         │

02:06:18 #516 [Debug] > │     | US1_0                                                                  │

02:06:18 #517 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:06:18 #518 [Debug] > │ let rec closure0 (v0 : int32) () : UH0 =                                     │

02:06:18 #519 [Debug] > │     let v1 : int32 = v0 + 1                                                  │

02:06:18 #520 [Debug] > │     method1(v1)                                                              │

02:06:18 #521 [Debug] > │ and method1 (v0 : int32) : UH0 =                                             │

02:06:18 #522 [Debug] > │     printfn $"print_and_return / x: {v0}"                                    │

02:06:18 #523 [Debug] > │     let v1 : (unit -> UH0) = closure0(v0)                                    │

02:06:18 #524 [Debug] > │     UH0_0(v0, v1)                                                            │

02:06:18 #525 [Debug] > │ and closure1 (v0 : UH0) () : UH0 =                                           │

02:06:18 #526 [Debug] > │     v0                                                                       │

02:06:18 #527 [Debug] > │ and closure2 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

02:06:18 #528 [Debug] > │     let v2 : US0 = v1.l0                                                     │

02:06:18 #529 [Debug] > │     match v2 with                                                            │

02:06:18 #530 [Debug] > │     | US0_0(v3) -> (* Computed *)                                            │

02:06:18 #531 [Debug] > │         v3                                                                   │

02:06:18 #532 [Debug] > │     | US0_1(v4) -> (* NotComputed *)                                         │

02:06:18 #533 [Debug] > │         let v5 : UH0 = v4 ()                                                 │

02:06:18 #534 [Debug] > │         let v12 : UH0 =                                                      │

02:06:18 #535 [Debug] > │             match v5 with                                                    │

02:06:18 #536 [Debug] > │             | UH0_0(v7, v8) -> (* StreamCons *)                              │

02:06:18 #537 [Debug] > │                 let v9 : (unit -> UH0) = method2(v0, v8)                     │

02:06:18 #538 [Debug] > │                 UH0_0(v7, v9)                                                │

02:06:18 #539 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:06:18 #540 [Debug] > │                 UH0_1                                                        │

02:06:18 #541 [Debug] > │         let v13 : US0 = US0_0(v12)                                           │

02:06:18 #542 [Debug] > │         v1.l0 <- v13                                                         │

02:06:18 #543 [Debug] > │         v12                                                                  │

02:06:18 #544 [Debug] > │ and method2 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

02:06:18 #545 [Debug] > │     let v2 : US0 = US0_1(v1)                                                 │

02:06:18 #546 [Debug] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

02:06:18 #547 [Debug] > │     closure2(v0, v3)                                                         │

02:06:18 #548 [Debug] > │ and method3 (v0 : int32, v1 : UH0) : US1 =                                   │

02:06:18 #549 [Debug] > │     match v1 with                                                            │

02:06:18 #550 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:06:18 #551 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:06:18 #552 [Debug] > │         if v4 then                                                           │

02:06:18 #553 [Debug] > │             US1_1(v2)                                                        │

02:06:18 #554 [Debug] > │         else                                                                 │

02:06:18 #555 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:06:18 #556 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:06:18 #557 [Debug] > │             method3(v6, v7)                                                  │

02:06:18 #558 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:06:18 #559 [Debug] > │         US1_0                                                                │

02:06:18 #560 [Debug] > │ and method0 () : unit =                                                      │

02:06:18 #561 [Debug] > │     let v0 : int32 = 0                                                       │

02:06:18 #562 [Debug] > │     let v1 : UH0 = method1(v0)                                               │

02:06:18 #563 [Debug] > │     let v2 : (unit -> UH0) = closure1(v1)                                    │

02:06:18 #564 [Debug] > │     let v3 : (unit -> UH0) = method2(v1, v2)                                 │

02:06:18 #565 [Debug] > │     let v4 : UH0 = v3 ()                                                     │

02:06:18 #566 [Debug] > │     let v5 : int32 = 3                                                       │

02:06:18 #567 [Debug] > │     let v6 : US1 = method3(v5, v4)                                           │

02:06:18 #568 [Debug] > │     let v10 : int32 =                                                        │

02:06:18 #569 [Debug] > │         match v6 with                                                        │

02:06:18 #570 [Debug] > │         | US1_0 -> (* None *)                                                │

02:06:18 #571 [Debug] > │             failwith<int32> "Option does not have a value."                  │

02:06:18 #572 [Debug] > │         | US1_1(v7) -> (* Some *)                                            │

02:06:18 #573 [Debug] > │             v7                                                               │

02:06:18 #574 [Debug] > │     let v11 : bool = v10 = 3                                                 │

02:06:18 #575 [Debug] > │     let v12 : string = $"_equal / actual: %A{v10} / expected: %A{3}"         │

02:06:18 #576 [Debug] > │     let v13 : bool = v11 = false                                             │

02:06:18 #577 [Debug] > │     if v13 then                                                              │

02:06:18 #578 [Debug] > │         failwith<unit> v12                                                   │

02:06:18 #579 [Debug] > │     let v14 : UH0 = v3 ()                                                    │

02:06:18 #580 [Debug] > │     let v15 : int32 = 5                                                      │

02:06:18 #581 [Debug] > │     let v16 : US1 = method3(v15, v14)                                        │

02:06:18 #582 [Debug] > │     let v20 : int32 =                                                        │

02:06:18 #583 [Debug] > │         match v16 with                                                       │

02:06:18 #584 [Debug] > │         | US1_0 -> (* None *)                                                │

02:06:18 #585 [Debug] > │             failwith<int32> "Option does not have a value."                  │

02:06:18 #586 [Debug] > │         | US1_1(v17) -> (* Some *)                                           │

02:06:18 #587 [Debug] > │             v17                                                              │

02:06:18 #588 [Debug] > │     let v21 : bool = v20 = 5                                                 │

02:06:18 #589 [Debug] > │     let v22 : string = $"_equal / actual: %A{v20} / expected: %A{5}"         │

02:06:18 #590 [Debug] > │     let v23 : bool = v21 = false                                             │

02:06:18 #591 [Debug] > │     if v23 then                                                              │

02:06:18 #592 [Debug] > │         failwith<unit> v22                                                   │

02:06:18 #593 [Debug] > │ method0()                                                                    │

02:06:18 #594 [Debug] > │                                                                              │

02:06:18 #595 [Debug] > │ print_and_return / x: 0                                                      │

02:06:18 #596 [Debug] > │ print_and_return / x: 1                                                      │

02:06:18 #597 [Debug] > │ print_and_return / x: 2                                                      │

02:06:18 #598 [Debug] > │ print_and_return / x: 3                                                      │

02:06:18 #599 [Debug] > │ print_and_return / x: 4                                                      │

02:06:18 #600 [Debug] > │ print_and_return / x: 5                                                      │

02:06:18 #601 [Debug] > │                                                                              │

02:06:18 #602 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #603 [Debug] >

02:06:18 #604 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:18 #605 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:18 #606 [Debug] > │ ## unfold                                                                    │

02:06:18 #607 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #608 [Debug] >

02:06:18 #609 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:18 #610 [Debug] > inl unfold f x0 =

02:06:18 #611 [Debug] >     inl rec body x =

02:06:18 #612 [Debug] >         match f x with

02:06:18 #613 [Debug] >         | Some (x', y) => StreamCons (x', fun () => loop y)

02:06:18 #614 [Debug] >         | None => StreamNil

02:06:18 #615 [Debug] >     and inl loop x = join_body_unit body x0 x

02:06:18 #616 [Debug] >     loop x0

02:06:18 #617 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1829-2976-2c4e700e2d6a\main.spi

02:06:18 #618 [Debug] >

02:06:18 #619 [Debug] > ╭─[ 174.43ms - stdout ]────────────────────────────────────────────────────────╮

02:06:18 #620 [Debug] > │ ()                                                                           │

02:06:18 #621 [Debug] > │                                                                              │

02:06:18 #622 [Debug] > │                                                                              │

02:06:18 #623 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #624 [Debug] >

02:06:18 #625 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:18 #626 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:18 #627 [Debug] > │ ## iterate                                                                   │

02:06:18 #628 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #629 [Debug] >

02:06:18 #630 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:18 #631 [Debug] > inl iterate f =

02:06:18 #632 [Debug] >     unfold (fun x => Some (x, f x))

02:06:18 #633 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1847-4768-4b892f4d555e\main.spi

02:06:18 #634 [Debug] >

02:06:18 #635 [Debug] > ╭─[ 181.56ms - stdout ]────────────────────────────────────────────────────────╮

02:06:18 #636 [Debug] > │ ()                                                                           │

02:06:18 #637 [Debug] > │                                                                              │

02:06:18 #638 [Debug] > │                                                                              │

02:06:18 #639 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #640 [Debug] >

02:06:18 #641 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:18 #642 [Debug] > // // test

02:06:18 #643 [Debug] >

02:06:18 #644 [Debug] > iterate ((*) 2) 1i32

02:06:18 #645 [Debug] > |> item 10i32

02:06:18 #646 [Debug] > |> _equal 1024

02:06:18 #647 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1866-6619-675a8950be45\main.spi

02:06:18 #648 [Debug] >

02:06:18 #649 [Debug] > ╭─[ 206.25ms - stdout ]────────────────────────────────────────────────────────╮

02:06:18 #650 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:18 #651 [Debug] > │     let v0 : string = $"_equal / actual: %A{1024} / expected: %A{1024}"      │

02:06:18 #652 [Debug] > │     ()                                                                       │

02:06:18 #653 [Debug] > │ method0()                                                                    │

02:06:18 #654 [Debug] > │                                                                              │

02:06:18 #655 [Debug] > │                                                                              │

02:06:18 #656 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #657 [Debug] >

02:06:18 #658 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:18 #659 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:18 #660 [Debug] > │ ## take_while                                                                │

02:06:18 #661 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:18 #662 [Debug] >

02:06:18 #663 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:18 #664 [Debug] > inl take_while cond s =

02:06:18 #665 [Debug] >     inl rec body i = function

02:06:18 #666 [Debug] >         | StreamCons (st, fn) when cond st i => StreamCons (st, fun () => loop

02:06:18 #667 [Debug] > (i + 1) (fn ()))

02:06:18 #668 [Debug] >         | _ => StreamNil

02:06:18 #669 [Debug] >     and inl loop i = join_body body i

02:06:18 #670 [Debug] >     loop 0 s

02:06:19 #671 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1887-8743-83867d0fc71f\main.spi

02:06:19 #672 [Debug] >

02:06:19 #673 [Debug] > ╭─[ 226.28ms - stdout ]────────────────────────────────────────────────────────╮

02:06:19 #674 [Debug] > │ ()                                                                           │

02:06:19 #675 [Debug] > │                                                                              │

02:06:19 #676 [Debug] > │                                                                              │

02:06:19 #677 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:19 #678 [Debug] >

02:06:19 #679 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:19 #680 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:19 #681 [Debug] > │ ## sum                                                                       │

02:06:19 #682 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:19 #683 [Debug] >

02:06:19 #684 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:19 #685 [Debug] > inl sum seq =

02:06:19 #686 [Debug] >     seq |> fold (+) 0

02:06:19 #687 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1910-1043-119e5e085fd4\main.spi

02:06:19 #688 [Debug] >

02:06:19 #689 [Debug] > ╭─[ 183.72ms - stdout ]────────────────────────────────────────────────────────╮

02:06:19 #690 [Debug] > │ ()                                                                           │

02:06:19 #691 [Debug] > │                                                                              │

02:06:19 #692 [Debug] > │                                                                              │

02:06:19 #693 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:19 #694 [Debug] >

02:06:19 #695 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:19 #696 [Debug] > // // test

02:06:19 #697 [Debug] >

02:06:19 #698 [Debug] > listm.init 10i32 id

02:06:19 #699 [Debug] > |> from_list

02:06:19 #700 [Debug] > |> sum

02:06:19 #701 [Debug] > |> _equal 45

02:06:19 #702 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1929-2900-28b601574bf6\main.spi

02:06:19 #703 [Debug] >

02:06:19 #704 [Debug] > ╭─[ 171.09ms - stdout ]────────────────────────────────────────────────────────╮

02:06:19 #705 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:19 #706 [Debug] > │     let v0 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:06:19 #707 [Debug] > │     ()                                                                       │

02:06:19 #708 [Debug] > │ method0()                                                                    │

02:06:19 #709 [Debug] > │                                                                              │

02:06:19 #710 [Debug] > │                                                                              │

02:06:19 #711 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:19 #712 [Debug] >

02:06:19 #713 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:19 #714 [Debug] > // // test

02:06:19 #715 [Debug] >

02:06:19 #716 [Debug] > new_finite_stream print_and_return 10i32

02:06:19 #717 [Debug] > |> take_while (fun n (_ : i32) => n < 5)

02:06:19 #718 [Debug] > |> sum

02:06:19 #719 [Debug] > |> _equal 10

02:06:19 #720 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1946-4660-45579aba0489\main.spi

02:06:19 #721 [Debug] >

02:06:19 #722 [Debug] > ╭─[ 164.28ms - stdout ]────────────────────────────────────────────────────────╮

02:06:19 #723 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:19 #724 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:19 #725 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:19 #726 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:19 #727 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:19 #728 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:19 #729 [Debug] > │     printfn $"print_and_return / x: {5}"                                     │

02:06:19 #730 [Debug] > │     let v0 : string = $"_equal / actual: %A{10} / expected: %A{10}"          │

02:06:19 #731 [Debug] > │     ()                                                                       │

02:06:19 #732 [Debug] > │ method0()                                                                    │

02:06:19 #733 [Debug] > │                                                                              │

02:06:19 #734 [Debug] > │ print_and_return / x: 0                                                      │

02:06:19 #735 [Debug] > │ print_and_return / x: 1                                                      │

02:06:19 #736 [Debug] > │ print_and_return / x: 2                                                      │

02:06:19 #737 [Debug] > │ print_and_return / x: 3                                                      │

02:06:19 #738 [Debug] > │ print_and_return / x: 4                                                      │

02:06:19 #739 [Debug] > │ print_and_return / x: 5                                                      │

02:06:19 #740 [Debug] > │                                                                              │

02:06:19 #741 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:19 #742 [Debug] >

02:06:19 #743 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:19 #744 [Debug] > // // test

02:06:19 #745 [Debug] >

02:06:19 #746 [Debug] > new_infinite_stream print_and_return

02:06:19 #747 [Debug] > |> take_while (fun n (_ : i32) => n < 5i32)

02:06:19 #748 [Debug] > |> sum

02:06:19 #749 [Debug] > |> _equal 10

02:06:19 #750 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1963-6392-695cf5e0f8ac\main.spi

02:06:19 #751 [Debug] >

02:06:19 #752 [Debug] > ╭─[ 179.44ms - stdout ]────────────────────────────────────────────────────────╮

02:06:19 #753 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:19 #754 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:19 #755 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:19 #756 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:19 #757 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:19 #758 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:19 #759 [Debug] > │     printfn $"print_and_return / x: {5}"                                     │

02:06:19 #760 [Debug] > │     let v0 : string = $"_equal / actual: %A{10} / expected: %A{10}"          │

02:06:19 #761 [Debug] > │     ()                                                                       │

02:06:19 #762 [Debug] > │ method0()                                                                    │

02:06:19 #763 [Debug] > │                                                                              │

02:06:19 #764 [Debug] > │ print_and_return / x: 0                                                      │

02:06:19 #765 [Debug] > │ print_and_return / x: 1                                                      │

02:06:19 #766 [Debug] > │ print_and_return / x: 2                                                      │

02:06:19 #767 [Debug] > │ print_and_return / x: 3                                                      │

02:06:19 #768 [Debug] > │ print_and_return / x: 4                                                      │

02:06:19 #769 [Debug] > │ print_and_return / x: 5                                                      │

02:06:19 #770 [Debug] > │                                                                              │

02:06:19 #771 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:19 #772 [Debug] >

02:06:19 #773 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:19 #774 [Debug] > // // test

02:06:19 #775 [Debug] >

02:06:19 #776 [Debug] > iterate ((*) 6) 1i32

02:06:19 #777 [Debug] > |> take_while (fun _ i => i <= 7i32)

02:06:19 #778 [Debug] > |> to_list

02:06:19 #779 [Debug] > |> _equal [[ 1i32; 6; 36; 216; 1296; 7776; 46656; 279936 ]]

02:06:19 #780 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-1982-8268-859ab4d7a4cf\main.spi

02:06:20 #781 [Debug] >

02:06:20 #782 [Debug] > ╭─[ 189.53ms - stdout ]────────────────────────────────────────────────────────╮

02:06:20 #783 [Debug] > │ type UH0 =                                                                   │

02:06:20 #784 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:06:20 #785 [Debug] > │     | UH0_1                                                                  │

02:06:20 #786 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:20 #787 [Debug] > │     let v63 : UH0 = UH0_1                                                    │

02:06:20 #788 [Debug] > │     let v64 : UH0 = UH0_0(279936, v63)                                       │

02:06:20 #789 [Debug] > │     let v65 : UH0 = UH0_0(46656, v64)                                        │

02:06:20 #790 [Debug] > │     let v66 : UH0 = UH0_0(7776, v65)                                         │

02:06:20 #791 [Debug] > │     let v67 : UH0 = UH0_0(1296, v66)                                         │

02:06:20 #792 [Debug] > │     let v68 : UH0 = UH0_0(216, v67)                                          │

02:06:20 #793 [Debug] > │     let v69 : UH0 = UH0_0(36, v68)                                           │

02:06:20 #794 [Debug] > │     let v70 : UH0 = UH0_0(6, v69)                                            │

02:06:20 #795 [Debug] > │     let v71 : UH0 = UH0_0(1, v70)                                            │

02:06:20 #796 [Debug] > │     let v72 : UH0 = UH0_1                                                    │

02:06:20 #797 [Debug] > │     let v73 : UH0 = UH0_0(279936, v72)                                       │

02:06:20 #798 [Debug] > │     let v74 : UH0 = UH0_0(46656, v73)                                        │

02:06:20 #799 [Debug] > │     let v75 : UH0 = UH0_0(7776, v74)                                         │

02:06:20 #800 [Debug] > │     let v76 : UH0 = UH0_0(1296, v75)                                         │

02:06:20 #801 [Debug] > │     let v77 : UH0 = UH0_0(216, v76)                                          │

02:06:20 #802 [Debug] > │     let v78 : UH0 = UH0_0(36, v77)                                           │

02:06:20 #803 [Debug] > │     let v79 : UH0 = UH0_0(6, v78)                                            │

02:06:20 #804 [Debug] > │     let v80 : UH0 = UH0_0(1, v79)                                            │

02:06:20 #805 [Debug] > │     let v81 : string = $"_equal / actual: %A{v71} / expected: %A{v80}"       │

02:06:20 #806 [Debug] > │     ()                                                                       │

02:06:20 #807 [Debug] > │ method0()                                                                    │

02:06:20 #808 [Debug] > │                                                                              │

02:06:20 #809 [Debug] > │                                                                              │

02:06:20 #810 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #811 [Debug] >

02:06:20 #812 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:20 #813 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:20 #814 [Debug] > │ ## indexed                                                                   │

02:06:20 #815 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #816 [Debug] >

02:06:20 #817 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:20 #818 [Debug] > inl indexed s =

02:06:20 #819 [Debug] >     ((StreamNil, 0), s)

02:06:20 #820 [Debug] >     ||> fold fun (acc, i) x =>

02:06:20 #821 [Debug] >         StreamCons ((i, x), fun () => acc), i + 1

02:06:20 #822 [Debug] >     |> fst

02:06:20 #823 [Debug] >     |> rev

02:06:20 #824 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2003-0313-0a270c395b95\main.spi

02:06:20 #825 [Debug] >

02:06:20 #826 [Debug] > ╭─[ 167.64ms - stdout ]────────────────────────────────────────────────────────╮

02:06:20 #827 [Debug] > │ ()                                                                           │

02:06:20 #828 [Debug] > │                                                                              │

02:06:20 #829 [Debug] > │                                                                              │

02:06:20 #830 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #831 [Debug] >

02:06:20 #832 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:20 #833 [Debug] > // // test

02:06:20 #834 [Debug] >

02:06:20 #835 [Debug] > listm.init 10i32 ((*) 2)

02:06:20 #836 [Debug] > |> from_list

02:06:20 #837 [Debug] > |> indexed

02:06:20 #838 [Debug] > |> item 5i32

02:06:20 #839 [Debug] > |> _equal (5i32, 10i32)

02:06:20 #840 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2020-2010-26932e64f125\main.spi

02:06:20 #841 [Debug] >

02:06:20 #842 [Debug] > ╭─[ 183.25ms - stdout ]────────────────────────────────────────────────────────╮

02:06:20 #843 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:20 #844 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5, 10)} / expected:      │

02:06:20 #845 [Debug] > │ %A{struct (5, 10)}"                                                          │

02:06:20 #846 [Debug] > │     ()                                                                       │

02:06:20 #847 [Debug] > │ method0()                                                                    │

02:06:20 #848 [Debug] > │                                                                              │

02:06:20 #849 [Debug] > │                                                                              │

02:06:20 #850 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #851 [Debug] >

02:06:20 #852 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:20 #853 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:20 #854 [Debug] > │ ## map                                                                       │

02:06:20 #855 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #856 [Debug] >

02:06:20 #857 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:20 #858 [Debug] > inl map fn s =

02:06:20 #859 [Debug] >     (s, StreamNil)

02:06:20 #860 [Debug] >     ||> fold_back fun x acc =>

02:06:20 #861 [Debug] >         StreamCons (fn x, fun () => acc)

02:06:20 #862 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2039-3928-3c6af448654f\main.spi

02:06:20 #863 [Debug] >

02:06:20 #864 [Debug] > ╭─[ 201.49ms - stdout ]────────────────────────────────────────────────────────╮

02:06:20 #865 [Debug] > │ ()                                                                           │

02:06:20 #866 [Debug] > │                                                                              │

02:06:20 #867 [Debug] > │                                                                              │

02:06:20 #868 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #869 [Debug] >

02:06:20 #870 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:20 #871 [Debug] > // // test

02:06:20 #872 [Debug] >

02:06:20 #873 [Debug] > listm.init 10i32 id

02:06:20 #874 [Debug] > |> from_list

02:06:20 #875 [Debug] > |> map ((*) 2)

02:06:20 #876 [Debug] > |> item 5i32

02:06:20 #877 [Debug] > |> _equal 10i32

02:06:20 #878 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2059-5948-50de9577f3ff\main.spi

02:06:20 #879 [Debug] >

02:06:20 #880 [Debug] > ╭─[ 155.80ms - stdout ]────────────────────────────────────────────────────────╮

02:06:20 #881 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:20 #882 [Debug] > │     let v0 : string = $"_equal / actual: %A{10} / expected: %A{10}"          │

02:06:20 #883 [Debug] > │     ()                                                                       │

02:06:20 #884 [Debug] > │ method0()                                                                    │

02:06:20 #885 [Debug] > │                                                                              │

02:06:20 #886 [Debug] > │                                                                              │

02:06:20 #887 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #888 [Debug] >

02:06:20 #889 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:20 #890 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:20 #891 [Debug] > │ ## zip_with                                                                  │

02:06:20 #892 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #893 [Debug] >

02:06:20 #894 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:20 #895 [Debug] > inl zip_with fn s1 s2 =

02:06:20 #896 [Debug] >     inl rec loop s1 s2 =

02:06:20 #897 [Debug] >         match s1, s2 with

02:06:20 #898 [Debug] >         | StreamCons (st1, fn1), StreamCons (st2, fn2) =>

02:06:20 #899 [Debug] >             StreamCons (fn st1 st2, fun () => loop (fn1 ()) (fn2 ()))

02:06:20 #900 [Debug] >         | StreamNil, _ | _, StreamNil => StreamNil

02:06:20 #901 [Debug] >     loop s1 s2

02:06:20 #902 [Debug] >

02:06:20 #903 [Debug] > inl zip_with_ fn s1 s2 =

02:06:20 #904 [Debug] >     let rec loop s1 s2 =

02:06:20 #905 [Debug] >         match s1, s2 with

02:06:20 #906 [Debug] >         | StreamCons (st1, fn1), StreamCons (st2, fn2) =>

02:06:20 #907 [Debug] >             StreamCons (fn st1 st2, fun () => loop (fn1 ()) (fn2 ()))

02:06:20 #908 [Debug] >         | StreamNil, _ | _, StreamNil => StreamNil

02:06:20 #909 [Debug] >     loop s1 s2

02:06:20 #910 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2077-7718-7a1d3214de14\main.spi

02:06:20 #911 [Debug] >

02:06:20 #912 [Debug] > ╭─[ 214.89ms - stdout ]────────────────────────────────────────────────────────╮

02:06:20 #913 [Debug] > │ ()                                                                           │

02:06:20 #914 [Debug] > │                                                                              │

02:06:20 #915 [Debug] > │                                                                              │

02:06:20 #916 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:20 #917 [Debug] >

02:06:20 #918 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:20 #919 [Debug] > // // test

02:06:20 #920 [Debug] >

02:06:20 #921 [Debug] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

02:06:20 #922 [Debug] > ||> zip_with (+)

02:06:20 #923 [Debug] > |> item 2i32

02:06:20 #924 [Debug] > |> _equal 6

02:06:21 #925 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2098-9862-9c0c3b481276\main.spi

02:06:21 #926 [Debug] >

02:06:21 #927 [Debug] > ╭─[ 175.64ms - stdout ]────────────────────────────────────────────────────────╮

02:06:21 #928 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:21 #929 [Debug] > │     let v0 : string = $"_equal / actual: %A{6} / expected: %A{6}"            │

02:06:21 #930 [Debug] > │     ()                                                                       │

02:06:21 #931 [Debug] > │ method0()                                                                    │

02:06:21 #932 [Debug] > │                                                                              │

02:06:21 #933 [Debug] > │                                                                              │

02:06:21 #934 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:21 #935 [Debug] >

02:06:21 #936 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:21 #937 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:21 #938 [Debug] > │ ## zip                                                                       │

02:06:21 #939 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:21 #940 [Debug] >

02:06:21 #941 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:21 #942 [Debug] > inl zip s1 s2 =

02:06:21 #943 [Debug] >     zip_with pair s1 s2

02:06:21 #944 [Debug] >

02:06:21 #945 [Debug] > inl zip_ s1 s2 =

02:06:21 #946 [Debug] >     zip_with_ pair s1 s2

02:06:21 #947 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2116-1677-17b065f1f6fe\main.spi

02:06:21 #948 [Debug] >

02:06:21 #949 [Debug] > ╭─[ 161.22ms - stdout ]────────────────────────────────────────────────────────╮

02:06:21 #950 [Debug] > │ ()                                                                           │

02:06:21 #951 [Debug] > │                                                                              │

02:06:21 #952 [Debug] > │                                                                              │

02:06:21 #953 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:21 #954 [Debug] >

02:06:21 #955 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:21 #956 [Debug] > // // test

02:06:21 #957 [Debug] >

02:06:21 #958 [Debug] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

02:06:21 #959 [Debug] > ||> zip

02:06:21 #960 [Debug] > |> item 5i32

02:06:21 #961 [Debug] > |> _equal (5, 10)

02:06:21 #962 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2133-3313-314b5d793bc2\main.spi

02:06:21 #963 [Debug] >

02:06:21 #964 [Debug] > ╭─[ 195.68ms - stdout ]────────────────────────────────────────────────────────╮

02:06:21 #965 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:21 #966 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5, 10)} / expected:      │

02:06:21 #967 [Debug] > │ %A{struct (5, 10)}"                                                          │

02:06:21 #968 [Debug] > │     ()                                                                       │

02:06:21 #969 [Debug] > │ method0()                                                                    │

02:06:21 #970 [Debug] > │                                                                              │

02:06:21 #971 [Debug] > │                                                                              │

02:06:21 #972 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:21 #973 [Debug] >

02:06:21 #974 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:21 #975 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:21 #976 [Debug] > │ ## unzip                                                                     │

02:06:21 #977 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:21 #978 [Debug] >

02:06:21 #979 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:21 #980 [Debug] > inl unzip s =

02:06:21 #981 [Debug] >     inl rec body s =

02:06:21 #982 [Debug] >         match s with

02:06:21 #983 [Debug] >         | StreamCons ((x, y), fn) =>

02:06:21 #984 [Debug] >             inl xs, ys = loop (fn ())

02:06:21 #985 [Debug] >             StreamCons (x, fun () => xs), StreamCons (y, fun () => ys)

02:06:21 #986 [Debug] >         | StreamNil => pair StreamNil StreamNil

02:06:21 #987 [Debug] >     and inl loop x =

02:06:21 #988 [Debug] >         if var_is x |> not

02:06:21 #989 [Debug] >         then body x

02:06:21 #990 [Debug] >         else

02:06:21 #991 [Debug] >             inl x = dyn x

02:06:21 #992 [Debug] >             join body x

02:06:21 #993 [Debug] >     loop s

02:06:21 #994 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2153-5346-54410b6a833d\main.spi

02:06:21 #995 [Debug] >

02:06:21 #996 [Debug] > ╭─[ 171.40ms - stdout ]────────────────────────────────────────────────────────╮

02:06:21 #997 [Debug] > │ ()                                                                           │

02:06:21 #998 [Debug] > │                                                                              │

02:06:21 #999 [Debug] > │                                                                              │

02:06:21 #1000 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:21 #1001 [Debug] >

02:06:21 #1002 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:21 #1003 [Debug] > // // test

02:06:21 #1004 [Debug] >

02:06:21 #1005 [Debug] > listm.init 10i32 id

02:06:21 #1006 [Debug] > |> listm.map (fun x => x, x)

02:06:21 #1007 [Debug] > |> from_list

02:06:21 #1008 [Debug] > |> unzip

02:06:21 #1009 [Debug] > |> fun x, y =>

02:06:21 #1010 [Debug] >     x |> sum

02:06:21 #1011 [Debug] >     |> _equal 45

02:06:21 #1012 [Debug] >

02:06:21 #1013 [Debug] >     y |> sum

02:06:21 #1014 [Debug] >     |> _equal 45

02:06:21 #1015 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-2170-7085-785a33a5e3d2\main.spi

02:06:21 #1016 [Debug] >

02:06:21 #1017 [Debug] > ╭─[ 196.69ms - stdout ]────────────────────────────────────────────────────────╮

02:06:21 #1018 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:21 #1019 [Debug] > │     let v0 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:06:21 #1020 [Debug] > │     let v1 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:06:21 #1021 [Debug] > │     ()                                                                       │

02:06:21 #1022 [Debug] > │ method0()                                                                    │

02:06:21 #1023 [Debug] > │                                                                              │

02:06:21 #1024 [Debug] > │                                                                              │

02:06:21 #1025 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:23 #1026 [Debug] > [NbConvertApp] Converting notebook stream.dib.ipynb to html

02:06:23 #1027 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:06:23 #1028 [Debug] >   validate(nb)

02:06:24 #1029 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:06:24 #1030 [Debug] >   return _pygments_highlight(

02:06:24 #1031 [Debug] > [NbConvertApp] Writing 357092 bytes to stream.dib.html

02:06:25 #1032 [Debug] executeAsync / exitCode: 0 / proc.Id: 55384 / output.Length: 58505

02:06:25 #1033 [Debug] main / executeCommand / exitCode: 0

02:06:26 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:06:26 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:06:26 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:06:26 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:06:26 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:06:26 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:06:27 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:06:27 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:06:27 #9 [Debug] > Server bound to: http://localhost:13805

02:06:27 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 seq.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:06:29 #11 [Debug] >

02:06:29 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:29 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:29 #14 [Debug] > │ # seq                                                                        │

02:06:29 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:29 #16 [Debug] >

02:06:29 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:29 #18 [Debug] > // // test

02:06:29 #19 [Debug] >

02:06:29 #20 [Debug] > open testing

02:06:33 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3222-2259-2044d17fa5f8\main.spi

02:06:35 #22 [Debug] >

02:06:35 #23 [Debug] > ╭─[ 5.38s - stdout ]───────────────────────────────────────────────────────────╮

02:06:35 #24 [Debug] > │ ()                                                                           │

02:06:35 #25 [Debug] > │                                                                              │

02:06:35 #26 [Debug] > │                                                                              │

02:06:35 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #28 [Debug] >

02:06:35 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:35 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:35 #31 [Debug] > │ ## seq                                                                       │

02:06:35 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #33 [Debug] >

02:06:35 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:35 #35 [Debug] > type seq dim el = dim -> option el

02:06:35 #36 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3522-2248-29b6a62e920e\main.spi

02:06:35 #37 [Debug] >

02:06:35 #38 [Debug] > ╭─[ 221.21ms - stdout ]────────────────────────────────────────────────────────╮

02:06:35 #39 [Debug] > │ ()                                                                           │

02:06:35 #40 [Debug] > │                                                                              │

02:06:35 #41 [Debug] > │                                                                              │

02:06:35 #42 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #43 [Debug] >

02:06:35 #44 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:35 #45 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:35 #46 [Debug] > │ ## item                                                                      │

02:06:35 #47 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #48 [Debug] >

02:06:35 #49 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:35 #50 [Debug] > inl item n seq =

02:06:35 #51 [Debug] >     seq n

02:06:35 #52 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3545-4526-4dfb84735e77\main.spi

02:06:35 #53 [Debug] >

02:06:35 #54 [Debug] > ╭─[ 222.51ms - stdout ]────────────────────────────────────────────────────────╮

02:06:35 #55 [Debug] > │ ()                                                                           │

02:06:35 #56 [Debug] > │                                                                              │

02:06:35 #57 [Debug] > │                                                                              │

02:06:35 #58 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #59 [Debug] >

02:06:35 #60 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:35 #61 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:35 #62 [Debug] > │ ## from_list                                                                 │

02:06:35 #63 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #64 [Debug] >

02:06:35 #65 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:35 #66 [Debug] > inl from_list list =

02:06:35 #67 [Debug] >     fun n =>

02:06:35 #68 [Debug] >         list |> listm'.try_item n

02:06:35 #69 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3567-6777-6512e133f87f\main.spi

02:06:35 #70 [Debug] >

02:06:35 #71 [Debug] > ╭─[ 173.25ms - stdout ]────────────────────────────────────────────────────────╮

02:06:35 #72 [Debug] > │ ()                                                                           │

02:06:35 #73 [Debug] > │                                                                              │

02:06:35 #74 [Debug] > │                                                                              │

02:06:35 #75 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:35 #76 [Debug] >

02:06:35 #77 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:35 #78 [Debug] > // // test

02:06:35 #79 [Debug] >

02:06:35 #80 [Debug] > listm.init 10i32 print_and_return

02:06:35 #81 [Debug] > |> from_list

02:06:35 #82 [Debug] > |> item 5i32

02:06:35 #83 [Debug] > |> _equal (Some 5i32)

02:06:35 #84 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3585-8545-855b1ea0da0d\main.spi

02:06:37 #85 [Debug] >

02:06:37 #86 [Debug] > ╭─[ 1.47s - stdout ]───────────────────────────────────────────────────────────╮

02:06:37 #87 [Debug] > │ type [<Struct>] US0 =                                                        │

02:06:37 #88 [Debug] > │     | US0_0                                                                  │

02:06:37 #89 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:06:37 #90 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:37 #91 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:37 #92 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:37 #93 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:37 #94 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:37 #95 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:37 #96 [Debug] > │     printfn $"print_and_return / x: {5}"                                     │

02:06:37 #97 [Debug] > │     printfn $"print_and_return / x: {6}"                                     │

02:06:37 #98 [Debug] > │     printfn $"print_and_return / x: {7}"                                     │

02:06:37 #99 [Debug] > │     printfn $"print_and_return / x: {8}"                                     │

02:06:37 #100 [Debug] > │     printfn $"print_and_return / x: {9}"                                     │

02:06:37 #101 [Debug] > │     let v3 : US0 = US0_1(5)                                                  │

02:06:37 #102 [Debug] > │     let v4 : US0 = US0_1(5)                                                  │

02:06:37 #103 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:06:37 #104 [Debug] > │     ()                                                                       │

02:06:37 #105 [Debug] > │ method0()                                                                    │

02:06:37 #106 [Debug] > │                                                                              │

02:06:37 #107 [Debug] > │ print_and_return / x: 0                                                      │

02:06:37 #108 [Debug] > │ print_and_return / x: 1                                                      │

02:06:37 #109 [Debug] > │ print_and_return / x: 2                                                      │

02:06:37 #110 [Debug] > │ print_and_return / x: 3                                                      │

02:06:37 #111 [Debug] > │ print_and_return / x: 4                                                      │

02:06:37 #112 [Debug] > │ print_and_return / x: 5                                                      │

02:06:37 #113 [Debug] > │ print_and_return / x: 6                                                      │

02:06:37 #114 [Debug] > │ print_and_return / x: 7                                                      │

02:06:37 #115 [Debug] > │ print_and_return / x: 8                                                      │

02:06:37 #116 [Debug] > │ print_and_return / x: 9                                                      │

02:06:37 #117 [Debug] > │                                                                              │

02:06:37 #118 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:37 #119 [Debug] >

02:06:37 #120 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:37 #121 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:37 #122 [Debug] > │ ## indexed                                                                   │

02:06:37 #123 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:37 #124 [Debug] >

02:06:37 #125 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:37 #126 [Debug] > inl indexed s =

02:06:37 #127 [Debug] >     fun n =>

02:06:37 #128 [Debug] >         s |> item n |> optionm.map (fun x => n, x)

02:06:37 #129 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3734-3439-3450736f5ac1\main.spi

02:06:37 #130 [Debug] >

02:06:37 #131 [Debug] > ╭─[ 201.61ms - stdout ]────────────────────────────────────────────────────────╮

02:06:37 #132 [Debug] > │ ()                                                                           │

02:06:37 #133 [Debug] > │                                                                              │

02:06:37 #134 [Debug] > │                                                                              │

02:06:37 #135 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:37 #136 [Debug] >

02:06:37 #137 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:37 #138 [Debug] > // // test

02:06:37 #139 [Debug] >

02:06:37 #140 [Debug] > listm.init 10i32 ((*) 2)

02:06:37 #141 [Debug] > |> from_list

02:06:37 #142 [Debug] > |> indexed

02:06:37 #143 [Debug] > |> item 5i32

02:06:37 #144 [Debug] > |> _equal (Some (5i32, 10i32))

02:06:37 #145 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3754-5450-5759703a06c7\main.spi

02:06:37 #146 [Debug] >

02:06:37 #147 [Debug] > ╭─[ 203.37ms - stdout ]────────────────────────────────────────────────────────╮

02:06:37 #148 [Debug] > │ type [<Struct>] US0 =                                                        │

02:06:37 #149 [Debug] > │     | US0_0                                                                  │

02:06:37 #150 [Debug] > │     | US0_1 of f1_0 : int32 * f1_1 : int32                                   │

02:06:37 #151 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:37 #152 [Debug] > │     let v3 : US0 = US0_1(5, 10)                                              │

02:06:37 #153 [Debug] > │     let v4 : US0 = US0_1(5, 10)                                              │

02:06:37 #154 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:06:37 #155 [Debug] > │     ()                                                                       │

02:06:37 #156 [Debug] > │ method0()                                                                    │

02:06:37 #157 [Debug] > │                                                                              │

02:06:37 #158 [Debug] > │                                                                              │

02:06:37 #159 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:37 #160 [Debug] >

02:06:37 #161 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:37 #162 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:37 #163 [Debug] > │ ## zip                                                                       │

02:06:37 #164 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:37 #165 [Debug] >

02:06:37 #166 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:37 #167 [Debug] > inl zip n seq1 seq2 =

02:06:37 #168 [Debug] >     seq1 n, seq2 n

02:06:37 #169 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3775-7572-79c767486748\main.spi

02:06:37 #170 [Debug] >

02:06:37 #171 [Debug] > ╭─[ 208.83ms - stdout ]────────────────────────────────────────────────────────╮

02:06:37 #172 [Debug] > │ ()                                                                           │

02:06:37 #173 [Debug] > │                                                                              │

02:06:37 #174 [Debug] > │                                                                              │

02:06:37 #175 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:37 #176 [Debug] >

02:06:37 #177 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:37 #178 [Debug] > // // test

02:06:37 #179 [Debug] >

02:06:37 #180 [Debug] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

02:06:37 #181 [Debug] > ||> zip 5i32

02:06:37 #182 [Debug] > |> _equal (Some 5, Some 10)

02:06:38 #183 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3796-9681-90d8788610e0\main.spi

02:06:38 #184 [Debug] >

02:06:38 #185 [Debug] > ╭─[ 224.65ms - stdout ]────────────────────────────────────────────────────────╮

02:06:38 #186 [Debug] > │ type [<Struct>] US0 =                                                        │

02:06:38 #187 [Debug] > │     | US0_0                                                                  │

02:06:38 #188 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:06:38 #189 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:38 #190 [Debug] > │     let v6 : US0 = US0_1(5)                                                  │

02:06:38 #191 [Debug] > │     let v7 : US0 = US0_1(10)                                                 │

02:06:38 #192 [Debug] > │     let v8 : US0 = US0_1(5)                                                  │

02:06:38 #193 [Debug] > │     let v9 : US0 = US0_1(10)                                                 │

02:06:38 #194 [Debug] > │     let v10 : string = $"_equal / actual: %A{struct (v6, v7)} / expected:    │

02:06:38 #195 [Debug] > │ %A{struct (v8, v9)}"                                                         │

02:06:38 #196 [Debug] > │     ()                                                                       │

02:06:38 #197 [Debug] > │ method0()                                                                    │

02:06:38 #198 [Debug] > │                                                                              │

02:06:38 #199 [Debug] > │                                                                              │

02:06:38 #200 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #201 [Debug] >

02:06:38 #202 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:38 #203 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:38 #204 [Debug] > │ ## zip_with                                                                  │

02:06:38 #205 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #206 [Debug] >

02:06:38 #207 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:38 #208 [Debug] > inl zip_with fn seq1 seq2 =

02:06:38 #209 [Debug] >     fun n =>

02:06:38 #210 [Debug] >         fn (seq1 n) (seq2 n)

02:06:38 #211 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3820-2026-23fbd324da72\main.spi

02:06:38 #212 [Debug] >

02:06:38 #213 [Debug] > ╭─[ 189.76ms - stdout ]────────────────────────────────────────────────────────╮

02:06:38 #214 [Debug] > │ ()                                                                           │

02:06:38 #215 [Debug] > │                                                                              │

02:06:38 #216 [Debug] > │                                                                              │

02:06:38 #217 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #218 [Debug] >

02:06:38 #219 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:38 #220 [Debug] > // // test

02:06:38 #221 [Debug] >

02:06:38 #222 [Debug] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

02:06:38 #223 [Debug] > ||> zip_with (optionm'.choose (+))

02:06:38 #224 [Debug] > |> item 2i32

02:06:38 #225 [Debug] > |> _equal (Some 6)

02:06:38 #226 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3839-3943-3883b971e362\main.spi

02:06:38 #227 [Debug] >

02:06:38 #228 [Debug] > ╭─[ 252.09ms - stdout ]────────────────────────────────────────────────────────╮

02:06:38 #229 [Debug] > │ type [<Struct>] US0 =                                                        │

02:06:38 #230 [Debug] > │     | US0_0                                                                  │

02:06:38 #231 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:06:38 #232 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:38 #233 [Debug] > │     let v3 : US0 = US0_1(6)                                                  │

02:06:38 #234 [Debug] > │     let v4 : US0 = US0_1(6)                                                  │

02:06:38 #235 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:06:38 #236 [Debug] > │     ()                                                                       │

02:06:38 #237 [Debug] > │ method0()                                                                    │

02:06:38 #238 [Debug] > │                                                                              │

02:06:38 #239 [Debug] > │                                                                              │

02:06:38 #240 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #241 [Debug] >

02:06:38 #242 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:38 #243 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:38 #244 [Debug] > │ ## fold                                                                      │

02:06:38 #245 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #246 [Debug] >

02:06:38 #247 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:38 #248 [Debug] > inl fold fn init seq =

02:06:38 #249 [Debug] >     inl rec loop acc n =

02:06:38 #250 [Debug] >         match seq n with

02:06:38 #251 [Debug] >         | Some x => loop (fn acc x) (n + 1)

02:06:38 #252 [Debug] >         | None => acc

02:06:38 #253 [Debug] >     loop init 0

02:06:38 #254 [Debug] >

02:06:38 #255 [Debug] > inl fold_ fn init seq =

02:06:38 #256 [Debug] >     let rec loop acc n =

02:06:38 #257 [Debug] >         match seq n with

02:06:38 #258 [Debug] >         | Some x => loop (fn acc x) (n + 1)

02:06:38 #259 [Debug] >         | None => acc

02:06:38 #260 [Debug] >     loop init 0

02:06:38 #261 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3865-6547-6d807a9f176c\main.spi

02:06:38 #262 [Debug] >

02:06:38 #263 [Debug] > ╭─[ 175.38ms - stdout ]────────────────────────────────────────────────────────╮

02:06:38 #264 [Debug] > │ ()                                                                           │

02:06:38 #265 [Debug] > │                                                                              │

02:06:38 #266 [Debug] > │                                                                              │

02:06:38 #267 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #268 [Debug] >

02:06:38 #269 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:38 #270 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:38 #271 [Debug] > │ ## sum                                                                       │

02:06:38 #272 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:38 #273 [Debug] >

02:06:38 #274 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:38 #275 [Debug] > inl sum seq =

02:06:38 #276 [Debug] >     seq |> fold (+) 0

02:06:38 #277 [Debug] >

02:06:38 #278 [Debug] > inl sum_ seq =

02:06:38 #279 [Debug] >     seq |> fold_ (+) 0

02:06:38 #280 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3883-8364-8457d5fc582b\main.spi

02:06:39 #281 [Debug] >

02:06:39 #282 [Debug] > ╭─[ 196.08ms - stdout ]────────────────────────────────────────────────────────╮

02:06:39 #283 [Debug] > │ ()                                                                           │

02:06:39 #284 [Debug] > │                                                                              │

02:06:39 #285 [Debug] > │                                                                              │

02:06:39 #286 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #287 [Debug] >

02:06:39 #288 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:39 #289 [Debug] > // // test

02:06:39 #290 [Debug] >

02:06:39 #291 [Debug] > listm.init 10i32 id

02:06:39 #292 [Debug] > |> from_list

02:06:39 #293 [Debug] > |> fun f (n : i32) => f n

02:06:39 #294 [Debug] > |> sum

02:06:39 #295 [Debug] > |> _equal 45

02:06:39 #296 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3903-0334-041f3d9adfb7\main.spi

02:06:39 #297 [Debug] >

02:06:39 #298 [Debug] > ╭─[ 189.90ms - stdout ]────────────────────────────────────────────────────────╮

02:06:39 #299 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:39 #300 [Debug] > │     let v0 : string = $"_equal / actual: %A{45} / expected: %A{45}"          │

02:06:39 #301 [Debug] > │     ()                                                                       │

02:06:39 #302 [Debug] > │ method0()                                                                    │

02:06:39 #303 [Debug] > │                                                                              │

02:06:39 #304 [Debug] > │                                                                              │

02:06:39 #305 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #306 [Debug] >

02:06:39 #307 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:39 #308 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:39 #309 [Debug] > │ ## to_list                                                                   │

02:06:39 #310 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #311 [Debug] >

02:06:39 #312 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:39 #313 [Debug] > inl to_list seq =

02:06:39 #314 [Debug] >     seq

02:06:39 #315 [Debug] >     |> fold (fun acc x => x :: acc) [[]]

02:06:39 #316 [Debug] >     |> listm.rev

02:06:39 #317 [Debug] >

02:06:39 #318 [Debug] > inl to_list_ seq =

02:06:39 #319 [Debug] >     seq

02:06:39 #320 [Debug] >     |> fold_ (fun acc x => x :: acc) [[]]

02:06:39 #321 [Debug] >     |> listm.rev

02:06:39 #322 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3923-2307-248d205394bb\main.spi

02:06:39 #323 [Debug] >

02:06:39 #324 [Debug] > ╭─[ 179.06ms - stdout ]────────────────────────────────────────────────────────╮

02:06:39 #325 [Debug] > │ ()                                                                           │

02:06:39 #326 [Debug] > │                                                                              │

02:06:39 #327 [Debug] > │                                                                              │

02:06:39 #328 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #329 [Debug] >

02:06:39 #330 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:39 #331 [Debug] > // // test

02:06:39 #332 [Debug] >

02:06:39 #333 [Debug] > listm.init 10i32 id

02:06:39 #334 [Debug] > |> from_list

02:06:39 #335 [Debug] > |> fun f (n : i32) => f n

02:06:39 #336 [Debug] > |> to_list

02:06:39 #337 [Debug] > |> _equal (listm.init 10i32 id)

02:06:39 #338 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3941-4114-4e3241e783a7\main.spi

02:06:39 #339 [Debug] >

02:06:39 #340 [Debug] > ╭─[ 266.33ms - stdout ]────────────────────────────────────────────────────────╮

02:06:39 #341 [Debug] > │ type UH0 =                                                                   │

02:06:39 #342 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:06:39 #343 [Debug] > │     | UH0_1                                                                  │

02:06:39 #344 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:39 #345 [Debug] > │     let v88 : UH0 = UH0_1                                                    │

02:06:39 #346 [Debug] > │     let v89 : UH0 = UH0_0(9, v88)                                            │

02:06:39 #347 [Debug] > │     let v90 : UH0 = UH0_0(8, v89)                                            │

02:06:39 #348 [Debug] > │     let v91 : UH0 = UH0_0(7, v90)                                            │

02:06:39 #349 [Debug] > │     let v92 : UH0 = UH0_0(6, v91)                                            │

02:06:39 #350 [Debug] > │     let v93 : UH0 = UH0_0(5, v92)                                            │

02:06:39 #351 [Debug] > │     let v94 : UH0 = UH0_0(4, v93)                                            │

02:06:39 #352 [Debug] > │     let v95 : UH0 = UH0_0(3, v94)                                            │

02:06:39 #353 [Debug] > │     let v96 : UH0 = UH0_0(2, v95)                                            │

02:06:39 #354 [Debug] > │     let v97 : UH0 = UH0_0(1, v96)                                            │

02:06:39 #355 [Debug] > │     let v98 : UH0 = UH0_0(0, v97)                                            │

02:06:39 #356 [Debug] > │     let v99 : UH0 = UH0_1                                                    │

02:06:39 #357 [Debug] > │     let v100 : UH0 = UH0_0(9, v99)                                           │

02:06:39 #358 [Debug] > │     let v101 : UH0 = UH0_0(8, v100)                                          │

02:06:39 #359 [Debug] > │     let v102 : UH0 = UH0_0(7, v101)                                          │

02:06:39 #360 [Debug] > │     let v103 : UH0 = UH0_0(6, v102)                                          │

02:06:39 #361 [Debug] > │     let v104 : UH0 = UH0_0(5, v103)                                          │

02:06:39 #362 [Debug] > │     let v105 : UH0 = UH0_0(4, v104)                                          │

02:06:39 #363 [Debug] > │     let v106 : UH0 = UH0_0(3, v105)                                          │

02:06:39 #364 [Debug] > │     let v107 : UH0 = UH0_0(2, v106)                                          │

02:06:39 #365 [Debug] > │     let v108 : UH0 = UH0_0(1, v107)                                          │

02:06:39 #366 [Debug] > │     let v109 : UH0 = UH0_0(0, v108)                                          │

02:06:39 #367 [Debug] > │     let v110 : string = $"_equal / actual: %A{v98} / expected: %A{v109}"     │

02:06:39 #368 [Debug] > │     ()                                                                       │

02:06:39 #369 [Debug] > │ method0()                                                                    │

02:06:39 #370 [Debug] > │                                                                              │

02:06:39 #371 [Debug] > │                                                                              │

02:06:39 #372 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #373 [Debug] >

02:06:39 #374 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:39 #375 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:39 #376 [Debug] > │ ## take_while                                                                │

02:06:39 #377 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #378 [Debug] >

02:06:39 #379 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:39 #380 [Debug] > inl take_while cond seq =

02:06:39 #381 [Debug] >     inl rec loop acc i =

02:06:39 #382 [Debug] >         match seq i with

02:06:39 #383 [Debug] >         | Some st when cond st i => loop (st :: acc) (i + 1)

02:06:39 #384 [Debug] >         | _ => acc |> listm.rev

02:06:39 #385 [Debug] >     loop [[]] 0

02:06:39 #386 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3969-6922-6b67a576e311\main.spi

02:06:39 #387 [Debug] >

02:06:39 #388 [Debug] > ╭─[ 191.27ms - stdout ]────────────────────────────────────────────────────────╮

02:06:39 #389 [Debug] > │ ()                                                                           │

02:06:39 #390 [Debug] > │                                                                              │

02:06:39 #391 [Debug] > │                                                                              │

02:06:39 #392 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:39 #393 [Debug] >

02:06:39 #394 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:39 #395 [Debug] > // // test

02:06:39 #396 [Debug] >

02:06:39 #397 [Debug] > listm.init 10i32 id

02:06:39 #398 [Debug] > |> from_list

02:06:39 #399 [Debug] > |> take_while (fun n (_ : i32) => n < 5)

02:06:39 #400 [Debug] > |> listm'.sum

02:06:39 #401 [Debug] > |> _equal 10

02:06:40 #402 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-3988-8860-80aaa42d62f6\main.spi

02:06:40 #403 [Debug] >

02:06:40 #404 [Debug] > ╭─[ 290.02ms - stdout ]────────────────────────────────────────────────────────╮

02:06:40 #405 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:40 #406 [Debug] > │     let v0 : string = $"_equal / actual: %A{10} / expected: %A{10}"          │

02:06:40 #407 [Debug] > │     ()                                                                       │

02:06:40 #408 [Debug] > │ method0()                                                                    │

02:06:40 #409 [Debug] > │                                                                              │

02:06:40 #410 [Debug] > │                                                                              │

02:06:40 #411 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:40 #412 [Debug] >

02:06:40 #413 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:40 #414 [Debug] > // // test

02:06:40 #415 [Debug] >

02:06:40 #416 [Debug] > stream.new_finite_stream print_and_return 10i32

02:06:40 #417 [Debug] > |> flip stream.try_item

02:06:40 #418 [Debug] > |> take_while (fun n (_ : i32) => n < 5)

02:06:40 #419 [Debug] > |> listm'.sum

02:06:40 #420 [Debug] > |> _equal 10

02:06:40 #421 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4018-1812-1694ed0debca\main.spi

02:06:40 #422 [Debug] >

02:06:40 #423 [Debug] > ╭─[ 218.58ms - stdout ]────────────────────────────────────────────────────────╮

02:06:40 #424 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:40 #425 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:40 #426 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:40 #427 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:40 #428 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:40 #429 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:40 #430 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:40 #431 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:40 #432 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:40 #433 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:40 #434 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:40 #435 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:40 #436 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:40 #437 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:40 #438 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:40 #439 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:40 #440 [Debug] > │     printfn $"print_and_return / x: {5}"                                     │

02:06:40 #441 [Debug] > │     let v0 : string = $"_equal / actual: %A{10} / expected: %A{10}"          │

02:06:40 #442 [Debug] > │     ()                                                                       │

02:06:40 #443 [Debug] > │ method0()                                                                    │

02:06:40 #444 [Debug] > │                                                                              │

02:06:40 #445 [Debug] > │ print_and_return / x: 0                                                      │

02:06:40 #446 [Debug] > │ print_and_return / x: 1                                                      │

02:06:40 #447 [Debug] > │ print_and_return / x: 1                                                      │

02:06:40 #448 [Debug] > │ print_and_return / x: 2                                                      │

02:06:40 #449 [Debug] > │ print_and_return / x: 1                                                      │

02:06:40 #450 [Debug] > │ print_and_return / x: 2                                                      │

02:06:40 #451 [Debug] > │ print_and_return / x: 3                                                      │

02:06:40 #452 [Debug] > │ print_and_return / x: 1                                                      │

02:06:40 #453 [Debug] > │ print_and_return / x: 2                                                      │

02:06:40 #454 [Debug] > │ print_and_return / x: 3                                                      │

02:06:40 #455 [Debug] > │ print_and_return / x: 4                                                      │

02:06:40 #456 [Debug] > │ print_and_return / x: 1                                                      │

02:06:40 #457 [Debug] > │ print_and_return / x: 2                                                      │

02:06:40 #458 [Debug] > │ print_and_return / x: 3                                                      │

02:06:40 #459 [Debug] > │ print_and_return / x: 4                                                      │

02:06:40 #460 [Debug] > │ print_and_return / x: 5                                                      │

02:06:40 #461 [Debug] > │                                                                              │

02:06:40 #462 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:40 #463 [Debug] >

02:06:40 #464 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:40 #465 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:40 #466 [Debug] > │ ## take_while_                                                               │

02:06:40 #467 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:40 #468 [Debug] >

02:06:40 #469 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:40 #470 [Debug] > inl take_while_ cond seq =

02:06:40 #471 [Debug] >     let rec loop acc i =

02:06:40 #472 [Debug] >         match seq i with

02:06:40 #473 [Debug] >         | Some st when cond st i => loop (st :: acc) (i + 1)

02:06:40 #474 [Debug] >         | _ => acc |> listm.rev

02:06:40 #475 [Debug] >     loop [[]] 0

02:06:40 #476 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4041-4159-4b65a31f3c2a\main.spi

02:06:40 #477 [Debug] >

02:06:40 #478 [Debug] > ╭─[ 191.67ms - stdout ]────────────────────────────────────────────────────────╮

02:06:40 #479 [Debug] > │ ()                                                                           │

02:06:40 #480 [Debug] > │                                                                              │

02:06:40 #481 [Debug] > │                                                                              │

02:06:40 #482 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:40 #483 [Debug] >

02:06:40 #484 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:40 #485 [Debug] > // // test

02:06:40 #486 [Debug] >

02:06:40 #487 [Debug] > stream.new_infinite_stream_ print_and_return

02:06:40 #488 [Debug] > |> flip stream.try_item

02:06:40 #489 [Debug] > |> take_while_ (fun n (_ : i32) => n < 5i32)

02:06:40 #490 [Debug] > |> listm'.sum

02:06:40 #491 [Debug] > |> _equal 10

02:06:40 #492 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4061-6104-67fdce78098e\main.spi

02:06:41 #493 [Debug] >

02:06:41 #494 [Debug] > ╭─[ 521.86ms - stdout ]────────────────────────────────────────────────────────╮

02:06:41 #495 [Debug] > │ type UH0 =                                                                   │

02:06:41 #496 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:06:41 #497 [Debug] > │     | UH0_1                                                                  │

02:06:41 #498 [Debug] > │ and UH1 =                                                                    │

02:06:41 #499 [Debug] > │     | UH1_0 of int32 * UH1                                                   │

02:06:41 #500 [Debug] > │     | UH1_1                                                                  │

02:06:41 #501 [Debug] > │ and [<Struct>] US0 =                                                         │

02:06:41 #502 [Debug] > │     | US0_0                                                                  │

02:06:41 #503 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:06:41 #504 [Debug] > │ let rec closure0 (v0 : int32) () : UH0 =                                     │

02:06:41 #505 [Debug] > │     let v1 : int32 = v0 + 1                                                  │

02:06:41 #506 [Debug] > │     method1(v1)                                                              │

02:06:41 #507 [Debug] > │ and method1 (v0 : int32) : UH0 =                                             │

02:06:41 #508 [Debug] > │     printfn $"print_and_return / x: {v0}"                                    │

02:06:41 #509 [Debug] > │     let v1 : (unit -> UH0) = closure0(v0)                                    │

02:06:41 #510 [Debug] > │     UH0_0(v0, v1)                                                            │

02:06:41 #511 [Debug] > │ and method3 (v0 : int32, v1 : UH0) : US0 =                                   │

02:06:41 #512 [Debug] > │     match v1 with                                                            │

02:06:41 #513 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:06:41 #514 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:06:41 #515 [Debug] > │         if v4 then                                                           │

02:06:41 #516 [Debug] > │             US0_1(v2)                                                        │

02:06:41 #517 [Debug] > │         else                                                                 │

02:06:41 #518 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:06:41 #519 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:06:41 #520 [Debug] > │             method3(v6, v7)                                                  │

02:06:41 #521 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:06:41 #522 [Debug] > │         US0_0                                                                │

02:06:41 #523 [Debug] > │ and method4 (v0 : UH1, v1 : UH1) : UH1 =                                     │

02:06:41 #524 [Debug] > │     match v0 with                                                            │

02:06:41 #525 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:41 #526 [Debug] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

02:06:41 #527 [Debug] > │         method4(v3, v4)                                                      │

02:06:41 #528 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:41 #529 [Debug] > │         v1                                                                   │

02:06:41 #530 [Debug] > │ and method2 (v0 : UH0, v1 : UH1, v2 : int32) : UH1 =                         │

02:06:41 #531 [Debug] > │     let v3 : US0 = method3(v2, v0)                                           │

02:06:41 #532 [Debug] > │     match v3 with                                                            │

02:06:41 #533 [Debug] > │     | US0_1(v4) -> (* Some *)                                                │

02:06:41 #534 [Debug] > │         let v5 : bool = v4 < 5                                               │

02:06:41 #535 [Debug] > │         if v5 then                                                           │

02:06:41 #536 [Debug] > │             let v6 : UH1 = UH1_0(v4, v1)                                     │

02:06:41 #537 [Debug] > │             let v7 : int32 = v2 + 1                                          │

02:06:41 #538 [Debug] > │             method2(v0, v6, v7)                                              │

02:06:41 #539 [Debug] > │         else                                                                 │

02:06:41 #540 [Debug] > │             let v9 : UH1 = UH1_1                                             │

02:06:41 #541 [Debug] > │             method4(v1, v9)                                                  │

02:06:41 #542 [Debug] > │     | _ ->                                                                   │

02:06:41 #543 [Debug] > │         let v12 : UH1 = UH1_1                                                │

02:06:41 #544 [Debug] > │         method4(v1, v12)                                                     │

02:06:41 #545 [Debug] > │ and method5 (v0 : UH1, v1 : int32) : int32 =                                 │

02:06:41 #546 [Debug] > │     match v0 with                                                            │

02:06:41 #547 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:41 #548 [Debug] > │         let v4 : int32 = v1 + v2                                             │

02:06:41 #549 [Debug] > │         method5(v3, v4)                                                      │

02:06:41 #550 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:41 #551 [Debug] > │         v1                                                                   │

02:06:41 #552 [Debug] > │ and method0 () : unit =                                                      │

02:06:41 #553 [Debug] > │     let v0 : int32 = 0                                                       │

02:06:41 #554 [Debug] > │     let v1 : UH0 = method1(v0)                                               │

02:06:41 #555 [Debug] > │     let v2 : UH1 = UH1_1                                                     │

02:06:41 #556 [Debug] > │     let v3 : int32 = 0                                                       │

02:06:41 #557 [Debug] > │     let v4 : UH1 = method2(v1, v2, v3)                                       │

02:06:41 #558 [Debug] > │     let v5 : int32 = 0                                                       │

02:06:41 #559 [Debug] > │     let v6 : int32 = method5(v4, v5)                                         │

02:06:41 #560 [Debug] > │     let v7 : bool = v6 = 10                                                  │

02:06:41 #561 [Debug] > │     let v8 : string = $"_equal / actual: %A{v6} / expected: %A{10}"          │

02:06:41 #562 [Debug] > │     let v9 : bool = v7 = false                                               │

02:06:41 #563 [Debug] > │     if v9 then                                                               │

02:06:41 #564 [Debug] > │         failwith<unit> v8                                                    │

02:06:41 #565 [Debug] > │ method0()                                                                    │

02:06:41 #566 [Debug] > │                                                                              │

02:06:41 #567 [Debug] > │ print_and_return / x: 0                                                      │

02:06:41 #568 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #569 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #570 [Debug] > │ print_and_return / x: 2                                                      │

02:06:41 #571 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #572 [Debug] > │ print_and_return / x: 2                                                      │

02:06:41 #573 [Debug] > │ print_and_return / x: 3                                                      │

02:06:41 #574 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #575 [Debug] > │ print_and_return / x: 2                                                      │

02:06:41 #576 [Debug] > │ print_and_return / x: 3                                                      │

02:06:41 #577 [Debug] > │ print_and_return / x: 4                                                      │

02:06:41 #578 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #579 [Debug] > │ print_and_return / x: 2                                                      │

02:06:41 #580 [Debug] > │ print_and_return / x: 3                                                      │

02:06:41 #581 [Debug] > │ print_and_return / x: 4                                                      │

02:06:41 #582 [Debug] > │ print_and_return / x: 5                                                      │

02:06:41 #583 [Debug] > │                                                                              │

02:06:41 #584 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:41 #585 [Debug] >

02:06:41 #586 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:41 #587 [Debug] > // // test

02:06:41 #588 [Debug] >

02:06:41 #589 [Debug] > stream.new_infinite_stream_ print_and_return

02:06:41 #590 [Debug] > |> stream.memoize

02:06:41 #591 [Debug] > |> fun list =>

02:06:41 #592 [Debug] >     inl list = list ()

02:06:41 #593 [Debug] >     fun n =>

02:06:41 #594 [Debug] >         list |> stream.try_item n

02:06:41 #595 [Debug] > |> take_while_ (fun n (_ : i32) => n < 5i32)

02:06:41 #596 [Debug] > |> listm'.sum

02:06:41 #597 [Debug] > |> _equal 10

02:06:41 #598 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4118-1832-13a56c324c2d\main.spi

02:06:41 #599 [Debug] >

02:06:41 #600 [Debug] > ╭─[ 350.43ms - stdout ]────────────────────────────────────────────────────────╮

02:06:41 #601 [Debug] > │ type UH0 =                                                                   │

02:06:41 #602 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:06:41 #603 [Debug] > │     | UH0_1                                                                  │

02:06:41 #604 [Debug] > │ and [<Struct>] US0 =                                                         │

02:06:41 #605 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:06:41 #606 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:06:41 #607 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:06:41 #608 [Debug] > │ and UH1 =                                                                    │

02:06:41 #609 [Debug] > │     | UH1_0 of int32 * UH1                                                   │

02:06:41 #610 [Debug] > │     | UH1_1                                                                  │

02:06:41 #611 [Debug] > │ and [<Struct>] US1 =                                                         │

02:06:41 #612 [Debug] > │     | US1_0                                                                  │

02:06:41 #613 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:06:41 #614 [Debug] > │ let rec closure0 (v0 : int32) () : UH0 =                                     │

02:06:41 #615 [Debug] > │     let v1 : int32 = v0 + 1                                                  │

02:06:41 #616 [Debug] > │     method1(v1)                                                              │

02:06:41 #617 [Debug] > │ and method1 (v0 : int32) : UH0 =                                             │

02:06:41 #618 [Debug] > │     printfn $"print_and_return / x: {v0}"                                    │

02:06:41 #619 [Debug] > │     let v1 : (unit -> UH0) = closure0(v0)                                    │

02:06:41 #620 [Debug] > │     UH0_0(v0, v1)                                                            │

02:06:41 #621 [Debug] > │ and closure1 (v0 : UH0) () : UH0 =                                           │

02:06:41 #622 [Debug] > │     v0                                                                       │

02:06:41 #623 [Debug] > │ and closure2 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

02:06:41 #624 [Debug] > │     let v2 : US0 = v1.l0                                                     │

02:06:41 #625 [Debug] > │     match v2 with                                                            │

02:06:41 #626 [Debug] > │     | US0_0(v3) -> (* Computed *)                                            │

02:06:41 #627 [Debug] > │         v3                                                                   │

02:06:41 #628 [Debug] > │     | US0_1(v4) -> (* NotComputed *)                                         │

02:06:41 #629 [Debug] > │         let v5 : UH0 = v4 ()                                                 │

02:06:41 #630 [Debug] > │         let v12 : UH0 =                                                      │

02:06:41 #631 [Debug] > │             match v5 with                                                    │

02:06:41 #632 [Debug] > │             | UH0_0(v7, v8) -> (* StreamCons *)                              │

02:06:41 #633 [Debug] > │                 let v9 : (unit -> UH0) = method2(v0, v8)                     │

02:06:41 #634 [Debug] > │                 UH0_0(v7, v9)                                                │

02:06:41 #635 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:06:41 #636 [Debug] > │                 UH0_1                                                        │

02:06:41 #637 [Debug] > │         let v13 : US0 = US0_0(v12)                                           │

02:06:41 #638 [Debug] > │         v1.l0 <- v13                                                         │

02:06:41 #639 [Debug] > │         v12                                                                  │

02:06:41 #640 [Debug] > │ and method2 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

02:06:41 #641 [Debug] > │     let v2 : US0 = US0_1(v1)                                                 │

02:06:41 #642 [Debug] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

02:06:41 #643 [Debug] > │     closure2(v0, v3)                                                         │

02:06:41 #644 [Debug] > │ and method4 (v0 : int32, v1 : UH0) : US1 =                                   │

02:06:41 #645 [Debug] > │     match v1 with                                                            │

02:06:41 #646 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:06:41 #647 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:06:41 #648 [Debug] > │         if v4 then                                                           │

02:06:41 #649 [Debug] > │             US1_1(v2)                                                        │

02:06:41 #650 [Debug] > │         else                                                                 │

02:06:41 #651 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:06:41 #652 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:06:41 #653 [Debug] > │             method4(v6, v7)                                                  │

02:06:41 #654 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:06:41 #655 [Debug] > │         US1_0                                                                │

02:06:41 #656 [Debug] > │ and method5 (v0 : UH1, v1 : UH1) : UH1 =                                     │

02:06:41 #657 [Debug] > │     match v0 with                                                            │

02:06:41 #658 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:41 #659 [Debug] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

02:06:41 #660 [Debug] > │         method5(v3, v4)                                                      │

02:06:41 #661 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:41 #662 [Debug] > │         v1                                                                   │

02:06:41 #663 [Debug] > │ and method3 (v0 : UH0, v1 : UH1, v2 : int32) : UH1 =                         │

02:06:41 #664 [Debug] > │     let v3 : US1 = method4(v2, v0)                                           │

02:06:41 #665 [Debug] > │     match v3 with                                                            │

02:06:41 #666 [Debug] > │     | US1_1(v4) -> (* Some *)                                                │

02:06:41 #667 [Debug] > │         let v5 : bool = v4 < 5                                               │

02:06:41 #668 [Debug] > │         if v5 then                                                           │

02:06:41 #669 [Debug] > │             let v6 : UH1 = UH1_0(v4, v1)                                     │

02:06:41 #670 [Debug] > │             let v7 : int32 = v2 + 1                                          │

02:06:41 #671 [Debug] > │             method3(v0, v6, v7)                                              │

02:06:41 #672 [Debug] > │         else                                                                 │

02:06:41 #673 [Debug] > │             let v9 : UH1 = UH1_1                                             │

02:06:41 #674 [Debug] > │             method5(v1, v9)                                                  │

02:06:41 #675 [Debug] > │     | _ ->                                                                   │

02:06:41 #676 [Debug] > │         let v12 : UH1 = UH1_1                                                │

02:06:41 #677 [Debug] > │         method5(v1, v12)                                                     │

02:06:41 #678 [Debug] > │ and method6 (v0 : UH1, v1 : int32) : int32 =                                 │

02:06:41 #679 [Debug] > │     match v0 with                                                            │

02:06:41 #680 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:41 #681 [Debug] > │         let v4 : int32 = v1 + v2                                             │

02:06:41 #682 [Debug] > │         method6(v3, v4)                                                      │

02:06:41 #683 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:41 #684 [Debug] > │         v1                                                                   │

02:06:41 #685 [Debug] > │ and method0 () : unit =                                                      │

02:06:41 #686 [Debug] > │     let v0 : int32 = 0                                                       │

02:06:41 #687 [Debug] > │     let v1 : UH0 = method1(v0)                                               │

02:06:41 #688 [Debug] > │     let v2 : (unit -> UH0) = closure1(v1)                                    │

02:06:41 #689 [Debug] > │     let v3 : (unit -> UH0) = method2(v1, v2)                                 │

02:06:41 #690 [Debug] > │     let v4 : UH0 = v3 ()                                                     │

02:06:41 #691 [Debug] > │     let v5 : UH1 = UH1_1                                                     │

02:06:41 #692 [Debug] > │     let v6 : int32 = 0                                                       │

02:06:41 #693 [Debug] > │     let v7 : UH1 = method3(v4, v5, v6)                                       │

02:06:41 #694 [Debug] > │     let v8 : int32 = 0                                                       │

02:06:41 #695 [Debug] > │     let v9 : int32 = method6(v7, v8)                                         │

02:06:41 #696 [Debug] > │     let v10 : bool = v9 = 10                                                 │

02:06:41 #697 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{10}"         │

02:06:41 #698 [Debug] > │     let v12 : bool = v10 = false                                             │

02:06:41 #699 [Debug] > │     if v12 then                                                              │

02:06:41 #700 [Debug] > │         failwith<unit> v11                                                   │

02:06:41 #701 [Debug] > │ method0()                                                                    │

02:06:41 #702 [Debug] > │                                                                              │

02:06:41 #703 [Debug] > │ print_and_return / x: 0                                                      │

02:06:41 #704 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #705 [Debug] > │ print_and_return / x: 2                                                      │

02:06:41 #706 [Debug] > │ print_and_return / x: 3                                                      │

02:06:41 #707 [Debug] > │ print_and_return / x: 4                                                      │

02:06:41 #708 [Debug] > │ print_and_return / x: 5                                                      │

02:06:41 #709 [Debug] > │                                                                              │

02:06:41 #710 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:41 #711 [Debug] >

02:06:41 #712 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:41 #713 [Debug] > // // test

02:06:41 #714 [Debug] >

02:06:41 #715 [Debug] > stream.new_finite_stream print_and_return 10i32

02:06:41 #716 [Debug] > |> stream.memoize

02:06:41 #717 [Debug] > |> fun list =>

02:06:41 #718 [Debug] >     inl list = list ()

02:06:41 #719 [Debug] >     fun n =>

02:06:41 #720 [Debug] >         list |> stream.try_item n

02:06:41 #721 [Debug] > |> take_while_ (fun n (_ : i32) => n < 5)

02:06:41 #722 [Debug] > |> listm'.sum

02:06:41 #723 [Debug] > |> _equal 10

02:06:41 #724 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4157-5764-57961c4fe874\main.spi

02:06:41 #725 [Debug] >

02:06:41 #726 [Debug] > ╭─[ 289.37ms - stdout ]────────────────────────────────────────────────────────╮

02:06:41 #727 [Debug] > │ type UH0 =                                                                   │

02:06:41 #728 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:06:41 #729 [Debug] > │     | UH0_1                                                                  │

02:06:41 #730 [Debug] > │ and [<Struct>] US0 =                                                         │

02:06:41 #731 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:06:41 #732 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:06:41 #733 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:06:41 #734 [Debug] > │ and UH1 =                                                                    │

02:06:41 #735 [Debug] > │     | UH1_0 of int32 * UH1                                                   │

02:06:41 #736 [Debug] > │     | UH1_1                                                                  │

02:06:41 #737 [Debug] > │ and [<Struct>] US1 =                                                         │

02:06:41 #738 [Debug] > │     | US1_0                                                                  │

02:06:41 #739 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:06:41 #740 [Debug] > │ let rec closure10 () () : UH0 =                                              │

02:06:41 #741 [Debug] > │     UH0_1                                                                    │

02:06:41 #742 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:06:41 #743 [Debug] > │     printfn $"print_and_return / x: {9}"                                     │

02:06:41 #744 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:06:41 #745 [Debug] > │     UH0_0(9, v0)                                                             │

02:06:41 #746 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:06:41 #747 [Debug] > │     printfn $"print_and_return / x: {8}"                                     │

02:06:41 #748 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:06:41 #749 [Debug] > │     UH0_0(8, v0)                                                             │

02:06:41 #750 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:06:41 #751 [Debug] > │     printfn $"print_and_return / x: {7}"                                     │

02:06:41 #752 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:06:41 #753 [Debug] > │     UH0_0(7, v0)                                                             │

02:06:41 #754 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:06:41 #755 [Debug] > │     printfn $"print_and_return / x: {6}"                                     │

02:06:41 #756 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:06:41 #757 [Debug] > │     UH0_0(6, v0)                                                             │

02:06:41 #758 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:06:41 #759 [Debug] > │     printfn $"print_and_return / x: {5}"                                     │

02:06:41 #760 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:06:41 #761 [Debug] > │     UH0_0(5, v0)                                                             │

02:06:41 #762 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:06:41 #763 [Debug] > │     printfn $"print_and_return / x: {4}"                                     │

02:06:41 #764 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:06:41 #765 [Debug] > │     UH0_0(4, v0)                                                             │

02:06:41 #766 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:06:41 #767 [Debug] > │     printfn $"print_and_return / x: {3}"                                     │

02:06:41 #768 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:06:41 #769 [Debug] > │     UH0_0(3, v0)                                                             │

02:06:41 #770 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:06:41 #771 [Debug] > │     printfn $"print_and_return / x: {2}"                                     │

02:06:41 #772 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:06:41 #773 [Debug] > │     UH0_0(2, v0)                                                             │

02:06:41 #774 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:06:41 #775 [Debug] > │     printfn $"print_and_return / x: {1}"                                     │

02:06:41 #776 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:06:41 #777 [Debug] > │     UH0_0(1, v0)                                                             │

02:06:41 #778 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:06:41 #779 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:06:41 #780 [Debug] > │     UH0_0(0, v0)                                                             │

02:06:41 #781 [Debug] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

02:06:41 #782 [Debug] > │     let v1 : US0 = v0.l0                                                     │

02:06:41 #783 [Debug] > │     match v1 with                                                            │

02:06:41 #784 [Debug] > │     | US0_0(v2) -> (* Computed *)                                            │

02:06:41 #785 [Debug] > │         v2                                                                   │

02:06:41 #786 [Debug] > │     | US0_1(v3) -> (* NotComputed *)                                         │

02:06:41 #787 [Debug] > │         let v4 : UH0 = v3 ()                                                 │

02:06:41 #788 [Debug] > │         let v13 : UH0 =                                                      │

02:06:41 #789 [Debug] > │             match v4 with                                                    │

02:06:41 #790 [Debug] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

02:06:41 #791 [Debug] > │                 let v8 : US0 = US0_1(v7)                                     │

02:06:41 #792 [Debug] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

02:06:41 #793 [Debug] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

02:06:41 #794 [Debug] > │                 UH0_0(v6, v10)                                               │

02:06:41 #795 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:06:41 #796 [Debug] > │                 UH0_1                                                        │

02:06:41 #797 [Debug] > │         let v14 : US0 = US0_0(v13)                                           │

02:06:41 #798 [Debug] > │         v0.l0 <- v14                                                         │

02:06:41 #799 [Debug] > │         v13                                                                  │

02:06:41 #800 [Debug] > │ and method2 (v0 : int32, v1 : UH0) : US1 =                                   │

02:06:41 #801 [Debug] > │     match v1 with                                                            │

02:06:41 #802 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:06:41 #803 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:06:41 #804 [Debug] > │         if v4 then                                                           │

02:06:41 #805 [Debug] > │             US1_1(v2)                                                        │

02:06:41 #806 [Debug] > │         else                                                                 │

02:06:41 #807 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:06:41 #808 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:06:41 #809 [Debug] > │             method2(v6, v7)                                                  │

02:06:41 #810 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:06:41 #811 [Debug] > │         US1_0                                                                │

02:06:41 #812 [Debug] > │ and method3 (v0 : UH1, v1 : UH1) : UH1 =                                     │

02:06:41 #813 [Debug] > │     match v0 with                                                            │

02:06:41 #814 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:41 #815 [Debug] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

02:06:41 #816 [Debug] > │         method3(v3, v4)                                                      │

02:06:41 #817 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:41 #818 [Debug] > │         v1                                                                   │

02:06:41 #819 [Debug] > │ and method1 (v0 : UH0, v1 : UH1, v2 : int32) : UH1 =                         │

02:06:41 #820 [Debug] > │     let v3 : US1 = method2(v2, v0)                                           │

02:06:41 #821 [Debug] > │     match v3 with                                                            │

02:06:41 #822 [Debug] > │     | US1_1(v4) -> (* Some *)                                                │

02:06:41 #823 [Debug] > │         let v5 : bool = v4 < 5                                               │

02:06:41 #824 [Debug] > │         if v5 then                                                           │

02:06:41 #825 [Debug] > │             let v6 : UH1 = UH1_0(v4, v1)                                     │

02:06:41 #826 [Debug] > │             let v7 : int32 = v2 + 1                                          │

02:06:41 #827 [Debug] > │             method1(v0, v6, v7)                                              │

02:06:41 #828 [Debug] > │         else                                                                 │

02:06:41 #829 [Debug] > │             let v9 : UH1 = UH1_1                                             │

02:06:41 #830 [Debug] > │             method3(v1, v9)                                                  │

02:06:41 #831 [Debug] > │     | _ ->                                                                   │

02:06:41 #832 [Debug] > │         let v12 : UH1 = UH1_1                                                │

02:06:41 #833 [Debug] > │         method3(v1, v12)                                                     │

02:06:41 #834 [Debug] > │ and method4 (v0 : UH1, v1 : int32) : int32 =                                 │

02:06:41 #835 [Debug] > │     match v0 with                                                            │

02:06:41 #836 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:41 #837 [Debug] > │         let v4 : int32 = v1 + v2                                             │

02:06:41 #838 [Debug] > │         method4(v3, v4)                                                      │

02:06:41 #839 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:41 #840 [Debug] > │         v1                                                                   │

02:06:41 #841 [Debug] > │ and method0 () : unit =                                                      │

02:06:41 #842 [Debug] > │     printfn $"print_and_return / x: {0}"                                     │

02:06:41 #843 [Debug] > │     let v0 : (unit -> UH0) = closure0()                                      │

02:06:41 #844 [Debug] > │     let v1 : US0 = US0_1(v0)                                                 │

02:06:41 #845 [Debug] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

02:06:41 #846 [Debug] > │     let v3 : US0 = v2.l0                                                     │

02:06:41 #847 [Debug] > │     let v18 : UH0 =                                                          │

02:06:41 #848 [Debug] > │         match v3 with                                                        │

02:06:41 #849 [Debug] > │         | US0_0(v4) -> (* Computed *)                                        │

02:06:41 #850 [Debug] > │             v4                                                               │

02:06:41 #851 [Debug] > │         | US0_1(v5) -> (* NotComputed *)                                     │

02:06:41 #852 [Debug] > │             let v6 : UH0 = v5 ()                                             │

02:06:41 #853 [Debug] > │             let v15 : UH0 =                                                  │

02:06:41 #854 [Debug] > │                 match v6 with                                                │

02:06:41 #855 [Debug] > │                 | UH0_0(v8, v9) -> (* StreamCons *)                          │

02:06:41 #856 [Debug] > │                     let v10 : US0 = US0_1(v9)                                │

02:06:41 #857 [Debug] > │                     let v11 : Mut0 = {l0 = v10} : Mut0                       │

02:06:41 #858 [Debug] > │                     let v12 : (unit -> UH0) = closure11(v11)                 │

02:06:41 #859 [Debug] > │                     UH0_0(v8, v12)                                           │

02:06:41 #860 [Debug] > │                 | UH0_1 -> (* StreamNil *)                                   │

02:06:41 #861 [Debug] > │                     UH0_1                                                    │

02:06:41 #862 [Debug] > │             let v16 : US0 = US0_0(v15)                                       │

02:06:41 #863 [Debug] > │             v2.l0 <- v16                                                     │

02:06:41 #864 [Debug] > │             v15                                                              │

02:06:41 #865 [Debug] > │     let v19 : UH1 = UH1_1                                                    │

02:06:41 #866 [Debug] > │     let v20 : int32 = 0                                                      │

02:06:41 #867 [Debug] > │     let v21 : UH1 = method1(v18, v19, v20)                                   │

02:06:41 #868 [Debug] > │     let v22 : int32 = 0                                                      │

02:06:41 #869 [Debug] > │     let v23 : int32 = method4(v21, v22)                                      │

02:06:41 #870 [Debug] > │     let v24 : bool = v23 = 10                                                │

02:06:41 #871 [Debug] > │     let v25 : string = $"_equal / actual: %A{v23} / expected: %A{10}"        │

02:06:41 #872 [Debug] > │     let v26 : bool = v24 = false                                             │

02:06:41 #873 [Debug] > │     if v26 then                                                              │

02:06:41 #874 [Debug] > │         failwith<unit> v25                                                   │

02:06:41 #875 [Debug] > │ method0()                                                                    │

02:06:41 #876 [Debug] > │                                                                              │

02:06:41 #877 [Debug] > │ print_and_return / x: 0                                                      │

02:06:41 #878 [Debug] > │ print_and_return / x: 1                                                      │

02:06:41 #879 [Debug] > │ print_and_return / x: 2                                                      │

02:06:41 #880 [Debug] > │ print_and_return / x: 3                                                      │

02:06:41 #881 [Debug] > │ print_and_return / x: 4                                                      │

02:06:41 #882 [Debug] > │ print_and_return / x: 5                                                      │

02:06:41 #883 [Debug] > │                                                                              │

02:06:41 #884 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:41 #885 [Debug] >

02:06:41 #886 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:41 #887 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:41 #888 [Debug] > │ ## memoize                                                                   │

02:06:41 #889 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:41 #890 [Debug] >

02:06:41 #891 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:41 #892 [Debug] > inl memoize seq =

02:06:41 #893 [Debug] >     inl state = mut [[]]

02:06:41 #894 [Debug] >     fun n =>

02:06:41 #895 [Debug] >         match *state |> listm'.try_find (fun (n', _) => n' = n) with

02:06:41 #896 [Debug] >         | Some (_, v) => v

02:06:41 #897 [Debug] >         | None =>

02:06:41 #898 [Debug] >             inl new_state = seq n

02:06:41 #899 [Debug] >             state <- (n, new_state) :: *state

02:06:41 #900 [Debug] >             new_state

02:06:41 #901 [Debug] >

02:06:41 #902 [Debug] > inl memoize_ seq =

02:06:41 #903 [Debug] >     inl state = mut [[]]

02:06:41 #904 [Debug] >     fun n =>

02:06:41 #905 [Debug] >         match *state |> listm'.try_find_ (fun (n', _) => n' = n) with

02:06:41 #906 [Debug] >         | Some (_, v) => v

02:06:41 #907 [Debug] >         | None =>

02:06:41 #908 [Debug] >             inl new_state = seq n

02:06:41 #909 [Debug] >             state <- (n, new_state) :: *state

02:06:41 #910 [Debug] >             new_state

02:06:42 #911 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4192-9273-9fd03cb4c696\main.spi

02:06:42 #912 [Debug] >

02:06:42 #913 [Debug] > ╭─[ 175.71ms - stdout ]────────────────────────────────────────────────────────╮

02:06:42 #914 [Debug] > │ ()                                                                           │

02:06:42 #915 [Debug] > │                                                                              │

02:06:42 #916 [Debug] > │                                                                              │

02:06:42 #917 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:42 #918 [Debug] >

02:06:42 #919 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:42 #920 [Debug] > // // test

02:06:42 #921 [Debug] >

02:06:42 #922 [Debug] > inl seq =

02:06:42 #923 [Debug] >     fun n =>

02:06:42 #924 [Debug] >         n |> print_and_return |> Some

02:06:42 #925 [Debug] >     |> memoize_

02:06:42 #926 [Debug] >

02:06:42 #927 [Debug] > seq

02:06:42 #928 [Debug] > |> take_while_ (fun n (_ : i32) => n < 5)

02:06:42 #929 [Debug] > |> listm'.sum

02:06:42 #930 [Debug] > |> _equal 10

02:06:42 #931 [Debug] >

02:06:42 #932 [Debug] > seq

02:06:42 #933 [Debug] > |> take_while_ (fun n _ => n < 5)

02:06:42 #934 [Debug] > |> listm'.sum

02:06:42 #935 [Debug] > |> _equal 10

02:06:42 #936 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4210-1045-1b34fa7b80b1\main.spi

02:06:42 #937 [Debug] >

02:06:42 #938 [Debug] > ╭─[ 348.60ms - stdout ]────────────────────────────────────────────────────────╮

02:06:42 #939 [Debug] > │ type [<Struct>] US0 =                                                        │

02:06:42 #940 [Debug] > │     | US0_0                                                                  │

02:06:42 #941 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:06:42 #942 [Debug] > │ and UH0 =                                                                    │

02:06:42 #943 [Debug] > │     | UH0_0 of int32 * US0 * UH0                                             │

02:06:42 #944 [Debug] > │     | UH0_1                                                                  │

02:06:42 #945 [Debug] > │ and Mut0 = {mutable l0 : UH0}                                                │

02:06:42 #946 [Debug] > │ and UH1 =                                                                    │

02:06:42 #947 [Debug] > │     | UH1_0 of int32 * UH1                                                   │

02:06:42 #948 [Debug] > │     | UH1_1                                                                  │

02:06:42 #949 [Debug] > │ and [<Struct>] US1 =                                                         │

02:06:42 #950 [Debug] > │     | US1_0                                                                  │

02:06:42 #951 [Debug] > │     | US1_1 of f1_0 : int32 * f1_1 : US0                                     │

02:06:42 #952 [Debug] > │ let rec method2 (v0 : int32, v1 : UH0) : US1 =                               │

02:06:42 #953 [Debug] > │     match v1 with                                                            │

02:06:42 #954 [Debug] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

02:06:42 #955 [Debug] > │         let v6 : bool = v3 = v0                                              │

02:06:42 #956 [Debug] > │         if v6 then                                                           │

02:06:42 #957 [Debug] > │             US1_1(v3, v4)                                                    │

02:06:42 #958 [Debug] > │         else                                                                 │

02:06:42 #959 [Debug] > │             method2(v0, v5)                                                  │

02:06:42 #960 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:06:42 #961 [Debug] > │         US1_0                                                                │

02:06:42 #962 [Debug] > │ and method3 (v0 : UH1, v1 : UH1) : UH1 =                                     │

02:06:42 #963 [Debug] > │     match v0 with                                                            │

02:06:42 #964 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:42 #965 [Debug] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

02:06:42 #966 [Debug] > │         method3(v3, v4)                                                      │

02:06:42 #967 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:42 #968 [Debug] > │         v1                                                                   │

02:06:42 #969 [Debug] > │ and method1 (v0 : Mut0, v1 : UH1, v2 : int32) : UH1 =                        │

02:06:42 #970 [Debug] > │     let v3 : UH0 = v0.l0                                                     │

02:06:42 #971 [Debug] > │     let v4 : US1 = method2(v2, v3)                                           │

02:06:42 #972 [Debug] > │     let v12 : US0 =                                                          │

02:06:42 #973 [Debug] > │         match v4 with                                                        │

02:06:42 #974 [Debug] > │         | US1_0 -> (* None *)                                                │

02:06:42 #975 [Debug] > │             printfn $"print_and_return / x: {v2}"                            │

02:06:42 #976 [Debug] > │             let v7 : UH0 = v0.l0                                             │

02:06:42 #977 [Debug] > │             let v8 : US0 = US0_1(v2)                                         │

02:06:42 #978 [Debug] > │             let v9 : UH0 = UH0_0(v2, v8, v7)                                 │

02:06:42 #979 [Debug] > │             v0.l0 <- v9                                                      │

02:06:42 #980 [Debug] > │             US0_1(v2)                                                        │

02:06:42 #981 [Debug] > │         | US1_1(v5, v6) -> (* Some *)                                        │

02:06:42 #982 [Debug] > │             v6                                                               │

02:06:42 #983 [Debug] > │     match v12 with                                                           │

02:06:42 #984 [Debug] > │     | US0_1(v13) -> (* Some *)                                               │

02:06:42 #985 [Debug] > │         let v14 : bool = v13 < 5                                             │

02:06:42 #986 [Debug] > │         if v14 then                                                          │

02:06:42 #987 [Debug] > │             let v15 : UH1 = UH1_0(v13, v1)                                   │

02:06:42 #988 [Debug] > │             let v16 : int32 = v2 + 1                                         │

02:06:42 #989 [Debug] > │             method1(v0, v15, v16)                                            │

02:06:42 #990 [Debug] > │         else                                                                 │

02:06:42 #991 [Debug] > │             let v18 : UH1 = UH1_1                                            │

02:06:42 #992 [Debug] > │             method3(v1, v18)                                                 │

02:06:42 #993 [Debug] > │     | _ ->                                                                   │

02:06:42 #994 [Debug] > │         let v21 : UH1 = UH1_1                                                │

02:06:42 #995 [Debug] > │         method3(v1, v21)                                                     │

02:06:42 #996 [Debug] > │ and method4 (v0 : UH1, v1 : int32) : int32 =                                 │

02:06:42 #997 [Debug] > │     match v0 with                                                            │

02:06:42 #998 [Debug] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

02:06:42 #999 [Debug] > │         let v4 : int32 = v1 + v2                                             │

02:06:42 #1000 [Debug] > │         method4(v3, v4)                                                      │

02:06:42 #1001 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:06:42 #1002 [Debug] > │         v1                                                                   │

02:06:42 #1003 [Debug] > │ and method5 (v0 : Mut0, v1 : UH1, v2 : int32) : UH1 =                        │

02:06:42 #1004 [Debug] > │     let v3 : UH0 = v0.l0                                                     │

02:06:42 #1005 [Debug] > │     let v4 : US1 = method2(v2, v3)                                           │

02:06:42 #1006 [Debug] > │     let v12 : US0 =                                                          │

02:06:42 #1007 [Debug] > │         match v4 with                                                        │

02:06:42 #1008 [Debug] > │         | US1_0 -> (* None *)                                                │

02:06:42 #1009 [Debug] > │             printfn $"print_and_return / x: {v2}"                            │

02:06:42 #1010 [Debug] > │             let v7 : UH0 = v0.l0                                             │

02:06:42 #1011 [Debug] > │             let v8 : US0 = US0_1(v2)                                         │

02:06:42 #1012 [Debug] > │             let v9 : UH0 = UH0_0(v2, v8, v7)                                 │

02:06:42 #1013 [Debug] > │             v0.l0 <- v9                                                      │

02:06:42 #1014 [Debug] > │             US0_1(v2)                                                        │

02:06:42 #1015 [Debug] > │         | US1_1(v5, v6) -> (* Some *)                                        │

02:06:42 #1016 [Debug] > │             v6                                                               │

02:06:42 #1017 [Debug] > │     match v12 with                                                           │

02:06:42 #1018 [Debug] > │     | US0_1(v13) -> (* Some *)                                               │

02:06:42 #1019 [Debug] > │         let v14 : bool = v13 < 5                                             │

02:06:42 #1020 [Debug] > │         if v14 then                                                          │

02:06:42 #1021 [Debug] > │             let v15 : UH1 = UH1_0(v13, v1)                                   │

02:06:42 #1022 [Debug] > │             let v16 : int32 = v2 + 1                                         │

02:06:42 #1023 [Debug] > │             method5(v0, v15, v16)                                            │

02:06:42 #1024 [Debug] > │         else                                                                 │

02:06:42 #1025 [Debug] > │             let v18 : UH1 = UH1_1                                            │

02:06:42 #1026 [Debug] > │             method3(v1, v18)                                                 │

02:06:42 #1027 [Debug] > │     | _ ->                                                                   │

02:06:42 #1028 [Debug] > │         let v21 : UH1 = UH1_1                                                │

02:06:42 #1029 [Debug] > │         method3(v1, v21)                                                     │

02:06:42 #1030 [Debug] > │ and method0 () : unit =                                                      │

02:06:42 #1031 [Debug] > │     let v0 : UH0 = UH0_1                                                     │

02:06:42 #1032 [Debug] > │     let v1 : Mut0 = {l0 = v0} : Mut0                                         │

02:06:42 #1033 [Debug] > │     let v2 : UH1 = UH1_1                                                     │

02:06:42 #1034 [Debug] > │     let v3 : int32 = 0                                                       │

02:06:42 #1035 [Debug] > │     let v4 : UH1 = method1(v1, v2, v3)                                       │

02:06:42 #1036 [Debug] > │     let v5 : int32 = 0                                                       │

02:06:42 #1037 [Debug] > │     let v6 : int32 = method4(v4, v5)                                         │

02:06:42 #1038 [Debug] > │     let v7 : bool = v6 = 10                                                  │

02:06:42 #1039 [Debug] > │     let v8 : string = $"_equal / actual: %A{v6} / expected: %A{10}"          │

02:06:42 #1040 [Debug] > │     let v9 : bool = v7 = false                                               │

02:06:42 #1041 [Debug] > │     if v9 then                                                               │

02:06:42 #1042 [Debug] > │         failwith<unit> v8                                                    │

02:06:42 #1043 [Debug] > │     let v10 : UH1 = UH1_1                                                    │

02:06:42 #1044 [Debug] > │     let v11 : int32 = 0                                                      │

02:06:42 #1045 [Debug] > │     let v12 : UH1 = method5(v1, v10, v11)                                    │

02:06:42 #1046 [Debug] > │     let v13 : int32 = 0                                                      │

02:06:42 #1047 [Debug] > │     let v14 : int32 = method4(v12, v13)                                      │

02:06:42 #1048 [Debug] > │     let v15 : bool = v14 = 10                                                │

02:06:42 #1049 [Debug] > │     let v16 : string = $"_equal / actual: %A{v14} / expected: %A{10}"        │

02:06:42 #1050 [Debug] > │     let v17 : bool = v15 = false                                             │

02:06:42 #1051 [Debug] > │     if v17 then                                                              │

02:06:42 #1052 [Debug] > │         failwith<unit> v16                                                   │

02:06:42 #1053 [Debug] > │ method0()                                                                    │

02:06:42 #1054 [Debug] > │                                                                              │

02:06:42 #1055 [Debug] > │ print_and_return / x: 0                                                      │

02:06:42 #1056 [Debug] > │ print_and_return / x: 1                                                      │

02:06:42 #1057 [Debug] > │ print_and_return / x: 2                                                      │

02:06:42 #1058 [Debug] > │ print_and_return / x: 3                                                      │

02:06:42 #1059 [Debug] > │ print_and_return / x: 4                                                      │

02:06:42 #1060 [Debug] > │ print_and_return / x: 5                                                      │

02:06:42 #1061 [Debug] > │                                                                              │

02:06:42 #1062 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:42 #1063 [Debug] >

02:06:42 #1064 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:42 #1065 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:42 #1066 [Debug] > │ ## iterate                                                                   │

02:06:42 #1067 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:42 #1068 [Debug] >

02:06:42 #1069 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:42 #1070 [Debug] > inl iterate f x0 num_steps =

02:06:42 #1071 [Debug] >     inl rec loop x n =

02:06:42 #1072 [Debug] >         if n <= 0

02:06:42 #1073 [Debug] >         then x

02:06:42 #1074 [Debug] >         else loop (f x) (n - 1)

02:06:42 #1075 [Debug] >     loop x0 num_steps

02:06:42 #1076 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4250-5033-539bc03220bc\main.spi

02:06:42 #1077 [Debug] >

02:06:42 #1078 [Debug] > ╭─[ 201.19ms - stdout ]────────────────────────────────────────────────────────╮

02:06:42 #1079 [Debug] > │ ()                                                                           │

02:06:42 #1080 [Debug] > │                                                                              │

02:06:42 #1081 [Debug] > │                                                                              │

02:06:42 #1082 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:42 #1083 [Debug] >

02:06:42 #1084 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:42 #1085 [Debug] > // // test

02:06:42 #1086 [Debug] >

02:06:42 #1087 [Debug] > 10i32 |> iterate ((*) 2) 1i32

02:06:42 #1088 [Debug] > |> _equal 1024

02:06:42 #1089 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4271-7128-7385c8aa3474\main.spi

02:06:42 #1090 [Debug] >

02:06:42 #1091 [Debug] > ╭─[ 174.69ms - stdout ]────────────────────────────────────────────────────────╮

02:06:42 #1092 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:42 #1093 [Debug] > │     let v0 : string = $"_equal / actual: %A{1024} / expected: %A{1024}"      │

02:06:42 #1094 [Debug] > │     ()                                                                       │

02:06:42 #1095 [Debug] > │ method0()                                                                    │

02:06:42 #1096 [Debug] > │                                                                              │

02:06:42 #1097 [Debug] > │                                                                              │

02:06:42 #1098 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:42 #1099 [Debug] >

02:06:42 #1100 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:42 #1101 [Debug] > inl iterate_ f x0 num_steps =

02:06:42 #1102 [Debug] >     let rec loop x n =

02:06:42 #1103 [Debug] >         if n <= 0

02:06:42 #1104 [Debug] >         then x

02:06:42 #1105 [Debug] >         else loop (f x) (n - 1)

02:06:42 #1106 [Debug] >     loop x0 num_steps

02:06:43 #1107 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4288-8897-83940fa5808e\main.spi

02:06:43 #1108 [Debug] >

02:06:43 #1109 [Debug] > ╭─[ 243.10ms - stdout ]────────────────────────────────────────────────────────╮

02:06:43 #1110 [Debug] > │ ()                                                                           │

02:06:43 #1111 [Debug] > │                                                                              │

02:06:43 #1112 [Debug] > │                                                                              │

02:06:43 #1113 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:43 #1114 [Debug] >

02:06:43 #1115 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:43 #1116 [Debug] > // // test

02:06:43 #1117 [Debug] >

02:06:43 #1118 [Debug] > 10i32 |> iterate_ ((*) 2) 1i32

02:06:43 #1119 [Debug] > |> _equal 1024

02:06:43 #1120 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4313-1378-1fb00e488261\main.spi

02:06:43 #1121 [Debug] >

02:06:43 #1122 [Debug] > ╭─[ 180.48ms - stdout ]────────────────────────────────────────────────────────╮

02:06:43 #1123 [Debug] > │ let rec method1 (v0 : int32, v1 : int32) : int32 =                           │

02:06:43 #1124 [Debug] > │     let v2 : bool = v1 <= 0                                                  │

02:06:43 #1125 [Debug] > │     if v2 then                                                               │

02:06:43 #1126 [Debug] > │         v0                                                                   │

02:06:43 #1127 [Debug] > │     else                                                                     │

02:06:43 #1128 [Debug] > │         let v3 : int32 = 2 * v0                                              │

02:06:43 #1129 [Debug] > │         let v4 : int32 = v1 - 1                                              │

02:06:43 #1130 [Debug] > │         method1(v3, v4)                                                      │

02:06:43 #1131 [Debug] > │ and method0 () : unit =                                                      │

02:06:43 #1132 [Debug] > │     let v0 : int32 = 1                                                       │

02:06:43 #1133 [Debug] > │     let v1 : int32 = 10                                                      │

02:06:43 #1134 [Debug] > │     let v2 : int32 = method1(v0, v1)                                         │

02:06:43 #1135 [Debug] > │     let v3 : bool = v2 = 1024                                                │

02:06:43 #1136 [Debug] > │     let v4 : string = $"_equal / actual: %A{v2} / expected: %A{1024}"        │

02:06:43 #1137 [Debug] > │     let v5 : bool = v3 = false                                               │

02:06:43 #1138 [Debug] > │     if v5 then                                                               │

02:06:43 #1139 [Debug] > │         failwith<unit> v4                                                    │

02:06:43 #1140 [Debug] > │ method0()                                                                    │

02:06:43 #1141 [Debug] > │                                                                              │

02:06:43 #1142 [Debug] > │                                                                              │

02:06:43 #1143 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:43 #1144 [Debug] >

02:06:43 #1145 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:43 #1146 [Debug] > inl iterate' f x0 num_steps =

02:06:43 #1147 [Debug] >     listm.init num_steps id

02:06:43 #1148 [Debug] >     |> listm.fold (fun x _ => f x) x0

02:06:43 #1149 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4332-3284-385a21be0830\main.spi

02:06:43 #1150 [Debug] >

02:06:43 #1151 [Debug] > ╭─[ 170.36ms - stdout ]────────────────────────────────────────────────────────╮

02:06:43 #1152 [Debug] > │ ()                                                                           │

02:06:43 #1153 [Debug] > │                                                                              │

02:06:43 #1154 [Debug] > │                                                                              │

02:06:43 #1155 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:43 #1156 [Debug] >

02:06:43 #1157 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:43 #1158 [Debug] > // // test

02:06:43 #1159 [Debug] >

02:06:43 #1160 [Debug] > 10i32 |> iterate' ((*) 2) 1i32

02:06:43 #1161 [Debug] > |> _equal 1024

02:06:43 #1162 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-4350-5011-57f0b793f428\main.spi

02:06:43 #1163 [Debug] >

02:06:43 #1164 [Debug] > ╭─[ 208.45ms - stdout ]────────────────────────────────────────────────────────╮

02:06:43 #1165 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:43 #1166 [Debug] > │     let v0 : string = $"_equal / actual: %A{1024} / expected: %A{1024}"      │

02:06:43 #1167 [Debug] > │     ()                                                                       │

02:06:43 #1168 [Debug] > │ method0()                                                                    │

02:06:43 #1169 [Debug] > │                                                                              │

02:06:43 #1170 [Debug] > │                                                                              │

02:06:43 #1171 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:45 #1172 [Debug] > [NbConvertApp] Converting notebook seq.dib.ipynb to html

02:06:45 #1173 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:06:45 #1174 [Debug] >   validate(nb)

02:06:46 #1175 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:06:46 #1176 [Debug] >   return _pygments_highlight(

02:06:46 #1177 [Debug] > [NbConvertApp] Writing 350375 bytes to seq.dib.html

02:06:47 #1178 [Debug] executeAsync / exitCode: 0 / proc.Id: 75468 / output.Length: 74239

02:06:47 #1179 [Debug] main / executeCommand / exitCode: 0

02:06:47 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:06:47 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:06:48 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:06:48 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:06:48 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:06:48 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:06:49 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:06:49 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:06:49 #9 [Debug] > Server bound to: http://localhost:13805

02:06:49 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 util.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:06:51 #11 [Debug] >

02:06:51 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:51 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:51 #14 [Debug] > │ # util                                                                       │

02:06:51 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:51 #16 [Debug] >

02:06:51 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:51 #18 [Debug] > // // test

02:06:51 #19 [Debug] >

02:06:51 #20 [Debug] > open testing

02:06:54 #21 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-5395-9566-932ddc10e29f\main.spi

02:06:56 #22 [Debug] >

02:06:56 #23 [Debug] > ╭─[ 5.33s - stdout ]───────────────────────────────────────────────────────────╮

02:06:56 #24 [Debug] > │ ()                                                                           │

02:06:56 #25 [Debug] > │                                                                              │

02:06:56 #26 [Debug] > │                                                                              │

02:06:56 #27 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:56 #28 [Debug] >

02:06:56 #29 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:06:56 #30 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:06:56 #31 [Debug] > │ ## ski                                                                       │

02:06:56 #32 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:56 #33 [Debug] >

02:06:56 #34 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:56 #35 [Debug] > union rec ski =

02:06:56 #36 [Debug] >     | I

02:06:56 #37 [Debug] >     | K

02:06:56 #38 [Debug] >     | S

02:06:56 #39 [Debug] >     | App : ski * ski

02:06:56 #40 [Debug] >

02:06:56 #41 [Debug] > inl rec eval ski =

02:06:56 #42 [Debug] >     match ski with

02:06:56 #43 [Debug] >     | App (App (K, x), y) => eval x

02:06:56 #44 [Debug] >     | App (App (App (S, x), y), z) => eval (App (App (x, z), App (y, z)))

02:06:56 #45 [Debug] >     | App (I, x) => eval x

02:06:56 #46 [Debug] >     | App (K, x) => App (K, eval x)

02:06:56 #47 [Debug] >     | App (f, x) => eval (App (eval f, x))

02:06:56 #48 [Debug] >     | _ => ski

02:06:57 #49 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-5696-9631-96356dcf70b0\main.spi

02:06:57 #50 [Debug] >

02:06:57 #51 [Debug] > ╭─[ 204.80ms - stdout ]────────────────────────────────────────────────────────╮

02:06:57 #52 [Debug] > │ ()                                                                           │

02:06:57 #53 [Debug] > │                                                                              │

02:06:57 #54 [Debug] > │                                                                              │

02:06:57 #55 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:06:57 #56 [Debug] >

02:06:57 #57 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:06:57 #58 [Debug] > // // test

02:06:57 #59 [Debug] >

02:06:57 #60 [Debug] > eval I

02:06:57 #61 [Debug] > |> _equal I

02:06:57 #62 [Debug] >

02:06:57 #63 [Debug] > eval (App (I, I))

02:06:57 #64 [Debug] > |> _equal I

02:06:57 #65 [Debug] >

02:06:57 #66 [Debug] > eval (App (I, App (I, I)))

02:06:57 #67 [Debug] > |> _equal I

02:06:57 #68 [Debug] >

02:06:57 #69 [Debug] > eval (App (App (I, I), I))

02:06:57 #70 [Debug] > |> _equal I

02:06:57 #71 [Debug] >

02:06:57 #72 [Debug] > eval (App (App (App (I, I), I), I))

02:06:57 #73 [Debug] > |> _equal I

02:06:57 #74 [Debug] >

02:06:57 #75 [Debug] > eval K

02:06:57 #76 [Debug] > |> _equal K

02:06:57 #77 [Debug] >

02:06:57 #78 [Debug] > eval (App (K, I))

02:06:57 #79 [Debug] > |> _equal (App (K, I))

02:06:57 #80 [Debug] >

02:06:57 #81 [Debug] > eval (App (K, K))

02:06:57 #82 [Debug] > |> _equal (App (K, K))

02:06:57 #83 [Debug] >

02:06:57 #84 [Debug] > eval (App (App (K, I), K))

02:06:57 #85 [Debug] > |> _equal I

02:06:57 #86 [Debug] >

02:06:57 #87 [Debug] > eval (App (App (K, K), I))

02:06:57 #88 [Debug] > |> _equal K

02:06:57 #89 [Debug] >

02:06:57 #90 [Debug] > eval (App (App (App (App (K, K), I), S), K))

02:06:57 #91 [Debug] > |> _equal S

02:06:57 #92 [Debug] >

02:06:57 #93 [Debug] > eval S

02:06:57 #94 [Debug] > |> _equal S

02:06:57 #95 [Debug] >

02:06:57 #96 [Debug] > eval (App (App (App (S, I), I), I))

02:06:57 #97 [Debug] > |> _equal I

02:06:57 #98 [Debug] >

02:06:57 #99 [Debug] > eval (App (App (App (S, K), K), I))

02:06:57 #100 [Debug] > |> _equal I

02:06:57 #101 [Debug] >

02:06:57 #102 [Debug] > eval (App (App (App (S, K), I), (App (App (K, I), S))))

02:06:57 #103 [Debug] > |> _equal I

02:06:57 #104 [Debug] >

02:06:57 #105 [Debug] > eval (App (App (K, S), App (I, App (App (App (S, K), S), I))))

02:06:57 #106 [Debug] > |> _equal S

02:06:57 #107 [Debug] >

02:06:57 #108 [Debug] > eval (App (App (App (S, K), I), K))

02:06:57 #109 [Debug] > |> _equal K

02:06:57 #110 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0206-5716-1647-1632fd5560ab\main.spi

02:06:58 #111 [Debug] >

02:06:58 #112 [Debug] > ╭─[ 1.45s - stdout ]───────────────────────────────────────────────────────────╮

02:06:58 #113 [Debug] > │ type UH0 =                                                                   │

02:06:58 #114 [Debug] > │     | UH0_0 of UH0 * UH0                                                     │

02:06:58 #115 [Debug] > │     | UH0_1                                                                  │

02:06:58 #116 [Debug] > │     | UH0_2                                                                  │

02:06:58 #117 [Debug] > │     | UH0_3                                                                  │

02:06:58 #118 [Debug] > │ let rec method0 () : unit =                                                  │

02:06:58 #119 [Debug] > │     let v3 : UH0 = UH0_1                                                     │

02:06:58 #120 [Debug] > │     let v4 : UH0 = UH0_1                                                     │

02:06:58 #121 [Debug] > │     let v5 : string = $"_equal / actual: %A{v3} / expected: %A{v4}"          │

02:06:58 #122 [Debug] > │     let v9 : UH0 = UH0_1                                                     │

02:06:58 #123 [Debug] > │     let v10 : UH0 = UH0_1                                                    │

02:06:58 #124 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{v10}"        │

02:06:58 #125 [Debug] > │     let v15 : UH0 = UH0_1                                                    │

02:06:58 #126 [Debug] > │     let v16 : UH0 = UH0_1                                                    │

02:06:58 #127 [Debug] > │     let v17 : string = $"_equal / actual: %A{v15} / expected: %A{v16}"       │

02:06:58 #128 [Debug] > │     let v21 : UH0 = UH0_1                                                    │

02:06:58 #129 [Debug] > │     let v22 : UH0 = UH0_1                                                    │

02:06:58 #130 [Debug] > │     let v23 : string = $"_equal / actual: %A{v21} / expected: %A{v22}"       │

02:06:58 #131 [Debug] > │     let v27 : UH0 = UH0_1                                                    │

02:06:58 #132 [Debug] > │     let v28 : UH0 = UH0_1                                                    │

02:06:58 #133 [Debug] > │     let v29 : string = $"_equal / actual: %A{v27} / expected: %A{v28}"       │

02:06:58 #134 [Debug] > │     let v33 : UH0 = UH0_2                                                    │

02:06:58 #135 [Debug] > │     let v34 : UH0 = UH0_2                                                    │

02:06:58 #136 [Debug] > │     let v35 : string = $"_equal / actual: %A{v33} / expected: %A{v34}"       │

02:06:58 #137 [Debug] > │     let v47 : UH0 = UH0_2                                                    │

02:06:58 #138 [Debug] > │     let v48 : UH0 = UH0_1                                                    │

02:06:58 #139 [Debug] > │     let v49 : UH0 = UH0_0(v47, v48)                                          │

02:06:58 #140 [Debug] > │     let v50 : UH0 = UH0_2                                                    │

02:06:58 #141 [Debug] > │     let v51 : UH0 = UH0_1                                                    │

02:06:58 #142 [Debug] > │     let v52 : UH0 = UH0_0(v50, v51)                                          │

02:06:58 #143 [Debug] > │     let v53 : string = $"_equal / actual: %A{v49} / expected: %A{v52}"       │

02:06:58 #144 [Debug] > │     let v65 : UH0 = UH0_2                                                    │

02:06:58 #145 [Debug] > │     let v66 : UH0 = UH0_2                                                    │

02:06:58 #146 [Debug] > │     let v67 : UH0 = UH0_0(v65, v66)                                          │

02:06:58 #147 [Debug] > │     let v68 : UH0 = UH0_2                                                    │

02:06:58 #148 [Debug] > │     let v69 : UH0 = UH0_2                                                    │

02:06:58 #149 [Debug] > │     let v70 : UH0 = UH0_0(v68, v69)                                          │

02:06:58 #150 [Debug] > │     let v71 : string = $"_equal / actual: %A{v67} / expected: %A{v70}"       │

02:06:58 #151 [Debug] > │     let v75 : UH0 = UH0_1                                                    │

02:06:58 #152 [Debug] > │     let v76 : UH0 = UH0_1                                                    │

02:06:58 #153 [Debug] > │     let v77 : string = $"_equal / actual: %A{v75} / expected: %A{v76}"       │

02:06:58 #154 [Debug] > │     let v81 : UH0 = UH0_2                                                    │

02:06:58 #155 [Debug] > │     let v82 : UH0 = UH0_2                                                    │

02:06:58 #156 [Debug] > │     let v83 : string = $"_equal / actual: %A{v81} / expected: %A{v82}"       │

02:06:58 #157 [Debug] > │     let v87 : UH0 = UH0_3                                                    │

02:06:58 #158 [Debug] > │     let v88 : UH0 = UH0_3                                                    │

02:06:58 #159 [Debug] > │     let v89 : string = $"_equal / actual: %A{v87} / expected: %A{v88}"       │

02:06:58 #160 [Debug] > │     let v93 : UH0 = UH0_3                                                    │

02:06:58 #161 [Debug] > │     let v94 : UH0 = UH0_3                                                    │

02:06:58 #162 [Debug] > │     let v95 : string = $"_equal / actual: %A{v93} / expected: %A{v94}"       │

02:06:58 #163 [Debug] > │     let v99 : UH0 = UH0_1                                                    │

02:06:58 #164 [Debug] > │     let v100 : UH0 = UH0_1                                                   │

02:06:58 #165 [Debug] > │     let v101 : string = $"_equal / actual: %A{v99} / expected: %A{v100}"     │

02:06:58 #166 [Debug] > │     let v105 : UH0 = UH0_1                                                   │

02:06:58 #167 [Debug] > │     let v106 : UH0 = UH0_1                                                   │

02:06:58 #168 [Debug] > │     let v107 : string = $"_equal / actual: %A{v105} / expected: %A{v106}"    │

02:06:58 #169 [Debug] > │     let v111 : UH0 = UH0_1                                                   │

02:06:58 #170 [Debug] > │     let v112 : UH0 = UH0_1                                                   │

02:06:58 #171 [Debug] > │     let v113 : string = $"_equal / actual: %A{v111} / expected: %A{v112}"    │

02:06:58 #172 [Debug] > │     let v117 : UH0 = UH0_3                                                   │

02:06:58 #173 [Debug] > │     let v118 : UH0 = UH0_3                                                   │

02:06:58 #174 [Debug] > │     let v119 : string = $"_equal / actual: %A{v117} / expected: %A{v118}"    │

02:06:58 #175 [Debug] > │     let v123 : UH0 = UH0_2                                                   │

02:06:58 #176 [Debug] > │     let v124 : UH0 = UH0_2                                                   │

02:06:58 #177 [Debug] > │     let v125 : string = $"_equal / actual: %A{v123} / expected: %A{v124}"    │

02:06:58 #178 [Debug] > │     ()                                                                       │

02:06:58 #179 [Debug] > │ method0()                                                                    │

02:06:58 #180 [Debug] > │                                                                              │

02:06:58 #181 [Debug] > │                                                                              │

02:06:58 #182 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:00 #183 [Debug] > [NbConvertApp] Converting notebook util.dib.ipynb to html

02:07:00 #184 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:07:00 #185 [Debug] >   validate(nb)

02:07:00 #186 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:07:00 #187 [Debug] >   return _pygments_highlight(

02:07:01 #188 [Debug] > [NbConvertApp] Writing 285538 bytes to util.dib.html

02:07:01 #189 [Debug] executeAsync / exitCode: 0 / proc.Id: 71752 / output.Length: 9299

02:07:01 #190 [Debug] main / executeCommand / exitCode: 0

02:07:02 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:07:02 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:07:02 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:07:02 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:07:03 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:07:03 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:07:03 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:07:03 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:07:03 #9 [Debug] > Server bound to: http://localhost:13805

02:07:03 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 physics.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:07:06 #11 [Debug] >

02:07:06 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:06 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:06 #14 [Debug] > │ # physics                                                                    │

02:07:06 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:06 #16 [Debug] >

02:07:06 #17 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:07:06 #18 [Debug] > #!import ../nbs/Plotting.dib

02:07:06 #19 [Debug] >

02:07:06 #20 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:06 #21 [Debug] > #r

02:07:06 #22 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

02:07:06 #23 [Debug] > spNetCore.Html.Abstractions.dll"

02:07:06 #24 [Debug] > #r

02:07:06 #25 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:07:06 #26 [Debug] > otNet.Interactive.dll"

02:07:06 #27 [Debug] > #r

02:07:06 #28 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:07:06 #29 [Debug] > otNet.Interactive.FSharp.dll"

02:07:06 #30 [Debug] > #r

02:07:06 #31 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:07:06 #32 [Debug] > otNet.Interactive.Formatting.dll"

02:07:06 #33 [Debug] > open System

02:07:06 #34 [Debug] > open System.IO

02:07:06 #35 [Debug] > open System.Text

02:07:06 #36 [Debug] > open Microsoft.DotNet.Interactive.Formatting

02:07:09 #37 [Debug] >

02:07:09 #38 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:09 #39 [Debug] > #r

02:07:09 #40 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:07:09 #41 [Debug] > otNet.Interactive.FSharp.dll"

02:07:09 #42 [Debug] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

02:07:09 #43 [Debug] > #r

02:07:09 #44 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:07:09 #45 [Debug] > otNet.Interactive.dll"

02:07:09 #46 [Debug] > open type Microsoft.DotNet.Interactive.Kernel

02:07:09 #47 [Debug] >

02:07:09 #48 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:09 #49 [Debug] > //// test

02:07:09 #50 [Debug] >

02:07:09 #51 [Debug] > Formatter.ListExpansionLimit <- 100

02:07:10 #52 [Debug] >

02:07:10 #53 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:10 #54 [Debug] > #r

02:07:10 #55 [Debug] > @"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

02:07:10 #56 [Debug] > dard2.1/FSharp.Control.AsyncSeq.dll"

02:07:10 #57 [Debug] > #r

02:07:10 #58 [Debug] > @"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

02:07:10 #59 [Debug] > 0/System.Reactive.dll"

02:07:10 #60 [Debug] > #r

02:07:10 #61 [Debug] > @"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib

02:07:10 #62 [Debug] > netstandard2.0/System.Reactive.Linq.dll"

02:07:10 #63 [Debug] > #r

02:07:10 #64 [Debug] > @"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

02:07:10 #65 [Debug] > #r

02:07:10 #66 [Debug] > @"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

02:07:10 #67 [Debug] > b/net6.0/System.CommandLine.dll"

02:07:10 #68 [Debug] > #r

02:07:10 #69 [Debug] > @"../../../../../../../.nuget/packages/fsharp.json/0.4.1/lib/netstandard2.0/FSha

02:07:10 #70 [Debug] > rp.Json.dll"

02:07:10 #71 [Debug] >

02:07:10 #72 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:10 #73 [Debug] > #if !INTERACTIVE

02:07:10 #74 [Debug] > namespace Polyglot

02:07:10 #75 [Debug] > #endif

02:07:10 #76 [Debug] >

02:07:10 #77 [Debug] > module Common =

02:07:10 #78 [Debug] >

02:07:10 #79 [Debug] >     let nl = System.Environment.NewLine

02:07:10 #80 [Debug] >     let q = @""""

02:07:10 #81 [Debug] >

02:07:10 #82 [Debug] >     let inline cons head tail = head :: tail

02:07:10 #83 [Debug] >

02:07:10 #84 [Debug] >     module String =

02:07:10 #85 [Debug] >         let inline contains (value : string) (input : string) =

02:07:10 #86 [Debug] >             input.Contains value

02:07:10 #87 [Debug] >

02:07:10 #88 [Debug] >         let inline endsWith (value : string) (input : string) =

02:07:10 #89 [Debug] >             input.EndsWith value

02:07:10 #90 [Debug] >

02:07:10 #91 [Debug] >         let inline padLeft totalWidth paddingChar (input : string) =

02:07:10 #92 [Debug] >             input.PadLeft (totalWidth, paddingChar)

02:07:10 #93 [Debug] >

02:07:10 #94 [Debug] >         let inline replace (oldValue : string) (newValue : string) (input :

02:07:10 #95 [Debug] > string) =

02:07:10 #96 [Debug] >             input.Replace (oldValue, newValue)

02:07:10 #97 [Debug] >

02:07:10 #98 [Debug] >         let inline split separator (input : string) =

02:07:10 #99 [Debug] >             input.Split separator

02:07:10 #100 [Debug] >

02:07:10 #101 [Debug] >         let inline spli...

02:07:12 #102 [Debug] >

02:07:12 #103 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:12 #104 [Debug] > #if !INTERACTIVE

02:07:12 #105 [Debug] > namespace Polyglot

02:07:12 #106 [Debug] > #endif

02:07:12 #107 [Debug] >

02:07:12 #108 [Debug] > module CommonFSharp =

02:07:12 #109 [Debug] >

02:07:12 #110 [Debug] >     open Common

02:07:12 #111 [Debug] >

02:07:12 #112 [Debug] >     /// ## getUnionCaseName

02:07:12 #113 [Debug] >

02:07:12 #114 [Debug] >     let inline getUnionCaseName<'T> (x: 'T) =

02:07:12 #115 [Debug] >         match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

02:07:12 #116 [Debug] >         | case, _ -> case.Name

02:07:12 #117 [Debug] >

02:07:12 #118 [Debug] >

02:07:12 #119 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:12 #120 [Debug] > #if !INTERACTIVE

02:07:12 #121 [Debug] > namespace Polyglot

02:07:12 #122 [Debug] > #endif

02:07:12 #123 [Debug] >

02:07:12 #124 [Debug] > module Crypto =

02:07:12 #125 [Debug] >

02:07:12 #126 [Debug] >     open Common

02:07:12 #127 [Debug] >

02:07:12 #128 [Debug] >     /// ## hashText

02:07:12 #129 [Debug] >

02:07:12 #130 [Debug] >     let hashText (input : string) =

02:07:12 #131 [Debug] >         use sha256 = System.Security.Cryptography.SHA256.Create ()

02:07:12 #132 [Debug] >         input

02:07:12 #133 [Debug] >         |> System.Text.Encoding.UTF8.GetBytes

02:07:12 #134 [Debug] >         |> sha256.ComputeHash

02:07:12 #135 [Debug] >         |> Array.map (fun b -> b.ToString "x2")

02:07:12 #136 [Debug] >         |> String.concat ""

02:07:12 #137 [Debug] >

02:07:12 #138 [Debug] >

02:07:12 #139 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:12 #140 [Debug] > #if !INTERACTIVE

02:07:12 #141 [Debug] > namespace Polyglot

02:07:12 #142 [Debug] > #endif

02:07:12 #143 [Debug] >

02:07:12 #144 [Debug] > module Async =

02:07:12 #145 [Debug] >

02:07:12 #146 [Debug] >     open Common

02:07:12 #147 [Debug] >

02:07:12 #148 [Debug] >     /// ## choice

02:07:12 #149 [Debug] >

02:07:12 #150 [Debug] >     let inline choice asyncs = async {

02:07:12 #151 [Debug] >         let e = Event<_> ()

02:07:12 #152 [Debug] >         use cts = new System.Threading.CancellationTokenSource ()

02:07:12 #153 [Debug] >         let fn =

02:07:12 #154 [Debug] >             asyncs

02:07:12 #155 [Debug] >             |> Seq.map (fun a -> async {

02:07:12 #156 [Debug] >                 let! x = a

02:07:12 #157 [Debug] >                 e.Trigger x

02:07:12 #158 [Debug] >             })

02:07:12 #159 [Debug] >             |> Async.Parallel

02:07:12 #160 [Debug] >             |> Async.Ignore

02:07:12 #161 [Debug] >         Async.Start (fn, cts.Token)

02:07:12 #162 [Debug] >         let! result = Async.AwaitEvent e.Publish

02:07:12 #163 [Debug] >         cts.Cancel ()

02:07:12 #164 [Debug] >         return result

02:07:12 #165 [Debug] >     }

02:07:12 #166 [Debug] >

02:07:12 #167 [Debug] >     /// ## map

02:07:12 #168 [Debug] >

02:07:12 #169 [Debug] >     let inline map fn a = async {

02:07:12 #170 [Debug] >         let! x = a

02:07:12 #171 [Debug] >         return fn x

02:07:12 #172 [Debug] >     }

02:07:12 #173 [Debug] >

02:07:12 #174 [Debug] >     /// ## catch

02:07:12 #175 [Debug] >

02:07:12 #176 [Debug] >     let inline catch a =

02:07:12 #177 [Debug] >         a

02:07:12 #178 [Debug] >         |> Async.Catch

02:07:12 #179 [Debug] >         ...

02:07:12 #180 [Debug] >

02:07:12 #181 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:12 #182 [Debug] > #if !INTERACTIVE

02:07:12 #183 [Debug] > namespace Polyglot

02:07:12 #184 [Debug] > #endif

02:07:12 #185 [Debug] >

02:07:12 #186 [Debug] > module AsyncSeq =

02:07:12 #187 [Debug] >

02:07:12 #188 [Debug] >     open Common

02:07:12 #189 [Debug] >

02:07:12 #190 [Debug] >     /// ## subscribeEvent

02:07:12 #191 [Debug] >

02:07:12 #192 [Debug] >     let inline subscribeEvent (event: IEvent<'H, 'A>) map =

02:07:12 #193 [Debug] >         let observable = System.Reactive.Linq.Observable.FromEventPattern<'H,

02:07:12 #194 [Debug] > 'A>(event.AddHandler, event.RemoveHandler)

02:07:12 #195 [Debug] >         System.Reactive.Linq.Observable.Select (observable, fun event -> map

02:07:12 #196 [Debug] > event.EventArgs)

02:07:12 #197 [Debug] >         |> FSharp.Control.AsyncSeq.ofObservableBuffered

02:07:12 #198 [Debug] >

02:07:12 #199 [Debug] >     let subscribeToken (token : System.Threading.CancellationToken) =

02:07:12 #200 [Debug] >         let tcs = new System.Threading.Tasks.TaskCompletionSource ()

02:07:12 #201 [Debug] >         System.Action tcs.SetResult |> token.Register |> ignore

02:07:12 #202 [Debug] >         let start = System.DateTime.Now.Ticks

02:07:12 #203 [Debug] >         FSharp.Control.AsyncSeq.unfoldAsync

02:07:12 #204 [Debug] >             (fun (...

02:07:12 #205 [Debug] >

02:07:12 #206 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:12 #207 [Debug] > #if !INTERACTIVE

02:07:12 #208 [Debug] > namespace Polyglot

02:07:12 #209 [Debug] > #endif

02:07:12 #210 [Debug] >

02:07:12 #211 [Debug] > module Networking =

02:07:12 #212 [Debug] >

02:07:12 #213 [Debug] >     open Common

02:07:12 #214 [Debug] >

02:07:12 #215 [Debug] >     /// ## testPortOpen

02:07:12 #216 [Debug] >

02:07:12 #217 [Debug] >     let inline testPortOpen port = async {

02:07:12 #218 [Debug] >         let! ct = Async.CancellationToken

02:07:12 #219 [Debug] >         use client = new System.Net.Sockets.TcpClient ()

02:07:12 #220 [Debug] >         try

02:07:12 #221 [Debug] >             do! client.ConnectAsync ("127.0.0.1", port, ct) |>

02:07:12 #222 [Debug] > Async.awaitValueTaskUnit

02:07:12 #223 [Debug] >             return true

02:07:12 #224 [Debug] >         with ex ->

02:07:12 #225 [Debug] >             trace Verbose (fun () -> $"testPortOpen / ex: {ex |>

02:07:12 #226 [Debug] > printException}") getLocals

02:07:12 #227 [Debug] >             return false

02:07:12 #228 [Debug] >     }

02:07:12 #229 [Debug] >

02:07:12 #230 [Debug] >     let inline testPortOpenTimeout timeout port = async {

02:07:12 #231 [Debug] >         let! result =

02:07:12 #232 [Debug] >             testPortOpen port

02:07:12 #233 [Debug] >             |> Async.runWithTimeoutAsync timeout

02:07:12 #234 [Debug] >         return

02:07:12 #235 [Debug] >             match result with

02:07:12 #236 [Debug] >             | None -> false

02:07:12 #237 [Debug] >  ...

02:07:13 #238 [Debug] >

02:07:13 #239 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:13 #240 [Debug] > #if !INTERACTIVE

02:07:13 #241 [Debug] > namespace Polyglot

02:07:13 #242 [Debug] > #endif

02:07:13 #243 [Debug] >

02:07:13 #244 [Debug] > module Runtime =

02:07:13 #245 [Debug] >

02:07:13 #246 [Debug] >     open Common

02:07:13 #247 [Debug] >

02:07:13 #248 [Debug] >     /// ## isWindows

02:07:13 #249 [Debug] >

02:07:13 #250 [Debug] >     let isWindows =

02:07:13 #251 [Debug] >         fun () ->

02:07:13 #252 [Debug] >             System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

02:07:13 #253 [Debug] >                 System.Runtime.InteropServices.OSPlatform.Windows

02:07:13 #254 [Debug] >         |> memoize

02:07:13 #255 [Debug] >

02:07:13 #256 [Debug] >     /// ## getExecutableSuffix

02:07:13 #257 [Debug] >

02:07:13 #258 [Debug] >     let inline getExecutableSuffix () =

02:07:13 #259 [Debug] >         if isWindows ()

02:07:13 #260 [Debug] >         then ".exe"

02:07:13 #261 [Debug] >         else ""

02:07:13 #262 [Debug] >

02:07:13 #263 [Debug] >     /// ## splitCommand

02:07:13 #264 [Debug] >

02:07:13 #265 [Debug] >     type private CommandParseStep =

02:07:13 #266 [Debug] >         | Start

02:07:13 #267 [Debug] >         | Path of quoted: bool

02:07:13 #268 [Debug] >         | Arguments

02:07:13 #269 [Debug] >

02:07:13 #270 [Debug] >     let splitCommand (command: string) =

02:07:13 #271 [Debug] >         let rec loop (path, args) chars step =

02:07:13 #272 [Debug] >             match chars, step with

02:07:13 #273 [Debug] >             | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...

02:07:14 #274 [Debug] >

02:07:14 #275 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:14 #276 [Debug] > #if !INTERACTIVE

02:07:14 #277 [Debug] > namespace Polyglot

02:07:14 #278 [Debug] > #endif

02:07:14 #279 [Debug] >

02:07:14 #280 [Debug] > module FileSystem =

02:07:14 #281 [Debug] >

02:07:14 #282 [Debug] >     open Common

02:07:14 #283 [Debug] >

02:07:14 #284 [Debug] >     /// ## Operators

02:07:14 #285 [Debug] >

02:07:14 #286 [Debug] >     module Operators =

02:07:14 #287 [Debug] >         let inline (</>) a b =

02:07:14 #288 [Debug] >             System.IO.Path.Combine (a, b)

02:07:14 #289 [Debug] >

02:07:14 #290 [Debug] >     open Operators

02:07:14 #291 [Debug] >

02:07:14 #292 [Debug] >     /// ## createTempDirectoryName

02:07:14 #293 [Debug] >

02:07:14 #294 [Debug] >     let inline createTempDirectoryName () =

02:07:14 #295 [Debug] >         let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name

02:07:14 #296 [Debug] >

02:07:14 #297 [Debug] >         System.IO.Path.GetTempPath ()

02:07:14 #298 [Debug] >         </> $"!{root}"

02:07:14 #299 [Debug] >         </> string (newGuidFromDateTime System.DateTime.Now)

02:07:14 #300 [Debug] >

02:07:14 #301 [Debug] >     /// ## createTempDirectory

02:07:14 #302 [Debug] >

02:07:14 #303 [Debug] >     let inline createTempDirectory () =

02:07:14 #304 [Debug] >         let tempFolder = createTempDirectoryName ()

02:07:14 #305 [Debug] >         let result = System.IO.Directory.CreateDirectory tempFolder

02:07:14 #306 [Debug] >

02:07:14 #307 [Debug] >         let getLocals () =

02:07:14 #308 [Debug] >             $"tempFolder:...

02:07:18 #309 [Debug] >

02:07:18 #310 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:18 #311 [Debug] > open Common

02:07:18 #312 [Debug] > open FileSystem.Operators

02:07:18 #313 [Debug] >

02:07:18 #314 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:07:18 #315 [Debug] > let tmpSpiralPath = Path.GetTempPath () </> "!dotnet-interactive-spiral"

02:07:18 #316 [Debug] > let linePlotsDataPath = tmpSpiralPath </> "line-plots-data"

02:07:18 #317 [Debug] > let linePlotsSvgPath = tmpSpiralPath </> "line-plots-svg"

02:07:18 #318 [Debug] >

02:07:18 #319 [Debug] > [[ tmpSpiralPath; linePlotsDataPath; linePlotsSvgPath ]]

02:07:18 #320 [Debug] > |> List.iter (fun dir -> if Directory.Exists dir |> not then

02:07:18 #321 [Debug] > Directory.CreateDirectory dir |> ignore)

02:07:18 #322 [Debug] >

02:07:18 #323 [Debug] > Formatter.Register<struct (string * string * string * struct (string * float

02:07:18 #324 [Debug] > array * float array) array)> (

02:07:18 #325 [Debug] >     (fun struct (caption, x_desc, y_desc, ys) ->

02:07:18 #326 [Debug] >         let json = (caption, x_desc, y_desc, ys) |> FSharp.Json.Json.serialize

02:07:18 #327 [Debug] >         async {

02:07:18 #328 [Debug] >             let hashHex = json |> Crypto.hashText

02:07:18 #329 [Debug] >             let svgPath = linePlotsSvgPath </> $"{hashHex}.svg"

02:07:18 #330 [Debug] >

02:07:18 #331 [Debug] >             if System.IO.File.Exi...

02:07:18 #332 [Debug] >

02:07:18 #333 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:18 #334 [Debug] > // // test

02:07:18 #335 [Debug] >

02:07:18 #336 [Debug] > open testing

02:07:20 #337 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-1947-4730-4757df09cfb8\main.spi

02:07:21 #338 [Debug] >

02:07:21 #339 [Debug] > ╭─[ 3.24s - stdout ]───────────────────────────────────────────────────────────╮

02:07:21 #340 [Debug] > │ ()                                                                           │

02:07:21 #341 [Debug] > │                                                                              │

02:07:21 #342 [Debug] > │                                                                              │

02:07:21 #343 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:21 #344 [Debug] >

02:07:21 #345 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:21 #346 [Debug] > inl (/@) x = listm'.(/@) x

02:07:21 #347 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2186-8680-8a79ba268447\main.spi

02:07:22 #348 [Debug] >

02:07:22 #349 [Debug] > ╭─[ 175.52ms - stdout ]────────────────────────────────────────────────────────╮

02:07:22 #350 [Debug] > │ ()                                                                           │

02:07:22 #351 [Debug] > │                                                                              │

02:07:22 #352 [Debug] > │                                                                              │

02:07:22 #353 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:22 #354 [Debug] >

02:07:22 #355 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:22 #356 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:22 #357 [Debug] > │ ## init_series                                                               │

02:07:22 #358 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:22 #359 [Debug] >

02:07:22 #360 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:22 #361 [Debug] > // // test

02:07:22 #362 [Debug] >

02:07:22 #363 [Debug] > inl x : a _ f64 = am'.init_series -3 3 0.01

02:07:22 #364 [Debug] > inl y = x |> am.map math.square

02:07:22 #365 [Debug] > "square", "x", "y", ;[[ "square", x, y ]]

02:07:22 #366 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2204-0448-0abf025785bf\main.spi

02:07:22 #367 [Debug] >

02:07:22 #368 [Debug] > ╭─[ 449.99ms - return value ]──────────────────────────────────────────────────╮

02:07:22 #369 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:22 #370 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:22 #371 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:22 #372 [Debug] > │ stroke="none"/>                                                              │

02:07:22 #373 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:22 #374 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #375 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #376 [Debug] > │ square                                                                       │

02:07:22 #377 [Debug] > │ </text>                                                                      │

02:07:22 #378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:07:22 #379 [Debug] > │ y2="75"/>                                                                    │

02:07:22 #380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:22 #381 [Debug] > │ y2="75"/>                                                                    │

02:07:22 #382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:07:22 #383 [Debug] > │ y2="75"/>                                                                    │

02:07:22 #384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:07:22 #385 [Debug] > │ y2="75"/>                                                                    │

02:07:22 #386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:07:22 #387 [Debug] > │ y2="75"/>                                                                    │

02:07:22 #388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:07:22 #389 [Debug] > │ x2="103" y2="75"/>                                                           │

02:07:22 #390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:07:22 #391 [Debug] > │ x2="111" y2="75"/>                                                           │

02:07:22 #392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:22 #393 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:22 #394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:07:22 #395 [Debug] > │ x2="128" y2="75"/>                                                           │

02:07:22 #396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:07:22 #397 [Debug] > │ x2="136" y2="75"/>                                                           │

02:07:22 #398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:07:22 #399 [Debug] > │ x2="144" y2="75"/>                                                           │

02:07:22 #400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:07:22 #401 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:22 #402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:07:22 #403 [Debug] > │ x2="161" y2="75"/>                                                           │

02:07:22 #404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:22 #405 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:22 #406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:07:22 #407 [Debug] > │ x2="178" y2="75"/>                                                           │

02:07:22 #408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:07:22 #409 [Debug] > │ x2="186" y2="75"/>                                                           │

02:07:22 #410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:07:22 #411 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:22 #412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:07:22 #413 [Debug] > │ x2="203" y2="75"/>                                                           │

02:07:22 #414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:07:22 #415 [Debug] > │ x2="211" y2="75"/>                                                           │

02:07:22 #416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:22 #417 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:22 #418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:07:22 #419 [Debug] > │ x2="228" y2="75"/>                                                           │

02:07:22 #420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:07:22 #421 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:22 #422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:07:22 #423 [Debug] > │ x2="244" y2="75"/>                                                           │

02:07:22 #424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:07:22 #425 [Debug] > │ x2="252" y2="75"/>                                                           │

02:07:22 #426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:07:22 #427 [Debug] > │ x2="261" y2="75"/>                                                           │

02:07:22 #428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:22 #429 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:22 #430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:07:22 #431 [Debug] > │ x2="277" y2="75"/>                                                           │

02:07:22 #432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:07:22 #433 [Debug] > │ x2="286" y2="75"/>                                                           │

02:07:22 #434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:07:22 #435 [Debug] > │ x2="294" y2="75"/>                                                           │

02:07:22 #436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:07:22 #437 [Debug] > │ x2="302" y2="75"/>                                                           │

02:07:22 #438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:07:22 #439 [Debug] > │ x2="311" y2="75"/>                                                           │

02:07:22 #440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:22 #441 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:22 #442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:07:22 #443 [Debug] > │ x2="327" y2="75"/>                                                           │

02:07:22 #444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:07:22 #445 [Debug] > │ x2="336" y2="75"/>                                                           │

02:07:22 #446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:07:22 #447 [Debug] > │ x2="344" y2="75"/>                                                           │

02:07:22 #448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:07:22 #449 [Debug] > │ x2="352" y2="75"/>                                                           │

02:07:22 #450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:07:22 #451 [Debug] > │ x2="361" y2="75"/>                                                           │

02:07:22 #452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:22 #453 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:22 #454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:07:22 #455 [Debug] > │ x2="377" y2="75"/>                                                           │

02:07:22 #456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:07:22 #457 [Debug] > │ x2="386" y2="75"/>                                                           │

02:07:22 #458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:07:22 #459 [Debug] > │ x2="394" y2="75"/>                                                           │

02:07:22 #460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:07:22 #461 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:22 #462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:07:22 #463 [Debug] > │ x2="410" y2="75"/>                                                           │

02:07:22 #464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:22 #465 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:22 #466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:07:22 #467 [Debug] > │ x2="427" y2="75"/>                                                           │

02:07:22 #468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:07:22 #469 [Debug] > │ x2="435" y2="75"/>                                                           │

02:07:22 #470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:07:22 #471 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:22 #472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:07:22 #473 [Debug] > │ x2="452" y2="75"/>                                                           │

02:07:22 #474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:07:22 #475 [Debug] > │ x2="460" y2="75"/>                                                           │

02:07:22 #476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:22 #477 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:22 #478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:07:22 #479 [Debug] > │ x2="477" y2="75"/>                                                           │

02:07:22 #480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:07:22 #481 [Debug] > │ x2="485" y2="75"/>                                                           │

02:07:22 #482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:07:22 #483 [Debug] > │ x2="494" y2="75"/>                                                           │

02:07:22 #484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:07:22 #485 [Debug] > │ x2="502" y2="75"/>                                                           │

02:07:22 #486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:07:22 #487 [Debug] > │ x2="510" y2="75"/>                                                           │

02:07:22 #488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:22 #489 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:22 #490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:07:22 #491 [Debug] > │ x2="527" y2="75"/>                                                           │

02:07:22 #492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:07:22 #493 [Debug] > │ x2="535" y2="75"/>                                                           │

02:07:22 #494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:07:22 #495 [Debug] > │ x2="544" y2="75"/>                                                           │

02:07:22 #496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:07:22 #497 [Debug] > │ x2="552" y2="75"/>                                                           │

02:07:22 #498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:07:22 #499 [Debug] > │ x2="560" y2="75"/>                                                           │

02:07:22 #500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:22 #501 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:22 #502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:07:22 #503 [Debug] > │ x2="577" y2="75"/>                                                           │

02:07:22 #504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:22 #505 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:22 #506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="396"         │

02:07:22 #507 [Debug] > │ x2="584" y2="396"/>                                                          │

02:07:22 #508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="378"         │

02:07:22 #509 [Debug] > │ x2="584" y2="378"/>                                                          │

02:07:22 #510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="360"         │

02:07:22 #511 [Debug] > │ x2="584" y2="360"/>                                                          │

02:07:22 #512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="341"         │

02:07:22 #513 [Debug] > │ x2="584" y2="341"/>                                                          │

02:07:22 #514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="323"         │

02:07:22 #515 [Debug] > │ x2="584" y2="323"/>                                                          │

02:07:22 #516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:07:22 #517 [Debug] > │ x2="584" y2="305"/>                                                          │

02:07:22 #518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:07:22 #519 [Debug] > │ x2="584" y2="287"/>                                                          │

02:07:22 #520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:07:22 #521 [Debug] > │ x2="584" y2="268"/>                                                          │

02:07:22 #522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:07:22 #523 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:22 #524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:07:22 #525 [Debug] > │ x2="584" y2="232"/>                                                          │

02:07:22 #526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:07:22 #527 [Debug] > │ x2="584" y2="213"/>                                                          │

02:07:22 #528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:07:22 #529 [Debug] > │ x2="584" y2="195"/>                                                          │

02:07:22 #530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:07:22 #531 [Debug] > │ x2="584" y2="177"/>                                                          │

02:07:22 #532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:07:22 #533 [Debug] > │ x2="584" y2="159"/>                                                          │

02:07:22 #534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:07:22 #535 [Debug] > │ x2="584" y2="140"/>                                                          │

02:07:22 #536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="122"         │

02:07:22 #537 [Debug] > │ x2="584" y2="122"/>                                                          │

02:07:22 #538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:07:22 #539 [Debug] > │ x2="584" y2="104"/>                                                          │

02:07:22 #540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:22 #541 [Debug] > │ y2="85"/>                                                                    │

02:07:22 #542 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:22 #543 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #544 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #545 [Debug] > │ x                                                                            │

02:07:22 #546 [Debug] > │ </text>                                                                      │

02:07:22 #547 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:22 #548 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #549 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:22 #550 [Debug] > │ y                                                                            │

02:07:22 #551 [Debug] > │ </text>                                                                      │

02:07:22 #552 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:22 #553 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #554 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #555 [Debug] > │ x                                                                            │

02:07:22 #556 [Debug] > │ </text>                                                                      │

02:07:22 #557 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:22 #558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #559 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:22 #560 [Debug] > │ y                                                                            │

02:07:22 #561 [Debug] > │ </text>                                                                      │

02:07:22 #562 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:22 #563 [Debug] > │ y2="75"/>                                                                    │

02:07:22 #564 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="111" y1="424"        │

02:07:22 #565 [Debug] > │ x2="111" y2="75"/>                                                           │

02:07:22 #566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="153" y1="424"        │

02:07:22 #567 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:22 #568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="194" y1="424"        │

02:07:22 #569 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:22 #570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:07:22 #571 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:22 #572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="277" y1="424"        │

02:07:22 #573 [Debug] > │ x2="277" y2="75"/>                                                           │

02:07:22 #574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:22 #575 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:22 #576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="361" y1="424"        │

02:07:22 #577 [Debug] > │ x2="361" y2="75"/>                                                           │

02:07:22 #578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:07:22 #579 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:22 #580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="444" y1="424"        │

02:07:22 #581 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:22 #582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:07:22 #583 [Debug] > │ x2="485" y2="75"/>                                                           │

02:07:22 #584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:07:22 #585 [Debug] > │ x2="527" y2="75"/>                                                           │

02:07:22 #586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:22 #587 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:22 #588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:22 #589 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:22 #590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="378"         │

02:07:22 #591 [Debug] > │ x2="584" y2="378"/>                                                          │

02:07:22 #592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="341"         │

02:07:22 #593 [Debug] > │ x2="584" y2="341"/>                                                          │

02:07:22 #594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="305"         │

02:07:22 #595 [Debug] > │ x2="584" y2="305"/>                                                          │

02:07:22 #596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="268"         │

02:07:22 #597 [Debug] > │ x2="584" y2="268"/>                                                          │

02:07:22 #598 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="232"         │

02:07:22 #599 [Debug] > │ x2="584" y2="232"/>                                                          │

02:07:22 #600 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="195"         │

02:07:22 #601 [Debug] > │ x2="584" y2="195"/>                                                          │

02:07:22 #602 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="159"         │

02:07:22 #603 [Debug] > │ x2="584" y2="159"/>                                                          │

02:07:22 #604 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="122"         │

02:07:22 #605 [Debug] > │ x2="584" y2="122"/>                                                          │

02:07:22 #606 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:22 #607 [Debug] > │ y2="85"/>                                                                    │

02:07:22 #608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #609 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:22 #610 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:22 #611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #612 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #613 [Debug] > │ -3.0                                                                         │

02:07:22 #614 [Debug] > │ </text>                                                                      │

02:07:22 #615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #616 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:22 #617 [Debug] > │ <text x="111" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #619 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #620 [Debug] > │ -2.5                                                                         │

02:07:22 #621 [Debug] > │ </text>                                                                      │

02:07:22 #622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #623 [Debug] > │ points="111,69 111,74 "/>                                                    │

02:07:22 #624 [Debug] > │ <text x="153" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #626 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #627 [Debug] > │ -2.0                                                                         │

02:07:22 #628 [Debug] > │ </text>                                                                      │

02:07:22 #629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #630 [Debug] > │ points="153,69 153,74 "/>                                                    │

02:07:22 #631 [Debug] > │ <text x="194" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #633 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #634 [Debug] > │ -1.5                                                                         │

02:07:22 #635 [Debug] > │ </text>                                                                      │

02:07:22 #636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #637 [Debug] > │ points="194,69 194,74 "/>                                                    │

02:07:22 #638 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #640 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #641 [Debug] > │ -1.0                                                                         │

02:07:22 #642 [Debug] > │ </text>                                                                      │

02:07:22 #643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #644 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:07:22 #645 [Debug] > │ <text x="277" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #647 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #648 [Debug] > │ -0.5                                                                         │

02:07:22 #649 [Debug] > │ </text>                                                                      │

02:07:22 #650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #651 [Debug] > │ points="277,69 277,74 "/>                                                    │

02:07:22 #652 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #654 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #655 [Debug] > │ 0.0                                                                          │

02:07:22 #656 [Debug] > │ </text>                                                                      │

02:07:22 #657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #658 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:22 #659 [Debug] > │ <text x="361" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #661 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #662 [Debug] > │ 0.5                                                                          │

02:07:22 #663 [Debug] > │ </text>                                                                      │

02:07:22 #664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #665 [Debug] > │ points="361,69 361,74 "/>                                                    │

02:07:22 #666 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #668 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #669 [Debug] > │ 1.0                                                                          │

02:07:22 #670 [Debug] > │ </text>                                                                      │

02:07:22 #671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #672 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:07:22 #673 [Debug] > │ <text x="444" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #675 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #676 [Debug] > │ 1.5                                                                          │

02:07:22 #677 [Debug] > │ </text>                                                                      │

02:07:22 #678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #679 [Debug] > │ points="444,69 444,74 "/>                                                    │

02:07:22 #680 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #682 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #683 [Debug] > │ 2.0                                                                          │

02:07:22 #684 [Debug] > │ </text>                                                                      │

02:07:22 #685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #686 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:07:22 #687 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #689 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #690 [Debug] > │ 2.5                                                                          │

02:07:22 #691 [Debug] > │ </text>                                                                      │

02:07:22 #692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #693 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:07:22 #694 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:22 #695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #696 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #697 [Debug] > │ 3.0                                                                          │

02:07:22 #698 [Debug] > │ </text>                                                                      │

02:07:22 #699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #700 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:22 #701 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #702 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:22 #703 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #704 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #705 [Debug] > │ 0.0                                                                          │

02:07:22 #706 [Debug] > │ </text>                                                                      │

02:07:22 #707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #708 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:22 #709 [Debug] > │ <text x="45" y="378" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #710 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #711 [Debug] > │ 1.0                                                                          │

02:07:22 #712 [Debug] > │ </text>                                                                      │

02:07:22 #713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #714 [Debug] > │ points="49,378 54,378 "/>                                                    │

02:07:22 #715 [Debug] > │ <text x="45" y="341" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #716 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #717 [Debug] > │ 2.0                                                                          │

02:07:22 #718 [Debug] > │ </text>                                                                      │

02:07:22 #719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #720 [Debug] > │ points="49,341 54,341 "/>                                                    │

02:07:22 #721 [Debug] > │ <text x="45" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #722 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #723 [Debug] > │ 3.0                                                                          │

02:07:22 #724 [Debug] > │ </text>                                                                      │

02:07:22 #725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #726 [Debug] > │ points="49,305 54,305 "/>                                                    │

02:07:22 #727 [Debug] > │ <text x="45" y="268" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #728 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #729 [Debug] > │ 4.0                                                                          │

02:07:22 #730 [Debug] > │ </text>                                                                      │

02:07:22 #731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #732 [Debug] > │ points="49,268 54,268 "/>                                                    │

02:07:22 #733 [Debug] > │ <text x="45" y="232" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #734 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #735 [Debug] > │ 5.0                                                                          │

02:07:22 #736 [Debug] > │ </text>                                                                      │

02:07:22 #737 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #738 [Debug] > │ points="49,232 54,232 "/>                                                    │

02:07:22 #739 [Debug] > │ <text x="45" y="195" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #740 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #741 [Debug] > │ 6.0                                                                          │

02:07:22 #742 [Debug] > │ </text>                                                                      │

02:07:22 #743 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #744 [Debug] > │ points="49,195 54,195 "/>                                                    │

02:07:22 #745 [Debug] > │ <text x="45" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #746 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #747 [Debug] > │ 7.0                                                                          │

02:07:22 #748 [Debug] > │ </text>                                                                      │

02:07:22 #749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #750 [Debug] > │ points="49,159 54,159 "/>                                                    │

02:07:22 #751 [Debug] > │ <text x="45" y="122" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:22 #752 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #753 [Debug] > │ 8.0                                                                          │

02:07:22 #754 [Debug] > │ </text>                                                                      │

02:07:22 #755 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #756 [Debug] > │ points="49,122 54,122 "/>                                                    │

02:07:22 #757 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:22 #758 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #759 [Debug] > │ 9.0                                                                          │

02:07:22 #760 [Debug] > │ </text>                                                                      │

02:07:22 #761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #762 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:07:22 #763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #764 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:22 #765 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:22 #766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #767 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #768 [Debug] > │ -3.0                                                                         │

02:07:22 #769 [Debug] > │ </text>                                                                      │

02:07:22 #770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #771 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:22 #772 [Debug] > │ <text x="111" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #774 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #775 [Debug] > │ -2.5                                                                         │

02:07:22 #776 [Debug] > │ </text>                                                                      │

02:07:22 #777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #778 [Debug] > │ points="111,425 111,430 "/>                                                  │

02:07:22 #779 [Debug] > │ <text x="153" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #781 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #782 [Debug] > │ -2.0                                                                         │

02:07:22 #783 [Debug] > │ </text>                                                                      │

02:07:22 #784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #785 [Debug] > │ points="153,425 153,430 "/>                                                  │

02:07:22 #786 [Debug] > │ <text x="194" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #788 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #789 [Debug] > │ -1.5                                                                         │

02:07:22 #790 [Debug] > │ </text>                                                                      │

02:07:22 #791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #792 [Debug] > │ points="194,425 194,430 "/>                                                  │

02:07:22 #793 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #795 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #796 [Debug] > │ -1.0                                                                         │

02:07:22 #797 [Debug] > │ </text>                                                                      │

02:07:22 #798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #799 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:07:22 #800 [Debug] > │ <text x="277" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #802 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #803 [Debug] > │ -0.5                                                                         │

02:07:22 #804 [Debug] > │ </text>                                                                      │

02:07:22 #805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #806 [Debug] > │ points="277,425 277,430 "/>                                                  │

02:07:22 #807 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #809 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #810 [Debug] > │ 0.0                                                                          │

02:07:22 #811 [Debug] > │ </text>                                                                      │

02:07:22 #812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #813 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:22 #814 [Debug] > │ <text x="361" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #816 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #817 [Debug] > │ 0.5                                                                          │

02:07:22 #818 [Debug] > │ </text>                                                                      │

02:07:22 #819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #820 [Debug] > │ points="361,425 361,430 "/>                                                  │

02:07:22 #821 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #823 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #824 [Debug] > │ 1.0                                                                          │

02:07:22 #825 [Debug] > │ </text>                                                                      │

02:07:22 #826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #827 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:07:22 #828 [Debug] > │ <text x="444" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #829 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #830 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #831 [Debug] > │ 1.5                                                                          │

02:07:22 #832 [Debug] > │ </text>                                                                      │

02:07:22 #833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #834 [Debug] > │ points="444,425 444,430 "/>                                                  │

02:07:22 #835 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #837 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #838 [Debug] > │ 2.0                                                                          │

02:07:22 #839 [Debug] > │ </text>                                                                      │

02:07:22 #840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #841 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:07:22 #842 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #843 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #844 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #845 [Debug] > │ 2.5                                                                          │

02:07:22 #846 [Debug] > │ </text>                                                                      │

02:07:22 #847 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #848 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:07:22 #849 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:22 #850 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #851 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #852 [Debug] > │ 3.0                                                                          │

02:07:22 #853 [Debug] > │ </text>                                                                      │

02:07:22 #854 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #855 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:22 #856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #857 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:22 #858 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:07:22 #859 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #860 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #861 [Debug] > │ 0.0                                                                          │

02:07:22 #862 [Debug] > │ </text>                                                                      │

02:07:22 #863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #864 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:22 #865 [Debug] > │ <text x="595" y="378" dy="0.5ex" text-anchor="start"                         │

02:07:22 #866 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #867 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #868 [Debug] > │ 1.0                                                                          │

02:07:22 #869 [Debug] > │ </text>                                                                      │

02:07:22 #870 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #871 [Debug] > │ points="585,378 590,378 "/>                                                  │

02:07:22 #872 [Debug] > │ <text x="595" y="341" dy="0.5ex" text-anchor="start"                         │

02:07:22 #873 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #874 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #875 [Debug] > │ 2.0                                                                          │

02:07:22 #876 [Debug] > │ </text>                                                                      │

02:07:22 #877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #878 [Debug] > │ points="585,341 590,341 "/>                                                  │

02:07:22 #879 [Debug] > │ <text x="595" y="305" dy="0.5ex" text-anchor="start"                         │

02:07:22 #880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #881 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #882 [Debug] > │ 3.0                                                                          │

02:07:22 #883 [Debug] > │ </text>                                                                      │

02:07:22 #884 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #885 [Debug] > │ points="585,305 590,305 "/>                                                  │

02:07:22 #886 [Debug] > │ <text x="595" y="268" dy="0.5ex" text-anchor="start"                         │

02:07:22 #887 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #888 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #889 [Debug] > │ 4.0                                                                          │

02:07:22 #890 [Debug] > │ </text>                                                                      │

02:07:22 #891 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #892 [Debug] > │ points="585,268 590,268 "/>                                                  │

02:07:22 #893 [Debug] > │ <text x="595" y="232" dy="0.5ex" text-anchor="start"                         │

02:07:22 #894 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #895 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #896 [Debug] > │ 5.0                                                                          │

02:07:22 #897 [Debug] > │ </text>                                                                      │

02:07:22 #898 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #899 [Debug] > │ points="585,232 590,232 "/>                                                  │

02:07:22 #900 [Debug] > │ <text x="595" y="195" dy="0.5ex" text-anchor="start"                         │

02:07:22 #901 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #902 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #903 [Debug] > │ 6.0                                                                          │

02:07:22 #904 [Debug] > │ </text>                                                                      │

02:07:22 #905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #906 [Debug] > │ points="585,195 590,195 "/>                                                  │

02:07:22 #907 [Debug] > │ <text x="595" y="159" dy="0.5ex" text-anchor="start"                         │

02:07:22 #908 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #909 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #910 [Debug] > │ 7.0                                                                          │

02:07:22 #911 [Debug] > │ </text>                                                                      │

02:07:22 #912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #913 [Debug] > │ points="585,159 590,159 "/>                                                  │

02:07:22 #914 [Debug] > │ <text x="595" y="122" dy="0.5ex" text-anchor="start"                         │

02:07:22 #915 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #916 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #917 [Debug] > │ 8.0                                                                          │

02:07:22 #918 [Debug] > │ </text>                                                                      │

02:07:22 #919 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #920 [Debug] > │ points="585,122 590,122 "/>                                                  │

02:07:22 #921 [Debug] > │ <text x="595" y="85" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:07:22 #922 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:22 #923 [Debug] > │ 9.0                                                                          │

02:07:22 #924 [Debug] > │ </text>                                                                      │

02:07:22 #925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:22 #926 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:07:22 #927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:22 #928 [Debug] > │ points="69,85 70,88 71,90 72,92 73,94 74,96 74,98 75,101 76,103 77,105       │

02:07:22 #929 [Debug] > │ 78,107 79,109 79,111 80,113 81,115 82,117 83,120 84,122 84,124 85,126 86,128 │

02:07:22 #930 [Debug] > │ 87,130 88,132 89,134 89,136 90,138 91,140 92,142 93,144 94,146 94,148 95,150 │

02:07:22 #931 [Debug] > │ 96,152 97,154 98,156 99,158 99,160 100,162 101,164 102,165 103,167 104,169   │

02:07:22 #932 [Debug] > │ 104,171 105,173 106,175 107,177 108,179 109,180 109,182 110,184 111,186      │

02:07:22 #933 [Debug] > │ 112,188 113,190 114,191 114,193 115,195 116,197 117,199 118,200 119,202      │

02:07:22 #934 [Debug] > │ 119,204 120,206 121,207 122,209 123,211 124,213 124,214 125,216 126,218      │

02:07:22 #935 [Debug] > │ 127,219 128,221 129,223 129,224 130,226 131,228 132,229 133,231 134,233      │

02:07:22 #936 [Debug] > │ 134,234 135,236 136,238 137,239 138,241 139,242 139,244 140,246 141,247      │

02:07:22 #937 [Debug] > │ 142,249 143,250 143,252 144,253 145,255 146,256 147,258 148,259 148,261      │

02:07:22 #938 [Debug] > │ 149,262 150,264 151,265 152,267 153,268 153,270 154,271 155,273 156,274      │

02:07:22 #939 [Debug] > │ 157,276 158,277 158,278 159,280 160,281 161,283 162,284 163,285 163,287      │

02:07:22 #940 [Debug] > │ 164,288 165,289 166,291 167,292 168,293 168,295 169,296 170,297 171,299      │

02:07:22 #941 [Debug] > │ 172,300 173,301 173,303 174,304 175,305 176,306 177,308 178,309 178,310      │

02:07:22 #942 [Debug] > │ 179,311 180,313 181,314 182,315 183,316 183,317 184,319 185,320 186,321      │

02:07:22 #943 [Debug] > │ 187,322 188,323 188,324 189,326 190,327 191,328 192,329 193,330 193,331      │

02:07:22 #944 [Debug] > │ 194,332 195,333 196,334 197,336 198,337 198,338 199,339 200,340 201,341      │

02:07:22 #945 [Debug] > │ 202,342 203,343 203,344 204,345 205,346 206,347 207,348 208,349 208,350      │

02:07:22 #946 [Debug] > │ 209,351 210,352 211,353 212,354 213,355 213,356 214,357 215,357 216,358      │

02:07:22 #947 [Debug] > │ 217,359 218,360 218,361 219,362 220,363 221,364 222,365 223,365 223,366      │

02:07:22 #948 [Debug] > │ 224,367 225,368 226,369 227,370 228,370 228,371 229,372 230,373 231,374      │

02:07:22 #949 [Debug] > │ 232,374 232,375 233,376 234,377 235,377 236,378 237,379 237,379 238,380      │

02:07:22 #950 [Debug] > │ 239,381 240,382 241,382 242,383 242,384 243,384 244,385 245,386 246,386      │

02:07:22 #951 [Debug] > │ 247,387 247,388 248,388 249,389 250,389 251,390 252,391 252,391 253,392      │

02:07:22 #952 [Debug] > │ 254,392 255,393 256,393 257,394 257,395 258,395 259,396 260,396 261,397      │

02:07:22 #953 [Debug] > │ 262,397 262,398 263,398 264,399 265,399 266,400 267,400 267,401 268,401      │

02:07:22 #954 [Debug] > │ 269,401 270,402 271,402 272,403 272,403 273,404 274,404 275,404 276,405      │

02:07:22 #955 [Debug] > │ 277,405 277,405 278,406 279,406 280,407 281,407 282,407 282,408 283,408      │

02:07:22 #956 [Debug] > │ 284,408 285,408 286,409 287,409 287,409 288,410 289,410 290,410 291,410      │

02:07:22 #957 [Debug] > │ 292,411 292,411 293,411 294,411 295,412 296,412 297,412 297,412 298,412      │

02:07:22 #958 [Debug] > │ 299,413 300,413 301,413 302,413 302,413 303,413 304,413 305,414 306,414      │

02:07:22 #959 [Debug] > │ 307,414 307,414 308,414 309,414 310,414 311,414 312,414 312,414 313,414      │

02:07:22 #960 [Debug] > │ 314,414 315,415 316,415 317,415 317,415 318,415 319,415 320,415 321,415      │

02:07:22 #961 [Debug] > │ 321,415 322,415 323,415 324,414 325,414 326,414 326,414 327,414 328,414      │

02:07:22 #962 [Debug] > │ 329,414 330,414 331,414 331,414 332,414 333,414 334,413 335,413 336,413      │

02:07:22 #963 [Debug] > │ 336,413 337,413 338,413 339,413 340,412 341,412 341,412 342,412 343,412      │

02:07:22 #964 [Debug] > │ 344,411 345,411 346,411 346,411 347,410 348,410 349,410 350,410 351,409      │

02:07:22 #965 [Debug] > │ 351,409 352,409 353,408 354,408 355,408 356,408 356,407 357,407 358,407      │

02:07:22 #966 [Debug] > │ 359,406 360,406 361,405 361,405 362,405 363,404 364,404 365,404 366,403      │

02:07:22 #967 [Debug] > │ 366,403 367,402 368,402 369,401 370,401 371,401 371,400 372,400 373,399      │

02:07:22 #968 [Debug] > │ 374,399 375,398 376,398 376,397 377,397 378,396 379,396 380,395 381,395      │

02:07:22 #969 [Debug] > │ 381,394 382,393 383,393 384,392 385,392 386,391 386,391 387,390 388,389      │

02:07:22 #970 [Debug] > │ 389,389 390,388 391,388 391,387 392,386 393,386 394,385 395,384 396,384      │

02:07:22 #971 [Debug] > │ 396,383 397,382 398,382 399,381 400,380 401,379 401,379 402,378 403,377      │

02:07:22 #972 [Debug] > │ 404,377 405,376 406,375 406,374 407,374 408,373 409,372 410,371 410,370      │

02:07:22 #973 [Debug] > │ 411,370 412,369 413,368 414,367 415,366 415,365 416,365 417,364 418,363      │

02:07:22 #974 [Debug] > │ 419,362 420,361 420,360 421,359 422,358 423,357 424,357 425,356 425,355      │

02:07:22 #975 [Debug] > │ 426,354 427,353 428,352 429,351 430,350 430,349 431,348 432,347 433,346      │

02:07:22 #976 [Debug] > │ 434,345 435,344 435,343 436,342 437,341 438,340 439,339 440,338 440,337      │

02:07:22 #977 [Debug] > │ 441,336 442,334 443,333 444,332 445,331 445,330 446,329 447,328 448,327      │

02:07:22 #978 [Debug] > │ 449,326 450,324 450,323 451,322 452,321 453,320 454,319 455,317 455,316      │

02:07:22 #979 [Debug] > │ 456,315 457,314 458,313 459,311 460,310 460,309 461,308 462,306 463,305      │

02:07:22 #980 [Debug] > │ 464,304 465,303 465,301 466,300 467,299 468,297 469,296 470,295 470,293      │

02:07:22 #981 [Debug] > │ 471,292 472,291 473,289 474,288 475,287 475,285 476,284 477,283 478,281      │

02:07:22 #982 [Debug] > │ 479,280 480,278 480,277 481,276 482,274 483,273 484,271 485,270 485,268      │

02:07:22 #983 [Debug] > │ 486,267 487,265 488,264 489,262 490,261 490,259 491,258 492,256 493,255      │

02:07:22 #984 [Debug] > │ 494,253 495,252 495,250 496,249 497,247 498,246 499,244 499,242 500,241      │

02:07:22 #985 [Debug] > │ 501,239 502,238 503,236 504,234 504,233 505,231 506,229 507,228 508,226      │

02:07:22 #986 [Debug] > │ 509,224 509,223 510,221 511,219 512,218 513,216 514,214 514,213 515,211      │

02:07:22 #987 [Debug] > │ 516,209 517,207 518,206 519,204 519,202 520,200 521,199 522,197 523,195      │

02:07:22 #988 [Debug] > │ 524,193 524,191 525,190 526,188 527,186 528,184 529,182 529,180 530,179      │

02:07:22 #989 [Debug] > │ 531,177 532,175 533,173 534,171 534,169 535,167 536,165 537,164 538,162      │

02:07:22 #990 [Debug] > │ 539,160 539,158 540,156 541,154 542,152 543,150 544,148 544,146 545,144      │

02:07:22 #991 [Debug] > │ 546,142 547,140 548,138 549,136 549,134 550,132 551,130 552,128 553,126      │

02:07:22 #992 [Debug] > │ 554,124 554,122 555,120 556,117 557,115 558,113 559,111 559,109 560,107      │

02:07:22 #993 [Debug] > │ 561,105 562,103 563,101 564,98 564,96 565,94 566,92 567,90 568,88 569,85 "/> │

02:07:22 #994 [Debug] > │ <rect x="497" y="235" width="83" height="30" opacity="1" fill="none"         │

02:07:22 #995 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:22 #996 [Debug] > │ <text x="537" y="245" dy="0.76em" text-anchor="start"                        │

02:07:22 #997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:22 #998 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:22 #999 [Debug] > │ square                                                                       │

02:07:22 #1000 [Debug] > │ </text>                                                                      │

02:07:22 #1001 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:22 #1002 [Debug] > │ points="507,250 527,250 "/>                                                  │

02:07:22 #1003 [Debug] > │ </svg>                                                                       │

02:07:22 #1004 [Debug] > │                                                                              │

02:07:22 #1005 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:22 #1006 [Debug] >

02:07:22 #1007 [Debug] > ╭─[ 858.89ms - stdout ]────────────────────────────────────────────────────────╮

02:07:22 #1008 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:22 #1009 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:22 #1010 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:22 #1011 [Debug] > │     let v2 : bool = v1 < 601                                                 │

02:07:22 #1012 [Debug] > │     v2                                                                       │

02:07:22 #1013 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:22 #1014 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:22 #1015 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:22 #1016 [Debug] > │     v3                                                                       │

02:07:22 #1017 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:22 #1018 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:22 #1019 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (601)                      │

02:07:22 #1020 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:22 #1021 [Debug] > │     while method1(v1) do                                                     │

02:07:22 #1022 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:22 #1023 [Debug] > │         let v4 : float = float v3                                            │

02:07:22 #1024 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:07:22 #1025 [Debug] > │         let v6 : float = -3.0 + v5                                           │

02:07:22 #1026 [Debug] > │         v0.[int v3] <- v6                                                    │

02:07:22 #1027 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:07:22 #1028 [Debug] > │         v1.l0 <- v7                                                          │

02:07:22 #1029 [Debug] > │         ()                                                                   │

02:07:22 #1030 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:07:22 #1031 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:07:22 #1032 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:07:22 #1033 [Debug] > │     while method2(v8, v10) do                                                │

02:07:22 #1034 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:07:22 #1035 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:07:22 #1036 [Debug] > │         let v14 : float = v13 ** 2.0                                         │

02:07:22 #1037 [Debug] > │         v9.[int v12] <- v14                                                  │

02:07:22 #1038 [Debug] > │         let v15 : int32 = v12 + 1                                            │

02:07:22 #1039 [Debug] > │         v10.l0 <- v15                                                        │

02:07:22 #1040 [Debug] > │         ()                                                                   │

02:07:22 #1041 [Debug] > │     let v16 : string = "square"                                              │

02:07:22 #1042 [Debug] > │     let v17 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:22 #1043 [Debug] > │ (v16, v0, v9)|]                                                              │

02:07:22 #1044 [Debug] > │     let v18 : string = "x"                                                   │

02:07:22 #1045 [Debug] > │     let v19 : string = "y"                                                   │

02:07:22 #1046 [Debug] > │     struct (v16, v18, v19, v17)                                              │

02:07:22 #1047 [Debug] > │ method0()                                                                    │

02:07:22 #1048 [Debug] > │                                                                              │

02:07:22 #1049 [Debug] > │                                                                              │

02:07:22 #1050 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:22 #1051 [Debug] >

02:07:22 #1052 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:22 #1053 [Debug] > // // test

02:07:22 #1054 [Debug] >

02:07:22 #1055 [Debug] > inl x : a _ f64 = am'.init_series -10 10 0.1

02:07:22 #1056 [Debug] > inl y_sin = x |> am.map sin

02:07:22 #1057 [Debug] > inl y_cos = x |> am.map cos

02:07:22 #1058 [Debug] > "sin cos", "x", "y", ;[[ "sin", x, y_sin; "cos", x, y_cos ]]

02:07:23 #1059 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2293-9359-9e592bdd3215\main.spi

02:07:23 #1060 [Debug] >

02:07:23 #1061 [Debug] > ╭─[ 231.90ms - return value ]──────────────────────────────────────────────────╮

02:07:23 #1062 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:23 #1063 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:23 #1064 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:23 #1065 [Debug] > │ stroke="none"/>                                                              │

02:07:23 #1066 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:23 #1067 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1068 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1069 [Debug] > │ sin cos                                                                      │

02:07:23 #1070 [Debug] > │ </text>                                                                      │

02:07:23 #1071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="57" y1="424" x2="57" │

02:07:23 #1072 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:23 #1074 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="82" y1="424" x2="82" │

02:07:23 #1076 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:07:23 #1078 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:07:23 #1080 [Debug] > │ x2="107" y2="75"/>                                                           │

02:07:23 #1081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:23 #1082 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:23 #1083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="132" y1="424"        │

02:07:23 #1084 [Debug] > │ x2="132" y2="75"/>                                                           │

02:07:23 #1085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:07:23 #1086 [Debug] > │ x2="144" y2="75"/>                                                           │

02:07:23 #1087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="157" y1="424"        │

02:07:23 #1088 [Debug] > │ x2="157" y2="75"/>                                                           │

02:07:23 #1089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:23 #1090 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:23 #1091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="182" y1="424"        │

02:07:23 #1092 [Debug] > │ x2="182" y2="75"/>                                                           │

02:07:23 #1093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:07:23 #1094 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:23 #1095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:07:23 #1096 [Debug] > │ x2="207" y2="75"/>                                                           │

02:07:23 #1097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:23 #1098 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:23 #1099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="232" y1="424"        │

02:07:23 #1100 [Debug] > │ x2="232" y2="75"/>                                                           │

02:07:23 #1101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:07:23 #1102 [Debug] > │ x2="244" y2="75"/>                                                           │

02:07:23 #1103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="257" y1="424"        │

02:07:23 #1104 [Debug] > │ x2="257" y2="75"/>                                                           │

02:07:23 #1105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:23 #1106 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:23 #1107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:07:23 #1108 [Debug] > │ x2="282" y2="75"/>                                                           │

02:07:23 #1109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:07:23 #1110 [Debug] > │ x2="294" y2="75"/>                                                           │

02:07:23 #1111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:07:23 #1112 [Debug] > │ x2="307" y2="75"/>                                                           │

02:07:23 #1113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:23 #1114 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:23 #1115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:07:23 #1116 [Debug] > │ x2="331" y2="75"/>                                                           │

02:07:23 #1117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:07:23 #1118 [Debug] > │ x2="344" y2="75"/>                                                           │

02:07:23 #1119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="356" y1="424"        │

02:07:23 #1120 [Debug] > │ x2="356" y2="75"/>                                                           │

02:07:23 #1121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:23 #1122 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:23 #1123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:07:23 #1124 [Debug] > │ x2="381" y2="75"/>                                                           │

02:07:23 #1125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:07:23 #1126 [Debug] > │ x2="394" y2="75"/>                                                           │

02:07:23 #1127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:07:23 #1128 [Debug] > │ x2="406" y2="75"/>                                                           │

02:07:23 #1129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:23 #1130 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:23 #1131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="431" y1="424"        │

02:07:23 #1132 [Debug] > │ x2="431" y2="75"/>                                                           │

02:07:23 #1133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:07:23 #1134 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:23 #1135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:07:23 #1136 [Debug] > │ x2="456" y2="75"/>                                                           │

02:07:23 #1137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:23 #1138 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:23 #1139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:07:23 #1140 [Debug] > │ x2="481" y2="75"/>                                                           │

02:07:23 #1141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:07:23 #1142 [Debug] > │ x2="494" y2="75"/>                                                           │

02:07:23 #1143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:07:23 #1144 [Debug] > │ x2="506" y2="75"/>                                                           │

02:07:23 #1145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:23 #1146 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:23 #1147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:07:23 #1148 [Debug] > │ x2="531" y2="75"/>                                                           │

02:07:23 #1149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:07:23 #1150 [Debug] > │ x2="544" y2="75"/>                                                           │

02:07:23 #1151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="556" y1="424"        │

02:07:23 #1152 [Debug] > │ x2="556" y2="75"/>                                                           │

02:07:23 #1153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:23 #1154 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:23 #1155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="581" y1="424"        │

02:07:23 #1156 [Debug] > │ x2="581" y2="75"/>                                                           │

02:07:23 #1157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:23 #1158 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:23 #1159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:07:23 #1160 [Debug] > │ x2="584" y2="398"/>                                                          │

02:07:23 #1161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:07:23 #1162 [Debug] > │ x2="584" y2="382"/>                                                          │

02:07:23 #1163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:07:23 #1164 [Debug] > │ x2="584" y2="365"/>                                                          │

02:07:23 #1165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:07:23 #1166 [Debug] > │ x2="584" y2="349"/>                                                          │

02:07:23 #1167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:07:23 #1168 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:23 #1169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:07:23 #1170 [Debug] > │ x2="584" y2="316"/>                                                          │

02:07:23 #1171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:07:23 #1172 [Debug] > │ x2="584" y2="299"/>                                                          │

02:07:23 #1173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:07:23 #1174 [Debug] > │ x2="584" y2="283"/>                                                          │

02:07:23 #1175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:07:23 #1176 [Debug] > │ x2="584" y2="266"/>                                                          │

02:07:23 #1177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:07:23 #1178 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:23 #1179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:07:23 #1180 [Debug] > │ x2="584" y2="234"/>                                                          │

02:07:23 #1181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:07:23 #1182 [Debug] > │ x2="584" y2="217"/>                                                          │

02:07:23 #1183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:07:23 #1184 [Debug] > │ x2="584" y2="201"/>                                                          │

02:07:23 #1185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:07:23 #1186 [Debug] > │ x2="584" y2="184"/>                                                          │

02:07:23 #1187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:07:23 #1188 [Debug] > │ x2="584" y2="168"/>                                                          │

02:07:23 #1189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:07:23 #1190 [Debug] > │ x2="584" y2="151"/>                                                          │

02:07:23 #1191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:07:23 #1192 [Debug] > │ x2="584" y2="135"/>                                                          │

02:07:23 #1193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:07:23 #1194 [Debug] > │ x2="584" y2="118"/>                                                          │

02:07:23 #1195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:07:23 #1196 [Debug] > │ x2="584" y2="102"/>                                                          │

02:07:23 #1197 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:23 #1198 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1199 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1200 [Debug] > │ x                                                                            │

02:07:23 #1201 [Debug] > │ </text>                                                                      │

02:07:23 #1202 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:23 #1203 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1204 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:23 #1205 [Debug] > │ y                                                                            │

02:07:23 #1206 [Debug] > │ </text>                                                                      │

02:07:23 #1207 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:23 #1208 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1209 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1210 [Debug] > │ x                                                                            │

02:07:23 #1211 [Debug] > │ </text>                                                                      │

02:07:23 #1212 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1213 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1214 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:23 #1215 [Debug] > │ y                                                                            │

02:07:23 #1216 [Debug] > │ </text>                                                                      │

02:07:23 #1217 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:23 #1218 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1219 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:23 #1220 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:23 #1221 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:23 #1222 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:23 #1223 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:23 #1224 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:23 #1225 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:23 #1226 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:23 #1227 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:23 #1228 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:23 #1229 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:23 #1230 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:23 #1231 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:23 #1232 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:23 #1233 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:23 #1234 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:23 #1235 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:23 #1236 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:23 #1237 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:23 #1238 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:23 #1239 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:23 #1240 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:23 #1241 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:07:23 #1242 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:23 #1243 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:07:23 #1244 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:23 #1245 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="168"         │

02:07:23 #1246 [Debug] > │ x2="584" y2="168"/>                                                          │

02:07:23 #1247 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:23 #1248 [Debug] > │ y2="85"/>                                                                    │

02:07:23 #1249 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1250 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:23 #1251 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:23 #1252 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1253 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1254 [Debug] > │ -10.0                                                                        │

02:07:23 #1255 [Debug] > │ </text>                                                                      │

02:07:23 #1256 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1257 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:23 #1258 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1259 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1260 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1261 [Debug] > │ -8.0                                                                         │

02:07:23 #1262 [Debug] > │ </text>                                                                      │

02:07:23 #1263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1264 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:23 #1265 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1267 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1268 [Debug] > │ -6.0                                                                         │

02:07:23 #1269 [Debug] > │ </text>                                                                      │

02:07:23 #1270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1271 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:23 #1272 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1274 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1275 [Debug] > │ -4.0                                                                         │

02:07:23 #1276 [Debug] > │ </text>                                                                      │

02:07:23 #1277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1278 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:23 #1279 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1280 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1281 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1282 [Debug] > │ -2.0                                                                         │

02:07:23 #1283 [Debug] > │ </text>                                                                      │

02:07:23 #1284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1285 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:23 #1286 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1287 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1288 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1289 [Debug] > │ 0.0                                                                          │

02:07:23 #1290 [Debug] > │ </text>                                                                      │

02:07:23 #1291 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1292 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:23 #1293 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1294 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1295 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1296 [Debug] > │ 2.0                                                                          │

02:07:23 #1297 [Debug] > │ </text>                                                                      │

02:07:23 #1298 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1299 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:23 #1300 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1301 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1302 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1303 [Debug] > │ 4.0                                                                          │

02:07:23 #1304 [Debug] > │ </text>                                                                      │

02:07:23 #1305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1306 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:23 #1307 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1308 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1309 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1310 [Debug] > │ 6.0                                                                          │

02:07:23 #1311 [Debug] > │ </text>                                                                      │

02:07:23 #1312 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1313 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:23 #1314 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1316 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1317 [Debug] > │ 8.0                                                                          │

02:07:23 #1318 [Debug] > │ </text>                                                                      │

02:07:23 #1319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1320 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:23 #1321 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1323 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1324 [Debug] > │ 10.0                                                                         │

02:07:23 #1325 [Debug] > │ </text>                                                                      │

02:07:23 #1326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1327 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:23 #1328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1329 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:23 #1330 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1331 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1332 [Debug] > │ -1.0                                                                         │

02:07:23 #1333 [Debug] > │ </text>                                                                      │

02:07:23 #1334 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1335 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:23 #1336 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1337 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1338 [Debug] > │ -0.5                                                                         │

02:07:23 #1339 [Debug] > │ </text>                                                                      │

02:07:23 #1340 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1341 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:07:23 #1342 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1343 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1344 [Debug] > │ 0.0                                                                          │

02:07:23 #1345 [Debug] > │ </text>                                                                      │

02:07:23 #1346 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1347 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:07:23 #1348 [Debug] > │ <text x="45" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1349 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1350 [Debug] > │ 0.5                                                                          │

02:07:23 #1351 [Debug] > │ </text>                                                                      │

02:07:23 #1352 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1353 [Debug] > │ points="49,168 54,168 "/>                                                    │

02:07:23 #1354 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:23 #1355 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1356 [Debug] > │ 1.0                                                                          │

02:07:23 #1357 [Debug] > │ </text>                                                                      │

02:07:23 #1358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1359 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:07:23 #1360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1361 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:23 #1362 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:23 #1363 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1364 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1365 [Debug] > │ -10.0                                                                        │

02:07:23 #1366 [Debug] > │ </text>                                                                      │

02:07:23 #1367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1368 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:23 #1369 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1371 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1372 [Debug] > │ -8.0                                                                         │

02:07:23 #1373 [Debug] > │ </text>                                                                      │

02:07:23 #1374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1375 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:23 #1376 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1378 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1379 [Debug] > │ -6.0                                                                         │

02:07:23 #1380 [Debug] > │ </text>                                                                      │

02:07:23 #1381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1382 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:23 #1383 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1384 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1385 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1386 [Debug] > │ -4.0                                                                         │

02:07:23 #1387 [Debug] > │ </text>                                                                      │

02:07:23 #1388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1389 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:23 #1390 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1392 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1393 [Debug] > │ -2.0                                                                         │

02:07:23 #1394 [Debug] > │ </text>                                                                      │

02:07:23 #1395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1396 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:23 #1397 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1399 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1400 [Debug] > │ 0.0                                                                          │

02:07:23 #1401 [Debug] > │ </text>                                                                      │

02:07:23 #1402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1403 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:23 #1404 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1406 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1407 [Debug] > │ 2.0                                                                          │

02:07:23 #1408 [Debug] > │ </text>                                                                      │

02:07:23 #1409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1410 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:23 #1411 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1413 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1414 [Debug] > │ 4.0                                                                          │

02:07:23 #1415 [Debug] > │ </text>                                                                      │

02:07:23 #1416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1417 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:23 #1418 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1420 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1421 [Debug] > │ 6.0                                                                          │

02:07:23 #1422 [Debug] > │ </text>                                                                      │

02:07:23 #1423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1424 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:23 #1425 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1427 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1428 [Debug] > │ 8.0                                                                          │

02:07:23 #1429 [Debug] > │ </text>                                                                      │

02:07:23 #1430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1431 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:23 #1432 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1434 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1435 [Debug] > │ 10.0                                                                         │

02:07:23 #1436 [Debug] > │ </text>                                                                      │

02:07:23 #1437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1438 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:23 #1439 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1440 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:23 #1441 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:07:23 #1442 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1443 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1444 [Debug] > │ -1.0                                                                         │

02:07:23 #1445 [Debug] > │ </text>                                                                      │

02:07:23 #1446 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1447 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:23 #1448 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:07:23 #1449 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1450 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1451 [Debug] > │ -0.5                                                                         │

02:07:23 #1452 [Debug] > │ </text>                                                                      │

02:07:23 #1453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1454 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:07:23 #1455 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #1456 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1457 [Debug] > │ 0.0                                                                          │

02:07:23 #1458 [Debug] > │ </text>                                                                      │

02:07:23 #1459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1460 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:07:23 #1461 [Debug] > │ <text x="617" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #1462 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1463 [Debug] > │ 0.5                                                                          │

02:07:23 #1464 [Debug] > │ </text>                                                                      │

02:07:23 #1465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1466 [Debug] > │ points="585,168 590,168 "/>                                                  │

02:07:23 #1467 [Debug] > │ <text x="617" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1468 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1469 [Debug] > │ 1.0                                                                          │

02:07:23 #1470 [Debug] > │ </text>                                                                      │

02:07:23 #1471 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1472 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:07:23 #1473 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:23 #1474 [Debug] > │ points="69,160 72,175 74,190 77,205 79,221 82,238 84,254 87,270 89,287       │

02:07:23 #1475 [Debug] > │ 92,303 94,318 97,332 99,346 102,359 104,371 107,381 109,391 112,399 114,405  │

02:07:23 #1476 [Debug] > │ 117,410 119,413 122,414 124,414 127,413 129,409 132,404 134,398 137,390      │

02:07:23 #1477 [Debug] > │ 139,381 142,370 144,358 147,345 149,331 152,317 154,301 157,285 159,269      │

02:07:23 #1478 [Debug] > │ 162,253 164,236 167,220 169,204 172,188 174,174 177,159 179,146 182,134      │

02:07:23 #1479 [Debug] > │ 184,123 187,113 189,105 192,98 194,92 197,88 199,86 202,85 204,86 207,89     │

02:07:23 #1480 [Debug] > │ 209,93 212,99 214,107 217,115 219,125 222,137 224,149 227,163 229,177        │

02:07:23 #1481 [Debug] > │ 232,192 234,208 237,224 239,240 242,257 244,273 247,289 249,305 252,320      │

02:07:23 #1482 [Debug] > │ 254,335 257,349 259,361 262,373 264,383 267,392 269,400 272,406 274,410      │

02:07:23 #1483 [Debug] > │ 277,413 279,415 282,414 284,412 287,409 289,403 292,397 294,389 297,379      │

02:07:23 #1484 [Debug] > │ 299,368 302,356 304,343 307,329 309,314 312,299 314,283 317,266 319,250      │

02:07:23 #1485 [Debug] > │ 321,234 324,217 326,201 329,186 331,171 334,157 336,144 339,132 341,121      │

02:07:23 #1486 [Debug] > │ 344,111 346,103 349,97 351,91 354,88 356,86 359,85 361,87 364,90 366,94      │

02:07:23 #1487 [Debug] > │ 369,100 371,108 374,117 376,127 379,139 381,151 384,165 386,180 389,195      │

02:07:23 #1488 [Debug] > │ 391,211 394,227 396,243 399,260 401,276 404,292 406,308 409,323 411,337      │

02:07:23 #1489 [Debug] > │ 414,351 416,363 419,375 421,385 424,393 426,401 429,407 431,411 434,414      │

02:07:23 #1490 [Debug] > │ 436,415 439,414 441,412 444,408 446,402 449,395 451,387 454,377 456,366      │

02:07:23 #1491 [Debug] > │ 459,354 461,341 464,326 466,312 469,296 471,280 474,264 476,247 479,231      │

02:07:23 #1492 [Debug] > │ 481,215 484,199 486,183 489,169 491,155 494,142 496,130 499,119 501,110      │

02:07:23 #1493 [Debug] > │ 504,102 506,96 509,91 511,87 514,86 516,86 519,87 521,90 524,95 526,101      │

02:07:23 #1494 [Debug] > │ 529,109 531,119 534,129 536,141 539,154 541,168 544,182 546,197 549,213      │

02:07:23 #1495 [Debug] > │ 551,230 554,246 556,262 559,279 561,295 564,310 566,325 569,340 "/>          │

02:07:23 #1496 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:23 #1497 [Debug] > │ points="69,388 72,396 74,403 77,408 79,412 82,414 84,415 87,413 89,410       │

02:07:23 #1498 [Debug] > │ 92,406 94,400 97,392 99,384 102,373 104,362 107,349 109,335 112,321 114,306  │

02:07:23 #1499 [Debug] > │ 117,290 119,274 122,258 124,241 127,225 129,209 132,193 134,178 137,163      │

02:07:23 #1500 [Debug] > │ 139,150 142,137 144,126 147,116 149,107 152,99 154,94 157,89 159,86 162,85   │

02:07:23 #1501 [Debug] > │ 164,86 167,88 169,92 172,97 174,104 177,113 179,122 182,133 184,146 187,159  │

02:07:23 #1502 [Debug] > │ 189,173 192,188 194,203 197,219 199,236 202,252 204,268 207,285 209,301      │

02:07:23 #1503 [Debug] > │ 212,316 214,331 217,345 219,358 222,370 224,380 227,390 229,398 232,404      │

02:07:23 #1504 [Debug] > │ 234,409 237,413 239,414 242,414 244,413 247,410 249,405 252,399 254,391      │

02:07:23 #1505 [Debug] > │ 257,382 259,371 262,360 264,347 267,333 269,319 272,303 274,287 277,271      │

02:07:23 #1506 [Debug] > │ 279,255 282,238 284,222 287,206 289,190 292,175 294,161 297,148 299,135      │

02:07:23 #1507 [Debug] > │ 302,124 304,114 307,106 309,98 312,93 314,89 317,86 319,85 321,86 324,89     │

02:07:23 #1508 [Debug] > │ 326,93 329,98 331,106 334,114 336,124 339,135 341,148 344,161 346,175        │

02:07:23 #1509 [Debug] > │ 349,190 351,206 354,222 356,238 359,255 361,271 364,287 366,303 369,319      │

02:07:23 #1510 [Debug] > │ 371,333 374,347 376,360 379,371 381,382 384,391 386,399 389,405 391,410      │

02:07:23 #1511 [Debug] > │ 394,413 396,414 399,414 401,413 404,409 406,404 409,398 411,390 414,380      │

02:07:23 #1512 [Debug] > │ 416,370 419,358 421,345 424,331 426,316 429,301 431,285 434,268 436,252      │

02:07:23 #1513 [Debug] > │ 439,236 441,219 444,203 446,188 449,173 451,159 454,146 456,133 459,122      │

02:07:23 #1514 [Debug] > │ 461,113 464,104 466,97 469,92 471,88 474,86 476,85 479,86 481,89 484,94      │

02:07:23 #1515 [Debug] > │ 486,99 489,107 491,116 494,126 496,137 499,150 501,163 504,178 506,193       │

02:07:23 #1516 [Debug] > │ 509,209 511,225 514,241 516,258 519,274 521,290 524,306 526,321 529,335      │

02:07:23 #1517 [Debug] > │ 531,349 534,362 536,373 539,384 541,392 544,400 546,406 549,410 551,413      │

02:07:23 #1518 [Debug] > │ 554,415 556,414 559,412 561,408 564,403 566,396 569,388 "/>                  │

02:07:23 #1519 [Debug] > │ <rect x="514" y="227" width="66" height="45" opacity="1" fill="none"         │

02:07:23 #1520 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:23 #1521 [Debug] > │ <text x="554" y="237" dy="0.76em" text-anchor="start"                        │

02:07:23 #1522 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1523 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1524 [Debug] > │ sin                                                                          │

02:07:23 #1525 [Debug] > │ </text>                                                                      │

02:07:23 #1526 [Debug] > │ <text x="554" y="252" dy="0.76em" text-anchor="start"                        │

02:07:23 #1527 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1528 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1529 [Debug] > │ cos                                                                          │

02:07:23 #1530 [Debug] > │ </text>                                                                      │

02:07:23 #1531 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:23 #1532 [Debug] > │ points="524,242 544,242 "/>                                                  │

02:07:23 #1533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:23 #1534 [Debug] > │ points="524,257 544,257 "/>                                                  │

02:07:23 #1535 [Debug] > │ </svg>                                                                       │

02:07:23 #1536 [Debug] > │                                                                              │

02:07:23 #1537 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:23 #1538 [Debug] >

02:07:23 #1539 [Debug] > ╭─[ 510.02ms - stdout ]────────────────────────────────────────────────────────╮

02:07:23 #1540 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:23 #1541 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:23 #1542 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:23 #1543 [Debug] > │     let v2 : bool = v1 < 201                                                 │

02:07:23 #1544 [Debug] > │     v2                                                                       │

02:07:23 #1545 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:23 #1546 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:23 #1547 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:23 #1548 [Debug] > │     v3                                                                       │

02:07:23 #1549 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:23 #1550 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:23 #1551 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (201)                      │

02:07:23 #1552 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:23 #1553 [Debug] > │     while method1(v1) do                                                     │

02:07:23 #1554 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:23 #1555 [Debug] > │         let v4 : float = float v3                                            │

02:07:23 #1556 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:07:23 #1557 [Debug] > │         let v6 : float = -10.0 + v5                                          │

02:07:23 #1558 [Debug] > │         v0.[int v3] <- v6                                                    │

02:07:23 #1559 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:07:23 #1560 [Debug] > │         v1.l0 <- v7                                                          │

02:07:23 #1561 [Debug] > │         ()                                                                   │

02:07:23 #1562 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:07:23 #1563 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:07:23 #1564 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:07:23 #1565 [Debug] > │     while method2(v8, v10) do                                                │

02:07:23 #1566 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:07:23 #1567 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:07:23 #1568 [Debug] > │         let v14 : float = sin v13                                            │

02:07:23 #1569 [Debug] > │         v9.[int v12] <- v14                                                  │

02:07:23 #1570 [Debug] > │         let v15 : int32 = v12 + 1                                            │

02:07:23 #1571 [Debug] > │         v10.l0 <- v15                                                        │

02:07:23 #1572 [Debug] > │         ()                                                                   │

02:07:23 #1573 [Debug] > │     let v16 : (float []) = Array.zeroCreate<float> (v8)                      │

02:07:23 #1574 [Debug] > │     let v17 : Mut0 = {l0 = 0} : Mut0                                         │

02:07:23 #1575 [Debug] > │     while method2(v8, v17) do                                                │

02:07:23 #1576 [Debug] > │         let v19 : int32 = v17.l0                                             │

02:07:23 #1577 [Debug] > │         let v20 : float = v0.[int v19]                                       │

02:07:23 #1578 [Debug] > │         let v21 : float = cos v20                                            │

02:07:23 #1579 [Debug] > │         v16.[int v19] <- v21                                                 │

02:07:23 #1580 [Debug] > │         let v22 : int32 = v19 + 1                                            │

02:07:23 #1581 [Debug] > │         v17.l0 <- v22                                                        │

02:07:23 #1582 [Debug] > │         ()                                                                   │

02:07:23 #1583 [Debug] > │     let v23 : string = "sin"                                                 │

02:07:23 #1584 [Debug] > │     let v24 : string = "cos"                                                 │

02:07:23 #1585 [Debug] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:23 #1586 [Debug] > │ (v23, v0, v9); struct (v24, v0, v16)|]                                       │

02:07:23 #1587 [Debug] > │     let v26 : string = "sin cos"                                             │

02:07:23 #1588 [Debug] > │     let v27 : string = "x"                                                   │

02:07:23 #1589 [Debug] > │     let v28 : string = "y"                                                   │

02:07:23 #1590 [Debug] > │     struct (v26, v27, v28, v25)                                              │

02:07:23 #1591 [Debug] > │ method0()                                                                    │

02:07:23 #1592 [Debug] > │                                                                              │

02:07:23 #1593 [Debug] > │                                                                              │

02:07:23 #1594 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:23 #1595 [Debug] >

02:07:23 #1596 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:23 #1597 [Debug] > // // test

02:07:23 #1598 [Debug] >

02:07:23 #1599 [Debug] > inl y_pos y0 vy0 ay t =

02:07:23 #1600 [Debug] >     y0 + vy0 * t + ay * (t |> math.square) / 2

02:07:23 #1601 [Debug] >

02:07:23 #1602 [Debug] > inl x : a _ f64 = am'.init_series 0 5 0.01

02:07:23 #1603 [Debug] > inl y = x |> am.map (y_pos 0 20 -9.8)

02:07:23 #1604 [Debug] > "projectile motion", "time (s)", "", ;[[ "height of projectile (m)", x, y ]]

02:07:23 #1605 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2347-4756-4690cc45e62a\main.spi

02:07:23 #1606 [Debug] >

02:07:23 #1607 [Debug] > ╭─[ 258.77ms - return value ]──────────────────────────────────────────────────╮

02:07:23 #1608 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:23 #1609 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:23 #1610 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:23 #1611 [Debug] > │ stroke="none"/>                                                              │

02:07:23 #1612 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:23 #1613 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1614 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1615 [Debug] > │ projectile motion                                                            │

02:07:23 #1616 [Debug] > │ </text>                                                                      │

02:07:23 #1617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:07:23 #1618 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:23 #1620 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:07:23 #1622 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:07:23 #1624 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:23 #1626 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:07:23 #1628 [Debug] > │ x2="109" y2="75"/>                                                           │

02:07:23 #1629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:23 #1630 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:23 #1631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:23 #1632 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:23 #1633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:07:23 #1634 [Debug] > │ x2="139" y2="75"/>                                                           │

02:07:23 #1635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:07:23 #1636 [Debug] > │ x2="149" y2="75"/>                                                           │

02:07:23 #1637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:07:23 #1638 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:23 #1639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:23 #1640 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:23 #1641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:07:23 #1642 [Debug] > │ x2="179" y2="75"/>                                                           │

02:07:23 #1643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:23 #1644 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:23 #1645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:07:23 #1646 [Debug] > │ x2="199" y2="75"/>                                                           │

02:07:23 #1647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:07:23 #1648 [Debug] > │ x2="209" y2="75"/>                                                           │

02:07:23 #1649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:23 #1650 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:23 #1651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:07:23 #1652 [Debug] > │ x2="229" y2="75"/>                                                           │

02:07:23 #1653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:07:23 #1654 [Debug] > │ x2="239" y2="75"/>                                                           │

02:07:23 #1655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:23 #1656 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:23 #1657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:07:23 #1658 [Debug] > │ x2="259" y2="75"/>                                                           │

02:07:23 #1659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:23 #1660 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:23 #1661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:07:23 #1662 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:23 #1663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:07:23 #1664 [Debug] > │ x2="289" y2="75"/>                                                           │

02:07:23 #1665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:07:23 #1666 [Debug] > │ x2="299" y2="75"/>                                                           │

02:07:23 #1667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:23 #1668 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:23 #1669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:23 #1670 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:23 #1671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:07:23 #1672 [Debug] > │ x2="329" y2="75"/>                                                           │

02:07:23 #1673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:07:23 #1674 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:23 #1675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:07:23 #1676 [Debug] > │ x2="349" y2="75"/>                                                           │

02:07:23 #1677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:07:23 #1678 [Debug] > │ x2="359" y2="75"/>                                                           │

02:07:23 #1679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:23 #1680 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:23 #1681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:07:23 #1682 [Debug] > │ x2="379" y2="75"/>                                                           │

02:07:23 #1683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:07:23 #1684 [Debug] > │ x2="389" y2="75"/>                                                           │

02:07:23 #1685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:07:23 #1686 [Debug] > │ x2="399" y2="75"/>                                                           │

02:07:23 #1687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:07:23 #1688 [Debug] > │ x2="409" y2="75"/>                                                           │

02:07:23 #1689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:23 #1690 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:23 #1691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:07:23 #1692 [Debug] > │ x2="429" y2="75"/>                                                           │

02:07:23 #1693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:07:23 #1694 [Debug] > │ x2="439" y2="75"/>                                                           │

02:07:23 #1695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:07:23 #1696 [Debug] > │ x2="449" y2="75"/>                                                           │

02:07:23 #1697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:07:23 #1698 [Debug] > │ x2="459" y2="75"/>                                                           │

02:07:23 #1699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:23 #1700 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:23 #1701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:07:23 #1702 [Debug] > │ x2="479" y2="75"/>                                                           │

02:07:23 #1703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:07:23 #1704 [Debug] > │ x2="489" y2="75"/>                                                           │

02:07:23 #1705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:07:23 #1706 [Debug] > │ x2="499" y2="75"/>                                                           │

02:07:23 #1707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:07:23 #1708 [Debug] > │ x2="509" y2="75"/>                                                           │

02:07:23 #1709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:23 #1710 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:23 #1711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:07:23 #1712 [Debug] > │ x2="529" y2="75"/>                                                           │

02:07:23 #1713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:07:23 #1714 [Debug] > │ x2="539" y2="75"/>                                                           │

02:07:23 #1715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:07:23 #1716 [Debug] > │ x2="549" y2="75"/>                                                           │

02:07:23 #1717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:07:23 #1718 [Debug] > │ x2="559" y2="75"/>                                                           │

02:07:23 #1719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:23 #1720 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:23 #1721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:07:23 #1722 [Debug] > │ x2="579" y2="75"/>                                                           │

02:07:23 #1723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="411"         │

02:07:23 #1724 [Debug] > │ x2="584" y2="411"/>                                                          │

02:07:23 #1725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:07:23 #1726 [Debug] > │ x2="584" y2="395"/>                                                          │

02:07:23 #1727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:07:23 #1728 [Debug] > │ x2="584" y2="380"/>                                                          │

02:07:23 #1729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:07:23 #1730 [Debug] > │ x2="584" y2="365"/>                                                          │

02:07:23 #1731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:07:23 #1732 [Debug] > │ x2="584" y2="349"/>                                                          │

02:07:23 #1733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:07:23 #1734 [Debug] > │ x2="584" y2="334"/>                                                          │

02:07:23 #1735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:07:23 #1736 [Debug] > │ x2="584" y2="319"/>                                                          │

02:07:23 #1737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:07:23 #1738 [Debug] > │ x2="584" y2="303"/>                                                          │

02:07:23 #1739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:07:23 #1740 [Debug] > │ x2="584" y2="288"/>                                                          │

02:07:23 #1741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:07:23 #1742 [Debug] > │ x2="584" y2="273"/>                                                          │

02:07:23 #1743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:07:23 #1744 [Debug] > │ x2="584" y2="257"/>                                                          │

02:07:23 #1745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="242"         │

02:07:23 #1746 [Debug] > │ x2="584" y2="242"/>                                                          │

02:07:23 #1747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:07:23 #1748 [Debug] > │ x2="584" y2="227"/>                                                          │

02:07:23 #1749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:07:23 #1750 [Debug] > │ x2="584" y2="211"/>                                                          │

02:07:23 #1751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="196"         │

02:07:23 #1752 [Debug] > │ x2="584" y2="196"/>                                                          │

02:07:23 #1753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="181"         │

02:07:23 #1754 [Debug] > │ x2="584" y2="181"/>                                                          │

02:07:23 #1755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:07:23 #1756 [Debug] > │ x2="584" y2="165"/>                                                          │

02:07:23 #1757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:07:23 #1758 [Debug] > │ x2="584" y2="150"/>                                                          │

02:07:23 #1759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:07:23 #1760 [Debug] > │ x2="584" y2="135"/>                                                          │

02:07:23 #1761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:07:23 #1762 [Debug] > │ x2="584" y2="119"/>                                                          │

02:07:23 #1763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:07:23 #1764 [Debug] > │ x2="584" y2="104"/>                                                          │

02:07:23 #1765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:07:23 #1766 [Debug] > │ y2="89"/>                                                                    │

02:07:23 #1767 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:23 #1768 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1769 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1770 [Debug] > │ time (s)                                                                     │

02:07:23 #1771 [Debug] > │ </text>                                                                      │

02:07:23 #1772 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:23 #1773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1774 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:23 #1775 [Debug] > │                                                                              │

02:07:23 #1776 [Debug] > │ </text>                                                                      │

02:07:23 #1777 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:23 #1778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1779 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1780 [Debug] > │ time (s)                                                                     │

02:07:23 #1781 [Debug] > │ </text>                                                                      │

02:07:23 #1782 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1783 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1784 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:23 #1785 [Debug] > │                                                                              │

02:07:23 #1786 [Debug] > │ </text>                                                                      │

02:07:23 #1787 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:23 #1788 [Debug] > │ y2="75"/>                                                                    │

02:07:23 #1789 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:23 #1790 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:23 #1791 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:23 #1792 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:23 #1793 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:23 #1794 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:23 #1795 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:23 #1796 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:23 #1797 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:23 #1798 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:23 #1799 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:23 #1800 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:23 #1801 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:23 #1802 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:23 #1803 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:23 #1804 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:23 #1805 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:23 #1806 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:23 #1807 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:23 #1808 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:23 #1809 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="395"         │

02:07:23 #1810 [Debug] > │ x2="584" y2="395"/>                                                          │

02:07:23 #1811 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="357"         │

02:07:23 #1812 [Debug] > │ x2="584" y2="357"/>                                                          │

02:07:23 #1813 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:07:23 #1814 [Debug] > │ x2="584" y2="319"/>                                                          │

02:07:23 #1815 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="280"         │

02:07:23 #1816 [Debug] > │ x2="584" y2="280"/>                                                          │

02:07:23 #1817 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="242"         │

02:07:23 #1818 [Debug] > │ x2="584" y2="242"/>                                                          │

02:07:23 #1819 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="204"         │

02:07:23 #1820 [Debug] > │ x2="584" y2="204"/>                                                          │

02:07:23 #1821 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="165"         │

02:07:23 #1822 [Debug] > │ x2="584" y2="165"/>                                                          │

02:07:23 #1823 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="127"         │

02:07:23 #1824 [Debug] > │ x2="584" y2="127"/>                                                          │

02:07:23 #1825 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="89" x2="584" │

02:07:23 #1826 [Debug] > │ y2="89"/>                                                                    │

02:07:23 #1827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1828 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:23 #1829 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:23 #1830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1831 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1832 [Debug] > │ 0.0                                                                          │

02:07:23 #1833 [Debug] > │ </text>                                                                      │

02:07:23 #1834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1835 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:23 #1836 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1838 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1839 [Debug] > │ 0.5                                                                          │

02:07:23 #1840 [Debug] > │ </text>                                                                      │

02:07:23 #1841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1842 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:23 #1843 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1845 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1846 [Debug] > │ 1.0                                                                          │

02:07:23 #1847 [Debug] > │ </text>                                                                      │

02:07:23 #1848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1849 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:23 #1850 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1852 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1853 [Debug] > │ 1.5                                                                          │

02:07:23 #1854 [Debug] > │ </text>                                                                      │

02:07:23 #1855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1856 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:23 #1857 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1859 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1860 [Debug] > │ 2.0                                                                          │

02:07:23 #1861 [Debug] > │ </text>                                                                      │

02:07:23 #1862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1863 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:23 #1864 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1866 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1867 [Debug] > │ 2.5                                                                          │

02:07:23 #1868 [Debug] > │ </text>                                                                      │

02:07:23 #1869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1870 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:23 #1871 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1872 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1873 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1874 [Debug] > │ 3.0                                                                          │

02:07:23 #1875 [Debug] > │ </text>                                                                      │

02:07:23 #1876 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1877 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:23 #1878 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1880 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1881 [Debug] > │ 3.5                                                                          │

02:07:23 #1882 [Debug] > │ </text>                                                                      │

02:07:23 #1883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1884 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:23 #1885 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1886 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1887 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1888 [Debug] > │ 4.0                                                                          │

02:07:23 #1889 [Debug] > │ </text>                                                                      │

02:07:23 #1890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1891 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:23 #1892 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1893 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1894 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1895 [Debug] > │ 4.5                                                                          │

02:07:23 #1896 [Debug] > │ </text>                                                                      │

02:07:23 #1897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1898 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:23 #1899 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:23 #1900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1901 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1902 [Debug] > │ 5.0                                                                          │

02:07:23 #1903 [Debug] > │ </text>                                                                      │

02:07:23 #1904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1905 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:23 #1906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1907 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:23 #1908 [Debug] > │ <text x="45" y="395" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1909 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1910 [Debug] > │ -20.0                                                                        │

02:07:23 #1911 [Debug] > │ </text>                                                                      │

02:07:23 #1912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1913 [Debug] > │ points="49,395 54,395 "/>                                                    │

02:07:23 #1914 [Debug] > │ <text x="45" y="357" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1915 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1916 [Debug] > │ -15.0                                                                        │

02:07:23 #1917 [Debug] > │ </text>                                                                      │

02:07:23 #1918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1919 [Debug] > │ points="49,357 54,357 "/>                                                    │

02:07:23 #1920 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1921 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1922 [Debug] > │ -10.0                                                                        │

02:07:23 #1923 [Debug] > │ </text>                                                                      │

02:07:23 #1924 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1925 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:07:23 #1926 [Debug] > │ <text x="45" y="280" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1927 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1928 [Debug] > │ -5.0                                                                         │

02:07:23 #1929 [Debug] > │ </text>                                                                      │

02:07:23 #1930 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1931 [Debug] > │ points="49,280 54,280 "/>                                                    │

02:07:23 #1932 [Debug] > │ <text x="45" y="242" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1933 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1934 [Debug] > │ 0.0                                                                          │

02:07:23 #1935 [Debug] > │ </text>                                                                      │

02:07:23 #1936 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1937 [Debug] > │ points="49,242 54,242 "/>                                                    │

02:07:23 #1938 [Debug] > │ <text x="45" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1939 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1940 [Debug] > │ 5.0                                                                          │

02:07:23 #1941 [Debug] > │ </text>                                                                      │

02:07:23 #1942 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1943 [Debug] > │ points="49,204 54,204 "/>                                                    │

02:07:23 #1944 [Debug] > │ <text x="45" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1945 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1946 [Debug] > │ 10.0                                                                         │

02:07:23 #1947 [Debug] > │ </text>                                                                      │

02:07:23 #1948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1949 [Debug] > │ points="49,165 54,165 "/>                                                    │

02:07:23 #1950 [Debug] > │ <text x="45" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #1951 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1952 [Debug] > │ 15.0                                                                         │

02:07:23 #1953 [Debug] > │ </text>                                                                      │

02:07:23 #1954 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1955 [Debug] > │ points="49,127 54,127 "/>                                                    │

02:07:23 #1956 [Debug] > │ <text x="45" y="89" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:23 #1957 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #1958 [Debug] > │ 20.0                                                                         │

02:07:23 #1959 [Debug] > │ </text>                                                                      │

02:07:23 #1960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1961 [Debug] > │ points="49,89 54,89 "/>                                                      │

02:07:23 #1962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1963 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:23 #1964 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:23 #1965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1966 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1967 [Debug] > │ 0.0                                                                          │

02:07:23 #1968 [Debug] > │ </text>                                                                      │

02:07:23 #1969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1970 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:23 #1971 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1973 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1974 [Debug] > │ 0.5                                                                          │

02:07:23 #1975 [Debug] > │ </text>                                                                      │

02:07:23 #1976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1977 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:23 #1978 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1980 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1981 [Debug] > │ 1.0                                                                          │

02:07:23 #1982 [Debug] > │ </text>                                                                      │

02:07:23 #1983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1984 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:23 #1985 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1987 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1988 [Debug] > │ 1.5                                                                          │

02:07:23 #1989 [Debug] > │ </text>                                                                      │

02:07:23 #1990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1991 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:23 #1992 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #1993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #1994 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #1995 [Debug] > │ 2.0                                                                          │

02:07:23 #1996 [Debug] > │ </text>                                                                      │

02:07:23 #1997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #1998 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:23 #1999 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #2000 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2001 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2002 [Debug] > │ 2.5                                                                          │

02:07:23 #2003 [Debug] > │ </text>                                                                      │

02:07:23 #2004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2005 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:23 #2006 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #2007 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2008 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2009 [Debug] > │ 3.0                                                                          │

02:07:23 #2010 [Debug] > │ </text>                                                                      │

02:07:23 #2011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2012 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:23 #2013 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #2014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2015 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2016 [Debug] > │ 3.5                                                                          │

02:07:23 #2017 [Debug] > │ </text>                                                                      │

02:07:23 #2018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2019 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:23 #2020 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #2021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2022 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2023 [Debug] > │ 4.0                                                                          │

02:07:23 #2024 [Debug] > │ </text>                                                                      │

02:07:23 #2025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2026 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:23 #2027 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #2028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2029 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2030 [Debug] > │ 4.5                                                                          │

02:07:23 #2031 [Debug] > │ </text>                                                                      │

02:07:23 #2032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2033 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:23 #2034 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:23 #2035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2036 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2037 [Debug] > │ 5.0                                                                          │

02:07:23 #2038 [Debug] > │ </text>                                                                      │

02:07:23 #2039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2040 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:23 #2041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2042 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:23 #2043 [Debug] > │ <text x="595" y="395" dy="0.5ex" text-anchor="start"                         │

02:07:23 #2044 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2045 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2046 [Debug] > │ -20.0                                                                        │

02:07:23 #2047 [Debug] > │ </text>                                                                      │

02:07:23 #2048 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2049 [Debug] > │ points="585,395 590,395 "/>                                                  │

02:07:23 #2050 [Debug] > │ <text x="595" y="357" dy="0.5ex" text-anchor="start"                         │

02:07:23 #2051 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2052 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2053 [Debug] > │ -15.0                                                                        │

02:07:23 #2054 [Debug] > │ </text>                                                                      │

02:07:23 #2055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2056 [Debug] > │ points="585,357 590,357 "/>                                                  │

02:07:23 #2057 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:07:23 #2058 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:23 #2059 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:23 #2060 [Debug] > │ -10.0                                                                        │

02:07:23 #2061 [Debug] > │ </text>                                                                      │

02:07:23 #2062 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2063 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:07:23 #2064 [Debug] > │ <text x="622" y="280" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #2065 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #2066 [Debug] > │ -5.0                                                                         │

02:07:23 #2067 [Debug] > │ </text>                                                                      │

02:07:23 #2068 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2069 [Debug] > │ points="585,280 590,280 "/>                                                  │

02:07:23 #2070 [Debug] > │ <text x="622" y="242" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #2071 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #2072 [Debug] > │ 0.0                                                                          │

02:07:23 #2073 [Debug] > │ </text>                                                                      │

02:07:23 #2074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2075 [Debug] > │ points="585,242 590,242 "/>                                                  │

02:07:23 #2076 [Debug] > │ <text x="622" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #2077 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #2078 [Debug] > │ 5.0                                                                          │

02:07:23 #2079 [Debug] > │ </text>                                                                      │

02:07:23 #2080 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2081 [Debug] > │ points="585,204 590,204 "/>                                                  │

02:07:23 #2082 [Debug] > │ <text x="622" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #2083 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #2084 [Debug] > │ 10.0                                                                         │

02:07:23 #2085 [Debug] > │ </text>                                                                      │

02:07:23 #2086 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2087 [Debug] > │ points="585,165 590,165 "/>                                                  │

02:07:23 #2088 [Debug] > │ <text x="622" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:23 #2089 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #2090 [Debug] > │ 15.0                                                                         │

02:07:23 #2091 [Debug] > │ </text>                                                                      │

02:07:23 #2092 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2093 [Debug] > │ points="585,127 590,127 "/>                                                  │

02:07:23 #2094 [Debug] > │ <text x="622" y="89" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:23 #2095 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:23 #2096 [Debug] > │ 20.0                                                                         │

02:07:23 #2097 [Debug] > │ </text>                                                                      │

02:07:23 #2098 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:23 #2099 [Debug] > │ points="585,89 590,89 "/>                                                    │

02:07:23 #2100 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:23 #2101 [Debug] > │ points="69,242 70,240 71,239 72,237 73,236 74,234 75,233 76,231 77,230       │

02:07:23 #2102 [Debug] > │ 78,228 79,227 80,226 81,224 82,223 83,221 84,220 85,218 86,217 87,216 88,214 │

02:07:23 #2103 [Debug] > │ 89,213 90,211 91,210 92,209 93,207 94,206 95,205 96,203 97,202 98,201 99,199 │

02:07:23 #2104 [Debug] > │ 100,198 101,197 102,195 103,194 104,193 105,192 106,190 107,189 108,188      │

02:07:24 #2105 [Debug] > │ 109,187 110,185 111,184 112,183 113,182 114,181 115,179 116,178 117,177      │

02:07:24 #2106 [Debug] > │ 118,176 119,175 120,173 121,172 122,171 123,170 124,169 125,168 126,167      │

02:07:24 #2107 [Debug] > │ 127,166 128,165 129,163 130,162 131,161 132,160 133,159 134,158 135,157      │

02:07:24 #2108 [Debug] > │ 136,156 137,155 138,154 139,153 140,152 141,151 142,150 143,149 144,148      │

02:07:24 #2109 [Debug] > │ 145,147 146,146 147,145 148,144 149,143 150,142 151,141 152,140 153,140      │

02:07:24 #2110 [Debug] > │ 154,139 155,138 156,137 157,136 158,135 159,134 160,133 161,133 162,132      │

02:07:24 #2111 [Debug] > │ 163,131 164,130 165,129 166,128 167,128 168,127 169,126 170,125 171,125      │

02:07:24 #2112 [Debug] > │ 172,124 173,123 174,122 175,122 176,121 177,120 178,119 179,119 180,118      │

02:07:24 #2113 [Debug] > │ 181,117 182,117 183,116 184,115 185,115 186,114 187,113 188,113 189,112      │

02:07:24 #2114 [Debug] > │ 190,111 191,111 192,110 193,109 194,109 195,108 196,108 197,107 198,107      │

02:07:24 #2115 [Debug] > │ 199,106 200,105 201,105 202,104 203,104 204,103 205,103 206,102 207,102      │

02:07:24 #2116 [Debug] > │ 208,101 209,101 210,100 211,100 212,99 213,99 214,99 215,98 216,98 217,97    │

02:07:24 #2117 [Debug] > │ 218,97 219,96 220,96 221,96 222,95 223,95 224,94 225,94 226,94 227,93 228,93 │

02:07:24 #2118 [Debug] > │ 229,93 230,92 231,92 232,92 233,91 234,91 235,91 236,91 237,90 238,90 239,90 │

02:07:24 #2119 [Debug] > │ 240,89 241,89 242,89 243,89 244,89 245,88 246,88 247,88 248,88 249,88 250,87 │

02:07:24 #2120 [Debug] > │ 251,87 252,87 253,87 254,87 255,87 256,86 257,86 258,86 259,86 260,86 261,86 │

02:07:24 #2121 [Debug] > │ 262,86 263,86 264,86 265,86 266,86 267,86 268,85 269,85 270,85 271,85 272,85 │

02:07:24 #2122 [Debug] > │ 273,85 274,85 275,85 276,85 277,85 278,85 279,86 280,86 281,86 282,86 283,86 │

02:07:24 #2123 [Debug] > │ 284,86 285,86 286,86 287,86 288,86 289,86 290,86 291,87 292,87 293,87 294,87 │

02:07:24 #2124 [Debug] > │ 295,87 296,87 297,88 298,88 299,88 300,88 301,88 302,89 303,89 304,89 305,89 │

02:07:24 #2125 [Debug] > │ 306,89 307,90 308,90 309,90 310,91 311,91 312,91 313,91 314,92 315,92 316,92 │

02:07:24 #2126 [Debug] > │ 317,93 318,93 319,93 320,94 321,94 322,94 323,95 324,95 325,96 326,96 327,96 │

02:07:24 #2127 [Debug] > │ 328,97 329,97 330,98 331,98 332,98 333,99 334,99 335,100 336,100 337,101     │

02:07:24 #2128 [Debug] > │ 338,101 339,102 340,102 341,103 342,103 343,104 344,104 345,105 346,105      │

02:07:24 #2129 [Debug] > │ 347,106 348,106 349,107 350,108 351,108 352,109 353,109 354,110 355,111      │

02:07:24 #2130 [Debug] > │ 356,111 357,112 358,112 359,113 360,114 361,114 362,115 363,116 364,116      │

02:07:24 #2131 [Debug] > │ 365,117 366,118 367,119 368,119 369,120 370,121 371,121 372,122 373,123      │

02:07:24 #2132 [Debug] > │ 374,124 375,124 376,125 377,126 378,127 379,128 380,128 381,129 382,130      │

02:07:24 #2133 [Debug] > │ 383,131 384,132 385,132 386,133 387,134 388,135 389,136 390,137 391,138      │

02:07:24 #2134 [Debug] > │ 392,139 393,139 394,140 395,141 396,142 397,143 398,144 399,145 400,146      │

02:07:24 #2135 [Debug] > │ 401,147 402,148 403,149 404,150 405,151 406,152 407,153 408,154 409,155      │

02:07:24 #2136 [Debug] > │ 410,156 411,157 412,158 413,159 414,160 415,161 416,162 417,163 418,164      │

02:07:24 #2137 [Debug] > │ 419,165 420,167 421,168 422,169 423,170 424,171 425,172 426,173 427,174      │

02:07:24 #2138 [Debug] > │ 428,176 429,177 430,178 431,179 432,180 433,182 434,183 435,184 436,185      │

02:07:24 #2139 [Debug] > │ 437,186 438,188 439,189 440,190 441,191 442,193 443,194 444,195 445,197      │

02:07:24 #2140 [Debug] > │ 446,198 447,199 448,200 449,202 450,203 451,204 452,206 453,207 454,208      │

02:07:24 #2141 [Debug] > │ 455,210 456,211 457,213 458,214 459,215 460,217 461,218 462,220 463,221      │

02:07:24 #2142 [Debug] > │ 464,222 465,224 466,225 467,227 468,228 469,230 470,231 471,233 472,234      │

02:07:24 #2143 [Debug] > │ 473,236 474,237 475,239 476,240 477,242 478,243 479,245 480,246 481,248      │

02:07:24 #2144 [Debug] > │ 482,249 483,251 484,253 485,254 486,256 487,257 488,259 489,261 490,262      │

02:07:24 #2145 [Debug] > │ 491,264 492,266 493,267 494,269 495,271 496,272 497,274 498,276 499,277      │

02:07:24 #2146 [Debug] > │ 500,279 501,281 502,282 503,284 504,286 505,288 506,289 507,291 508,293      │

02:07:24 #2147 [Debug] > │ 509,295 510,296 511,298 512,300 513,302 514,304 515,305 516,307 517,309      │

02:07:24 #2148 [Debug] > │ 518,311 519,313 520,315 521,316 522,318 523,320 524,322 525,324 526,326      │

02:07:24 #2149 [Debug] > │ 527,328 528,330 529,332 530,334 531,335 532,337 533,339 534,341 535,343      │

02:07:24 #2150 [Debug] > │ 536,345 537,347 538,349 539,351 540,353 541,355 542,357 543,359 544,361      │

02:07:24 #2151 [Debug] > │ 545,363 546,365 547,367 548,370 549,372 550,374 551,376 552,378 553,380      │

02:07:24 #2152 [Debug] > │ 554,382 555,384 556,386 557,388 558,391 559,393 560,395 561,397 562,399      │

02:07:24 #2153 [Debug] > │ 563,401 564,404 565,406 566,408 567,410 568,412 569,415 "/>                  │

02:07:24 #2154 [Debug] > │ <rect x="399" y="235" width="181" height="30" opacity="1" fill="none"        │

02:07:24 #2155 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:24 #2156 [Debug] > │ <text x="439" y="245" dy="0.76em" text-anchor="start"                        │

02:07:24 #2157 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2158 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2159 [Debug] > │ height of projectile (m)                                                     │

02:07:24 #2160 [Debug] > │ </text>                                                                      │

02:07:24 #2161 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:24 #2162 [Debug] > │ points="409,250 429,250 "/>                                                  │

02:07:24 #2163 [Debug] > │ </svg>                                                                       │

02:07:24 #2164 [Debug] > │                                                                              │

02:07:24 #2165 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2166 [Debug] >

02:07:24 #2167 [Debug] > ╭─[ 563.03ms - stdout ]────────────────────────────────────────────────────────╮

02:07:24 #2168 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:24 #2169 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:24 #2170 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:24 #2171 [Debug] > │     let v2 : bool = v1 < 501                                                 │

02:07:24 #2172 [Debug] > │     v2                                                                       │

02:07:24 #2173 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:24 #2174 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:24 #2175 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:24 #2176 [Debug] > │     v3                                                                       │

02:07:24 #2177 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:24 #2178 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:24 #2179 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (501)                      │

02:07:24 #2180 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:24 #2181 [Debug] > │     while method1(v1) do                                                     │

02:07:24 #2182 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:24 #2183 [Debug] > │         let v4 : float = float v3                                            │

02:07:24 #2184 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:07:24 #2185 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:24 #2186 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:24 #2187 [Debug] > │         v1.l0 <- v6                                                          │

02:07:24 #2188 [Debug] > │         ()                                                                   │

02:07:24 #2189 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:24 #2190 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:24 #2191 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:24 #2192 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:24 #2193 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:24 #2194 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:24 #2195 [Debug] > │         let v13 : float = 20.0 * v12                                         │

02:07:24 #2196 [Debug] > │         let v14 : float = v12 ** 2.0                                         │

02:07:24 #2197 [Debug] > │         let v15 : float = -9.8 * v14                                         │

02:07:24 #2198 [Debug] > │         let v16 : float = v15 / 2.0                                          │

02:07:24 #2199 [Debug] > │         let v17 : float = v13 + v16                                          │

02:07:24 #2200 [Debug] > │         v8.[int v11] <- v17                                                  │

02:07:24 #2201 [Debug] > │         let v18 : int32 = v11 + 1                                            │

02:07:24 #2202 [Debug] > │         v9.l0 <- v18                                                         │

02:07:24 #2203 [Debug] > │         ()                                                                   │

02:07:24 #2204 [Debug] > │     let v19 : string = "height of projectile (m)"                            │

02:07:24 #2205 [Debug] > │     let v20 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:24 #2206 [Debug] > │ (v19, v0, v8)|]                                                              │

02:07:24 #2207 [Debug] > │     let v21 : string = "projectile motion"                                   │

02:07:24 #2208 [Debug] > │     let v22 : string = "time (s)"                                            │

02:07:24 #2209 [Debug] > │     let v23 : string = ""                                                    │

02:07:24 #2210 [Debug] > │     struct (v21, v22, v23, v20)                                              │

02:07:24 #2211 [Debug] > │ method0()                                                                    │

02:07:24 #2212 [Debug] > │                                                                              │

02:07:24 #2213 [Debug] > │                                                                              │

02:07:24 #2214 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2215 [Debug] >

02:07:24 #2216 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:24 #2217 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:24 #2218 [Debug] > │ ## velocity_cf                                                               │

02:07:24 #2219 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2220 [Debug] >

02:07:24 #2221 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:24 #2222 [Debug] > type mass = f64

02:07:24 #2223 [Debug] > type time = f64

02:07:24 #2224 [Debug] > type position = f64

02:07:24 #2225 [Debug] > type velocity = f64

02:07:24 #2226 [Debug] > type force = f64

02:07:24 #2227 [Debug] >

02:07:24 #2228 [Debug] > type velocity_cf = mass -> velocity -> list force -> (time -> velocity)

02:07:24 #2229 [Debug] >

02:07:24 #2230 [Debug] > inl velocity_cf m v0 fs =

02:07:24 #2231 [Debug] >     inl f_net = fs |> listm'.sum

02:07:24 #2232 [Debug] >     inl a0 = f_net / m

02:07:24 #2233 [Debug] >     inl v t = v0 + a0 * t

02:07:24 #2234 [Debug] >     v

02:07:24 #2235 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2406-0684-0dd924df857b\main.spi

02:07:24 #2236 [Debug] >

02:07:24 #2237 [Debug] > ╭─[ 172.65ms - stdout ]────────────────────────────────────────────────────────╮

02:07:24 #2238 [Debug] > │ ()                                                                           │

02:07:24 #2239 [Debug] > │                                                                              │

02:07:24 #2240 [Debug] > │                                                                              │

02:07:24 #2241 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2242 [Debug] >

02:07:24 #2243 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:24 #2244 [Debug] > // // test

02:07:24 #2245 [Debug] >

02:07:24 #2246 [Debug] > velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]] 0

02:07:24 #2247 [Debug] > |> _equal 0.6

02:07:24 #2248 [Debug] >

02:07:24 #2249 [Debug] > velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]] 1

02:07:24 #2250 [Debug] > |> _equal 0.2

02:07:24 #2251 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2424-2430-20791a15cac6\main.spi

02:07:24 #2252 [Debug] >

02:07:24 #2253 [Debug] > ╭─[ 192.88ms - stdout ]────────────────────────────────────────────────────────╮

02:07:24 #2254 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:24 #2255 [Debug] > │     let v0 : string = $"_equal / actual: %A{0.6} / expected: %A{0.6}"        │

02:07:24 #2256 [Debug] > │     let v1 : string = $"_equal / actual: %A{0.2} / expected: %A{0.2}"        │

02:07:24 #2257 [Debug] > │     ()                                                                       │

02:07:24 #2258 [Debug] > │ method0()                                                                    │

02:07:24 #2259 [Debug] > │                                                                              │

02:07:24 #2260 [Debug] > │                                                                              │

02:07:24 #2261 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2262 [Debug] >

02:07:24 #2263 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:24 #2264 [Debug] > // // test

02:07:24 #2265 [Debug] >

02:07:24 #2266 [Debug] > inl x = am'.init_series 0 4 0.1

02:07:24 #2267 [Debug] > inl y = x |> am.map (velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]])

02:07:24 #2268 [Debug] > "car on an air track", "time (s)", "", ;[[ "velocity of car (m/s)", x, y ]]

02:07:24 #2269 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2443-4392-454bd3e28c06\main.spi

02:07:24 #2270 [Debug] >

02:07:24 #2271 [Debug] > ╭─[ 233.58ms - return value ]──────────────────────────────────────────────────╮

02:07:24 #2272 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:24 #2273 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:24 #2274 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:24 #2275 [Debug] > │ stroke="none"/>                                                              │

02:07:24 #2276 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:24 #2277 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2278 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2279 [Debug] > │ car on an air track                                                          │

02:07:24 #2280 [Debug] > │ </text>                                                                      │

02:07:24 #2281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="57" y1="424" x2="57" │

02:07:24 #2282 [Debug] > │ y2="75"/>                                                                    │

02:07:24 #2283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:24 #2284 [Debug] > │ y2="75"/>                                                                    │

02:07:24 #2285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="82" y1="424" x2="82" │

02:07:24 #2286 [Debug] > │ y2="75"/>                                                                    │

02:07:24 #2287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:07:24 #2288 [Debug] > │ y2="75"/>                                                                    │

02:07:24 #2289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:07:24 #2290 [Debug] > │ x2="107" y2="75"/>                                                           │

02:07:24 #2291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:24 #2292 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:24 #2293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="132" y1="424"        │

02:07:24 #2294 [Debug] > │ x2="132" y2="75"/>                                                           │

02:07:24 #2295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:07:24 #2296 [Debug] > │ x2="144" y2="75"/>                                                           │

02:07:24 #2297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="157" y1="424"        │

02:07:24 #2298 [Debug] > │ x2="157" y2="75"/>                                                           │

02:07:24 #2299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:24 #2300 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:24 #2301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="182" y1="424"        │

02:07:24 #2302 [Debug] > │ x2="182" y2="75"/>                                                           │

02:07:24 #2303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:07:24 #2304 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:24 #2305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:07:24 #2306 [Debug] > │ x2="207" y2="75"/>                                                           │

02:07:24 #2307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:24 #2308 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:24 #2309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="232" y1="424"        │

02:07:24 #2310 [Debug] > │ x2="232" y2="75"/>                                                           │

02:07:24 #2311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:07:24 #2312 [Debug] > │ x2="244" y2="75"/>                                                           │

02:07:24 #2313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="257" y1="424"        │

02:07:24 #2314 [Debug] > │ x2="257" y2="75"/>                                                           │

02:07:24 #2315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:24 #2316 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:24 #2317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:07:24 #2318 [Debug] > │ x2="282" y2="75"/>                                                           │

02:07:24 #2319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:07:24 #2320 [Debug] > │ x2="294" y2="75"/>                                                           │

02:07:24 #2321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:07:24 #2322 [Debug] > │ x2="307" y2="75"/>                                                           │

02:07:24 #2323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:24 #2324 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:24 #2325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:07:24 #2326 [Debug] > │ x2="331" y2="75"/>                                                           │

02:07:24 #2327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:07:24 #2328 [Debug] > │ x2="344" y2="75"/>                                                           │

02:07:24 #2329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="356" y1="424"        │

02:07:24 #2330 [Debug] > │ x2="356" y2="75"/>                                                           │

02:07:24 #2331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:24 #2332 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:24 #2333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:07:24 #2334 [Debug] > │ x2="381" y2="75"/>                                                           │

02:07:24 #2335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:07:24 #2336 [Debug] > │ x2="394" y2="75"/>                                                           │

02:07:24 #2337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:07:24 #2338 [Debug] > │ x2="406" y2="75"/>                                                           │

02:07:24 #2339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:24 #2340 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:24 #2341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="431" y1="424"        │

02:07:24 #2342 [Debug] > │ x2="431" y2="75"/>                                                           │

02:07:24 #2343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:07:24 #2344 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:24 #2345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:07:24 #2346 [Debug] > │ x2="456" y2="75"/>                                                           │

02:07:24 #2347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:24 #2348 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:24 #2349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:07:24 #2350 [Debug] > │ x2="481" y2="75"/>                                                           │

02:07:24 #2351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:07:24 #2352 [Debug] > │ x2="494" y2="75"/>                                                           │

02:07:24 #2353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:07:24 #2354 [Debug] > │ x2="506" y2="75"/>                                                           │

02:07:24 #2355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:24 #2356 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:24 #2357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:07:24 #2358 [Debug] > │ x2="531" y2="75"/>                                                           │

02:07:24 #2359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:07:24 #2360 [Debug] > │ x2="544" y2="75"/>                                                           │

02:07:24 #2361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="556" y1="424"        │

02:07:24 #2362 [Debug] > │ x2="556" y2="75"/>                                                           │

02:07:24 #2363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:24 #2364 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:24 #2365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:24 #2366 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:24 #2367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:07:24 #2368 [Debug] > │ x2="584" y2="404"/>                                                          │

02:07:24 #2369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="394"         │

02:07:24 #2370 [Debug] > │ x2="584" y2="394"/>                                                          │

02:07:24 #2371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:07:24 #2372 [Debug] > │ x2="584" y2="384"/>                                                          │

02:07:24 #2373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="373"         │

02:07:24 #2374 [Debug] > │ x2="584" y2="373"/>                                                          │

02:07:24 #2375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:07:24 #2376 [Debug] > │ x2="584" y2="363"/>                                                          │

02:07:24 #2377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:07:24 #2378 [Debug] > │ x2="584" y2="353"/>                                                          │

02:07:24 #2379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="343"         │

02:07:24 #2380 [Debug] > │ x2="584" y2="343"/>                                                          │

02:07:24 #2381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:07:24 #2382 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:24 #2383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="322"         │

02:07:24 #2384 [Debug] > │ x2="584" y2="322"/>                                                          │

02:07:24 #2385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="312"         │

02:07:24 #2386 [Debug] > │ x2="584" y2="312"/>                                                          │

02:07:24 #2387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:07:24 #2388 [Debug] > │ x2="584" y2="301"/>                                                          │

02:07:24 #2389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="291"         │

02:07:24 #2390 [Debug] > │ x2="584" y2="291"/>                                                          │

02:07:24 #2391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="281"         │

02:07:24 #2392 [Debug] > │ x2="584" y2="281"/>                                                          │

02:07:24 #2393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="271"         │

02:07:24 #2394 [Debug] > │ x2="584" y2="271"/>                                                          │

02:07:24 #2395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:07:24 #2396 [Debug] > │ x2="584" y2="260"/>                                                          │

02:07:24 #2397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:07:24 #2398 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:24 #2399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="240"         │

02:07:24 #2400 [Debug] > │ x2="584" y2="240"/>                                                          │

02:07:24 #2401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:07:24 #2402 [Debug] > │ x2="584" y2="229"/>                                                          │

02:07:24 #2403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="219"         │

02:07:24 #2404 [Debug] > │ x2="584" y2="219"/>                                                          │

02:07:24 #2405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="209"         │

02:07:24 #2406 [Debug] > │ x2="584" y2="209"/>                                                          │

02:07:24 #2407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:07:24 #2408 [Debug] > │ x2="584" y2="199"/>                                                          │

02:07:24 #2409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:07:24 #2410 [Debug] > │ x2="584" y2="188"/>                                                          │

02:07:24 #2411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:07:24 #2412 [Debug] > │ x2="584" y2="178"/>                                                          │

02:07:24 #2413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:07:24 #2414 [Debug] > │ x2="584" y2="168"/>                                                          │

02:07:24 #2415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:07:24 #2416 [Debug] > │ x2="584" y2="157"/>                                                          │

02:07:24 #2417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:07:24 #2418 [Debug] > │ x2="584" y2="147"/>                                                          │

02:07:24 #2419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:07:24 #2420 [Debug] > │ x2="584" y2="137"/>                                                          │

02:07:24 #2421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="127"         │

02:07:24 #2422 [Debug] > │ x2="584" y2="127"/>                                                          │

02:07:24 #2423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:07:24 #2424 [Debug] > │ x2="584" y2="116"/>                                                          │

02:07:24 #2425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:07:24 #2426 [Debug] > │ x2="584" y2="106"/>                                                          │

02:07:24 #2427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="96" x2="584" │

02:07:24 #2428 [Debug] > │ y2="96"/>                                                                    │

02:07:24 #2429 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:24 #2430 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2431 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2432 [Debug] > │ time (s)                                                                     │

02:07:24 #2433 [Debug] > │ </text>                                                                      │

02:07:24 #2434 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:24 #2435 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2436 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:24 #2437 [Debug] > │                                                                              │

02:07:24 #2438 [Debug] > │ </text>                                                                      │

02:07:24 #2439 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:24 #2440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2441 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2442 [Debug] > │ time (s)                                                                     │

02:07:24 #2443 [Debug] > │ </text>                                                                      │

02:07:24 #2444 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2445 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2446 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:24 #2447 [Debug] > │                                                                              │

02:07:24 #2448 [Debug] > │ </text>                                                                      │

02:07:24 #2449 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:24 #2450 [Debug] > │ y2="75"/>                                                                    │

02:07:24 #2451 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="132" y1="424"        │

02:07:24 #2452 [Debug] > │ x2="132" y2="75"/>                                                           │

02:07:24 #2453 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="194" y1="424"        │

02:07:24 #2454 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:24 #2455 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="257" y1="424"        │

02:07:24 #2456 [Debug] > │ x2="257" y2="75"/>                                                           │

02:07:24 #2457 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:24 #2458 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:24 #2459 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="381" y1="424"        │

02:07:24 #2460 [Debug] > │ x2="381" y2="75"/>                                                           │

02:07:24 #2461 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="444" y1="424"        │

02:07:24 #2462 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:24 #2463 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="506" y1="424"        │

02:07:24 #2464 [Debug] > │ x2="506" y2="75"/>                                                           │

02:07:24 #2465 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:24 #2466 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:24 #2467 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:24 #2468 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:24 #2469 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="373"         │

02:07:24 #2470 [Debug] > │ x2="584" y2="373"/>                                                          │

02:07:24 #2471 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:07:24 #2472 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:24 #2473 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="291"         │

02:07:24 #2474 [Debug] > │ x2="584" y2="291"/>                                                          │

02:07:24 #2475 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:07:24 #2476 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:24 #2477 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="209"         │

02:07:24 #2478 [Debug] > │ x2="584" y2="209"/>                                                          │

02:07:24 #2479 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="168"         │

02:07:24 #2480 [Debug] > │ x2="584" y2="168"/>                                                          │

02:07:24 #2481 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="127"         │

02:07:24 #2482 [Debug] > │ x2="584" y2="127"/>                                                          │

02:07:24 #2483 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:24 #2484 [Debug] > │ y2="85"/>                                                                    │

02:07:24 #2485 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2486 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:24 #2487 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:24 #2488 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2489 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2490 [Debug] > │ 0.0                                                                          │

02:07:24 #2491 [Debug] > │ </text>                                                                      │

02:07:24 #2492 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2493 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:24 #2494 [Debug] > │ <text x="132" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2495 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2496 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2497 [Debug] > │ 0.5                                                                          │

02:07:24 #2498 [Debug] > │ </text>                                                                      │

02:07:24 #2499 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2500 [Debug] > │ points="132,69 132,74 "/>                                                    │

02:07:24 #2501 [Debug] > │ <text x="194" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2502 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2503 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2504 [Debug] > │ 1.0                                                                          │

02:07:24 #2505 [Debug] > │ </text>                                                                      │

02:07:24 #2506 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2507 [Debug] > │ points="194,69 194,74 "/>                                                    │

02:07:24 #2508 [Debug] > │ <text x="257" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2509 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2510 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2511 [Debug] > │ 1.5                                                                          │

02:07:24 #2512 [Debug] > │ </text>                                                                      │

02:07:24 #2513 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2514 [Debug] > │ points="257,69 257,74 "/>                                                    │

02:07:24 #2515 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2516 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2517 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2518 [Debug] > │ 2.0                                                                          │

02:07:24 #2519 [Debug] > │ </text>                                                                      │

02:07:24 #2520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2521 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:24 #2522 [Debug] > │ <text x="381" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2523 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2524 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2525 [Debug] > │ 2.5                                                                          │

02:07:24 #2526 [Debug] > │ </text>                                                                      │

02:07:24 #2527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2528 [Debug] > │ points="381,69 381,74 "/>                                                    │

02:07:24 #2529 [Debug] > │ <text x="444" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2530 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2531 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2532 [Debug] > │ 3.0                                                                          │

02:07:24 #2533 [Debug] > │ </text>                                                                      │

02:07:24 #2534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2535 [Debug] > │ points="444,69 444,74 "/>                                                    │

02:07:24 #2536 [Debug] > │ <text x="506" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2537 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2538 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2539 [Debug] > │ 3.5                                                                          │

02:07:24 #2540 [Debug] > │ </text>                                                                      │

02:07:24 #2541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2542 [Debug] > │ points="506,69 506,74 "/>                                                    │

02:07:24 #2543 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:24 #2544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2545 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2546 [Debug] > │ 4.0                                                                          │

02:07:24 #2547 [Debug] > │ </text>                                                                      │

02:07:24 #2548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2549 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:24 #2550 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2551 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:24 #2552 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2553 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2554 [Debug] > │ -1.0                                                                         │

02:07:24 #2555 [Debug] > │ </text>                                                                      │

02:07:24 #2556 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2557 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:24 #2558 [Debug] > │ <text x="45" y="373" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2559 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2560 [Debug] > │ -0.8                                                                         │

02:07:24 #2561 [Debug] > │ </text>                                                                      │

02:07:24 #2562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2563 [Debug] > │ points="49,373 54,373 "/>                                                    │

02:07:24 #2564 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2565 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2566 [Debug] > │ -0.6                                                                         │

02:07:24 #2567 [Debug] > │ </text>                                                                      │

02:07:24 #2568 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2569 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:07:24 #2570 [Debug] > │ <text x="45" y="291" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2571 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2572 [Debug] > │ -0.4                                                                         │

02:07:24 #2573 [Debug] > │ </text>                                                                      │

02:07:24 #2574 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2575 [Debug] > │ points="49,291 54,291 "/>                                                    │

02:07:24 #2576 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2577 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2578 [Debug] > │ -0.2                                                                         │

02:07:24 #2579 [Debug] > │ </text>                                                                      │

02:07:24 #2580 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2581 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:07:24 #2582 [Debug] > │ <text x="45" y="209" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2583 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2584 [Debug] > │ -0.0                                                                         │

02:07:24 #2585 [Debug] > │ </text>                                                                      │

02:07:24 #2586 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2587 [Debug] > │ points="49,209 54,209 "/>                                                    │

02:07:24 #2588 [Debug] > │ <text x="45" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2589 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2590 [Debug] > │ 0.2                                                                          │

02:07:24 #2591 [Debug] > │ </text>                                                                      │

02:07:24 #2592 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2593 [Debug] > │ points="49,168 54,168 "/>                                                    │

02:07:24 #2594 [Debug] > │ <text x="45" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2595 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2596 [Debug] > │ 0.4                                                                          │

02:07:24 #2597 [Debug] > │ </text>                                                                      │

02:07:24 #2598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2599 [Debug] > │ points="49,127 54,127 "/>                                                    │

02:07:24 #2600 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:24 #2601 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2602 [Debug] > │ 0.6                                                                          │

02:07:24 #2603 [Debug] > │ </text>                                                                      │

02:07:24 #2604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2605 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:07:24 #2606 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2607 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:24 #2608 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:24 #2609 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2610 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2611 [Debug] > │ 0.0                                                                          │

02:07:24 #2612 [Debug] > │ </text>                                                                      │

02:07:24 #2613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2614 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:24 #2615 [Debug] > │ <text x="132" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2616 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2617 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2618 [Debug] > │ 0.5                                                                          │

02:07:24 #2619 [Debug] > │ </text>                                                                      │

02:07:24 #2620 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2621 [Debug] > │ points="132,425 132,430 "/>                                                  │

02:07:24 #2622 [Debug] > │ <text x="194" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2623 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2624 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2625 [Debug] > │ 1.0                                                                          │

02:07:24 #2626 [Debug] > │ </text>                                                                      │

02:07:24 #2627 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2628 [Debug] > │ points="194,425 194,430 "/>                                                  │

02:07:24 #2629 [Debug] > │ <text x="257" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2630 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2631 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2632 [Debug] > │ 1.5                                                                          │

02:07:24 #2633 [Debug] > │ </text>                                                                      │

02:07:24 #2634 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2635 [Debug] > │ points="257,425 257,430 "/>                                                  │

02:07:24 #2636 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2637 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2638 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2639 [Debug] > │ 2.0                                                                          │

02:07:24 #2640 [Debug] > │ </text>                                                                      │

02:07:24 #2641 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2642 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:24 #2643 [Debug] > │ <text x="381" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2644 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2645 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2646 [Debug] > │ 2.5                                                                          │

02:07:24 #2647 [Debug] > │ </text>                                                                      │

02:07:24 #2648 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2649 [Debug] > │ points="381,425 381,430 "/>                                                  │

02:07:24 #2650 [Debug] > │ <text x="444" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2651 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2652 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2653 [Debug] > │ 3.0                                                                          │

02:07:24 #2654 [Debug] > │ </text>                                                                      │

02:07:24 #2655 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2656 [Debug] > │ points="444,425 444,430 "/>                                                  │

02:07:24 #2657 [Debug] > │ <text x="506" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2658 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2659 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2660 [Debug] > │ 3.5                                                                          │

02:07:24 #2661 [Debug] > │ </text>                                                                      │

02:07:24 #2662 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2663 [Debug] > │ points="506,425 506,430 "/>                                                  │

02:07:24 #2664 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:24 #2665 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2666 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2667 [Debug] > │ 4.0                                                                          │

02:07:24 #2668 [Debug] > │ </text>                                                                      │

02:07:24 #2669 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2670 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:24 #2671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2672 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:24 #2673 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:07:24 #2674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2675 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2676 [Debug] > │ -1.0                                                                         │

02:07:24 #2677 [Debug] > │ </text>                                                                      │

02:07:24 #2678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2679 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:24 #2680 [Debug] > │ <text x="595" y="373" dy="0.5ex" text-anchor="start"                         │

02:07:24 #2681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2682 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2683 [Debug] > │ -0.8                                                                         │

02:07:24 #2684 [Debug] > │ </text>                                                                      │

02:07:24 #2685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2686 [Debug] > │ points="585,373 590,373 "/>                                                  │

02:07:24 #2687 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:07:24 #2688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2689 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2690 [Debug] > │ -0.6                                                                         │

02:07:24 #2691 [Debug] > │ </text>                                                                      │

02:07:24 #2692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2693 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:07:24 #2694 [Debug] > │ <text x="595" y="291" dy="0.5ex" text-anchor="start"                         │

02:07:24 #2695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2696 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2697 [Debug] > │ -0.4                                                                         │

02:07:24 #2698 [Debug] > │ </text>                                                                      │

02:07:24 #2699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2700 [Debug] > │ points="585,291 590,291 "/>                                                  │

02:07:24 #2701 [Debug] > │ <text x="595" y="250" dy="0.5ex" text-anchor="start"                         │

02:07:24 #2702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2703 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2704 [Debug] > │ -0.2                                                                         │

02:07:24 #2705 [Debug] > │ </text>                                                                      │

02:07:24 #2706 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2707 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:07:24 #2708 [Debug] > │ <text x="595" y="209" dy="0.5ex" text-anchor="start"                         │

02:07:24 #2709 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2710 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2711 [Debug] > │ -0.0                                                                         │

02:07:24 #2712 [Debug] > │ </text>                                                                      │

02:07:24 #2713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2714 [Debug] > │ points="585,209 590,209 "/>                                                  │

02:07:24 #2715 [Debug] > │ <text x="617" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:24 #2716 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2717 [Debug] > │ 0.2                                                                          │

02:07:24 #2718 [Debug] > │ </text>                                                                      │

02:07:24 #2719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2720 [Debug] > │ points="585,168 590,168 "/>                                                  │

02:07:24 #2721 [Debug] > │ <text x="617" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:24 #2722 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2723 [Debug] > │ 0.4                                                                          │

02:07:24 #2724 [Debug] > │ </text>                                                                      │

02:07:24 #2725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2726 [Debug] > │ points="585,127 590,127 "/>                                                  │

02:07:24 #2727 [Debug] > │ <text x="617" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:24 #2728 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:24 #2729 [Debug] > │ 0.6                                                                          │

02:07:24 #2730 [Debug] > │ </text>                                                                      │

02:07:24 #2731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:24 #2732 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:07:24 #2733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:24 #2734 [Debug] > │ points="69,85 82,94 94,102 107,110 119,118 132,127 144,135 157,143 169,151   │

02:07:24 #2735 [Debug] > │ 182,159 194,168 207,176 219,184 232,192 244,201 257,209 269,217 282,225      │

02:07:24 #2736 [Debug] > │ 294,234 307,242 319,250 331,258 344,266 356,275 369,283 381,291 394,299      │

02:07:24 #2737 [Debug] > │ 406,308 419,316 431,324 444,332 456,341 469,349 481,357 494,365 506,373      │

02:07:24 #2738 [Debug] > │ 519,382 531,390 544,398 556,406 569,415 "/>                                  │

02:07:24 #2739 [Debug] > │ <rect x="415" y="235" width="165" height="30" opacity="1" fill="none"        │

02:07:24 #2740 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:24 #2741 [Debug] > │ <text x="455" y="245" dy="0.76em" text-anchor="start"                        │

02:07:24 #2742 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:24 #2743 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:24 #2744 [Debug] > │ velocity of car (m/s)                                                        │

02:07:24 #2745 [Debug] > │ </text>                                                                      │

02:07:24 #2746 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:24 #2747 [Debug] > │ points="425,250 445,250 "/>                                                  │

02:07:24 #2748 [Debug] > │ </svg>                                                                       │

02:07:24 #2749 [Debug] > │                                                                              │

02:07:24 #2750 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2751 [Debug] >

02:07:24 #2752 [Debug] > ╭─[ 495.33ms - stdout ]────────────────────────────────────────────────────────╮

02:07:24 #2753 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:24 #2754 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:24 #2755 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:24 #2756 [Debug] > │     let v2 : bool = v1 < 41                                                  │

02:07:24 #2757 [Debug] > │     v2                                                                       │

02:07:24 #2758 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:24 #2759 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:24 #2760 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:24 #2761 [Debug] > │     v3                                                                       │

02:07:24 #2762 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:24 #2763 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:24 #2764 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (41)                       │

02:07:24 #2765 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:24 #2766 [Debug] > │     while method1(v1) do                                                     │

02:07:24 #2767 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:24 #2768 [Debug] > │         let v4 : float = float v3                                            │

02:07:24 #2769 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:07:24 #2770 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:24 #2771 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:24 #2772 [Debug] > │         v1.l0 <- v6                                                          │

02:07:24 #2773 [Debug] > │         ()                                                                   │

02:07:24 #2774 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:24 #2775 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:24 #2776 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:24 #2777 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:24 #2778 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:24 #2779 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:24 #2780 [Debug] > │         let v13 : float = -0.39999999999999997 * v12                         │

02:07:24 #2781 [Debug] > │         let v14 : float = 0.6 + v13                                          │

02:07:24 #2782 [Debug] > │         v8.[int v11] <- v14                                                  │

02:07:24 #2783 [Debug] > │         let v15 : int32 = v11 + 1                                            │

02:07:24 #2784 [Debug] > │         v9.l0 <- v15                                                         │

02:07:24 #2785 [Debug] > │         ()                                                                   │

02:07:24 #2786 [Debug] > │     let v16 : string = "velocity of car (m/s)"                               │

02:07:24 #2787 [Debug] > │     let v17 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:24 #2788 [Debug] > │ (v16, v0, v8)|]                                                              │

02:07:24 #2789 [Debug] > │     let v18 : string = "car on an air track"                                 │

02:07:24 #2790 [Debug] > │     let v19 : string = "time (s)"                                            │

02:07:24 #2791 [Debug] > │     let v20 : string = ""                                                    │

02:07:24 #2792 [Debug] > │     struct (v18, v19, v20, v17)                                              │

02:07:24 #2793 [Debug] > │ method0()                                                                    │

02:07:24 #2794 [Debug] > │                                                                              │

02:07:24 #2795 [Debug] > │                                                                              │

02:07:24 #2796 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2797 [Debug] >

02:07:24 #2798 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:24 #2799 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:24 #2800 [Debug] > │ ## derivative                                                                │

02:07:24 #2801 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:24 #2802 [Debug] >

02:07:24 #2803 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:24 #2804 [Debug] > type derivative = (f64 -> f64) -> f64 -> f64

02:07:24 #2805 [Debug] >

02:07:24 #2806 [Debug] > inl derivative dt : derivative =

02:07:24 #2807 [Debug] >     fun x t =>

02:07:24 #2808 [Debug] >         (x (t + dt / 2) - x (t - dt / 2)) / dt

02:07:25 #2809 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2496-9667-9441665fb820\main.spi

02:07:25 #2810 [Debug] >

02:07:25 #2811 [Debug] > ╭─[ 210.32ms - stdout ]────────────────────────────────────────────────────────╮

02:07:25 #2812 [Debug] > │ ()                                                                           │

02:07:25 #2813 [Debug] > │                                                                              │

02:07:25 #2814 [Debug] > │                                                                              │

02:07:25 #2815 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:25 #2816 [Debug] >

02:07:25 #2817 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:25 #2818 [Debug] > // // test

02:07:25 #2819 [Debug] >

02:07:25 #2820 [Debug] > derivative 1 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2821 [Debug] > |> _almost_equal 0.25

02:07:25 #2822 [Debug] >

02:07:25 #2823 [Debug] > derivative 0.001 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2824 [Debug] > |> _almost_equal 0.0000002499998827953931

02:07:25 #2825 [Debug] >

02:07:25 #2826 [Debug] > derivative 0.000001 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2827 [Debug] > |> _almost_equal 0.000000000001000088900582341

02:07:25 #2828 [Debug] >

02:07:25 #2829 [Debug] > derivative 0.000000001 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2830 [Debug] > |> _almost_equal 0.00000008274037099909037

02:07:25 #2831 [Debug] >

02:07:25 #2832 [Debug] > derivative 0.000000000001 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2833 [Debug] > |> _almost_equal 0.00008890058234101161

02:07:25 #2834 [Debug] >

02:07:25 #2835 [Debug] > derivative 0.000000000000001 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2836 [Debug] > |> _almost_equal -0.0007992778373592246

02:07:25 #2837 [Debug] >

02:07:25 #2838 [Debug] > derivative 0.000000000000000001 (fun x => x ** 4 / 4) 1 - 1

02:07:25 #2839 [Debug] > |> _almost_equal -1

02:07:25 #2840 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2517-1768-16c2588dd6ff\main.spi

02:07:25 #2841 [Debug] >

02:07:25 #2842 [Debug] > ╭─[ 214.99ms - stdout ]────────────────────────────────────────────────────────╮

02:07:25 #2843 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:25 #2844 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.25} / expected:         │

02:07:25 #2845 [Debug] > │ %A{0.25}"                                                                    │

02:07:25 #2846 [Debug] > │     let v1 : string = $"_almost_equal / actual: %A{2.499998827953931E-07} /  │

02:07:25 #2847 [Debug] > │ expected: %A{2.499998827953931E-07}"                                         │

02:07:25 #2848 [Debug] > │     let v2 : string = $"_almost_equal / actual: %A{1.000088900582341E-12} /  │

02:07:25 #2849 [Debug] > │ expected: %A{1.000088900582341E-12}"                                         │

02:07:25 #2850 [Debug] > │     let v3 : string = $"_almost_equal / actual: %A{8.274037099909037E-08} /  │

02:07:25 #2851 [Debug] > │ expected: %A{8.274037099909037E-08}"                                         │

02:07:25 #2852 [Debug] > │     let v4 : string = $"_almost_equal / actual: %A{8.890058234101161E-05} /  │

02:07:25 #2853 [Debug] > │ expected: %A{8.890058234101161E-05}"                                         │

02:07:25 #2854 [Debug] > │     let v5 : string = $"_almost_equal / actual: %A{-0.0007992778373592246} / │

02:07:25 #2855 [Debug] > │ expected: %A{-0.0007992778373592246}"                                        │

02:07:25 #2856 [Debug] > │     let v6 : string = $"_almost_equal / actual: %A{-1.0} / expected:         │

02:07:25 #2857 [Debug] > │ %A{-1.0}"                                                                    │

02:07:25 #2858 [Debug] > │     ()                                                                       │

02:07:25 #2859 [Debug] > │ method0()                                                                    │

02:07:25 #2860 [Debug] > │                                                                              │

02:07:25 #2861 [Debug] > │                                                                              │

02:07:25 #2862 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:25 #2863 [Debug] >

02:07:25 #2864 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:25 #2865 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:25 #2866 [Debug] > │ ## integration                                                               │

02:07:25 #2867 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:25 #2868 [Debug] >

02:07:25 #2869 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:25 #2870 [Debug] > type integration = (f64 -> f64) -> f64 -> f64 -> f64

02:07:25 #2871 [Debug] >

02:07:25 #2872 [Debug] > inl integral dt : integration =

02:07:25 #2873 [Debug] >     fun f a b =>

02:07:25 #2874 [Debug] >         inl rec loop t y =

02:07:25 #2875 [Debug] >             if t < b

02:07:25 #2876 [Debug] >             then loop (t + dt) (y + f t * dt)

02:07:25 #2877 [Debug] >             else t, y

02:07:25 #2878 [Debug] >         loop (a + dt / 2) 0

02:07:25 #2879 [Debug] >         |> snd

02:07:25 #2880 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2540-4030-40440b4f1c30\main.spi

02:07:25 #2881 [Debug] >

02:07:25 #2882 [Debug] > ╭─[ 179.43ms - stdout ]────────────────────────────────────────────────────────╮

02:07:25 #2883 [Debug] > │ ()                                                                           │

02:07:25 #2884 [Debug] > │                                                                              │

02:07:25 #2885 [Debug] > │                                                                              │

02:07:25 #2886 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:25 #2887 [Debug] >

02:07:25 #2888 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:25 #2889 [Debug] > // // test

02:07:25 #2890 [Debug] >

02:07:25 #2891 [Debug] > integral 0.01 math.square 0 1

02:07:25 #2892 [Debug] > |> _almost_equal 0.33332500000000004

02:07:25 #2893 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2558-5840-5b8101551708\main.spi

02:07:25 #2894 [Debug] >

02:07:25 #2895 [Debug] > ╭─[ 192.38ms - stdout ]────────────────────────────────────────────────────────╮

02:07:25 #2896 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:25 #2897 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.3333250000000004} /     │

02:07:25 #2898 [Debug] > │ expected: %A{0.33332500000000004}"                                           │

02:07:25 #2899 [Debug] > │     ()                                                                       │

02:07:25 #2900 [Debug] > │ method0()                                                                    │

02:07:25 #2901 [Debug] > │                                                                              │

02:07:25 #2902 [Debug] > │                                                                              │

02:07:25 #2903 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:25 #2904 [Debug] >

02:07:25 #2905 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:25 #2906 [Debug] > inl integral' dt : integration =

02:07:25 #2907 [Debug] >     fun f a b =>

02:07:25 #2908 [Debug] >         listm'.init_series (a + dt / 2) (b - dt / 2) dt

02:07:25 #2909 [Debug] >         |> listm.map (f >> (*) dt)

02:07:25 #2910 [Debug] >         |> listm'.sum

02:07:25 #2911 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2578-7814-72d110024ac9\main.spi

02:07:25 #2912 [Debug] >

02:07:25 #2913 [Debug] > ╭─[ 201.60ms - stdout ]────────────────────────────────────────────────────────╮

02:07:25 #2914 [Debug] > │ ()                                                                           │

02:07:25 #2915 [Debug] > │                                                                              │

02:07:25 #2916 [Debug] > │                                                                              │

02:07:25 #2917 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:25 #2918 [Debug] >

02:07:25 #2919 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:25 #2920 [Debug] > // // test

02:07:25 #2921 [Debug] >

02:07:25 #2922 [Debug] > integral' 0.1 math.square 0 1

02:07:25 #2923 [Debug] > |> _almost_equal (integral 0.1 math.square 0 1)

02:07:26 #2924 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2598-9861-95eedf07185d\main.spi

02:07:26 #2925 [Debug] >

02:07:26 #2926 [Debug] > ╭─[ 218.64ms - stdout ]────────────────────────────────────────────────────────╮

02:07:26 #2927 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:26 #2928 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.3325000000000001} /     │

02:07:26 #2929 [Debug] > │ expected: %A{0.33249999999999996}"                                           │

02:07:26 #2930 [Debug] > │     ()                                                                       │

02:07:26 #2931 [Debug] > │ method0()                                                                    │

02:07:26 #2932 [Debug] > │                                                                              │

02:07:26 #2933 [Debug] > │                                                                              │

02:07:26 #2934 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:26 #2935 [Debug] >

02:07:26 #2936 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:26 #2937 [Debug] > inl integral'' dt : integration =

02:07:26 #2938 [Debug] >     fun f a b =>

02:07:26 #2939 [Debug] >         am'.init_series (a + dt / 2) (b - dt / 2) dt

02:07:26 #2940 [Debug] >         |> am.map (f >> (*) dt)

02:07:26 #2941 [Debug] >         |> am'.sum

02:07:26 #2942 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2620-2095-29b77199ca01\main.spi

02:07:26 #2943 [Debug] >

02:07:26 #2944 [Debug] > ╭─[ 181.62ms - stdout ]────────────────────────────────────────────────────────╮

02:07:26 #2945 [Debug] > │ ()                                                                           │

02:07:26 #2946 [Debug] > │                                                                              │

02:07:26 #2947 [Debug] > │                                                                              │

02:07:26 #2948 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:26 #2949 [Debug] >

02:07:26 #2950 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:26 #2951 [Debug] > // // test

02:07:26 #2952 [Debug] >

02:07:26 #2953 [Debug] > integral'' 0.01 math.square 0 1

02:07:26 #2954 [Debug] > |> _almost_equal (integral 0.01 math.square 0 1)

02:07:26 #2955 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2639-3923-393162fb2a90\main.spi

02:07:26 #2956 [Debug] >

02:07:26 #2957 [Debug] > ╭─[ 364.69ms - stdout ]────────────────────────────────────────────────────────╮

02:07:26 #2958 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:26 #2959 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : float}                          │

02:07:26 #2960 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:26 #2961 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:26 #2962 [Debug] > │     let v2 : bool = v1 < 100                                                 │

02:07:26 #2963 [Debug] > │     v2                                                                       │

02:07:26 #2964 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:26 #2965 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:26 #2966 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:26 #2967 [Debug] > │     v3                                                                       │

02:07:26 #2968 [Debug] > │ and method3 (v0 : int32, v1 : Mut1) : bool =                                 │

02:07:26 #2969 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:26 #2970 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:26 #2971 [Debug] > │     v3                                                                       │

02:07:26 #2972 [Debug] > │ and method0 () : unit =                                                      │

02:07:26 #2973 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (100)                      │

02:07:26 #2974 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:26 #2975 [Debug] > │     while method1(v1) do                                                     │

02:07:26 #2976 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:26 #2977 [Debug] > │         let v4 : float = float v3                                            │

02:07:26 #2978 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:07:26 #2979 [Debug] > │         let v6 : float = 0.005 + v5                                          │

02:07:26 #2980 [Debug] > │         v0.[int v3] <- v6                                                    │

02:07:26 #2981 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:07:26 #2982 [Debug] > │         v1.l0 <- v7                                                          │

02:07:26 #2983 [Debug] > │         ()                                                                   │

02:07:26 #2984 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:07:26 #2985 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:07:26 #2986 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:07:26 #2987 [Debug] > │     while method2(v8, v10) do                                                │

02:07:26 #2988 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:07:26 #2989 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:07:26 #2990 [Debug] > │         let v14 : float = v13 ** 2.0                                         │

02:07:26 #2991 [Debug] > │         let v15 : float = 0.01 * v14                                         │

02:07:26 #2992 [Debug] > │         v9.[int v12] <- v15                                                  │

02:07:26 #2993 [Debug] > │         let v16 : int32 = v12 + 1                                            │

02:07:26 #2994 [Debug] > │         v10.l0 <- v16                                                        │

02:07:26 #2995 [Debug] > │         ()                                                                   │

02:07:26 #2996 [Debug] > │     let v17 : int32 = v9.Length                                              │

02:07:26 #2997 [Debug] > │     let v18 : Mut1 = {l0 = 0; l1 = 0.0} : Mut1                               │

02:07:26 #2998 [Debug] > │     while method3(v17, v18) do                                               │

02:07:26 #2999 [Debug] > │         let v20 : int32 = v18.l0                                             │

02:07:26 #3000 [Debug] > │         let v21 : float = v18.l1                                             │

02:07:26 #3001 [Debug] > │         let v22 : float = v9.[int v20]                                       │

02:07:26 #3002 [Debug] > │         let v23 : float = v21 + v22                                          │

02:07:26 #3003 [Debug] > │         let v24 : int32 = v20 + 1                                            │

02:07:26 #3004 [Debug] > │         v18.l0 <- v24                                                        │

02:07:26 #3005 [Debug] > │         v18.l1 <- v23                                                        │

02:07:26 #3006 [Debug] > │         ()                                                                   │

02:07:26 #3007 [Debug] > │     let v25 : float = v18.l1                                                 │

02:07:26 #3008 [Debug] > │     let v26 : float = 0.3333250000000004 - v25                               │

02:07:26 #3009 [Debug] > │     let v27 : float =  -v26                                                  │

02:07:26 #3010 [Debug] > │     let v28 : bool = v26 >= v27                                              │

02:07:26 #3011 [Debug] > │     let v29 : float =                                                        │

02:07:26 #3012 [Debug] > │         if v28 then                                                          │

02:07:26 #3013 [Debug] > │             v26                                                              │

02:07:26 #3014 [Debug] > │         else                                                                 │

02:07:26 #3015 [Debug] > │             v27                                                              │

02:07:26 #3016 [Debug] > │     let v30 : bool = v29 < 1E-08                                             │

02:07:26 #3017 [Debug] > │     let v31 : string = $"_almost_equal / actual: %A{v25} / expected:         │

02:07:26 #3018 [Debug] > │ %A{0.3333250000000004}"                                                      │

02:07:26 #3019 [Debug] > │     let v32 : bool = v30 = false                                             │

02:07:26 #3020 [Debug] > │     if v32 then                                                              │

02:07:26 #3021 [Debug] > │         failwith<unit> v31                                                   │

02:07:26 #3022 [Debug] > │ method0()                                                                    │

02:07:26 #3023 [Debug] > │                                                                              │

02:07:26 #3024 [Debug] > │                                                                              │

02:07:26 #3025 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:26 #3026 [Debug] >

02:07:26 #3027 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:26 #3028 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:26 #3029 [Debug] > │ ## anti_derivative                                                           │

02:07:26 #3030 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:26 #3031 [Debug] >

02:07:26 #3032 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:26 #3033 [Debug] > inl anti_derivative dt v0 a t =

02:07:26 #3034 [Debug] >     v0 + integral' dt a 0 t

02:07:26 #3035 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2678-7874-75930b29f5bf\main.spi

02:07:26 #3036 [Debug] >

02:07:26 #3037 [Debug] > ╭─[ 191.51ms - stdout ]────────────────────────────────────────────────────────╮

02:07:26 #3038 [Debug] > │ ()                                                                           │

02:07:26 #3039 [Debug] > │                                                                              │

02:07:26 #3040 [Debug] > │                                                                              │

02:07:26 #3041 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:26 #3042 [Debug] >

02:07:26 #3043 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:26 #3044 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:26 #3045 [Debug] > │ ## velocity_ft                                                               │

02:07:26 #3046 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:26 #3047 [Debug] >

02:07:26 #3048 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:26 #3049 [Debug] > type velocity_ft = mass -> velocity -> list (time -> force) -> (time ->

02:07:26 #3050 [Debug] > velocity)

02:07:26 #3051 [Debug] >

02:07:26 #3052 [Debug] > inl velocity_ft dt : velocity_ft =

02:07:26 #3053 [Debug] >     fun m v0 fs =>

02:07:26 #3054 [Debug] >         inl f_net t = fs |> listm.map (fun f => f t) |> listm'.sum

02:07:26 #3055 [Debug] >         inl a t = f_net t / m

02:07:26 #3056 [Debug] >         anti_derivative dt v0 a

02:07:27 #3057 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2698-9839-920b5bee5bc6\main.spi

02:07:27 #3058 [Debug] >

02:07:27 #3059 [Debug] > ╭─[ 169.74ms - stdout ]────────────────────────────────────────────────────────╮

02:07:27 #3060 [Debug] > │ ()                                                                           │

02:07:27 #3061 [Debug] > │                                                                              │

02:07:27 #3062 [Debug] > │                                                                              │

02:07:27 #3063 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:27 #3064 [Debug] >

02:07:27 #3065 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:27 #3066 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:27 #3067 [Debug] > │ ## position_ft                                                               │

02:07:27 #3068 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:27 #3069 [Debug] >

02:07:27 #3070 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:27 #3071 [Debug] > type position_ft = mass -> position -> velocity -> list (time -> force) -> (time

02:07:27 #3072 [Debug] > -> position)

02:07:27 #3073 [Debug] >

02:07:27 #3074 [Debug] > inl position_ft dt : position_ft =

02:07:27 #3075 [Debug] >     fun m x0 v0 fs =>

02:07:27 #3076 [Debug] >         velocity_ft dt m v0 fs

02:07:27 #3077 [Debug] >         |> anti_derivative dt x0

02:07:27 #3078 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2715-1590-1b6e748da16b\main.spi

02:07:27 #3079 [Debug] >

02:07:27 #3080 [Debug] > ╭─[ 199.63ms - stdout ]────────────────────────────────────────────────────────╮

02:07:27 #3081 [Debug] > │ ()                                                                           │

02:07:27 #3082 [Debug] > │                                                                              │

02:07:27 #3083 [Debug] > │                                                                              │

02:07:27 #3084 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:27 #3085 [Debug] >

02:07:27 #3086 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:27 #3087 [Debug] > // // test

02:07:27 #3088 [Debug] >

02:07:27 #3089 [Debug] > inl pedal_coast (t : time) : force =

02:07:27 #3090 [Debug] >     inl t_cycle = 20

02:07:27 #3091 [Debug] >     inl n_complete : i32 = t / t_cycle |> conv

02:07:27 #3092 [Debug] >     inl remainder = t - conv n_complete * t_cycle

02:07:27 #3093 [Debug] >     if remainder > 0 && remainder < 10

02:07:27 #3094 [Debug] >     then 10

02:07:27 #3095 [Debug] >     else 0

02:07:27 #3096 [Debug] >

02:07:27 #3097 [Debug] > inl x = am'.init_series -5 45 0.1

02:07:27 #3098 [Debug] > inl y = x |> am.map pedal_coast

02:07:27 #3099 [Debug] > "child pedaling then coasting", "time (s)", "", ;[[ "force on bike (N)", x, y ]]

02:07:27 #3100 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2736-3612-3a0f37781e91\main.spi

02:07:27 #3101 [Debug] >

02:07:27 #3102 [Debug] > ╭─[ 227.83ms - return value ]──────────────────────────────────────────────────╮

02:07:27 #3103 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:27 #3104 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:27 #3105 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:27 #3106 [Debug] > │ stroke="none"/>                                                              │

02:07:27 #3107 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:27 #3108 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3109 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3110 [Debug] > │ child pedaling then coasting                                                 │

02:07:27 #3111 [Debug] > │ </text>                                                                      │

02:07:27 #3112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:07:27 #3113 [Debug] > │ y2="75"/>                                                                    │

02:07:27 #3114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:27 #3115 [Debug] > │ y2="75"/>                                                                    │

02:07:27 #3116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:07:27 #3117 [Debug] > │ y2="75"/>                                                                    │

02:07:27 #3118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:07:27 #3119 [Debug] > │ y2="75"/>                                                                    │

02:07:27 #3120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:27 #3121 [Debug] > │ y2="75"/>                                                                    │

02:07:27 #3122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:07:27 #3123 [Debug] > │ x2="109" y2="75"/>                                                           │

02:07:27 #3124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:27 #3125 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:27 #3126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:27 #3127 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:27 #3128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:07:27 #3129 [Debug] > │ x2="139" y2="75"/>                                                           │

02:07:27 #3130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:07:27 #3131 [Debug] > │ x2="149" y2="75"/>                                                           │

02:07:27 #3132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:07:27 #3133 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:27 #3134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:27 #3135 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:27 #3136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:07:27 #3137 [Debug] > │ x2="179" y2="75"/>                                                           │

02:07:27 #3138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:27 #3139 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:27 #3140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:07:27 #3141 [Debug] > │ x2="199" y2="75"/>                                                           │

02:07:27 #3142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:07:27 #3143 [Debug] > │ x2="209" y2="75"/>                                                           │

02:07:27 #3144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:27 #3145 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:27 #3146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:07:27 #3147 [Debug] > │ x2="229" y2="75"/>                                                           │

02:07:27 #3148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:07:27 #3149 [Debug] > │ x2="239" y2="75"/>                                                           │

02:07:27 #3150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:27 #3151 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:27 #3152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:07:27 #3153 [Debug] > │ x2="259" y2="75"/>                                                           │

02:07:27 #3154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:27 #3155 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:27 #3156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:07:27 #3157 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:27 #3158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:07:27 #3159 [Debug] > │ x2="289" y2="75"/>                                                           │

02:07:27 #3160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:07:27 #3161 [Debug] > │ x2="299" y2="75"/>                                                           │

02:07:27 #3162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:27 #3163 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:27 #3164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:27 #3165 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:27 #3166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:07:27 #3167 [Debug] > │ x2="329" y2="75"/>                                                           │

02:07:27 #3168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:07:27 #3169 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:27 #3170 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:07:27 #3171 [Debug] > │ x2="349" y2="75"/>                                                           │

02:07:27 #3172 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:07:27 #3173 [Debug] > │ x2="359" y2="75"/>                                                           │

02:07:27 #3174 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:27 #3175 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:27 #3176 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:07:27 #3177 [Debug] > │ x2="379" y2="75"/>                                                           │

02:07:27 #3178 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:07:27 #3179 [Debug] > │ x2="389" y2="75"/>                                                           │

02:07:27 #3180 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:07:27 #3181 [Debug] > │ x2="399" y2="75"/>                                                           │

02:07:27 #3182 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:07:27 #3183 [Debug] > │ x2="409" y2="75"/>                                                           │

02:07:27 #3184 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:27 #3185 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:27 #3186 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:07:27 #3187 [Debug] > │ x2="429" y2="75"/>                                                           │

02:07:27 #3188 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:07:27 #3189 [Debug] > │ x2="439" y2="75"/>                                                           │

02:07:27 #3190 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:07:27 #3191 [Debug] > │ x2="449" y2="75"/>                                                           │

02:07:27 #3192 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:07:27 #3193 [Debug] > │ x2="459" y2="75"/>                                                           │

02:07:27 #3194 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:27 #3195 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:27 #3196 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:07:27 #3197 [Debug] > │ x2="479" y2="75"/>                                                           │

02:07:27 #3198 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:07:27 #3199 [Debug] > │ x2="489" y2="75"/>                                                           │

02:07:27 #3200 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:07:27 #3201 [Debug] > │ x2="499" y2="75"/>                                                           │

02:07:27 #3202 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:07:27 #3203 [Debug] > │ x2="509" y2="75"/>                                                           │

02:07:27 #3204 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:27 #3205 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:27 #3206 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:07:27 #3207 [Debug] > │ x2="529" y2="75"/>                                                           │

02:07:27 #3208 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:07:27 #3209 [Debug] > │ x2="539" y2="75"/>                                                           │

02:07:27 #3210 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:07:27 #3211 [Debug] > │ x2="549" y2="75"/>                                                           │

02:07:27 #3212 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:07:27 #3213 [Debug] > │ x2="559" y2="75"/>                                                           │

02:07:27 #3214 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:27 #3215 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:27 #3216 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:07:27 #3217 [Debug] > │ x2="579" y2="75"/>                                                           │

02:07:27 #3218 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:27 #3219 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:27 #3220 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:07:27 #3221 [Debug] > │ x2="584" y2="398"/>                                                          │

02:07:27 #3222 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:07:27 #3223 [Debug] > │ x2="584" y2="382"/>                                                          │

02:07:27 #3224 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:07:27 #3225 [Debug] > │ x2="584" y2="365"/>                                                          │

02:07:27 #3226 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:07:27 #3227 [Debug] > │ x2="584" y2="349"/>                                                          │

02:07:27 #3228 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:07:27 #3229 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:27 #3230 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:07:27 #3231 [Debug] > │ x2="584" y2="316"/>                                                          │

02:07:27 #3232 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:07:27 #3233 [Debug] > │ x2="584" y2="299"/>                                                          │

02:07:27 #3234 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:07:27 #3235 [Debug] > │ x2="584" y2="283"/>                                                          │

02:07:27 #3236 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:07:27 #3237 [Debug] > │ x2="584" y2="266"/>                                                          │

02:07:27 #3238 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:07:27 #3239 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:27 #3240 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:07:27 #3241 [Debug] > │ x2="584" y2="234"/>                                                          │

02:07:27 #3242 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:07:27 #3243 [Debug] > │ x2="584" y2="217"/>                                                          │

02:07:27 #3244 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:07:27 #3245 [Debug] > │ x2="584" y2="201"/>                                                          │

02:07:27 #3246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:07:27 #3247 [Debug] > │ x2="584" y2="184"/>                                                          │

02:07:27 #3248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:07:27 #3249 [Debug] > │ x2="584" y2="168"/>                                                          │

02:07:27 #3250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:07:27 #3251 [Debug] > │ x2="584" y2="151"/>                                                          │

02:07:27 #3252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:07:27 #3253 [Debug] > │ x2="584" y2="135"/>                                                          │

02:07:27 #3254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:07:27 #3255 [Debug] > │ x2="584" y2="118"/>                                                          │

02:07:27 #3256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:07:27 #3257 [Debug] > │ x2="584" y2="102"/>                                                          │

02:07:27 #3258 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:27 #3259 [Debug] > │ y2="85"/>                                                                    │

02:07:27 #3260 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:27 #3261 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3262 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3263 [Debug] > │ time (s)                                                                     │

02:07:27 #3264 [Debug] > │ </text>                                                                      │

02:07:27 #3265 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:27 #3266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3267 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:27 #3268 [Debug] > │                                                                              │

02:07:27 #3269 [Debug] > │ </text>                                                                      │

02:07:27 #3270 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:27 #3271 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3272 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3273 [Debug] > │ time (s)                                                                     │

02:07:27 #3274 [Debug] > │ </text>                                                                      │

02:07:27 #3275 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3277 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:27 #3278 [Debug] > │                                                                              │

02:07:27 #3279 [Debug] > │ </text>                                                                      │

02:07:27 #3280 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:27 #3281 [Debug] > │ y2="75"/>                                                                    │

02:07:27 #3282 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:27 #3283 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:27 #3284 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:27 #3285 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:27 #3286 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:27 #3287 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:27 #3288 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:27 #3289 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:27 #3290 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:27 #3291 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:27 #3292 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:27 #3293 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:27 #3294 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:27 #3295 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:27 #3296 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:27 #3297 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:27 #3298 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:27 #3299 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:27 #3300 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:27 #3301 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:27 #3302 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:27 #3303 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:27 #3304 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="349"         │

02:07:27 #3305 [Debug] > │ x2="584" y2="349"/>                                                          │

02:07:27 #3306 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="283"         │

02:07:27 #3307 [Debug] > │ x2="584" y2="283"/>                                                          │

02:07:27 #3308 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="217"         │

02:07:27 #3309 [Debug] > │ x2="584" y2="217"/>                                                          │

02:07:27 #3310 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="151"         │

02:07:27 #3311 [Debug] > │ x2="584" y2="151"/>                                                          │

02:07:27 #3312 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:27 #3313 [Debug] > │ y2="85"/>                                                                    │

02:07:27 #3314 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3315 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:27 #3316 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:27 #3317 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3318 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3319 [Debug] > │ -5.0                                                                         │

02:07:27 #3320 [Debug] > │ </text>                                                                      │

02:07:27 #3321 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3322 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:27 #3323 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3324 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3325 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3326 [Debug] > │ 0.0                                                                          │

02:07:27 #3327 [Debug] > │ </text>                                                                      │

02:07:27 #3328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3329 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:27 #3330 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3331 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3332 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3333 [Debug] > │ 5.0                                                                          │

02:07:27 #3334 [Debug] > │ </text>                                                                      │

02:07:27 #3335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3336 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:27 #3337 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3338 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3339 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3340 [Debug] > │ 10.0                                                                         │

02:07:27 #3341 [Debug] > │ </text>                                                                      │

02:07:27 #3342 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3343 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:27 #3344 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3345 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3346 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3347 [Debug] > │ 15.0                                                                         │

02:07:27 #3348 [Debug] > │ </text>                                                                      │

02:07:27 #3349 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3350 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:27 #3351 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3352 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3353 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3354 [Debug] > │ 20.0                                                                         │

02:07:27 #3355 [Debug] > │ </text>                                                                      │

02:07:27 #3356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3357 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:27 #3358 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3359 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3360 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3361 [Debug] > │ 25.0                                                                         │

02:07:27 #3362 [Debug] > │ </text>                                                                      │

02:07:27 #3363 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3364 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:27 #3365 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3366 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3367 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3368 [Debug] > │ 30.0                                                                         │

02:07:27 #3369 [Debug] > │ </text>                                                                      │

02:07:27 #3370 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3371 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:27 #3372 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3373 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3374 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3375 [Debug] > │ 35.0                                                                         │

02:07:27 #3376 [Debug] > │ </text>                                                                      │

02:07:27 #3377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3378 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:27 #3379 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3380 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3381 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3382 [Debug] > │ 40.0                                                                         │

02:07:27 #3383 [Debug] > │ </text>                                                                      │

02:07:27 #3384 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3385 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:27 #3386 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:27 #3387 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3388 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3389 [Debug] > │ 45.0                                                                         │

02:07:27 #3390 [Debug] > │ </text>                                                                      │

02:07:27 #3391 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3392 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:27 #3393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3394 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:27 #3395 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:27 #3396 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3397 [Debug] > │ 0.0                                                                          │

02:07:27 #3398 [Debug] > │ </text>                                                                      │

02:07:27 #3399 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3400 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:27 #3401 [Debug] > │ <text x="45" y="349" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:27 #3402 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3403 [Debug] > │ 2.0                                                                          │

02:07:27 #3404 [Debug] > │ </text>                                                                      │

02:07:27 #3405 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3406 [Debug] > │ points="49,349 54,349 "/>                                                    │

02:07:27 #3407 [Debug] > │ <text x="45" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:27 #3408 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3409 [Debug] > │ 4.0                                                                          │

02:07:27 #3410 [Debug] > │ </text>                                                                      │

02:07:27 #3411 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3412 [Debug] > │ points="49,283 54,283 "/>                                                    │

02:07:27 #3413 [Debug] > │ <text x="45" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:27 #3414 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3415 [Debug] > │ 6.0                                                                          │

02:07:27 #3416 [Debug] > │ </text>                                                                      │

02:07:27 #3417 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3418 [Debug] > │ points="49,217 54,217 "/>                                                    │

02:07:27 #3419 [Debug] > │ <text x="45" y="151" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:27 #3420 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3421 [Debug] > │ 8.0                                                                          │

02:07:27 #3422 [Debug] > │ </text>                                                                      │

02:07:27 #3423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3424 [Debug] > │ points="49,151 54,151 "/>                                                    │

02:07:27 #3425 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:27 #3426 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3427 [Debug] > │ 10.0                                                                         │

02:07:27 #3428 [Debug] > │ </text>                                                                      │

02:07:27 #3429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3430 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:07:27 #3431 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3432 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:27 #3433 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:27 #3434 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3435 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3436 [Debug] > │ -5.0                                                                         │

02:07:27 #3437 [Debug] > │ </text>                                                                      │

02:07:27 #3438 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3439 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:27 #3440 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3441 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3442 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3443 [Debug] > │ 0.0                                                                          │

02:07:27 #3444 [Debug] > │ </text>                                                                      │

02:07:27 #3445 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3446 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:27 #3447 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3448 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3449 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3450 [Debug] > │ 5.0                                                                          │

02:07:27 #3451 [Debug] > │ </text>                                                                      │

02:07:27 #3452 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3453 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:27 #3454 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3455 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3456 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3457 [Debug] > │ 10.0                                                                         │

02:07:27 #3458 [Debug] > │ </text>                                                                      │

02:07:27 #3459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3460 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:27 #3461 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3462 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3463 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3464 [Debug] > │ 15.0                                                                         │

02:07:27 #3465 [Debug] > │ </text>                                                                      │

02:07:27 #3466 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3467 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:27 #3468 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3469 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3470 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3471 [Debug] > │ 20.0                                                                         │

02:07:27 #3472 [Debug] > │ </text>                                                                      │

02:07:27 #3473 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3474 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:27 #3475 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3476 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3477 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3478 [Debug] > │ 25.0                                                                         │

02:07:27 #3479 [Debug] > │ </text>                                                                      │

02:07:27 #3480 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3481 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:27 #3482 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3483 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3484 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3485 [Debug] > │ 30.0                                                                         │

02:07:27 #3486 [Debug] > │ </text>                                                                      │

02:07:27 #3487 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3488 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:27 #3489 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3490 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3491 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3492 [Debug] > │ 35.0                                                                         │

02:07:27 #3493 [Debug] > │ </text>                                                                      │

02:07:27 #3494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3495 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:27 #3496 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3497 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3498 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3499 [Debug] > │ 40.0                                                                         │

02:07:27 #3500 [Debug] > │ </text>                                                                      │

02:07:27 #3501 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3502 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:27 #3503 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:27 #3504 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3505 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3506 [Debug] > │ 45.0                                                                         │

02:07:27 #3507 [Debug] > │ </text>                                                                      │

02:07:27 #3508 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3509 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:27 #3510 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3511 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:27 #3512 [Debug] > │ <text x="617" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:27 #3513 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3514 [Debug] > │ 0.0                                                                          │

02:07:27 #3515 [Debug] > │ </text>                                                                      │

02:07:27 #3516 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3517 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:27 #3518 [Debug] > │ <text x="617" y="349" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:27 #3519 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3520 [Debug] > │ 2.0                                                                          │

02:07:27 #3521 [Debug] > │ </text>                                                                      │

02:07:27 #3522 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3523 [Debug] > │ points="585,349 590,349 "/>                                                  │

02:07:27 #3524 [Debug] > │ <text x="617" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:27 #3525 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3526 [Debug] > │ 4.0                                                                          │

02:07:27 #3527 [Debug] > │ </text>                                                                      │

02:07:27 #3528 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3529 [Debug] > │ points="585,283 590,283 "/>                                                  │

02:07:27 #3530 [Debug] > │ <text x="617" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:27 #3531 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3532 [Debug] > │ 6.0                                                                          │

02:07:27 #3533 [Debug] > │ </text>                                                                      │

02:07:27 #3534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3535 [Debug] > │ points="585,217 590,217 "/>                                                  │

02:07:27 #3536 [Debug] > │ <text x="617" y="151" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:27 #3537 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3538 [Debug] > │ 8.0                                                                          │

02:07:27 #3539 [Debug] > │ </text>                                                                      │

02:07:27 #3540 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3541 [Debug] > │ points="585,151 590,151 "/>                                                  │

02:07:27 #3542 [Debug] > │ <text x="595" y="85" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:07:27 #3543 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:27 #3544 [Debug] > │ 10.0                                                                         │

02:07:27 #3545 [Debug] > │ </text>                                                                      │

02:07:27 #3546 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:27 #3547 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:07:27 #3548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:27 #3549 [Debug] > │ points="69,415 70,415 71,415 72,415 73,415 74,415 75,415 76,415 77,415       │

02:07:27 #3550 [Debug] > │ 78,415 79,415 80,415 81,415 82,415 83,415 84,415 85,415 86,415 87,415 88,415 │

02:07:27 #3551 [Debug] > │ 89,415 90,415 91,415 92,415 93,415 94,415 95,415 96,415 97,415 98,415 99,415 │

02:07:27 #3552 [Debug] > │ 100,415 101,415 102,415 103,415 104,415 105,415 106,415 107,415 108,415      │

02:07:27 #3553 [Debug] > │ 109,415 110,415 111,415 112,415 113,415 114,415 115,415 116,415 117,415      │

02:07:27 #3554 [Debug] > │ 118,415 119,415 120,85 121,85 122,85 123,85 124,85 125,85 126,85 127,85      │

02:07:27 #3555 [Debug] > │ 128,85 129,85 130,85 131,85 132,85 133,85 134,85 135,85 136,85 137,85 138,85 │

02:07:27 #3556 [Debug] > │ 139,85 140,85 141,85 142,85 143,85 144,85 145,85 146,85 147,85 148,85 149,85 │

02:07:27 #3557 [Debug] > │ 150,85 151,85 152,85 153,85 154,85 155,85 156,85 157,85 158,85 159,85 160,85 │

02:07:27 #3558 [Debug] > │ 161,85 162,85 163,85 164,85 165,85 166,85 167,85 168,85 169,85 170,85 171,85 │

02:07:27 #3559 [Debug] > │ 172,85 173,85 174,85 175,85 176,85 177,85 178,85 179,85 180,85 181,85 182,85 │

02:07:27 #3560 [Debug] > │ 183,85 184,85 185,85 186,85 187,85 188,85 189,85 190,85 191,85 192,85 193,85 │

02:07:27 #3561 [Debug] > │ 194,85 195,85 196,85 197,85 198,85 199,85 200,85 201,85 202,85 203,85 204,85 │

02:07:27 #3562 [Debug] > │ 205,85 206,85 207,85 208,85 209,85 210,85 211,85 212,85 213,85 214,85 215,85 │

02:07:27 #3563 [Debug] > │ 216,85 217,85 218,85 219,415 220,415 221,415 222,415 223,415 224,415 225,415 │

02:07:27 #3564 [Debug] > │ 226,415 227,415 228,415 229,415 230,415 231,415 232,415 233,415 234,415      │

02:07:27 #3565 [Debug] > │ 235,415 236,415 237,415 238,415 239,415 240,415 241,415 242,415 243,415      │

02:07:27 #3566 [Debug] > │ 244,415 245,415 246,415 247,415 248,415 249,415 250,415 251,415 252,415      │

02:07:27 #3567 [Debug] > │ 253,415 254,415 255,415 256,415 257,415 258,415 259,415 260,415 261,415      │

02:07:27 #3568 [Debug] > │ 262,415 263,415 264,415 265,415 266,415 267,415 268,415 269,415 270,415      │

02:07:27 #3569 [Debug] > │ 271,415 272,415 273,415 274,415 275,415 276,415 277,415 278,415 279,415      │

02:07:27 #3570 [Debug] > │ 280,415 281,415 282,415 283,415 284,415 285,415 286,415 287,415 288,415      │

02:07:27 #3571 [Debug] > │ 289,415 290,415 291,415 292,415 293,415 294,415 295,415 296,415 297,415      │

02:07:27 #3572 [Debug] > │ 298,415 299,415 300,415 301,415 302,415 303,415 304,415 305,415 306,415      │

02:07:27 #3573 [Debug] > │ 307,415 308,415 309,415 310,415 311,415 312,415 313,415 314,415 315,415      │

02:07:27 #3574 [Debug] > │ 316,415 317,415 318,415 319,415 320,85 321,85 322,85 323,85 324,85 325,85    │

02:07:27 #3575 [Debug] > │ 326,85 327,85 328,85 329,85 330,85 331,85 332,85 333,85 334,85 335,85 336,85 │

02:07:27 #3576 [Debug] > │ 337,85 338,85 339,85 340,85 341,85 342,85 343,85 344,85 345,85 346,85 347,85 │

02:07:27 #3577 [Debug] > │ 348,85 349,85 350,85 351,85 352,85 353,85 354,85 355,85 356,85 357,85 358,85 │

02:07:27 #3578 [Debug] > │ 359,85 360,85 361,85 362,85 363,85 364,85 365,85 366,85 367,85 368,85 369,85 │

02:07:27 #3579 [Debug] > │ 370,85 371,85 372,85 373,85 374,85 375,85 376,85 377,85 378,85 379,85 380,85 │

02:07:27 #3580 [Debug] > │ 381,85 382,85 383,85 384,85 385,85 386,85 387,85 388,85 389,85 390,85 391,85 │

02:07:27 #3581 [Debug] > │ 392,85 393,85 394,85 395,85 396,85 397,85 398,85 399,85 400,85 401,85 402,85 │

02:07:27 #3582 [Debug] > │ 403,85 404,85 405,85 406,85 407,85 408,85 409,85 410,85 411,85 412,85 413,85 │

02:07:27 #3583 [Debug] > │ 414,85 415,85 416,85 417,85 418,85 419,415 420,415 421,415 422,415 423,415   │

02:07:27 #3584 [Debug] > │ 424,415 425,415 426,415 427,415 428,415 429,415 430,415 431,415 432,415      │

02:07:27 #3585 [Debug] > │ 433,415 434,415 435,415 436,415 437,415 438,415 439,415 440,415 441,415      │

02:07:27 #3586 [Debug] > │ 442,415 443,415 444,415 445,415 446,415 447,415 448,415 449,415 450,415      │

02:07:27 #3587 [Debug] > │ 451,415 452,415 453,415 454,415 455,415 456,415 457,415 458,415 459,415      │

02:07:27 #3588 [Debug] > │ 460,415 461,415 462,415 463,415 464,415 465,415 466,415 467,415 468,415      │

02:07:27 #3589 [Debug] > │ 469,415 470,415 471,415 472,415 473,415 474,415 475,415 476,415 477,415      │

02:07:27 #3590 [Debug] > │ 478,415 479,415 480,415 481,415 482,415 483,415 484,415 485,415 486,415      │

02:07:27 #3591 [Debug] > │ 487,415 488,415 489,415 490,415 491,415 492,415 493,415 494,415 495,415      │

02:07:27 #3592 [Debug] > │ 496,415 497,415 498,415 499,415 500,415 501,415 502,415 503,415 504,415      │

02:07:27 #3593 [Debug] > │ 505,415 506,415 507,415 508,415 509,415 510,415 511,415 512,415 513,415      │

02:07:27 #3594 [Debug] > │ 514,415 515,415 516,415 517,415 518,415 519,415 520,85 521,85 522,85 523,85  │

02:07:27 #3595 [Debug] > │ 524,85 525,85 526,85 527,85 528,85 529,85 530,85 531,85 532,85 533,85 534,85 │

02:07:27 #3596 [Debug] > │ 535,85 536,85 537,85 538,85 539,85 540,85 541,85 542,85 543,85 544,85 545,85 │

02:07:27 #3597 [Debug] > │ 546,85 547,85 548,85 549,85 550,85 551,85 552,85 553,85 554,85 555,85 556,85 │

02:07:27 #3598 [Debug] > │ 557,85 558,85 559,85 560,85 561,85 562,85 563,85 564,85 565,85 566,85 567,85 │

02:07:27 #3599 [Debug] > │ 568,85 569,85 "/>                                                            │

02:07:27 #3600 [Debug] > │ <rect x="437" y="235" width="143" height="30" opacity="1" fill="none"        │

02:07:27 #3601 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:27 #3602 [Debug] > │ <text x="477" y="245" dy="0.76em" text-anchor="start"                        │

02:07:27 #3603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:27 #3604 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:27 #3605 [Debug] > │ force on bike (N)                                                            │

02:07:27 #3606 [Debug] > │ </text>                                                                      │

02:07:27 #3607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:27 #3608 [Debug] > │ points="447,250 467,250 "/>                                                  │

02:07:27 #3609 [Debug] > │ </svg>                                                                       │

02:07:27 #3610 [Debug] > │                                                                              │

02:07:27 #3611 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:27 #3612 [Debug] >

02:07:27 #3613 [Debug] > ╭─[ 467.24ms - stdout ]────────────────────────────────────────────────────────╮

02:07:27 #3614 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:27 #3615 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:27 #3616 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:27 #3617 [Debug] > │     let v2 : bool = v1 < 501                                                 │

02:07:27 #3618 [Debug] > │     v2                                                                       │

02:07:27 #3619 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:27 #3620 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:27 #3621 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:27 #3622 [Debug] > │     v3                                                                       │

02:07:27 #3623 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:27 #3624 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:27 #3625 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (501)                      │

02:07:27 #3626 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:27 #3627 [Debug] > │     while method1(v1) do                                                     │

02:07:27 #3628 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:27 #3629 [Debug] > │         let v4 : float = float v3                                            │

02:07:27 #3630 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:07:27 #3631 [Debug] > │         let v6 : float = -5.0 + v5                                           │

02:07:27 #3632 [Debug] > │         v0.[int v3] <- v6                                                    │

02:07:27 #3633 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:07:27 #3634 [Debug] > │         v1.l0 <- v7                                                          │

02:07:27 #3635 [Debug] > │         ()                                                                   │

02:07:27 #3636 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:07:27 #3637 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:07:27 #3638 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:07:27 #3639 [Debug] > │     while method2(v8, v10) do                                                │

02:07:27 #3640 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:07:27 #3641 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:07:27 #3642 [Debug] > │         let v14 : float = v13 / 20.0                                         │

02:07:27 #3643 [Debug] > │         let v15 : int32 = int32 v14                                          │

02:07:27 #3644 [Debug] > │         let v16 : float = float v15                                          │

02:07:27 #3645 [Debug] > │         let v17 : float = v16 * 20.0                                         │

02:07:27 #3646 [Debug] > │         let v18 : float = v13 - v17                                          │

02:07:27 #3647 [Debug] > │         let v19 : bool = v18 > 0.0                                           │

02:07:27 #3648 [Debug] > │         let v21 : bool =                                                     │

02:07:27 #3649 [Debug] > │             if v19 then                                                      │

02:07:27 #3650 [Debug] > │                 let v20 : bool = v18 < 10.0                                  │

02:07:27 #3651 [Debug] > │                 v20                                                          │

02:07:27 #3652 [Debug] > │             else                                                             │

02:07:27 #3653 [Debug] > │                 false                                                        │

02:07:27 #3654 [Debug] > │         let v22 : float =                                                    │

02:07:27 #3655 [Debug] > │             if v21 then                                                      │

02:07:27 #3656 [Debug] > │                 10.0                                                         │

02:07:27 #3657 [Debug] > │             else                                                             │

02:07:27 #3658 [Debug] > │                 0.0                                                          │

02:07:27 #3659 [Debug] > │         v9.[int v12] <- v22                                                  │

02:07:27 #3660 [Debug] > │         let v23 : int32 = v12 + 1                                            │

02:07:27 #3661 [Debug] > │         v10.l0 <- v23                                                        │

02:07:27 #3662 [Debug] > │         ()                                                                   │

02:07:27 #3663 [Debug] > │     let v24 : string = "force on bike (N)"                                   │

02:07:27 #3664 [Debug] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:27 #3665 [Debug] > │ (v24, v0, v9)|]                                                              │

02:07:27 #3666 [Debug] > │     let v26 : string = "child pedaling then coasting"                        │

02:07:27 #3667 [Debug] > │     let v27 : string = "time (s)"                                            │

02:07:27 #3668 [Debug] > │     let v28 : string = ""                                                    │

02:07:27 #3669 [Debug] > │     struct (v26, v27, v28, v25)                                              │

02:07:27 #3670 [Debug] > │ method0()                                                                    │

02:07:27 #3671 [Debug] > │                                                                              │

02:07:27 #3672 [Debug] > │                                                                              │

02:07:27 #3673 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:27 #3674 [Debug] >

02:07:27 #3675 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:27 #3676 [Debug] > // // test

02:07:27 #3677 [Debug] >

02:07:27 #3678 [Debug] > inl x = am'.init_series -5 45 1

02:07:27 #3679 [Debug] > inl y = x |> am.map (position_ft 0.1f64 20 0 0 [[ pedal_coast ]])

02:07:27 #3680 [Debug] > "child pedaling then coasting", "time (s)", "", ;[[ "position of bike (m)", x, y

02:07:27 #3681 [Debug] > ]]

02:07:27 #3682 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2786-8654-8b53d4534034\main.spi

02:07:28 #3683 [Debug] >

02:07:28 #3684 [Debug] > ╭─[ 554.99ms - return value ]──────────────────────────────────────────────────╮

02:07:28 #3685 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:28 #3686 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:28 #3687 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:28 #3688 [Debug] > │ stroke="none"/>                                                              │

02:07:28 #3689 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:28 #3690 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3691 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3692 [Debug] > │ child pedaling then coasting                                                 │

02:07:28 #3693 [Debug] > │ </text>                                                                      │

02:07:28 #3694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:07:28 #3695 [Debug] > │ y2="75"/>                                                                    │

02:07:28 #3696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:28 #3697 [Debug] > │ y2="75"/>                                                                    │

02:07:28 #3698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:07:28 #3699 [Debug] > │ y2="75"/>                                                                    │

02:07:28 #3700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:07:28 #3701 [Debug] > │ y2="75"/>                                                                    │

02:07:28 #3702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:28 #3703 [Debug] > │ y2="75"/>                                                                    │

02:07:28 #3704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:07:28 #3705 [Debug] > │ x2="109" y2="75"/>                                                           │

02:07:28 #3706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:28 #3707 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:28 #3708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:28 #3709 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:28 #3710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:07:28 #3711 [Debug] > │ x2="139" y2="75"/>                                                           │

02:07:28 #3712 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:07:28 #3713 [Debug] > │ x2="149" y2="75"/>                                                           │

02:07:28 #3714 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:07:28 #3715 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:28 #3716 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:28 #3717 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:28 #3718 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:07:28 #3719 [Debug] > │ x2="179" y2="75"/>                                                           │

02:07:28 #3720 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:28 #3721 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:28 #3722 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:07:28 #3723 [Debug] > │ x2="199" y2="75"/>                                                           │

02:07:28 #3724 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:07:28 #3725 [Debug] > │ x2="209" y2="75"/>                                                           │

02:07:28 #3726 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:28 #3727 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:28 #3728 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:07:28 #3729 [Debug] > │ x2="229" y2="75"/>                                                           │

02:07:28 #3730 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:07:28 #3731 [Debug] > │ x2="239" y2="75"/>                                                           │

02:07:28 #3732 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:28 #3733 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:28 #3734 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:07:28 #3735 [Debug] > │ x2="259" y2="75"/>                                                           │

02:07:28 #3736 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:28 #3737 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:28 #3738 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:07:28 #3739 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:28 #3740 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:07:28 #3741 [Debug] > │ x2="289" y2="75"/>                                                           │

02:07:28 #3742 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:07:28 #3743 [Debug] > │ x2="299" y2="75"/>                                                           │

02:07:28 #3744 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:28 #3745 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:28 #3746 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:28 #3747 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:28 #3748 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:07:28 #3749 [Debug] > │ x2="329" y2="75"/>                                                           │

02:07:28 #3750 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:07:28 #3751 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:28 #3752 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:07:28 #3753 [Debug] > │ x2="349" y2="75"/>                                                           │

02:07:28 #3754 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:07:28 #3755 [Debug] > │ x2="359" y2="75"/>                                                           │

02:07:28 #3756 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:28 #3757 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:28 #3758 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:07:28 #3759 [Debug] > │ x2="379" y2="75"/>                                                           │

02:07:28 #3760 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:07:28 #3761 [Debug] > │ x2="389" y2="75"/>                                                           │

02:07:28 #3762 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:07:28 #3763 [Debug] > │ x2="399" y2="75"/>                                                           │

02:07:28 #3764 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:07:28 #3765 [Debug] > │ x2="409" y2="75"/>                                                           │

02:07:28 #3766 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:28 #3767 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:28 #3768 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:07:28 #3769 [Debug] > │ x2="429" y2="75"/>                                                           │

02:07:28 #3770 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:07:28 #3771 [Debug] > │ x2="439" y2="75"/>                                                           │

02:07:28 #3772 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:07:28 #3773 [Debug] > │ x2="449" y2="75"/>                                                           │

02:07:28 #3774 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:07:28 #3775 [Debug] > │ x2="459" y2="75"/>                                                           │

02:07:28 #3776 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:28 #3777 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:28 #3778 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:07:28 #3779 [Debug] > │ x2="479" y2="75"/>                                                           │

02:07:28 #3780 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:07:28 #3781 [Debug] > │ x2="489" y2="75"/>                                                           │

02:07:28 #3782 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:07:28 #3783 [Debug] > │ x2="499" y2="75"/>                                                           │

02:07:28 #3784 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:07:28 #3785 [Debug] > │ x2="509" y2="75"/>                                                           │

02:07:28 #3786 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:28 #3787 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:28 #3788 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:07:28 #3789 [Debug] > │ x2="529" y2="75"/>                                                           │

02:07:28 #3790 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:07:28 #3791 [Debug] > │ x2="539" y2="75"/>                                                           │

02:07:28 #3792 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:07:28 #3793 [Debug] > │ x2="549" y2="75"/>                                                           │

02:07:28 #3794 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:07:28 #3795 [Debug] > │ x2="559" y2="75"/>                                                           │

02:07:28 #3796 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:28 #3797 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:28 #3798 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:07:28 #3799 [Debug] > │ x2="579" y2="75"/>                                                           │

02:07:28 #3800 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:28 #3801 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:28 #3802 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:07:28 #3803 [Debug] > │ x2="584" y2="404"/>                                                          │

02:07:28 #3804 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:07:28 #3805 [Debug] > │ x2="584" y2="393"/>                                                          │

02:07:28 #3806 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:07:28 #3807 [Debug] > │ x2="584" y2="383"/>                                                          │

02:07:28 #3808 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:07:28 #3809 [Debug] > │ x2="584" y2="372"/>                                                          │

02:07:28 #3810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="361"         │

02:07:28 #3811 [Debug] > │ x2="584" y2="361"/>                                                          │

02:07:28 #3812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:07:28 #3813 [Debug] > │ x2="584" y2="351"/>                                                          │

02:07:28 #3814 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:07:28 #3815 [Debug] > │ x2="584" y2="340"/>                                                          │

02:07:28 #3816 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:07:28 #3817 [Debug] > │ x2="584" y2="329"/>                                                          │

02:07:28 #3818 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="318"         │

02:07:28 #3819 [Debug] > │ x2="584" y2="318"/>                                                          │

02:07:28 #3820 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:07:28 #3821 [Debug] > │ x2="584" y2="308"/>                                                          │

02:07:28 #3822 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="297"         │

02:07:28 #3823 [Debug] > │ x2="584" y2="297"/>                                                          │

02:07:28 #3824 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:07:28 #3825 [Debug] > │ x2="584" y2="286"/>                                                          │

02:07:28 #3826 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="276"         │

02:07:28 #3827 [Debug] > │ x2="584" y2="276"/>                                                          │

02:07:28 #3828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="265"         │

02:07:28 #3829 [Debug] > │ x2="584" y2="265"/>                                                          │

02:07:28 #3830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="254"         │

02:07:28 #3831 [Debug] > │ x2="584" y2="254"/>                                                          │

02:07:28 #3832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="244"         │

02:07:28 #3833 [Debug] > │ x2="584" y2="244"/>                                                          │

02:07:28 #3834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:07:28 #3835 [Debug] > │ x2="584" y2="233"/>                                                          │

02:07:28 #3836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:07:28 #3837 [Debug] > │ x2="584" y2="222"/>                                                          │

02:07:28 #3838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="212"         │

02:07:28 #3839 [Debug] > │ x2="584" y2="212"/>                                                          │

02:07:28 #3840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:07:28 #3841 [Debug] > │ x2="584" y2="201"/>                                                          │

02:07:28 #3842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="190"         │

02:07:28 #3843 [Debug] > │ x2="584" y2="190"/>                                                          │

02:07:28 #3844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:07:28 #3845 [Debug] > │ x2="584" y2="180"/>                                                          │

02:07:28 #3846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="169"         │

02:07:28 #3847 [Debug] > │ x2="584" y2="169"/>                                                          │

02:07:28 #3848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="158"         │

02:07:28 #3849 [Debug] > │ x2="584" y2="158"/>                                                          │

02:07:28 #3850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:07:28 #3851 [Debug] > │ x2="584" y2="147"/>                                                          │

02:07:28 #3852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:07:28 #3853 [Debug] > │ x2="584" y2="137"/>                                                          │

02:07:28 #3854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="126"         │

02:07:28 #3855 [Debug] > │ x2="584" y2="126"/>                                                          │

02:07:28 #3856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="115"         │

02:07:28 #3857 [Debug] > │ x2="584" y2="115"/>                                                          │

02:07:28 #3858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="105"         │

02:07:28 #3859 [Debug] > │ x2="584" y2="105"/>                                                          │

02:07:28 #3860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:07:28 #3861 [Debug] > │ y2="94"/>                                                                    │

02:07:28 #3862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:07:28 #3863 [Debug] > │ y2="83"/>                                                                    │

02:07:28 #3864 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:28 #3865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3866 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3867 [Debug] > │ time (s)                                                                     │

02:07:28 #3868 [Debug] > │ </text>                                                                      │

02:07:28 #3869 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:28 #3870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3871 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:28 #3872 [Debug] > │                                                                              │

02:07:28 #3873 [Debug] > │ </text>                                                                      │

02:07:28 #3874 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:28 #3875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3876 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3877 [Debug] > │ time (s)                                                                     │

02:07:28 #3878 [Debug] > │ </text>                                                                      │

02:07:28 #3879 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:28 #3880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3881 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:28 #3882 [Debug] > │                                                                              │

02:07:28 #3883 [Debug] > │ </text>                                                                      │

02:07:28 #3884 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:28 #3885 [Debug] > │ y2="75"/>                                                                    │

02:07:28 #3886 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:28 #3887 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:28 #3888 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:28 #3889 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:28 #3890 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:28 #3891 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:28 #3892 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:28 #3893 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:28 #3894 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:28 #3895 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:28 #3896 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:28 #3897 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:28 #3898 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:28 #3899 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:28 #3900 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:28 #3901 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:28 #3902 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:28 #3903 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:28 #3904 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:28 #3905 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:28 #3906 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:28 #3907 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:28 #3908 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="361"         │

02:07:28 #3909 [Debug] > │ x2="584" y2="361"/>                                                          │

02:07:28 #3910 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="308"         │

02:07:28 #3911 [Debug] > │ x2="584" y2="308"/>                                                          │

02:07:28 #3912 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="254"         │

02:07:28 #3913 [Debug] > │ x2="584" y2="254"/>                                                          │

02:07:28 #3914 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="201"         │

02:07:28 #3915 [Debug] > │ x2="584" y2="201"/>                                                          │

02:07:28 #3916 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="147"         │

02:07:28 #3917 [Debug] > │ x2="584" y2="147"/>                                                          │

02:07:28 #3918 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="94" x2="584" │

02:07:28 #3919 [Debug] > │ y2="94"/>                                                                    │

02:07:28 #3920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3921 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:28 #3922 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:28 #3923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3924 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3925 [Debug] > │ -5.0                                                                         │

02:07:28 #3926 [Debug] > │ </text>                                                                      │

02:07:28 #3927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3928 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:28 #3929 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3930 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3931 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3932 [Debug] > │ 0.0                                                                          │

02:07:28 #3933 [Debug] > │ </text>                                                                      │

02:07:28 #3934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3935 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:28 #3936 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3938 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3939 [Debug] > │ 5.0                                                                          │

02:07:28 #3940 [Debug] > │ </text>                                                                      │

02:07:28 #3941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3942 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:28 #3943 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3944 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3945 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3946 [Debug] > │ 10.0                                                                         │

02:07:28 #3947 [Debug] > │ </text>                                                                      │

02:07:28 #3948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3949 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:28 #3950 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3951 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3952 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3953 [Debug] > │ 15.0                                                                         │

02:07:28 #3954 [Debug] > │ </text>                                                                      │

02:07:28 #3955 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3956 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:28 #3957 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3959 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3960 [Debug] > │ 20.0                                                                         │

02:07:28 #3961 [Debug] > │ </text>                                                                      │

02:07:28 #3962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3963 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:28 #3964 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3966 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3967 [Debug] > │ 25.0                                                                         │

02:07:28 #3968 [Debug] > │ </text>                                                                      │

02:07:28 #3969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3970 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:28 #3971 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3973 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3974 [Debug] > │ 30.0                                                                         │

02:07:28 #3975 [Debug] > │ </text>                                                                      │

02:07:28 #3976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3977 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:28 #3978 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3980 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3981 [Debug] > │ 35.0                                                                         │

02:07:28 #3982 [Debug] > │ </text>                                                                      │

02:07:28 #3983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3984 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:28 #3985 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3987 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3988 [Debug] > │ 40.0                                                                         │

02:07:28 #3989 [Debug] > │ </text>                                                                      │

02:07:28 #3990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3991 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:28 #3992 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:28 #3993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #3994 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #3995 [Debug] > │ 45.0                                                                         │

02:07:28 #3996 [Debug] > │ </text>                                                                      │

02:07:28 #3997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #3998 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:28 #3999 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4000 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:28 #4001 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:28 #4002 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4003 [Debug] > │ 0.0                                                                          │

02:07:28 #4004 [Debug] > │ </text>                                                                      │

02:07:28 #4005 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4006 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:28 #4007 [Debug] > │ <text x="45" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:28 #4008 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4009 [Debug] > │ 50.0                                                                         │

02:07:28 #4010 [Debug] > │ </text>                                                                      │

02:07:28 #4011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4012 [Debug] > │ points="49,361 54,361 "/>                                                    │

02:07:28 #4013 [Debug] > │ <text x="45" y="308" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:28 #4014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4015 [Debug] > │ 100.0                                                                        │

02:07:28 #4016 [Debug] > │ </text>                                                                      │

02:07:28 #4017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4018 [Debug] > │ points="49,308 54,308 "/>                                                    │

02:07:28 #4019 [Debug] > │ <text x="45" y="254" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:28 #4020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4021 [Debug] > │ 150.0                                                                        │

02:07:28 #4022 [Debug] > │ </text>                                                                      │

02:07:28 #4023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4024 [Debug] > │ points="49,254 54,254 "/>                                                    │

02:07:28 #4025 [Debug] > │ <text x="45" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:28 #4026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4027 [Debug] > │ 200.0                                                                        │

02:07:28 #4028 [Debug] > │ </text>                                                                      │

02:07:28 #4029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4030 [Debug] > │ points="49,201 54,201 "/>                                                    │

02:07:28 #4031 [Debug] > │ <text x="45" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:28 #4032 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4033 [Debug] > │ 250.0                                                                        │

02:07:28 #4034 [Debug] > │ </text>                                                                      │

02:07:28 #4035 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4036 [Debug] > │ points="49,147 54,147 "/>                                                    │

02:07:28 #4037 [Debug] > │ <text x="45" y="94" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:28 #4038 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4039 [Debug] > │ 300.0                                                                        │

02:07:28 #4040 [Debug] > │ </text>                                                                      │

02:07:28 #4041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4042 [Debug] > │ points="49,94 54,94 "/>                                                      │

02:07:28 #4043 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4044 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:28 #4045 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:28 #4046 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4047 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4048 [Debug] > │ -5.0                                                                         │

02:07:28 #4049 [Debug] > │ </text>                                                                      │

02:07:28 #4050 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4051 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:28 #4052 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4053 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4054 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4055 [Debug] > │ 0.0                                                                          │

02:07:28 #4056 [Debug] > │ </text>                                                                      │

02:07:28 #4057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4058 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:28 #4059 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4060 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4061 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4062 [Debug] > │ 5.0                                                                          │

02:07:28 #4063 [Debug] > │ </text>                                                                      │

02:07:28 #4064 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4065 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:28 #4066 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4067 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4068 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4069 [Debug] > │ 10.0                                                                         │

02:07:28 #4070 [Debug] > │ </text>                                                                      │

02:07:28 #4071 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4072 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:28 #4073 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4074 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4075 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4076 [Debug] > │ 15.0                                                                         │

02:07:28 #4077 [Debug] > │ </text>                                                                      │

02:07:28 #4078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4079 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:28 #4080 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4081 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4082 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4083 [Debug] > │ 20.0                                                                         │

02:07:28 #4084 [Debug] > │ </text>                                                                      │

02:07:28 #4085 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4086 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:28 #4087 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4088 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4089 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4090 [Debug] > │ 25.0                                                                         │

02:07:28 #4091 [Debug] > │ </text>                                                                      │

02:07:28 #4092 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4093 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:28 #4094 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4095 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4096 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4097 [Debug] > │ 30.0                                                                         │

02:07:28 #4098 [Debug] > │ </text>                                                                      │

02:07:28 #4099 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4100 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:28 #4101 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4102 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4103 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4104 [Debug] > │ 35.0                                                                         │

02:07:28 #4105 [Debug] > │ </text>                                                                      │

02:07:28 #4106 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4107 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:28 #4108 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4109 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4110 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4111 [Debug] > │ 40.0                                                                         │

02:07:28 #4112 [Debug] > │ </text>                                                                      │

02:07:28 #4113 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4114 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:28 #4115 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:28 #4116 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4117 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4118 [Debug] > │ 45.0                                                                         │

02:07:28 #4119 [Debug] > │ </text>                                                                      │

02:07:28 #4120 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4121 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:28 #4122 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4123 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:28 #4124 [Debug] > │ <text x="622" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:28 #4125 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4126 [Debug] > │ 0.0                                                                          │

02:07:28 #4127 [Debug] > │ </text>                                                                      │

02:07:28 #4128 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4129 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:28 #4130 [Debug] > │ <text x="622" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:28 #4131 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4132 [Debug] > │ 50.0                                                                         │

02:07:28 #4133 [Debug] > │ </text>                                                                      │

02:07:28 #4134 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4135 [Debug] > │ points="585,361 590,361 "/>                                                  │

02:07:28 #4136 [Debug] > │ <text x="595" y="308" dy="0.5ex" text-anchor="start"                         │

02:07:28 #4137 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4138 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4139 [Debug] > │ 100.0                                                                        │

02:07:28 #4140 [Debug] > │ </text>                                                                      │

02:07:28 #4141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4142 [Debug] > │ points="585,308 590,308 "/>                                                  │

02:07:28 #4143 [Debug] > │ <text x="595" y="254" dy="0.5ex" text-anchor="start"                         │

02:07:28 #4144 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4145 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4146 [Debug] > │ 150.0                                                                        │

02:07:28 #4147 [Debug] > │ </text>                                                                      │

02:07:28 #4148 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4149 [Debug] > │ points="585,254 590,254 "/>                                                  │

02:07:28 #4150 [Debug] > │ <text x="595" y="201" dy="0.5ex" text-anchor="start"                         │

02:07:28 #4151 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4152 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4153 [Debug] > │ 200.0                                                                        │

02:07:28 #4154 [Debug] > │ </text>                                                                      │

02:07:28 #4155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4156 [Debug] > │ points="585,201 590,201 "/>                                                  │

02:07:28 #4157 [Debug] > │ <text x="595" y="147" dy="0.5ex" text-anchor="start"                         │

02:07:28 #4158 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4159 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4160 [Debug] > │ 250.0                                                                        │

02:07:28 #4161 [Debug] > │ </text>                                                                      │

02:07:28 #4162 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4163 [Debug] > │ points="585,147 590,147 "/>                                                  │

02:07:28 #4164 [Debug] > │ <text x="595" y="94" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:07:28 #4165 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:28 #4166 [Debug] > │ 300.0                                                                        │

02:07:28 #4167 [Debug] > │ </text>                                                                      │

02:07:28 #4168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:28 #4169 [Debug] > │ points="585,94 590,94 "/>                                                    │

02:07:28 #4170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:28 #4171 [Debug] > │ points="69,415 79,415 89,415 99,415 109,415 119,415 129,414 139,413 149,412  │

02:07:28 #4172 [Debug] > │ 159,410 169,408 179,405 189,401 199,397 209,393 219,388 229,382 239,377      │

02:07:28 #4173 [Debug] > │ 249,372 259,366 269,361 279,356 289,350 299,345 309,340 319,334 329,329      │

02:07:28 #4174 [Debug] > │ 339,322 349,316 359,308 369,301 379,292 389,284 399,274 409,264 419,254      │

02:07:28 #4175 [Debug] > │ 429,243 439,232 449,221 459,210 469,199 479,189 489,178 499,167 509,157      │

02:07:28 #4176 [Debug] > │ 519,146 529,135 539,123 549,111 559,99 569,85 "/>                            │

02:07:28 #4177 [Debug] > │ <rect x="421" y="235" width="159" height="30" opacity="1" fill="none"        │

02:07:28 #4178 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:28 #4179 [Debug] > │ <text x="461" y="245" dy="0.76em" text-anchor="start"                        │

02:07:28 #4180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:28 #4181 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:28 #4182 [Debug] > │ position of bike (m)                                                         │

02:07:28 #4183 [Debug] > │ </text>                                                                      │

02:07:28 #4184 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:28 #4185 [Debug] > │ points="431,250 451,250 "/>                                                  │

02:07:28 #4186 [Debug] > │ </svg>                                                                       │

02:07:28 #4187 [Debug] > │                                                                              │

02:07:28 #4188 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:28 #4189 [Debug] >

02:07:28 #4190 [Debug] > ╭─[ 846.05ms - stdout ]────────────────────────────────────────────────────────╮

02:07:28 #4191 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:28 #4192 [Debug] > │ and UH0 =                                                                    │

02:07:28 #4193 [Debug] > │     | UH0_0 of float * UH0                                                   │

02:07:28 #4194 [Debug] > │     | UH0_1                                                                  │

02:07:28 #4195 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:28 #4196 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:28 #4197 [Debug] > │     let v2 : bool = v1 < 51                                                  │

02:07:28 #4198 [Debug] > │     v2                                                                       │

02:07:28 #4199 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:28 #4200 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:28 #4201 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:28 #4202 [Debug] > │     v3                                                                       │

02:07:28 #4203 [Debug] > │ and method3 (v0 : float, v1 : float) : UH0 =                                 │

02:07:28 #4204 [Debug] > │     let v2 : bool = v1 < v0                                                  │

02:07:28 #4205 [Debug] > │     if v2 then                                                               │

02:07:28 #4206 [Debug] > │         let v3 : float = 0.1 * v1                                            │

02:07:28 #4207 [Debug] > │         let v4 : float = 0.05 + v3                                           │

02:07:28 #4208 [Debug] > │         let v5 : float = v1 + 1.0                                            │

02:07:28 #4209 [Debug] > │         let v6 : UH0 = method3(v0, v5)                                       │

02:07:28 #4210 [Debug] > │         UH0_0(v4, v6)                                                        │

02:07:28 #4211 [Debug] > │     else                                                                     │

02:07:28 #4212 [Debug] > │         UH0_1                                                                │

02:07:28 #4213 [Debug] > │ and method5 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:07:28 #4214 [Debug] > │     match v0 with                                                            │

02:07:28 #4215 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:07:28 #4216 [Debug] > │         let v4 : UH0 = method5(v3, v1)                                       │

02:07:28 #4217 [Debug] > │         let v5 : float = v2 / 20.0                                           │

02:07:28 #4218 [Debug] > │         let v6 : int32 = int32 v5                                            │

02:07:28 #4219 [Debug] > │         let v7 : float = float v6                                            │

02:07:28 #4220 [Debug] > │         let v8 : float = v7 * 20.0                                           │

02:07:28 #4221 [Debug] > │         let v9 : float = v2 - v8                                             │

02:07:28 #4222 [Debug] > │         let v10 : bool = v9 > 0.0                                            │

02:07:28 #4223 [Debug] > │         let v12 : bool =                                                     │

02:07:28 #4224 [Debug] > │             if v10 then                                                      │

02:07:28 #4225 [Debug] > │                 let v11 : bool = v9 < 10.0                                   │

02:07:28 #4226 [Debug] > │                 v11                                                          │

02:07:28 #4227 [Debug] > │             else                                                             │

02:07:28 #4228 [Debug] > │                 false                                                        │

02:07:28 #4229 [Debug] > │         let v13 : float =                                                    │

02:07:28 #4230 [Debug] > │             if v12 then                                                      │

02:07:28 #4231 [Debug] > │                 10.0                                                         │

02:07:28 #4232 [Debug] > │             else                                                             │

02:07:28 #4233 [Debug] > │                 0.0                                                          │

02:07:28 #4234 [Debug] > │         let v14 : float = v13 / 20.0                                         │

02:07:28 #4235 [Debug] > │         let v15 : float = 0.1 * v14                                          │

02:07:28 #4236 [Debug] > │         UH0_0(v15, v4)                                                       │

02:07:28 #4237 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:28 #4238 [Debug] > │         v1                                                                   │

02:07:28 #4239 [Debug] > │ and method6 (v0 : UH0, v1 : float) : float =                                 │

02:07:28 #4240 [Debug] > │     match v0 with                                                            │

02:07:28 #4241 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:07:28 #4242 [Debug] > │         let v4 : float = v1 + v2                                             │

02:07:28 #4243 [Debug] > │         method6(v3, v4)                                                      │

02:07:28 #4244 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:28 #4245 [Debug] > │         v1                                                                   │

02:07:28 #4246 [Debug] > │ and method4 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:07:28 #4247 [Debug] > │     match v0 with                                                            │

02:07:28 #4248 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:07:28 #4249 [Debug] > │         let v4 : UH0 = method4(v3, v1)                                       │

02:07:28 #4250 [Debug] > │         let v5 : float = v2 - 0.05                                           │

02:07:28 #4251 [Debug] > │         let v6 : float = v5 - 0.05                                           │

02:07:28 #4252 [Debug] > │         let v7 : float = v6 / 0.1                                            │

02:07:28 #4253 [Debug] > │         let v8 : float = v7 + 1.0                                            │

02:07:28 #4254 [Debug] > │         let v9 : float = 0.0                                                 │

02:07:28 #4255 [Debug] > │         let v10 : UH0 = method3(v8, v9)                                      │

02:07:28 #4256 [Debug] > │         let v11 : UH0 = UH0_1                                                │

02:07:28 #4257 [Debug] > │         let v12 : UH0 = method5(v10, v11)                                    │

02:07:28 #4258 [Debug] > │         let v13 : float = 0.0                                                │

02:07:28 #4259 [Debug] > │         let v14 : float = method6(v12, v13)                                  │

02:07:28 #4260 [Debug] > │         let v15 : float = 0.1 * v14                                          │

02:07:28 #4261 [Debug] > │         UH0_0(v15, v4)                                                       │

02:07:28 #4262 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:28 #4263 [Debug] > │         v1                                                                   │

02:07:28 #4264 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:28 #4265 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:28 #4266 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (51)                       │

02:07:28 #4267 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:28 #4268 [Debug] > │     while method1(v1) do                                                     │

02:07:28 #4269 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:28 #4270 [Debug] > │         let v4 : float = float v3                                            │

02:07:28 #4271 [Debug] > │         let v5 : float = -5.0 + v4                                           │

02:07:28 #4272 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:28 #4273 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:28 #4274 [Debug] > │         v1.l0 <- v6                                                          │

02:07:28 #4275 [Debug] > │         ()                                                                   │

02:07:28 #4276 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:28 #4277 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:28 #4278 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:28 #4279 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:28 #4280 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:28 #4281 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:28 #4282 [Debug] > │         let v13 : float = v12 - 0.05                                         │

02:07:28 #4283 [Debug] > │         let v14 : float = v13 - 0.05                                         │

02:07:28 #4284 [Debug] > │         let v15 : float = v14 / 0.1                                          │

02:07:28 #4285 [Debug] > │         let v16 : float = v15 + 1.0                                          │

02:07:28 #4286 [Debug] > │         let v17 : float = 0.0                                                │

02:07:28 #4287 [Debug] > │         let v18 : UH0 = method3(v16, v17)                                    │

02:07:28 #4288 [Debug] > │         let v19 : UH0 = UH0_1                                                │

02:07:28 #4289 [Debug] > │         let v20 : UH0 = method4(v18, v19)                                    │

02:07:28 #4290 [Debug] > │         let v21 : float = 0.0                                                │

02:07:28 #4291 [Debug] > │         let v22 : float = method6(v20, v21)                                  │

02:07:28 #4292 [Debug] > │         v8.[int v11] <- v22                                                  │

02:07:28 #4293 [Debug] > │         let v23 : int32 = v11 + 1                                            │

02:07:28 #4294 [Debug] > │         v9.l0 <- v23                                                         │

02:07:28 #4295 [Debug] > │         ()                                                                   │

02:07:28 #4296 [Debug] > │     let v24 : string = "position of bike (m)"                                │

02:07:28 #4297 [Debug] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:28 #4298 [Debug] > │ (v24, v0, v8)|]                                                              │

02:07:28 #4299 [Debug] > │     let v26 : string = "child pedaling then coasting"                        │

02:07:28 #4300 [Debug] > │     let v27 : string = "time (s)"                                            │

02:07:28 #4301 [Debug] > │     let v28 : string = ""                                                    │

02:07:28 #4302 [Debug] > │     struct (v26, v27, v28, v25)                                              │

02:07:28 #4303 [Debug] > │ method0()                                                                    │

02:07:28 #4304 [Debug] > │                                                                              │

02:07:28 #4305 [Debug] > │                                                                              │

02:07:28 #4306 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:28 #4307 [Debug] >

02:07:28 #4308 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:28 #4309 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:28 #4310 [Debug] > │ ## velocity_fv                                                               │

02:07:28 #4311 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:28 #4312 [Debug] >

02:07:28 #4313 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:28 #4314 [Debug] > inl newton_second_v m fs v0 =

02:07:28 #4315 [Debug] >     fs |> listm.map (fun f => f v0) |> listm'.sum |> fun x => x / m

02:07:28 #4316 [Debug] >

02:07:28 #4317 [Debug] > inl update_velocity dt m fs v0 =

02:07:28 #4318 [Debug] >     v0 + newton_second_v m fs v0 * dt

02:07:28 #4319 [Debug] >

02:07:28 #4320 [Debug] > inl velocity_fv dt m v0 fs t =

02:07:28 #4321 [Debug] >     stream.iterate (update_velocity dt m fs) v0

02:07:28 #4322 [Debug] >     |> stream.try_item (t / dt |> math.round |> abs)

02:07:28 #4323 [Debug] >     |> optionm'.default_value 0

02:07:28 #4324 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2878-7827-7926ccf4f5fd\main.spi

02:07:28 #4325 [Debug] >

02:07:28 #4326 [Debug] > ╭─[ 178.94ms - stdout ]────────────────────────────────────────────────────────╮

02:07:28 #4327 [Debug] > │ ()                                                                           │

02:07:28 #4328 [Debug] > │                                                                              │

02:07:28 #4329 [Debug] > │                                                                              │

02:07:28 #4330 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:28 #4331 [Debug] >

02:07:28 #4332 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:28 #4333 [Debug] > inl f_air drag rho area v =

02:07:28 #4334 [Debug] >     -drag * rho * area * abs v * v / 2

02:07:29 #4335 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2896-9625-996165b7e077\main.spi

02:07:29 #4336 [Debug] >

02:07:29 #4337 [Debug] > ╭─[ 165.72ms - stdout ]────────────────────────────────────────────────────────╮

02:07:29 #4338 [Debug] > │ ()                                                                           │

02:07:29 #4339 [Debug] > │                                                                              │

02:07:29 #4340 [Debug] > │                                                                              │

02:07:29 #4341 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:29 #4342 [Debug] >

02:07:29 #4343 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:29 #4344 [Debug] > // // test

02:07:29 #4345 [Debug] >

02:07:29 #4346 [Debug] > inl x = am'.init_series 0 60 0.5

02:07:29 #4347 [Debug] > inl y = x |> am.map (velocity_fv 1 70 0f64 [[ fun _ => 100; f_air 2 1.225 0.6

02:07:29 #4348 [Debug] > ]])

02:07:29 #4349 [Debug] > "bike velocity", "time (s)", "", ;[[ "velocity of bike (m/s)", x, y ]]

02:07:29 #4350 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2912-1292-1b8aa1120f8f\main.spi

02:07:29 #4351 [Debug] >

02:07:29 #4352 [Debug] > ╭─[ 595.10ms - return value ]──────────────────────────────────────────────────╮

02:07:29 #4353 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:29 #4354 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:29 #4355 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:29 #4356 [Debug] > │ stroke="none"/>                                                              │

02:07:29 #4357 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:29 #4358 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4359 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4360 [Debug] > │ bike velocity                                                                │

02:07:29 #4361 [Debug] > │ </text>                                                                      │

02:07:29 #4362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:07:29 #4363 [Debug] > │ y2="75"/>                                                                    │

02:07:29 #4364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:29 #4365 [Debug] > │ y2="75"/>                                                                    │

02:07:29 #4366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:07:29 #4367 [Debug] > │ y2="75"/>                                                                    │

02:07:29 #4368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:07:29 #4369 [Debug] > │ y2="75"/>                                                                    │

02:07:29 #4370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:07:29 #4371 [Debug] > │ y2="75"/>                                                                    │

02:07:29 #4372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:07:29 #4373 [Debug] > │ x2="103" y2="75"/>                                                           │

02:07:29 #4374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:07:29 #4375 [Debug] > │ x2="111" y2="75"/>                                                           │

02:07:29 #4376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:29 #4377 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:29 #4378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:07:29 #4379 [Debug] > │ x2="128" y2="75"/>                                                           │

02:07:29 #4380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:07:29 #4381 [Debug] > │ x2="136" y2="75"/>                                                           │

02:07:29 #4382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:07:29 #4383 [Debug] > │ x2="144" y2="75"/>                                                           │

02:07:29 #4384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:07:29 #4385 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:29 #4386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:07:29 #4387 [Debug] > │ x2="161" y2="75"/>                                                           │

02:07:29 #4388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:29 #4389 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:29 #4390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:07:29 #4391 [Debug] > │ x2="178" y2="75"/>                                                           │

02:07:29 #4392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:07:29 #4393 [Debug] > │ x2="186" y2="75"/>                                                           │

02:07:29 #4394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:07:29 #4395 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:29 #4396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:07:29 #4397 [Debug] > │ x2="203" y2="75"/>                                                           │

02:07:29 #4398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:07:29 #4399 [Debug] > │ x2="211" y2="75"/>                                                           │

02:07:29 #4400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:29 #4401 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:29 #4402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:07:29 #4403 [Debug] > │ x2="228" y2="75"/>                                                           │

02:07:29 #4404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:07:29 #4405 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:29 #4406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:07:29 #4407 [Debug] > │ x2="244" y2="75"/>                                                           │

02:07:29 #4408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:07:29 #4409 [Debug] > │ x2="252" y2="75"/>                                                           │

02:07:29 #4410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:07:29 #4411 [Debug] > │ x2="261" y2="75"/>                                                           │

02:07:29 #4412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:29 #4413 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:29 #4414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:07:29 #4415 [Debug] > │ x2="277" y2="75"/>                                                           │

02:07:29 #4416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:07:29 #4417 [Debug] > │ x2="286" y2="75"/>                                                           │

02:07:29 #4418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:07:29 #4419 [Debug] > │ x2="294" y2="75"/>                                                           │

02:07:29 #4420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:07:29 #4421 [Debug] > │ x2="302" y2="75"/>                                                           │

02:07:29 #4422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:07:29 #4423 [Debug] > │ x2="311" y2="75"/>                                                           │

02:07:29 #4424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:29 #4425 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:29 #4426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:07:29 #4427 [Debug] > │ x2="327" y2="75"/>                                                           │

02:07:29 #4428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:07:29 #4429 [Debug] > │ x2="336" y2="75"/>                                                           │

02:07:29 #4430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:07:29 #4431 [Debug] > │ x2="344" y2="75"/>                                                           │

02:07:29 #4432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:07:29 #4433 [Debug] > │ x2="352" y2="75"/>                                                           │

02:07:29 #4434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:07:29 #4435 [Debug] > │ x2="361" y2="75"/>                                                           │

02:07:29 #4436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:29 #4437 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:29 #4438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:07:29 #4439 [Debug] > │ x2="377" y2="75"/>                                                           │

02:07:29 #4440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:07:29 #4441 [Debug] > │ x2="386" y2="75"/>                                                           │

02:07:29 #4442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:07:29 #4443 [Debug] > │ x2="394" y2="75"/>                                                           │

02:07:29 #4444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:07:29 #4445 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:29 #4446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:07:29 #4447 [Debug] > │ x2="410" y2="75"/>                                                           │

02:07:29 #4448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:29 #4449 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:29 #4450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:07:29 #4451 [Debug] > │ x2="427" y2="75"/>                                                           │

02:07:29 #4452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:07:29 #4453 [Debug] > │ x2="435" y2="75"/>                                                           │

02:07:29 #4454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:07:29 #4455 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:29 #4456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:07:29 #4457 [Debug] > │ x2="452" y2="75"/>                                                           │

02:07:29 #4458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:07:29 #4459 [Debug] > │ x2="460" y2="75"/>                                                           │

02:07:29 #4460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:29 #4461 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:29 #4462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:07:29 #4463 [Debug] > │ x2="477" y2="75"/>                                                           │

02:07:29 #4464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:07:29 #4465 [Debug] > │ x2="485" y2="75"/>                                                           │

02:07:29 #4466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:07:29 #4467 [Debug] > │ x2="494" y2="75"/>                                                           │

02:07:29 #4468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:07:29 #4469 [Debug] > │ x2="502" y2="75"/>                                                           │

02:07:29 #4470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:07:29 #4471 [Debug] > │ x2="510" y2="75"/>                                                           │

02:07:29 #4472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:29 #4473 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:29 #4474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:07:29 #4475 [Debug] > │ x2="527" y2="75"/>                                                           │

02:07:29 #4476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:07:29 #4477 [Debug] > │ x2="535" y2="75"/>                                                           │

02:07:29 #4478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:07:29 #4479 [Debug] > │ x2="544" y2="75"/>                                                           │

02:07:29 #4480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:07:29 #4481 [Debug] > │ x2="552" y2="75"/>                                                           │

02:07:29 #4482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:07:29 #4483 [Debug] > │ x2="560" y2="75"/>                                                           │

02:07:29 #4484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:29 #4485 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:29 #4486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:07:29 #4487 [Debug] > │ x2="577" y2="75"/>                                                           │

02:07:29 #4488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:29 #4489 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:29 #4490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:07:29 #4491 [Debug] > │ x2="584" y2="401"/>                                                          │

02:07:29 #4492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:07:29 #4493 [Debug] > │ x2="584" y2="386"/>                                                          │

02:07:29 #4494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:07:29 #4495 [Debug] > │ x2="584" y2="372"/>                                                          │

02:07:29 #4496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="358"         │

02:07:29 #4497 [Debug] > │ x2="584" y2="358"/>                                                          │

02:07:29 #4498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:07:29 #4499 [Debug] > │ x2="584" y2="344"/>                                                          │

02:07:29 #4500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:07:29 #4501 [Debug] > │ x2="584" y2="330"/>                                                          │

02:07:29 #4502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:07:29 #4503 [Debug] > │ x2="584" y2="316"/>                                                          │

02:07:29 #4504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:07:29 #4505 [Debug] > │ x2="584" y2="302"/>                                                          │

02:07:29 #4506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:07:29 #4507 [Debug] > │ x2="584" y2="288"/>                                                          │

02:07:29 #4508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:07:29 #4509 [Debug] > │ x2="584" y2="273"/>                                                          │

02:07:29 #4510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="259"         │

02:07:29 #4511 [Debug] > │ x2="584" y2="259"/>                                                          │

02:07:29 #4512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="245"         │

02:07:29 #4513 [Debug] > │ x2="584" y2="245"/>                                                          │

02:07:29 #4514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:07:29 #4515 [Debug] > │ x2="584" y2="231"/>                                                          │

02:07:29 #4516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:07:29 #4517 [Debug] > │ x2="584" y2="217"/>                                                          │

02:07:29 #4518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="203"         │

02:07:29 #4519 [Debug] > │ x2="584" y2="203"/>                                                          │

02:07:29 #4520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:07:29 #4521 [Debug] > │ x2="584" y2="189"/>                                                          │

02:07:29 #4522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:07:29 #4523 [Debug] > │ x2="584" y2="175"/>                                                          │

02:07:29 #4524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:07:29 #4525 [Debug] > │ x2="584" y2="161"/>                                                          │

02:07:29 #4526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="146"         │

02:07:29 #4527 [Debug] > │ x2="584" y2="146"/>                                                          │

02:07:29 #4528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:07:29 #4529 [Debug] > │ x2="584" y2="132"/>                                                          │

02:07:29 #4530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:07:29 #4531 [Debug] > │ x2="584" y2="118"/>                                                          │

02:07:29 #4532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:07:29 #4533 [Debug] > │ x2="584" y2="104"/>                                                          │

02:07:29 #4534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="90" x2="584" │

02:07:29 #4535 [Debug] > │ y2="90"/>                                                                    │

02:07:29 #4536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="76" x2="584" │

02:07:29 #4537 [Debug] > │ y2="76"/>                                                                    │

02:07:29 #4538 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:29 #4539 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4540 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4541 [Debug] > │ time (s)                                                                     │

02:07:29 #4542 [Debug] > │ </text>                                                                      │

02:07:29 #4543 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:29 #4544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4545 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:29 #4546 [Debug] > │                                                                              │

02:07:29 #4547 [Debug] > │ </text>                                                                      │

02:07:29 #4548 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:29 #4549 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4550 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4551 [Debug] > │ time (s)                                                                     │

02:07:29 #4552 [Debug] > │ </text>                                                                      │

02:07:29 #4553 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4554 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4555 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:29 #4556 [Debug] > │                                                                              │

02:07:29 #4557 [Debug] > │ </text>                                                                      │

02:07:29 #4558 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:29 #4559 [Debug] > │ y2="75"/>                                                                    │

02:07:29 #4560 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="111" y1="424"        │

02:07:29 #4561 [Debug] > │ x2="111" y2="75"/>                                                           │

02:07:29 #4562 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="153" y1="424"        │

02:07:29 #4563 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:29 #4564 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="194" y1="424"        │

02:07:29 #4565 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:29 #4566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:07:29 #4567 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:29 #4568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="277" y1="424"        │

02:07:29 #4569 [Debug] > │ x2="277" y2="75"/>                                                           │

02:07:29 #4570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:29 #4571 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:29 #4572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="361" y1="424"        │

02:07:29 #4573 [Debug] > │ x2="361" y2="75"/>                                                           │

02:07:29 #4574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:07:29 #4575 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:29 #4576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="444" y1="424"        │

02:07:29 #4577 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:29 #4578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:07:29 #4579 [Debug] > │ x2="485" y2="75"/>                                                           │

02:07:29 #4580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:07:29 #4581 [Debug] > │ x2="527" y2="75"/>                                                           │

02:07:29 #4582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:29 #4583 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:29 #4584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:29 #4585 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:29 #4586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="358"         │

02:07:29 #4587 [Debug] > │ x2="584" y2="358"/>                                                          │

02:07:29 #4588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="302"         │

02:07:29 #4589 [Debug] > │ x2="584" y2="302"/>                                                          │

02:07:29 #4590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="245"         │

02:07:29 #4591 [Debug] > │ x2="584" y2="245"/>                                                          │

02:07:29 #4592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="189"         │

02:07:29 #4593 [Debug] > │ x2="584" y2="189"/>                                                          │

02:07:29 #4594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="132"         │

02:07:29 #4595 [Debug] > │ x2="584" y2="132"/>                                                          │

02:07:29 #4596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="76" x2="584" │

02:07:29 #4597 [Debug] > │ y2="76"/>                                                                    │

02:07:29 #4598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4599 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:29 #4600 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:29 #4601 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4602 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4603 [Debug] > │ 0.0                                                                          │

02:07:29 #4604 [Debug] > │ </text>                                                                      │

02:07:29 #4605 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4606 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:29 #4607 [Debug] > │ <text x="111" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4609 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4610 [Debug] > │ 5.0                                                                          │

02:07:29 #4611 [Debug] > │ </text>                                                                      │

02:07:29 #4612 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4613 [Debug] > │ points="111,69 111,74 "/>                                                    │

02:07:29 #4614 [Debug] > │ <text x="153" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4615 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4616 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4617 [Debug] > │ 10.0                                                                         │

02:07:29 #4618 [Debug] > │ </text>                                                                      │

02:07:29 #4619 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4620 [Debug] > │ points="153,69 153,74 "/>                                                    │

02:07:29 #4621 [Debug] > │ <text x="194" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4622 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4623 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4624 [Debug] > │ 15.0                                                                         │

02:07:29 #4625 [Debug] > │ </text>                                                                      │

02:07:29 #4626 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4627 [Debug] > │ points="194,69 194,74 "/>                                                    │

02:07:29 #4628 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4629 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4630 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4631 [Debug] > │ 20.0                                                                         │

02:07:29 #4632 [Debug] > │ </text>                                                                      │

02:07:29 #4633 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4634 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:07:29 #4635 [Debug] > │ <text x="277" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4636 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4637 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4638 [Debug] > │ 25.0                                                                         │

02:07:29 #4639 [Debug] > │ </text>                                                                      │

02:07:29 #4640 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4641 [Debug] > │ points="277,69 277,74 "/>                                                    │

02:07:29 #4642 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4643 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4644 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4645 [Debug] > │ 30.0                                                                         │

02:07:29 #4646 [Debug] > │ </text>                                                                      │

02:07:29 #4647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4648 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:29 #4649 [Debug] > │ <text x="361" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4650 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4651 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4652 [Debug] > │ 35.0                                                                         │

02:07:29 #4653 [Debug] > │ </text>                                                                      │

02:07:29 #4654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4655 [Debug] > │ points="361,69 361,74 "/>                                                    │

02:07:29 #4656 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4657 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4658 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4659 [Debug] > │ 40.0                                                                         │

02:07:29 #4660 [Debug] > │ </text>                                                                      │

02:07:29 #4661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4662 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:07:29 #4663 [Debug] > │ <text x="444" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4664 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4665 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4666 [Debug] > │ 45.0                                                                         │

02:07:29 #4667 [Debug] > │ </text>                                                                      │

02:07:29 #4668 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4669 [Debug] > │ points="444,69 444,74 "/>                                                    │

02:07:29 #4670 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4671 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4672 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4673 [Debug] > │ 50.0                                                                         │

02:07:29 #4674 [Debug] > │ </text>                                                                      │

02:07:29 #4675 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4676 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:07:29 #4677 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4678 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4679 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4680 [Debug] > │ 55.0                                                                         │

02:07:29 #4681 [Debug] > │ </text>                                                                      │

02:07:29 #4682 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4683 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:07:29 #4684 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:29 #4685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4686 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4687 [Debug] > │ 60.0                                                                         │

02:07:29 #4688 [Debug] > │ </text>                                                                      │

02:07:29 #4689 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4690 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:29 #4691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4692 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:29 #4693 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:29 #4694 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4695 [Debug] > │ 0.0                                                                          │

02:07:29 #4696 [Debug] > │ </text>                                                                      │

02:07:29 #4697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4698 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:29 #4699 [Debug] > │ <text x="45" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:29 #4700 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4701 [Debug] > │ 2.0                                                                          │

02:07:29 #4702 [Debug] > │ </text>                                                                      │

02:07:29 #4703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4704 [Debug] > │ points="49,358 54,358 "/>                                                    │

02:07:29 #4705 [Debug] > │ <text x="45" y="302" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:29 #4706 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4707 [Debug] > │ 4.0                                                                          │

02:07:29 #4708 [Debug] > │ </text>                                                                      │

02:07:29 #4709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4710 [Debug] > │ points="49,302 54,302 "/>                                                    │

02:07:29 #4711 [Debug] > │ <text x="45" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:29 #4712 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4713 [Debug] > │ 6.0                                                                          │

02:07:29 #4714 [Debug] > │ </text>                                                                      │

02:07:29 #4715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4716 [Debug] > │ points="49,245 54,245 "/>                                                    │

02:07:29 #4717 [Debug] > │ <text x="45" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:29 #4718 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4719 [Debug] > │ 8.0                                                                          │

02:07:29 #4720 [Debug] > │ </text>                                                                      │

02:07:29 #4721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4722 [Debug] > │ points="49,189 54,189 "/>                                                    │

02:07:29 #4723 [Debug] > │ <text x="45" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:29 #4724 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4725 [Debug] > │ 10.0                                                                         │

02:07:29 #4726 [Debug] > │ </text>                                                                      │

02:07:29 #4727 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4728 [Debug] > │ points="49,132 54,132 "/>                                                    │

02:07:29 #4729 [Debug] > │ <text x="45" y="76" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:29 #4730 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4731 [Debug] > │ 12.0                                                                         │

02:07:29 #4732 [Debug] > │ </text>                                                                      │

02:07:29 #4733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4734 [Debug] > │ points="49,76 54,76 "/>                                                      │

02:07:29 #4735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4736 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:29 #4737 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:29 #4738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4739 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4740 [Debug] > │ 0.0                                                                          │

02:07:29 #4741 [Debug] > │ </text>                                                                      │

02:07:29 #4742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4743 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:29 #4744 [Debug] > │ <text x="111" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4746 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4747 [Debug] > │ 5.0                                                                          │

02:07:29 #4748 [Debug] > │ </text>                                                                      │

02:07:29 #4749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4750 [Debug] > │ points="111,425 111,430 "/>                                                  │

02:07:29 #4751 [Debug] > │ <text x="153" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4753 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4754 [Debug] > │ 10.0                                                                         │

02:07:29 #4755 [Debug] > │ </text>                                                                      │

02:07:29 #4756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4757 [Debug] > │ points="153,425 153,430 "/>                                                  │

02:07:29 #4758 [Debug] > │ <text x="194" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4760 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4761 [Debug] > │ 15.0                                                                         │

02:07:29 #4762 [Debug] > │ </text>                                                                      │

02:07:29 #4763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4764 [Debug] > │ points="194,425 194,430 "/>                                                  │

02:07:29 #4765 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4767 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4768 [Debug] > │ 20.0                                                                         │

02:07:29 #4769 [Debug] > │ </text>                                                                      │

02:07:29 #4770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4771 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:07:29 #4772 [Debug] > │ <text x="277" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4774 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4775 [Debug] > │ 25.0                                                                         │

02:07:29 #4776 [Debug] > │ </text>                                                                      │

02:07:29 #4777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4778 [Debug] > │ points="277,425 277,430 "/>                                                  │

02:07:29 #4779 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4781 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4782 [Debug] > │ 30.0                                                                         │

02:07:29 #4783 [Debug] > │ </text>                                                                      │

02:07:29 #4784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4785 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:29 #4786 [Debug] > │ <text x="361" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4788 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4789 [Debug] > │ 35.0                                                                         │

02:07:29 #4790 [Debug] > │ </text>                                                                      │

02:07:29 #4791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4792 [Debug] > │ points="361,425 361,430 "/>                                                  │

02:07:29 #4793 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4795 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4796 [Debug] > │ 40.0                                                                         │

02:07:29 #4797 [Debug] > │ </text>                                                                      │

02:07:29 #4798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4799 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:07:29 #4800 [Debug] > │ <text x="444" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4802 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4803 [Debug] > │ 45.0                                                                         │

02:07:29 #4804 [Debug] > │ </text>                                                                      │

02:07:29 #4805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4806 [Debug] > │ points="444,425 444,430 "/>                                                  │

02:07:29 #4807 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4809 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4810 [Debug] > │ 50.0                                                                         │

02:07:29 #4811 [Debug] > │ </text>                                                                      │

02:07:29 #4812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4813 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:07:29 #4814 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4816 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4817 [Debug] > │ 55.0                                                                         │

02:07:29 #4818 [Debug] > │ </text>                                                                      │

02:07:29 #4819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4820 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:07:29 #4821 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:29 #4822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:29 #4823 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:29 #4824 [Debug] > │ 60.0                                                                         │

02:07:29 #4825 [Debug] > │ </text>                                                                      │

02:07:29 #4826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4827 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:29 #4828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4829 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:29 #4830 [Debug] > │ <text x="617" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:29 #4831 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4832 [Debug] > │ 0.0                                                                          │

02:07:29 #4833 [Debug] > │ </text>                                                                      │

02:07:29 #4834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4835 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:29 #4836 [Debug] > │ <text x="617" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:29 #4837 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4838 [Debug] > │ 2.0                                                                          │

02:07:29 #4839 [Debug] > │ </text>                                                                      │

02:07:29 #4840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4841 [Debug] > │ points="585,358 590,358 "/>                                                  │

02:07:29 #4842 [Debug] > │ <text x="617" y="302" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:29 #4843 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4844 [Debug] > │ 4.0                                                                          │

02:07:29 #4845 [Debug] > │ </text>                                                                      │

02:07:29 #4846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:29 #4847 [Debug] > │ points="585,302 590,302 "/>                                                  │

02:07:29 #4848 [Debug] > │ <text x="617" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:29 #4849 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:29 #4850 [Debug] > │ 6.0                                                                          │

02:07:29 #4851 [Debug] > │ </text>                                                                      │

02:07:30 #4852 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:30 #4853 [Debug] > │ points="585,245 590,245 "/>                                                  │

02:07:30 #4854 [Debug] > │ <text x="617" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:30 #4855 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:30 #4856 [Debug] > │ 8.0                                                                          │

02:07:30 #4857 [Debug] > │ </text>                                                                      │

02:07:30 #4858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:30 #4859 [Debug] > │ points="585,189 590,189 "/>                                                  │

02:07:30 #4860 [Debug] > │ <text x="595" y="132" dy="0.5ex" text-anchor="start"                         │

02:07:30 #4861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #4862 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:30 #4863 [Debug] > │ 10.0                                                                         │

02:07:30 #4864 [Debug] > │ </text>                                                                      │

02:07:30 #4865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:30 #4866 [Debug] > │ points="585,132 590,132 "/>                                                  │

02:07:30 #4867 [Debug] > │ <text x="595" y="76" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:07:30 #4868 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:30 #4869 [Debug] > │ 12.0                                                                         │

02:07:30 #4870 [Debug] > │ </text>                                                                      │

02:07:30 #4871 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:30 #4872 [Debug] > │ points="585,76 590,76 "/>                                                    │

02:07:30 #4873 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:30 #4874 [Debug] > │ points="69,415 74,415 78,374 82,335 86,335 90,335 94,297 99,261 103,261      │

02:07:30 #4875 [Debug] > │ 107,261 111,230 115,202 119,202 124,202 128,179 132,159 136,159 140,159      │

02:07:30 #4876 [Debug] > │ 144,143 148,130 153,130 157,130 161,120 165,112 169,112 173,112 178,106      │

02:07:30 #4877 [Debug] > │ 182,101 186,101 190,101 194,97 198,94 203,94 207,94 211,92 215,91 219,91     │

02:07:30 #4878 [Debug] > │ 223,91 228,89 232,88 236,88 240,88 244,88 248,87 252,87 257,87 261,87 265,86 │

02:07:30 #4879 [Debug] > │ 269,86 273,86 277,86 282,86 286,86 290,86 294,86 298,86 302,86 307,86 311,86 │

02:07:30 #4880 [Debug] > │ 315,86 319,86 323,86 327,86 331,85 336,85 340,85 344,85 348,85 352,85 356,85 │

02:07:30 #4881 [Debug] > │ 361,85 365,85 369,85 373,85 377,85 381,85 386,85 390,85 394,85 398,85 402,85 │

02:07:30 #4882 [Debug] > │ 406,85 410,85 415,85 419,85 423,85 427,85 431,85 435,85 440,85 444,85 448,85 │

02:07:30 #4883 [Debug] > │ 452,85 456,85 460,85 465,85 469,85 473,85 477,85 481,85 485,85 490,85 494,85 │

02:07:30 #4884 [Debug] > │ 498,85 502,85 506,85 510,85 514,85 519,85 523,85 527,85 531,85 535,85 539,85 │

02:07:30 #4885 [Debug] > │ 544,85 548,85 552,85 556,85 560,85 564,85 569,85 "/>                         │

02:07:30 #4886 [Debug] > │ <rect x="410" y="235" width="170" height="30" opacity="1" fill="none"        │

02:07:30 #4887 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:30 #4888 [Debug] > │ <text x="450" y="245" dy="0.76em" text-anchor="start"                        │

02:07:30 #4889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #4890 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:30 #4891 [Debug] > │ velocity of bike (m/s)                                                       │

02:07:30 #4892 [Debug] > │ </text>                                                                      │

02:07:30 #4893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:30 #4894 [Debug] > │ points="420,250 440,250 "/>                                                  │

02:07:30 #4895 [Debug] > │ </svg>                                                                       │

02:07:30 #4896 [Debug] > │                                                                              │

02:07:30 #4897 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:30 #4898 [Debug] >

02:07:30 #4899 [Debug] > ╭─[ 901.30ms - stdout ]────────────────────────────────────────────────────────╮

02:07:30 #4900 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:30 #4901 [Debug] > │ and UH0 =                                                                    │

02:07:30 #4902 [Debug] > │     | UH0_0 of float * (unit -> UH0)                                         │

02:07:30 #4903 [Debug] > │     | UH0_1                                                                  │

02:07:30 #4904 [Debug] > │ and [<Struct>] US0 =                                                         │

02:07:30 #4905 [Debug] > │     | US0_0                                                                  │

02:07:30 #4906 [Debug] > │     | US0_1 of f1_0 : float                                                  │

02:07:30 #4907 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:30 #4908 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:30 #4909 [Debug] > │     let v2 : bool = v1 < 121                                                 │

02:07:30 #4910 [Debug] > │     v2                                                                       │

02:07:30 #4911 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:30 #4912 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:30 #4913 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:30 #4914 [Debug] > │     v3                                                                       │

02:07:30 #4915 [Debug] > │ and closure129 () () : UH0 =                                                 │

02:07:30 #4916 [Debug] > │     let v0 : (unit -> UH0) = closure129()                                    │

02:07:30 #4917 [Debug] > │     UH0_0(11.664236870396083, v0)                                            │

02:07:30 #4918 [Debug] > │ and closure128 () () : UH0 =                                                 │

02:07:30 #4919 [Debug] > │     let v0 : (unit -> UH0) = closure129()                                    │

02:07:30 #4920 [Debug] > │     UH0_0(11.664236870396081, v0)                                            │

02:07:30 #4921 [Debug] > │ and closure127 () () : UH0 =                                                 │

02:07:30 #4922 [Debug] > │     let v0 : (unit -> UH0) = closure128()                                    │

02:07:30 #4923 [Debug] > │     UH0_0(11.66423687039608, v0)                                             │

02:07:30 #4924 [Debug] > │ and closure126 () () : UH0 =                                                 │

02:07:30 #4925 [Debug] > │     let v0 : (unit -> UH0) = closure127()                                    │

02:07:30 #4926 [Debug] > │     UH0_0(11.664236870396078, v0)                                            │

02:07:30 #4927 [Debug] > │ and closure125 () () : UH0 =                                                 │

02:07:30 #4928 [Debug] > │     let v0 : (unit -> UH0) = closure126()                                    │

02:07:30 #4929 [Debug] > │     UH0_0(11.664236870396074, v0)                                            │

02:07:30 #4930 [Debug] > │ and closure124 () () : UH0 =                                                 │

02:07:30 #4931 [Debug] > │     let v0 : (unit -> UH0) = closure125()                                    │

02:07:30 #4932 [Debug] > │     UH0_0(11.66423687039607, v0)                                             │

02:07:30 #4933 [Debug] > │ and closure123 () () : UH0 =                                                 │

02:07:30 #4934 [Debug] > │     let v0 : (unit -> UH0) = closure124()                                    │

02:07:30 #4935 [Debug] > │     UH0_0(11.664236870396065, v0)                                            │

02:07:30 #4936 [Debug] > │ and closure122 () () : UH0 =                                                 │

02:07:30 #4937 [Debug] > │     let v0 : (unit -> UH0) = closure123()                                    │

02:07:30 #4938 [Debug] > │     UH0_0(11.664236870396058, v0)                                            │

02:07:30 #4939 [Debug] > │ and closure121 () () : UH0 =                                                 │

02:07:30 #4940 [Debug] > │     let v0 : (unit -> UH0) = closure122()                                    │

02:07:30 #4941 [Debug] > │     UH0_0(11.66423687039605, v0)                                             │

02:07:30 #4942 [Debug] > │ and closure120 () () : UH0 =                                                 │

02:07:30 #4943 [Debug] > │     let v0 : (unit -> UH0) = closure121()                                    │

02:07:30 #4944 [Debug] > │     UH0_0(11.664236870396037, v0)                                            │

02:07:30 #4945 [Debug] > │ and closure119 () () : UH0 =                                                 │

02:07:30 #4946 [Debug] > │     let v0 : (unit -> UH0) = closure120()                                    │

02:07:30 #4947 [Debug] > │     UH0_0(11.66423687039602, v0)                                             │

02:07:30 #4948 [Debug] > │ and closure118 () () : UH0 =                                                 │

02:07:30 #4949 [Debug] > │     let v0 : (unit -> UH0) = closure119()                                    │

02:07:30 #4950 [Debug] > │     UH0_0(11.664236870396, v0)                                               │

02:07:30 #4951 [Debug] > │ and closure117 () () : UH0 =                                                 │

02:07:30 #4952 [Debug] > │     let v0 : (unit -> UH0) = closure118()                                    │

02:07:30 #4953 [Debug] > │     UH0_0(11.664236870395971, v0)                                            │

02:07:30 #4954 [Debug] > │ and closure116 () () : UH0 =                                                 │

02:07:30 #4955 [Debug] > │     let v0 : (unit -> UH0) = closure117()                                    │

02:07:30 #4956 [Debug] > │     UH0_0(11.664236870395934, v0)                                            │

02:07:30 #4957 [Debug] > │ and closure115 () () : UH0 =                                                 │

02:07:30 #4958 [Debug] > │     let v0 : (unit -> UH0) = closure116()                                    │

02:07:30 #4959 [Debug] > │     UH0_0(11.664236870395884, v0)                                            │

02:07:30 #4960 [Debug] > │ and closure114 () () : UH0 =                                                 │

02:07:30 #4961 [Debug] > │     let v0 : (unit -> UH0) = closure115()                                    │

02:07:30 #4962 [Debug] > │     UH0_0(11.664236870395818, v0)                                            │

02:07:30 #4963 [Debug] > │ and closure113 () () : UH0 =                                                 │

02:07:30 #4964 [Debug] > │     let v0 : (unit -> UH0) = closure114()                                    │

02:07:30 #4965 [Debug] > │     UH0_0(11.664236870395731, v0)                                            │

02:07:30 #4966 [Debug] > │ and closure112 () () : UH0 =                                                 │

02:07:30 #4967 [Debug] > │     let v0 : (unit -> UH0) = closure113()                                    │

02:07:30 #4968 [Debug] > │     UH0_0(11.664236870395616, v0)                                            │

02:07:30 #4969 [Debug] > │ and closure111 () () : UH0 =                                                 │

02:07:30 #4970 [Debug] > │     let v0 : (unit -> UH0) = closure112()                                    │

02:07:30 #4971 [Debug] > │     UH0_0(11.664236870395463, v0)                                            │

02:07:30 #4972 [Debug] > │ and closure110 () () : UH0 =                                                 │

02:07:30 #4973 [Debug] > │     let v0 : (unit -> UH0) = closure111()                                    │

02:07:30 #4974 [Debug] > │     UH0_0(11.66423687039526, v0)                                             │

02:07:30 #4975 [Debug] > │ and closure109 () () : UH0 =                                                 │

02:07:30 #4976 [Debug] > │     let v0 : (unit -> UH0) = closure110()                                    │

02:07:30 #4977 [Debug] > │     UH0_0(11.664236870394992, v0)                                            │

02:07:30 #4978 [Debug] > │ and closure108 () () : UH0 =                                                 │

02:07:30 #4979 [Debug] > │     let v0 : (unit -> UH0) = closure109()                                    │

02:07:30 #4980 [Debug] > │     UH0_0(11.664236870394637, v0)                                            │

02:07:30 #4981 [Debug] > │ and closure107 () () : UH0 =                                                 │

02:07:30 #4982 [Debug] > │     let v0 : (unit -> UH0) = closure108()                                    │

02:07:30 #4983 [Debug] > │     UH0_0(11.664236870394168, v0)                                            │

02:07:30 #4984 [Debug] > │ and closure106 () () : UH0 =                                                 │

02:07:30 #4985 [Debug] > │     let v0 : (unit -> UH0) = closure107()                                    │

02:07:30 #4986 [Debug] > │     UH0_0(11.664236870393546, v0)                                            │

02:07:30 #4987 [Debug] > │ and closure105 () () : UH0 =                                                 │

02:07:30 #4988 [Debug] > │     let v0 : (unit -> UH0) = closure106()                                    │

02:07:30 #4989 [Debug] > │     UH0_0(11.664236870392722, v0)                                            │

02:07:30 #4990 [Debug] > │ and closure104 () () : UH0 =                                                 │

02:07:30 #4991 [Debug] > │     let v0 : (unit -> UH0) = closure105()                                    │

02:07:30 #4992 [Debug] > │     UH0_0(11.664236870391631, v0)                                            │

02:07:30 #4993 [Debug] > │ and closure103 () () : UH0 =                                                 │

02:07:30 #4994 [Debug] > │     let v0 : (unit -> UH0) = closure104()                                    │

02:07:30 #4995 [Debug] > │     UH0_0(11.664236870390187, v0)                                            │

02:07:30 #4996 [Debug] > │ and closure102 () () : UH0 =                                                 │

02:07:30 #4997 [Debug] > │     let v0 : (unit -> UH0) = closure103()                                    │

02:07:30 #4998 [Debug] > │     UH0_0(11.664236870388274, v0)                                            │

02:07:30 #4999 [Debug] > │ and closure101 () () : UH0 =                                                 │

02:07:30 #5000 [Debug] > │     let v0 : (unit -> UH0) = closure102()                                    │

02:07:30 #5001 [Debug] > │     UH0_0(11.66423687038574, v0)                                             │

02:07:30 #5002 [Debug] > │ and closure100 () () : UH0 =                                                 │

02:07:30 #5003 [Debug] > │     let v0 : (unit -> UH0) = closure101()                                    │

02:07:30 #5004 [Debug] > │     UH0_0(11.664236870382384, v0)                                            │

02:07:30 #5005 [Debug] > │ and closure99 () () : UH0 =                                                  │

02:07:30 #5006 [Debug] > │     let v0 : (unit -> UH0) = closure100()                                    │

02:07:30 #5007 [Debug] > │     UH0_0(11.664236870377938, v0)                                            │

02:07:30 #5008 [Debug] > │ and closure98 () () : UH0 =                                                  │

02:07:30 #5009 [Debug] > │     let v0 : (unit -> UH0) = closure99()                                     │

02:07:30 #5010 [Debug] > │     UH0_0(11.66423687037205, v0)                                             │

02:07:30 #5011 [Debug] > │ and closure97 () () : UH0 =                                                  │

02:07:30 #5012 [Debug] > │     let v0 : (unit -> UH0) = closure98()                                     │

02:07:30 #5013 [Debug] > │     UH0_0(11.664236870364254, v0)                                            │

02:07:30 #5014 [Debug] > │ and closure96 () () : UH0 =                                                  │

02:07:30 #5015 [Debug] > │     let v0 : (unit -> UH0) = closure97()                                     │

02:07:30 #5016 [Debug] > │     UH0_0(11.664236870353927, v0)                                            │

02:07:30 #5017 [Debug] > │ and closure95 () () : UH0 =                                                  │

02:07:30 #5018 [Debug] > │     let v0 : (unit -> UH0) = closure96()                                     │

02:07:30 #5019 [Debug] > │     UH0_0(11.664236870340249, v0)                                            │

02:07:30 #5020 [Debug] > │ and closure94 () () : UH0 =                                                  │

02:07:30 #5021 [Debug] > │     let v0 : (unit -> UH0) = closure95()                                     │

02:07:30 #5022 [Debug] > │     UH0_0(11.664236870322135, v0)                                            │

02:07:30 #5023 [Debug] > │ and closure93 () () : UH0 =                                                  │

02:07:30 #5024 [Debug] > │     let v0 : (unit -> UH0) = closure94()                                     │

02:07:30 #5025 [Debug] > │     UH0_0(11.664236870298145, v0)                                            │

02:07:30 #5026 [Debug] > │ and closure92 () () : UH0 =                                                  │

02:07:30 #5027 [Debug] > │     let v0 : (unit -> UH0) = closure93()                                     │

02:07:30 #5028 [Debug] > │     UH0_0(11.664236870266372, v0)                                            │

02:07:30 #5029 [Debug] > │ and closure91 () () : UH0 =                                                  │

02:07:30 #5030 [Debug] > │     let v0 : (unit -> UH0) = closure92()                                     │

02:07:30 #5031 [Debug] > │     UH0_0(11.664236870224292, v0)                                            │

02:07:30 #5032 [Debug] > │ and closure90 () () : UH0 =                                                  │

02:07:30 #5033 [Debug] > │     let v0 : (unit -> UH0) = closure91()                                     │

02:07:30 #5034 [Debug] > │     UH0_0(11.66423687016856, v0)                                             │

02:07:30 #5035 [Debug] > │ and closure89 () () : UH0 =                                                  │

02:07:30 #5036 [Debug] > │     let v0 : (unit -> UH0) = closure90()                                     │

02:07:30 #5037 [Debug] > │     UH0_0(11.664236870094747, v0)                                            │

02:07:30 #5038 [Debug] > │ and closure88 () () : UH0 =                                                  │

02:07:30 #5039 [Debug] > │     let v0 : (unit -> UH0) = closure89()                                     │

02:07:30 #5040 [Debug] > │     UH0_0(11.664236869996989, v0)                                            │

02:07:30 #5041 [Debug] > │ and closure87 () () : UH0 =                                                  │

02:07:30 #5042 [Debug] > │     let v0 : (unit -> UH0) = closure88()                                     │

02:07:30 #5043 [Debug] > │     UH0_0(11.664236869867516, v0)                                            │

02:07:30 #5044 [Debug] > │ and closure86 () () : UH0 =                                                  │

02:07:30 #5045 [Debug] > │     let v0 : (unit -> UH0) = closure87()                                     │

02:07:30 #5046 [Debug] > │     UH0_0(11.66423686969604, v0)                                             │

02:07:30 #5047 [Debug] > │ and closure85 () () : UH0 =                                                  │

02:07:30 #5048 [Debug] > │     let v0 : (unit -> UH0) = closure86()                                     │

02:07:30 #5049 [Debug] > │     UH0_0(11.664236869468937, v0)                                            │

02:07:30 #5050 [Debug] > │ and closure84 () () : UH0 =                                                  │

02:07:30 #5051 [Debug] > │     let v0 : (unit -> UH0) = closure85()                                     │

02:07:30 #5052 [Debug] > │     UH0_0(11.664236869168157, v0)                                            │

02:07:30 #5053 [Debug] > │ and closure83 () () : UH0 =                                                  │

02:07:30 #5054 [Debug] > │     let v0 : (unit -> UH0) = closure84()                                     │

02:07:30 #5055 [Debug] > │     UH0_0(11.6642368687698, v0)                                              │

02:07:30 #5056 [Debug] > │ and closure82 () () : UH0 =                                                  │

02:07:30 #5057 [Debug] > │     let v0 : (unit -> UH0) = closure83()                                     │

02:07:30 #5058 [Debug] > │     UH0_0(11.664236868242211, v0)                                            │

02:07:30 #5059 [Debug] > │ and closure81 () () : UH0 =                                                  │

02:07:30 #5060 [Debug] > │     let v0 : (unit -> UH0) = closure82()                                     │

02:07:30 #5061 [Debug] > │     UH0_0(11.664236867543465, v0)                                            │

02:07:30 #5062 [Debug] > │ and closure80 () () : UH0 =                                                  │

02:07:30 #5063 [Debug] > │     let v0 : (unit -> UH0) = closure81()                                     │

02:07:30 #5064 [Debug] > │     UH0_0(11.664236866618037, v0)                                            │

02:07:30 #5065 [Debug] > │ and closure79 () () : UH0 =                                                  │

02:07:30 #5066 [Debug] > │     let v0 : (unit -> UH0) = closure80()                                     │

02:07:30 #5067 [Debug] > │     UH0_0(11.664236865392386, v0)                                            │

02:07:30 #5068 [Debug] > │ and closure78 () () : UH0 =                                                  │

02:07:30 #5069 [Debug] > │     let v0 : (unit -> UH0) = closure79()                                     │

02:07:30 #5070 [Debug] > │     UH0_0(11.664236863769117, v0)                                            │

02:07:30 #5071 [Debug] > │ and closure77 () () : UH0 =                                                  │

02:07:30 #5072 [Debug] > │     let v0 : (unit -> UH0) = closure78()                                     │

02:07:30 #5073 [Debug] > │     UH0_0(11.664236861619237, v0)                                            │

02:07:30 #5074 [Debug] > │ and closure76 () () : UH0 =                                                  │

02:07:30 #5075 [Debug] > │     let v0 : (unit -> UH0) = closure77()                                     │

02:07:30 #5076 [Debug] > │     UH0_0(11.664236858771906, v0)                                            │

02:07:30 #5077 [Debug] > │ and closure75 () () : UH0 =                                                  │

02:07:30 #5078 [Debug] > │     let v0 : (unit -> UH0) = closure76()                                     │

02:07:30 #5079 [Debug] > │     UH0_0(11.66423685500086, v0)                                             │

02:07:30 #5080 [Debug] > │ and closure74 () () : UH0 =                                                  │

02:07:30 #5081 [Debug] > │     let v0 : (unit -> UH0) = closure75()                                     │

02:07:30 #5082 [Debug] > │     UH0_0(11.664236850006436, v0)                                            │

02:07:30 #5083 [Debug] > │ and closure73 () () : UH0 =                                                  │

02:07:30 #5084 [Debug] > │     let v0 : (unit -> UH0) = closure74()                                     │

02:07:30 #5085 [Debug] > │     UH0_0(11.664236843391752, v0)                                            │

02:07:30 #5086 [Debug] > │ and closure72 () () : UH0 =                                                  │

02:07:30 #5087 [Debug] > │     let v0 : (unit -> UH0) = closure73()                                     │

02:07:30 #5088 [Debug] > │     UH0_0(11.664236834631172, v0)                                            │

02:07:30 #5089 [Debug] > │ and closure71 () () : UH0 =                                                  │

02:07:30 #5090 [Debug] > │     let v0 : (unit -> UH0) = closure72()                                     │

02:07:30 #5091 [Debug] > │     UH0_0(11.66423682302854, v0)                                             │

02:07:30 #5092 [Debug] > │ and closure70 () () : UH0 =                                                  │

02:07:30 #5093 [Debug] > │     let v0 : (unit -> UH0) = closure71()                                     │

02:07:30 #5094 [Debug] > │     UH0_0(11.664236807661855, v0)                                            │

02:07:30 #5095 [Debug] > │ and closure69 () () : UH0 =                                                  │

02:07:30 #5096 [Debug] > │     let v0 : (unit -> UH0) = closure70()                                     │

02:07:30 #5097 [Debug] > │     UH0_0(11.664236787310005, v0)                                            │

02:07:30 #5098 [Debug] > │ and closure68 () () : UH0 =                                                  │

02:07:30 #5099 [Debug] > │     let v0 : (unit -> UH0) = closure69()                                     │

02:07:30 #5100 [Debug] > │     UH0_0(11.664236760355733, v0)                                            │

02:07:30 #5101 [Debug] > │ and closure67 () () : UH0 =                                                  │

02:07:30 #5102 [Debug] > │     let v0 : (unit -> UH0) = closure68()                                     │

02:07:30 #5103 [Debug] > │     UH0_0(11.664236724657123, v0)                                            │

02:07:30 #5104 [Debug] > │ and closure66 () () : UH0 =                                                  │

02:07:30 #5105 [Debug] > │     let v0 : (unit -> UH0) = closure67()                                     │

02:07:30 #5106 [Debug] > │     UH0_0(11.66423667737739, v0)                                             │

02:07:30 #5107 [Debug] > │ and closure65 () () : UH0 =                                                  │

02:07:30 #5108 [Debug] > │     let v0 : (unit -> UH0) = closure66()                                     │

02:07:30 #5109 [Debug] > │     UH0_0(11.664236614759462, v0)                                            │

02:07:30 #5110 [Debug] > │ and closure64 () () : UH0 =                                                  │

02:07:30 #5111 [Debug] > │     let v0 : (unit -> UH0) = closure65()                                     │

02:07:30 #5112 [Debug] > │     UH0_0(11.664236531827415, v0)                                            │

02:07:30 #5113 [Debug] > │ and closure63 () () : UH0 =                                                  │

02:07:30 #5114 [Debug] > │     let v0 : (unit -> UH0) = closure64()                                     │

02:07:30 #5115 [Debug] > │     UH0_0(11.664236421991067, v0)                                            │

02:07:30 #5116 [Debug] > │ and closure62 () () : UH0 =                                                  │

02:07:30 #5117 [Debug] > │     let v0 : (unit -> UH0) = closure63()                                     │

02:07:30 #5118 [Debug] > │     UH0_0(11.664236276522294, v0)                                            │

02:07:30 #5119 [Debug] > │ and closure61 () () : UH0 =                                                  │

02:07:30 #5120 [Debug] > │     let v0 : (unit -> UH0) = closure62()                                     │

02:07:30 #5121 [Debug] > │     UH0_0(11.664236083861448, v0)                                            │

02:07:30 #5122 [Debug] > │ and closure60 () () : UH0 =                                                  │

02:07:30 #5123 [Debug] > │     let v0 : (unit -> UH0) = closure61()                                     │

02:07:30 #5124 [Debug] > │     UH0_0(11.664235828698772, v0)                                            │

02:07:30 #5125 [Debug] > │ and closure59 () () : UH0 =                                                  │

02:07:30 #5126 [Debug] > │     let v0 : (unit -> UH0) = closure60()                                     │

02:07:30 #5127 [Debug] > │     UH0_0(11.664235490757811, v0)                                            │

02:07:30 #5128 [Debug] > │ and closure58 () () : UH0 =                                                  │

02:07:30 #5129 [Debug] > │     let v0 : (unit -> UH0) = closure59()                                     │

02:07:30 #5130 [Debug] > │     UH0_0(11.664235043184158, v0)                                            │

02:07:30 #5131 [Debug] > │ and closure57 () () : UH0 =                                                  │

02:07:30 #5132 [Debug] > │     let v0 : (unit -> UH0) = closure58()                                     │

02:07:30 #5133 [Debug] > │     UH0_0(11.66423445041147, v0)                                             │

02:07:30 #5134 [Debug] > │ and closure56 () () : UH0 =                                                  │

02:07:30 #5135 [Debug] > │     let v0 : (unit -> UH0) = closure57()                                     │

02:07:30 #5136 [Debug] > │     UH0_0(11.664233665335203, v0)                                            │

02:07:30 #5137 [Debug] > │ and closure55 () () : UH0 =                                                  │

02:07:30 #5138 [Debug] > │     let v0 : (unit -> UH0) = closure56()                                     │

02:07:30 #5139 [Debug] > │     UH0_0(11.664232625569467, v0)                                            │

02:07:30 #5140 [Debug] > │ and closure54 () () : UH0 =                                                  │

02:07:30 #5141 [Debug] > │     let v0 : (unit -> UH0) = closure55()                                     │

02:07:30 #5142 [Debug] > │     UH0_0(11.664231248489562, v0)                                            │

02:07:30 #5143 [Debug] > │ and closure53 () () : UH0 =                                                  │

02:07:30 #5144 [Debug] > │     let v0 : (unit -> UH0) = closure54()                                     │

02:07:30 #5145 [Debug] > │     UH0_0(11.664229424666262, v0)                                            │

02:07:30 #5146 [Debug] > │ and closure52 () () : UH0 =                                                  │

02:07:30 #5147 [Debug] > │     let v0 : (unit -> UH0) = closure53()                                     │

02:07:30 #5148 [Debug] > │     UH0_0(11.66422700917009, v0)                                             │

02:07:30 #5149 [Debug] > │ and closure51 () () : UH0 =                                                  │

02:07:30 #5150 [Debug] > │     let v0 : (unit -> UH0) = closure52()                                     │

02:07:30 #5151 [Debug] > │     UH0_0(11.664223810054642, v0)                                            │

02:07:30 #5152 [Debug] > │ and closure50 () () : UH0 =                                                  │

02:07:30 #5153 [Debug] > │     let v0 : (unit -> UH0) = closure51()                                     │

02:07:30 #5154 [Debug] > │     UH0_0(11.664219573103773, v0)                                            │

02:07:30 #5155 [Debug] > │ and closure49 () () : UH0 =                                                  │

02:07:30 #5156 [Debug] > │     let v0 : (unit -> UH0) = closure50()                                     │

02:07:30 #5157 [Debug] > │     UH0_0(11.6642139616307, v0)                                              │

02:07:30 #5158 [Debug] > │ and closure48 () () : UH0 =                                                  │

02:07:30 #5159 [Debug] > │     let v0 : (unit -> UH0) = closure49()                                     │

02:07:30 #5160 [Debug] > │     UH0_0(11.664206529723813, v0)                                            │

02:07:30 #5161 [Debug] > │ and closure47 () () : UH0 =                                                  │

02:07:30 #5162 [Debug] > │     let v0 : (unit -> UH0) = closure48()                                     │

02:07:30 #5163 [Debug] > │     UH0_0(11.664196686813408, v0)                                            │

02:07:30 #5164 [Debug] > │ and closure46 () () : UH0 =                                                  │

02:07:30 #5165 [Debug] > │     let v0 : (unit -> UH0) = closure47()                                     │

02:07:30 #5166 [Debug] > │     UH0_0(11.664183650743945, v0)                                            │

02:07:30 #5167 [Debug] > │ and closure45 () () : UH0 =                                                  │

02:07:30 #5168 [Debug] > │     let v0 : (unit -> UH0) = closure46()                                     │

02:07:30 #5169 [Debug] > │     UH0_0(11.664166385623318, v0)                                            │

02:07:30 #5170 [Debug] > │ and closure44 () () : UH0 =                                                  │

02:07:30 #5171 [Debug] > │     let v0 : (unit -> UH0) = closure45()                                     │

02:07:30 #5172 [Debug] > │     UH0_0(11.664143519511356, v0)                                            │

02:07:30 #5173 [Debug] > │ and closure43 () () : UH0 =                                                  │

02:07:30 #5174 [Debug] > │     let v0 : (unit -> UH0) = closure44()                                     │

02:07:30 #5175 [Debug] > │     UH0_0(11.664113235408447, v0)                                            │

02:07:30 #5176 [Debug] > │ and closure42 () () : UH0 =                                                  │

02:07:30 #5177 [Debug] > │     let v0 : (unit -> UH0) = closure43()                                     │

02:07:30 #5178 [Debug] > │     UH0_0(11.66407312688485, v0)                                             │

02:07:30 #5179 [Debug] > │ and closure41 () () : UH0 =                                                  │

02:07:30 #5180 [Debug] > │     let v0 : (unit -> UH0) = closure42()                                     │

02:07:30 #5181 [Debug] > │     UH0_0(11.664020006883758, v0)                                            │

02:07:30 #5182 [Debug] > │ and closure40 () () : UH0 =                                                  │

02:07:30 #5183 [Debug] > │     let v0 : (unit -> UH0) = closure41()                                     │

02:07:30 #5184 [Debug] > │     UH0_0(11.663949654514292, v0)                                            │

02:07:30 #5185 [Debug] > │ and closure39 () () : UH0 =                                                  │

02:07:30 #5186 [Debug] > │     let v0 : (unit -> UH0) = closure40()                                     │

02:07:30 #5187 [Debug] > │     UH0_0(11.663856479730171, v0)                                            │

02:07:30 #5188 [Debug] > │ and closure38 () () : UH0 =                                                  │

02:07:30 #5189 [Debug] > │     let v0 : (unit -> UH0) = closure39()                                     │

02:07:30 #5190 [Debug] > │     UH0_0(11.663733079277343, v0)                                            │

02:07:30 #5191 [Debug] > │ and closure37 () () : UH0 =                                                  │

02:07:30 #5192 [Debug] > │     let v0 : (unit -> UH0) = closure38()                                     │

02:07:30 #5193 [Debug] > │     UH0_0(11.663569648675777, v0)                                            │

02:07:30 #5194 [Debug] > │ and closure36 () () : UH0 =                                                  │

02:07:30 #5195 [Debug] > │     let v0 : (unit -> UH0) = closure37()                                     │

02:07:30 #5196 [Debug] > │     UH0_0(11.663353203599439, v0)                                            │

02:07:30 #5197 [Debug] > │ and closure35 () () : UH0 =                                                  │

02:07:30 #5198 [Debug] > │     let v0 : (unit -> UH0) = closure36()                                     │

02:07:30 #5199 [Debug] > │     UH0_0(11.663066548940721, v0)                                            │

02:07:30 #5200 [Debug] > │ and closure34 () () : UH0 =                                                  │

02:07:30 #5201 [Debug] > │     let v0 : (unit -> UH0) = closure35()                                     │

02:07:30 #5202 [Debug] > │     UH0_0(11.662686913915445, v0)                                            │

02:07:30 #5203 [Debug] > │ and closure33 () () : UH0 =                                                  │

02:07:30 #5204 [Debug] > │     let v0 : (unit -> UH0) = closure34()                                     │

02:07:30 #5205 [Debug] > │     UH0_0(11.662184145236864, v0)                                            │

02:07:30 #5206 [Debug] > │ and closure32 () () : UH0 =                                                  │

02:07:30 #5207 [Debug] > │     let v0 : (unit -> UH0) = closure33()                                     │

02:07:30 #5208 [Debug] > │     UH0_0(11.661518315638029, v0)                                            │

02:07:30 #5209 [Debug] > │ and closure31 () () : UH0 =                                                  │

02:07:30 #5210 [Debug] > │     let v0 : (unit -> UH0) = closure32()                                     │

02:07:30 #5211 [Debug] > │     UH0_0(11.66063655920926, v0)                                             │

02:07:30 #5212 [Debug] > │ and closure30 () () : UH0 =                                                  │

02:07:30 #5213 [Debug] > │     let v0 : (unit -> UH0) = closure31()                                     │

02:07:30 #5214 [Debug] > │     UH0_0(11.659468884709733, v0)                                            │

02:07:30 #5215 [Debug] > │ and closure29 () () : UH0 =                                                  │

02:07:30 #5216 [Debug] > │     let v0 : (unit -> UH0) = closure30()                                     │

02:07:30 #5217 [Debug] > │     UH0_0(11.657922638782631, v0)                                            │

02:07:30 #5218 [Debug] > │ and closure28 () () : UH0 =                                                  │

02:07:30 #5219 [Debug] > │     let v0 : (unit -> UH0) = closure29()                                     │

02:07:30 #5220 [Debug] > │     UH0_0(11.655875187195818, v0)                                            │

02:07:30 #5221 [Debug] > │ and closure27 () () : UH0 =                                                  │

02:07:30 #5222 [Debug] > │     let v0 : (unit -> UH0) = closure28()                                     │

02:07:30 #5223 [Debug] > │     UH0_0(11.653164246713697, v0)                                            │

02:07:30 #5224 [Debug] > │ and closure26 () () : UH0 =                                                  │

02:07:30 #5225 [Debug] > │     let v0 : (unit -> UH0) = closure27()                                     │

02:07:30 #5226 [Debug] > │     UH0_0(11.64957512416459, v0)                                             │

02:07:30 #5227 [Debug] > │ and closure25 () () : UH0 =                                                  │

02:07:30 #5228 [Debug] > │     let v0 : (unit -> UH0) = closure26()                                     │

02:07:30 #5229 [Debug] > │     UH0_0(11.644823892116417, v0)                                            │

02:07:30 #5230 [Debug] > │ and closure24 () () : UH0 =                                                  │

02:07:30 #5231 [Debug] > │     let v0 : (unit -> UH0) = closure25()                                     │

02:07:30 #5232 [Debug] > │     UH0_0(11.63853524018339, v0)                                             │

02:07:30 #5233 [Debug] > │ and closure23 () () : UH0 =                                                  │

02:07:30 #5234 [Debug] > │     let v0 : (unit -> UH0) = closure24()                                     │

02:07:30 #5235 [Debug] > │     UH0_0(11.630213374558416, v0)                                            │

02:07:30 #5236 [Debug] > │ and closure22 () () : UH0 =                                                  │

02:07:30 #5237 [Debug] > │     let v0 : (unit -> UH0) = closure23()                                     │

02:07:30 #5238 [Debug] > │     UH0_0(11.619203884549703, v0)                                            │

02:07:30 #5239 [Debug] > │ and closure21 () () : UH0 =                                                  │

02:07:30 #5240 [Debug] > │     let v0 : (unit -> UH0) = closure22()                                     │

02:07:30 #5241 [Debug] > │     UH0_0(11.604643948207235, v0)                                            │

02:07:30 #5242 [Debug] > │ and closure20 () () : UH0 =                                                  │

02:07:30 #5243 [Debug] > │     let v0 : (unit -> UH0) = closure21()                                     │

02:07:30 #5244 [Debug] > │     UH0_0(11.585397618384544, v0)                                            │

02:07:30 #5245 [Debug] > │ and closure19 () () : UH0 =                                                  │

02:07:30 #5246 [Debug] > │     let v0 : (unit -> UH0) = closure20()                                     │

02:07:30 #5247 [Debug] > │     UH0_0(11.559972254267073, v0)                                            │

02:07:30 #5248 [Debug] > │ and closure18 () () : UH0 =                                                  │

02:07:30 #5249 [Debug] > │     let v0 : (unit -> UH0) = closure19()                                     │

02:07:30 #5250 [Debug] > │     UH0_0(11.526411536153837, v0)                                            │

02:07:30 #5251 [Debug] > │ and closure17 () () : UH0 =                                                  │

02:07:30 #5252 [Debug] > │     let v0 : (unit -> UH0) = closure18()                                     │

02:07:30 #5253 [Debug] > │     UH0_0(11.48216011776808, v0)                                             │

02:07:30 #5254 [Debug] > │ and closure16 () () : UH0 =                                                  │

02:07:30 #5255 [Debug] > │     let v0 : (unit -> UH0) = closure17()                                     │

02:07:30 #5256 [Debug] > │     UH0_0(11.42389519391233, v0)                                             │

02:07:30 #5257 [Debug] > │ and closure15 () () : UH0 =                                                  │

02:07:30 #5258 [Debug] > │     let v0 : (unit -> UH0) = closure16()                                     │

02:07:30 #5259 [Debug] > │     UH0_0(11.347321723441393, v0)                                            │

02:07:30 #5260 [Debug] > │ and closure14 () () : UH0 =                                                  │

02:07:30 #5261 [Debug] > │     let v0 : (unit -> UH0) = closure15()                                     │

02:07:30 #5262 [Debug] > │     UH0_0(11.246931775734161, v0)                                            │

02:07:30 #5263 [Debug] > │ and closure13 () () : UH0 =                                                  │

02:07:30 #5264 [Debug] > │     let v0 : (unit -> UH0) = closure14()                                     │

02:07:30 #5265 [Debug] > │     UH0_0(11.115736011467376, v0)                                            │

02:07:30 #5266 [Debug] > │ and closure12 () () : UH0 =                                                  │

02:07:30 #5267 [Debug] > │     let v0 : (unit -> UH0) = closure13()                                     │

02:07:30 #5268 [Debug] > │     UH0_0(10.94498876251829, v0)                                             │

02:07:30 #5269 [Debug] > │ and closure11 () () : UH0 =                                                  │

02:07:30 #5270 [Debug] > │     let v0 : (unit -> UH0) = closure12()                                     │

02:07:30 #5271 [Debug] > │     UH0_0(10.72394989903564, v0)                                             │

02:07:30 #5272 [Debug] > │ and closure10 () () : UH0 =                                                  │

02:07:30 #5273 [Debug] > │     let v0 : (unit -> UH0) = closure11()                                     │

02:07:30 #5274 [Debug] > │     UH0_0(10.439758275369812, v0)                                            │

02:07:30 #5275 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:07:30 #5276 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:07:30 #5277 [Debug] > │     UH0_0(10.077531599826058, v0)                                            │

02:07:30 #5278 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:07:30 #5279 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:07:30 #5280 [Debug] > │     UH0_0(9.62084761372258, v0)                                              │

02:07:30 #5281 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:07:30 #5282 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:07:30 #5283 [Debug] > │     UH0_0(9.052781056066443, v0)                                             │

02:07:30 #5284 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:07:30 #5285 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:07:30 #5286 [Debug] > │     UH0_0(8.357635347880503, v0)                                             │

02:07:30 #5287 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:07:30 #5288 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:07:30 #5289 [Debug] > │     UH0_0(7.523376447621674, v0)                                             │

02:07:30 #5290 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:07:30 #5291 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:07:30 #5292 [Debug] > │     UH0_0(6.544529054818572, v0)                                             │

02:07:30 #5293 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:07:30 #5294 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:07:30 #5295 [Debug] > │     UH0_0(5.424976512996006, v0)                                             │

02:07:30 #5296 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:07:30 #5297 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:07:30 #5298 [Debug] > │     UH0_0(4.179852321428571, v0)                                             │

02:07:30 #5299 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:07:30 #5300 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:07:30 #5301 [Debug] > │     UH0_0(2.835714285714286, v0)                                             │

02:07:30 #5302 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:07:30 #5303 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:07:30 #5304 [Debug] > │     UH0_0(1.4285714285714286, v0)                                            │

02:07:30 #5305 [Debug] > │ and method3 (v0 : float, v1 : UH0) : US0 =                                   │

02:07:30 #5306 [Debug] > │     match v1 with                                                            │

02:07:30 #5307 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:07:30 #5308 [Debug] > │         let v4 : bool = v0 <= 0.0                                            │

02:07:30 #5309 [Debug] > │         if v4 then                                                           │

02:07:30 #5310 [Debug] > │             US0_1(v2)                                                        │

02:07:30 #5311 [Debug] > │         else                                                                 │

02:07:30 #5312 [Debug] > │             let v6 : float = v0 - 1.0                                        │

02:07:30 #5313 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:07:30 #5314 [Debug] > │             method3(v6, v7)                                                  │

02:07:30 #5315 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:07:30 #5316 [Debug] > │         US0_0                                                                │

02:07:30 #5317 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:30 #5318 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:30 #5319 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (121)                      │

02:07:30 #5320 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:30 #5321 [Debug] > │     while method1(v1) do                                                     │

02:07:30 #5322 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:30 #5323 [Debug] > │         let v4 : float = float v3                                            │

02:07:30 #5324 [Debug] > │         let v5 : float = 0.5 * v4                                            │

02:07:30 #5325 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:30 #5326 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:30 #5327 [Debug] > │         v1.l0 <- v6                                                          │

02:07:30 #5328 [Debug] > │         ()                                                                   │

02:07:30 #5329 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:30 #5330 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:30 #5331 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:30 #5332 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:30 #5333 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:30 #5334 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:30 #5335 [Debug] > │         let v13 : float = round v12                                          │

02:07:30 #5336 [Debug] > │         let v14 : float =  -v13                                              │

02:07:30 #5337 [Debug] > │         let v15 : bool = v13 >= v14                                          │

02:07:30 #5338 [Debug] > │         let v16 : float =                                                    │

02:07:30 #5339 [Debug] > │             if v15 then                                                      │

02:07:30 #5340 [Debug] > │                 v13                                                          │

02:07:30 #5341 [Debug] > │             else                                                             │

02:07:30 #5342 [Debug] > │                 v14                                                          │

02:07:30 #5343 [Debug] > │         let v17 : float = 0.0                                                │

02:07:30 #5344 [Debug] > │         let v18 : (unit -> UH0) = closure0()                                 │

02:07:30 #5345 [Debug] > │         let v19 : UH0 = UH0_0(v17, v18)                                      │

02:07:30 #5346 [Debug] > │         let v20 : US0 = method3(v16, v19)                                    │

02:07:30 #5347 [Debug] > │         let v23 : float =                                                    │

02:07:30 #5348 [Debug] > │             match v20 with                                                   │

02:07:30 #5349 [Debug] > │             | US0_0 -> (* None *)                                            │

02:07:30 #5350 [Debug] > │                 0.0                                                          │

02:07:30 #5351 [Debug] > │             | US0_1(v21) -> (* Some *)                                       │

02:07:30 #5352 [Debug] > │                 v21                                                          │

02:07:30 #5353 [Debug] > │         v8.[int v11] <- v23                                                  │

02:07:30 #5354 [Debug] > │         let v24 : int32 = v11 + 1                                            │

02:07:30 #5355 [Debug] > │         v9.l0 <- v24                                                         │

02:07:30 #5356 [Debug] > │         ()                                                                   │

02:07:30 #5357 [Debug] > │     let v25 : string = "velocity of bike (m/s)"                              │

02:07:30 #5358 [Debug] > │     let v26 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:30 #5359 [Debug] > │ (v25, v0, v8)|]                                                              │

02:07:30 #5360 [Debug] > │     let v27 : string = "bike velocity"                                       │

02:07:30 #5361 [Debug] > │     let v28 : string = "time (s)"                                            │

02:07:30 #5362 [Debug] > │     let v29 : string = ""                                                    │

02:07:30 #5363 [Debug] > │     struct (v27, v28, v29, v26)                                              │

02:07:30 #5364 [Debug] > │ method0()                                                                    │

02:07:30 #5365 [Debug] > │                                                                              │

02:07:30 #5366 [Debug] > │                                                                              │

02:07:30 #5367 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:30 #5368 [Debug] >

02:07:30 #5369 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:30 #5370 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:30 #5371 [Debug] > │ ## velocity_ftv                                                              │

02:07:30 #5372 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:30 #5373 [Debug] >

02:07:30 #5374 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:30 #5375 [Debug] > inl newton_second_tv m fs (t, v0) =

02:07:30 #5376 [Debug] >     inl f_net = fs |> listm.map (fun f => f (t, v0)) |> listm'.sum

02:07:30 #5377 [Debug] >     inl acc = f_net / m

02:07:30 #5378 [Debug] >     1, acc

02:07:30 #5379 [Debug] >

02:07:30 #5380 [Debug] > inl update_tv dt m fs (t, v0) =

02:07:30 #5381 [Debug] >     inl dtdt, dvdt = newton_second_tv m fs (t, v0)

02:07:30 #5382 [Debug] >     t + dtdt * dt, v0 + dvdt * dt

02:07:30 #5383 [Debug] >

02:07:30 #5384 [Debug] > inl velocity_ftv dt m tv0 fs t =

02:07:30 #5385 [Debug] >     stream.iterate (join update_tv dt m fs) tv0

02:07:30 #5386 [Debug] >     |> stream.try_item (t / dt |> math.round |> abs)

02:07:30 #5387 [Debug] >     |> optionm.map snd

02:07:30 #5388 [Debug] >     |> optionm'.default_value 0

02:07:30 #5389 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3031-3142-3727328fa933\main.spi

02:07:30 #5390 [Debug] >

02:07:30 #5391 [Debug] > ╭─[ 182.95ms - stdout ]────────────────────────────────────────────────────────╮

02:07:30 #5392 [Debug] > │ ()                                                                           │

02:07:30 #5393 [Debug] > │                                                                              │

02:07:30 #5394 [Debug] > │                                                                              │

02:07:30 #5395 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:30 #5396 [Debug] >

02:07:30 #5397 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:30 #5398 [Debug] > // // test

02:07:30 #5399 [Debug] >

02:07:30 #5400 [Debug] > inl x = am'.init_series 0 100 0.1

02:07:30 #5401 [Debug] > inl y =

02:07:30 #5402 [Debug] >     x

02:07:30 #5403 [Debug] >     |> am.map (

02:07:30 #5404 [Debug] >         velocity_ftv 0.1 20 (dyn (0, 0)) [[ fun (t, _) => pedal_coast t; fun (_,

02:07:30 #5405 [Debug] > v) => f_air 2 1.225 0.5 v ]]

02:07:30 #5406 [Debug] >     )

02:07:30 #5407 [Debug] > "pedaling and coasting with air", "time (s)", "", ;[[ "velocity of bike (m/s)",

02:07:30 #5408 [Debug] > x, y ]]

02:07:30 #5409 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3049-4952-4671b6afaeec\main.spi

02:07:30 #5410 [Debug] >

02:07:30 #5411 [Debug] > ╭─[ 374.02ms - return value ]──────────────────────────────────────────────────╮

02:07:30 #5412 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:30 #5413 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:30 #5414 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:30 #5415 [Debug] > │ stroke="none"/>                                                              │

02:07:30 #5416 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:30 #5417 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #5418 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:30 #5419 [Debug] > │ pedaling and coasting with air                                               │

02:07:30 #5420 [Debug] > │ </text>                                                                      │

02:07:30 #5421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:07:30 #5422 [Debug] > │ y2="75"/>                                                                    │

02:07:30 #5423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:30 #5424 [Debug] > │ y2="75"/>                                                                    │

02:07:30 #5425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:07:30 #5426 [Debug] > │ y2="75"/>                                                                    │

02:07:30 #5427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:07:30 #5428 [Debug] > │ y2="75"/>                                                                    │

02:07:30 #5429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:30 #5430 [Debug] > │ y2="75"/>                                                                    │

02:07:30 #5431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:07:30 #5432 [Debug] > │ x2="109" y2="75"/>                                                           │

02:07:30 #5433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:30 #5434 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:30 #5435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:30 #5436 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:30 #5437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:07:30 #5438 [Debug] > │ x2="139" y2="75"/>                                                           │

02:07:30 #5439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:07:30 #5440 [Debug] > │ x2="149" y2="75"/>                                                           │

02:07:30 #5441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:07:30 #5442 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:30 #5443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:30 #5444 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:30 #5445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:07:30 #5446 [Debug] > │ x2="179" y2="75"/>                                                           │

02:07:30 #5447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:30 #5448 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:30 #5449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:07:30 #5450 [Debug] > │ x2="199" y2="75"/>                                                           │

02:07:30 #5451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:07:30 #5452 [Debug] > │ x2="209" y2="75"/>                                                           │

02:07:30 #5453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:30 #5454 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:30 #5455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:07:30 #5456 [Debug] > │ x2="229" y2="75"/>                                                           │

02:07:30 #5457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:07:30 #5458 [Debug] > │ x2="239" y2="75"/>                                                           │

02:07:30 #5459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:30 #5460 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:30 #5461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:07:30 #5462 [Debug] > │ x2="259" y2="75"/>                                                           │

02:07:30 #5463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:30 #5464 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:30 #5465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:07:30 #5466 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:30 #5467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:07:30 #5468 [Debug] > │ x2="289" y2="75"/>                                                           │

02:07:30 #5469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:07:30 #5470 [Debug] > │ x2="299" y2="75"/>                                                           │

02:07:30 #5471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:30 #5472 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:30 #5473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:30 #5474 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:30 #5475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:07:30 #5476 [Debug] > │ x2="329" y2="75"/>                                                           │

02:07:30 #5477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:07:30 #5478 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:30 #5479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:07:30 #5480 [Debug] > │ x2="349" y2="75"/>                                                           │

02:07:30 #5481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:07:30 #5482 [Debug] > │ x2="359" y2="75"/>                                                           │

02:07:30 #5483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:30 #5484 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:30 #5485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:07:30 #5486 [Debug] > │ x2="379" y2="75"/>                                                           │

02:07:30 #5487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:07:30 #5488 [Debug] > │ x2="389" y2="75"/>                                                           │

02:07:30 #5489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:07:30 #5490 [Debug] > │ x2="399" y2="75"/>                                                           │

02:07:30 #5491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:07:30 #5492 [Debug] > │ x2="409" y2="75"/>                                                           │

02:07:30 #5493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:30 #5494 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:30 #5495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:07:30 #5496 [Debug] > │ x2="429" y2="75"/>                                                           │

02:07:30 #5497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:07:30 #5498 [Debug] > │ x2="439" y2="75"/>                                                           │

02:07:30 #5499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:07:30 #5500 [Debug] > │ x2="449" y2="75"/>                                                           │

02:07:30 #5501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:07:30 #5502 [Debug] > │ x2="459" y2="75"/>                                                           │

02:07:30 #5503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:30 #5504 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:30 #5505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:07:30 #5506 [Debug] > │ x2="479" y2="75"/>                                                           │

02:07:30 #5507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:07:30 #5508 [Debug] > │ x2="489" y2="75"/>                                                           │

02:07:30 #5509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:07:30 #5510 [Debug] > │ x2="499" y2="75"/>                                                           │

02:07:30 #5511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:07:30 #5512 [Debug] > │ x2="509" y2="75"/>                                                           │

02:07:30 #5513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:30 #5514 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:30 #5515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:07:30 #5516 [Debug] > │ x2="529" y2="75"/>                                                           │

02:07:30 #5517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:07:30 #5518 [Debug] > │ x2="539" y2="75"/>                                                           │

02:07:30 #5519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:07:30 #5520 [Debug] > │ x2="549" y2="75"/>                                                           │

02:07:30 #5521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:07:30 #5522 [Debug] > │ x2="559" y2="75"/>                                                           │

02:07:30 #5523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:30 #5524 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:30 #5525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:07:30 #5526 [Debug] > │ x2="579" y2="75"/>                                                           │

02:07:30 #5527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="423"         │

02:07:30 #5528 [Debug] > │ x2="584" y2="423"/>                                                          │

02:07:30 #5529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:30 #5530 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:30 #5531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:07:30 #5532 [Debug] > │ x2="584" y2="406"/>                                                          │

02:07:30 #5533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="397"         │

02:07:30 #5534 [Debug] > │ x2="584" y2="397"/>                                                          │

02:07:30 #5535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="389"         │

02:07:30 #5536 [Debug] > │ x2="584" y2="389"/>                                                          │

02:07:30 #5537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:07:30 #5538 [Debug] > │ x2="584" y2="380"/>                                                          │

02:07:30 #5539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="371"         │

02:07:30 #5540 [Debug] > │ x2="584" y2="371"/>                                                          │

02:07:30 #5541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="362"         │

02:07:30 #5542 [Debug] > │ x2="584" y2="362"/>                                                          │

02:07:30 #5543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="354"         │

02:07:30 #5544 [Debug] > │ x2="584" y2="354"/>                                                          │

02:07:30 #5545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="345"         │

02:07:30 #5546 [Debug] > │ x2="584" y2="345"/>                                                          │

02:07:30 #5547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:07:30 #5548 [Debug] > │ x2="584" y2="336"/>                                                          │

02:07:30 #5549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:07:30 #5550 [Debug] > │ x2="584" y2="328"/>                                                          │

02:07:30 #5551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:07:30 #5552 [Debug] > │ x2="584" y2="319"/>                                                          │

02:07:30 #5553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="310"         │

02:07:30 #5554 [Debug] > │ x2="584" y2="310"/>                                                          │

02:07:30 #5555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:07:30 #5556 [Debug] > │ x2="584" y2="302"/>                                                          │

02:07:30 #5557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="293"         │

02:07:30 #5558 [Debug] > │ x2="584" y2="293"/>                                                          │

02:07:30 #5559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:07:30 #5560 [Debug] > │ x2="584" y2="284"/>                                                          │

02:07:30 #5561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="275"         │

02:07:30 #5562 [Debug] > │ x2="584" y2="275"/>                                                          │

02:07:30 #5563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:07:30 #5564 [Debug] > │ x2="584" y2="267"/>                                                          │

02:07:30 #5565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="258"         │

02:07:30 #5566 [Debug] > │ x2="584" y2="258"/>                                                          │

02:07:30 #5567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="249"         │

02:07:30 #5568 [Debug] > │ x2="584" y2="249"/>                                                          │

02:07:30 #5569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:07:30 #5570 [Debug] > │ x2="584" y2="241"/>                                                          │

02:07:30 #5571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:07:30 #5572 [Debug] > │ x2="584" y2="232"/>                                                          │

02:07:30 #5573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="223"         │

02:07:30 #5574 [Debug] > │ x2="584" y2="223"/>                                                          │

02:07:30 #5575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:07:30 #5576 [Debug] > │ x2="584" y2="215"/>                                                          │

02:07:30 #5577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="206"         │

02:07:30 #5578 [Debug] > │ x2="584" y2="206"/>                                                          │

02:07:30 #5579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="197"         │

02:07:30 #5580 [Debug] > │ x2="584" y2="197"/>                                                          │

02:07:30 #5581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:07:30 #5582 [Debug] > │ x2="584" y2="188"/>                                                          │

02:07:30 #5583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:07:30 #5584 [Debug] > │ x2="584" y2="180"/>                                                          │

02:07:30 #5585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:07:30 #5586 [Debug] > │ x2="584" y2="171"/>                                                          │

02:07:30 #5587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:07:30 #5588 [Debug] > │ x2="584" y2="162"/>                                                          │

02:07:30 #5589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="154"         │

02:07:30 #5590 [Debug] > │ x2="584" y2="154"/>                                                          │

02:07:30 #5591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:07:30 #5592 [Debug] > │ x2="584" y2="145"/>                                                          │

02:07:30 #5593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="136"         │

02:07:30 #5594 [Debug] > │ x2="584" y2="136"/>                                                          │

02:07:30 #5595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="128"         │

02:07:30 #5596 [Debug] > │ x2="584" y2="128"/>                                                          │

02:07:30 #5597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:07:30 #5598 [Debug] > │ x2="584" y2="119"/>                                                          │

02:07:30 #5599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:07:30 #5600 [Debug] > │ x2="584" y2="110"/>                                                          │

02:07:30 #5601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:07:30 #5602 [Debug] > │ x2="584" y2="102"/>                                                          │

02:07:30 #5603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:07:30 #5604 [Debug] > │ y2="93"/>                                                                    │

02:07:30 #5605 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:30 #5606 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #5607 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:30 #5608 [Debug] > │ time (s)                                                                     │

02:07:30 #5609 [Debug] > │ </text>                                                                      │

02:07:30 #5610 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:30 #5611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #5612 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:30 #5613 [Debug] > │                                                                              │

02:07:30 #5614 [Debug] > │ </text>                                                                      │

02:07:30 #5615 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:30 #5616 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #5617 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:30 #5618 [Debug] > │ time (s)                                                                     │

02:07:30 #5619 [Debug] > │ </text>                                                                      │

02:07:30 #5620 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:30 #5621 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:30 #5622 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:30 #5623 [Debug] > │                                                                              │

02:07:30 #5624 [Debug] > │ </text>                                                                      │

02:07:30 #5625 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:30 #5626 [Debug] > │ y2="75"/>                                                                    │

02:07:30 #5627 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:31 #5628 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:31 #5629 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:31 #5630 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:31 #5631 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:31 #5632 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:31 #5633 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:31 #5634 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:31 #5635 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:31 #5636 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:31 #5637 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:31 #5638 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:31 #5639 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:31 #5640 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:31 #5641 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:31 #5642 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:31 #5643 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:31 #5644 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:31 #5645 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:31 #5646 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:31 #5647 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:31 #5648 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:31 #5649 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="371"         │

02:07:31 #5650 [Debug] > │ x2="584" y2="371"/>                                                          │

02:07:31 #5651 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="328"         │

02:07:31 #5652 [Debug] > │ x2="584" y2="328"/>                                                          │

02:07:31 #5653 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="284"         │

02:07:31 #5654 [Debug] > │ x2="584" y2="284"/>                                                          │

02:07:31 #5655 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="241"         │

02:07:31 #5656 [Debug] > │ x2="584" y2="241"/>                                                          │

02:07:31 #5657 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="197"         │

02:07:31 #5658 [Debug] > │ x2="584" y2="197"/>                                                          │

02:07:31 #5659 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="154"         │

02:07:31 #5660 [Debug] > │ x2="584" y2="154"/>                                                          │

02:07:31 #5661 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="110"         │

02:07:31 #5662 [Debug] > │ x2="584" y2="110"/>                                                          │

02:07:31 #5663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5664 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:31 #5665 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:31 #5666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5667 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5668 [Debug] > │ 0.0                                                                          │

02:07:31 #5669 [Debug] > │ </text>                                                                      │

02:07:31 #5670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5671 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:31 #5672 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5674 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5675 [Debug] > │ 10.0                                                                         │

02:07:31 #5676 [Debug] > │ </text>                                                                      │

02:07:31 #5677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5678 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:31 #5679 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5681 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5682 [Debug] > │ 20.0                                                                         │

02:07:31 #5683 [Debug] > │ </text>                                                                      │

02:07:31 #5684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5685 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:31 #5686 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5688 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5689 [Debug] > │ 30.0                                                                         │

02:07:31 #5690 [Debug] > │ </text>                                                                      │

02:07:31 #5691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5692 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:31 #5693 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5694 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5695 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5696 [Debug] > │ 40.0                                                                         │

02:07:31 #5697 [Debug] > │ </text>                                                                      │

02:07:31 #5698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5699 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:31 #5700 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5702 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5703 [Debug] > │ 50.0                                                                         │

02:07:31 #5704 [Debug] > │ </text>                                                                      │

02:07:31 #5705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5706 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:31 #5707 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5709 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5710 [Debug] > │ 60.0                                                                         │

02:07:31 #5711 [Debug] > │ </text>                                                                      │

02:07:31 #5712 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5713 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:31 #5714 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5716 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5717 [Debug] > │ 70.0                                                                         │

02:07:31 #5718 [Debug] > │ </text>                                                                      │

02:07:31 #5719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5720 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:31 #5721 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5722 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5723 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5724 [Debug] > │ 80.0                                                                         │

02:07:31 #5725 [Debug] > │ </text>                                                                      │

02:07:31 #5726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5727 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:31 #5728 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5730 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5731 [Debug] > │ 90.0                                                                         │

02:07:31 #5732 [Debug] > │ </text>                                                                      │

02:07:31 #5733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5734 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:31 #5735 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #5736 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5737 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5738 [Debug] > │ 100.0                                                                        │

02:07:31 #5739 [Debug] > │ </text>                                                                      │

02:07:31 #5740 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5741 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:31 #5742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5743 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:31 #5744 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5745 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5746 [Debug] > │ 0.0                                                                          │

02:07:31 #5747 [Debug] > │ </text>                                                                      │

02:07:31 #5748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5749 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:31 #5750 [Debug] > │ <text x="45" y="371" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5751 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5752 [Debug] > │ 0.5                                                                          │

02:07:31 #5753 [Debug] > │ </text>                                                                      │

02:07:31 #5754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5755 [Debug] > │ points="49,371 54,371 "/>                                                    │

02:07:31 #5756 [Debug] > │ <text x="45" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5757 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5758 [Debug] > │ 1.0                                                                          │

02:07:31 #5759 [Debug] > │ </text>                                                                      │

02:07:31 #5760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5761 [Debug] > │ points="49,328 54,328 "/>                                                    │

02:07:31 #5762 [Debug] > │ <text x="45" y="284" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5763 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5764 [Debug] > │ 1.5                                                                          │

02:07:31 #5765 [Debug] > │ </text>                                                                      │

02:07:31 #5766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5767 [Debug] > │ points="49,284 54,284 "/>                                                    │

02:07:31 #5768 [Debug] > │ <text x="45" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5769 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5770 [Debug] > │ 2.0                                                                          │

02:07:31 #5771 [Debug] > │ </text>                                                                      │

02:07:31 #5772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5773 [Debug] > │ points="49,241 54,241 "/>                                                    │

02:07:31 #5774 [Debug] > │ <text x="45" y="197" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5775 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5776 [Debug] > │ 2.5                                                                          │

02:07:31 #5777 [Debug] > │ </text>                                                                      │

02:07:31 #5778 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5779 [Debug] > │ points="49,197 54,197 "/>                                                    │

02:07:31 #5780 [Debug] > │ <text x="45" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5781 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5782 [Debug] > │ 3.0                                                                          │

02:07:31 #5783 [Debug] > │ </text>                                                                      │

02:07:31 #5784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5785 [Debug] > │ points="49,154 54,154 "/>                                                    │

02:07:31 #5786 [Debug] > │ <text x="45" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #5787 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #5788 [Debug] > │ 3.5                                                                          │

02:07:31 #5789 [Debug] > │ </text>                                                                      │

02:07:31 #5790 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5791 [Debug] > │ points="49,110 54,110 "/>                                                    │

02:07:31 #5792 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5793 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:31 #5794 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:31 #5795 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5796 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5797 [Debug] > │ 0.0                                                                          │

02:07:31 #5798 [Debug] > │ </text>                                                                      │

02:07:31 #5799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5800 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:31 #5801 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5802 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5803 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5804 [Debug] > │ 10.0                                                                         │

02:07:31 #5805 [Debug] > │ </text>                                                                      │

02:07:31 #5806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5807 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:31 #5808 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5809 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5810 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5811 [Debug] > │ 20.0                                                                         │

02:07:31 #5812 [Debug] > │ </text>                                                                      │

02:07:31 #5813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5814 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:31 #5815 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5816 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5817 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5818 [Debug] > │ 30.0                                                                         │

02:07:31 #5819 [Debug] > │ </text>                                                                      │

02:07:31 #5820 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5821 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:31 #5822 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5823 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5824 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5825 [Debug] > │ 40.0                                                                         │

02:07:31 #5826 [Debug] > │ </text>                                                                      │

02:07:31 #5827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5828 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:31 #5829 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5831 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5832 [Debug] > │ 50.0                                                                         │

02:07:31 #5833 [Debug] > │ </text>                                                                      │

02:07:31 #5834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5835 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:31 #5836 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5838 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5839 [Debug] > │ 60.0                                                                         │

02:07:31 #5840 [Debug] > │ </text>                                                                      │

02:07:31 #5841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5842 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:31 #5843 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5845 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5846 [Debug] > │ 70.0                                                                         │

02:07:31 #5847 [Debug] > │ </text>                                                                      │

02:07:31 #5848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5849 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:31 #5850 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5852 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5853 [Debug] > │ 80.0                                                                         │

02:07:31 #5854 [Debug] > │ </text>                                                                      │

02:07:31 #5855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5856 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:31 #5857 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5859 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5860 [Debug] > │ 90.0                                                                         │

02:07:31 #5861 [Debug] > │ </text>                                                                      │

02:07:31 #5862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5863 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:31 #5864 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #5865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5866 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5867 [Debug] > │ 100.0                                                                        │

02:07:31 #5868 [Debug] > │ </text>                                                                      │

02:07:31 #5869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5870 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:31 #5871 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5872 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:31 #5873 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5874 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5875 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5876 [Debug] > │ 0.0                                                                          │

02:07:31 #5877 [Debug] > │ </text>                                                                      │

02:07:31 #5878 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5879 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:31 #5880 [Debug] > │ <text x="595" y="371" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5881 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5882 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5883 [Debug] > │ 0.5                                                                          │

02:07:31 #5884 [Debug] > │ </text>                                                                      │

02:07:31 #5885 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5886 [Debug] > │ points="585,371 590,371 "/>                                                  │

02:07:31 #5887 [Debug] > │ <text x="595" y="328" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5888 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5889 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5890 [Debug] > │ 1.0                                                                          │

02:07:31 #5891 [Debug] > │ </text>                                                                      │

02:07:31 #5892 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5893 [Debug] > │ points="585,328 590,328 "/>                                                  │

02:07:31 #5894 [Debug] > │ <text x="595" y="284" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5895 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5896 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5897 [Debug] > │ 1.5                                                                          │

02:07:31 #5898 [Debug] > │ </text>                                                                      │

02:07:31 #5899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5900 [Debug] > │ points="585,284 590,284 "/>                                                  │

02:07:31 #5901 [Debug] > │ <text x="595" y="241" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5902 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5903 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5904 [Debug] > │ 2.0                                                                          │

02:07:31 #5905 [Debug] > │ </text>                                                                      │

02:07:31 #5906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5907 [Debug] > │ points="585,241 590,241 "/>                                                  │

02:07:31 #5908 [Debug] > │ <text x="595" y="197" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5909 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5910 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5911 [Debug] > │ 2.5                                                                          │

02:07:31 #5912 [Debug] > │ </text>                                                                      │

02:07:31 #5913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5914 [Debug] > │ points="585,197 590,197 "/>                                                  │

02:07:31 #5915 [Debug] > │ <text x="595" y="154" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5916 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5917 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5918 [Debug] > │ 3.0                                                                          │

02:07:31 #5919 [Debug] > │ </text>                                                                      │

02:07:31 #5920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5921 [Debug] > │ points="585,154 590,154 "/>                                                  │

02:07:31 #5922 [Debug] > │ <text x="595" y="110" dy="0.5ex" text-anchor="start"                         │

02:07:31 #5923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #5924 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #5925 [Debug] > │ 3.5                                                                          │

02:07:31 #5926 [Debug] > │ </text>                                                                      │

02:07:31 #5927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #5928 [Debug] > │ points="585,110 590,110 "/>                                                  │

02:07:31 #5929 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:31 #5930 [Debug] > │ points="69,415 70,415 70,410 71,406 71,402 72,397 72,393 73,389 73,384       │

02:07:31 #5931 [Debug] > │ 74,380 74,376 75,371 75,367 76,363 76,359 77,354 77,350 78,346 78,342 79,338 │

02:07:31 #5932 [Debug] > │ 79,333 80,329 80,325 81,321 81,317 82,313 82,309 83,305 83,301 84,297 84,293 │

02:07:31 #5933 [Debug] > │ 85,290 85,286 86,282 86,278 87,275 87,271 88,267 88,264 89,260 89,257 90,253 │

02:07:31 #5934 [Debug] > │ 90,250 91,246 91,243 92,240 92,236 93,233 93,230 94,227 94,224 95,221 95,218 │

02:07:31 #5935 [Debug] > │ 96,215 96,212 97,209 97,206 98,203 98,200 99,198 99,195 100,192 100,190      │

02:07:31 #5936 [Debug] > │ 101,187 101,185 102,182 102,180 103,177 103,175 104,173 104,170 105,168      │

02:07:31 #5937 [Debug] > │ 105,166 106,164 106,162 107,159 107,157 108,155 108,153 109,151 109,150      │

02:07:31 #5938 [Debug] > │ 110,148 110,146 111,144 111,142 112,141 112,139 113,137 113,136 114,134      │

02:07:31 #5939 [Debug] > │ 114,132 115,131 115,129 116,128 116,126 117,125 117,124 118,122 118,121      │

02:07:31 #5940 [Debug] > │ 119,120 119,118 120,117 120,120 121,123 121,126 122,129 122,132 123,135      │

02:07:31 #5941 [Debug] > │ 123,138 124,140 124,143 125,145 125,148 126,151 126,153 127,155 127,158      │

02:07:31 #5942 [Debug] > │ 128,160 128,162 129,165 129,167 130,169 130,171 131,173 131,175 132,177      │

02:07:31 #5943 [Debug] > │ 132,179 133,181 133,183 134,185 134,187 135,189 135,190 136,192 136,194      │

02:07:31 #5944 [Debug] > │ 137,196 137,197 138,199 138,201 139,202 139,204 140,205 140,207 141,208      │

02:07:31 #5945 [Debug] > │ 141,210 142,211 142,213 143,214 143,216 144,217 144,219 145,220 145,221      │

02:07:31 #5946 [Debug] > │ 146,223 146,224 147,225 147,226 148,228 148,229 149,230 149,231 150,232      │

02:07:31 #5947 [Debug] > │ 150,234 151,235 151,236 152,237 152,238 153,239 153,240 154,241 154,242      │

02:07:31 #5948 [Debug] > │ 155,244 155,245 156,246 156,247 157,248 157,249 158,250 158,250 159,251      │

02:07:31 #5949 [Debug] > │ 159,252 160,253 160,254 161,255 161,256 162,257 162,258 163,259 163,259      │

02:07:31 #5950 [Debug] > │ 164,260 164,261 165,262 165,263 166,264 166,264 167,265 167,266 168,267      │

02:07:31 #5951 [Debug] > │ 168,268 169,268 169,269 170,265 170,262 171,258 171,255 172,251 172,248      │

02:07:31 #5952 [Debug] > │ 173,245 173,241 174,238 174,235 175,232 175,228 176,225 176,222 177,219      │

02:07:31 #5953 [Debug] > │ 177,216 178,213 178,210 179,207 179,205 180,202 180,199 181,196 181,194      │

02:07:31 #5954 [Debug] > │ 182,191 182,188 183,186 183,183 184,181 184,178 185,176 185,174 186,171      │

02:07:31 #5955 [Debug] > │ 186,169 187,167 187,165 188,163 188,160 189,158 189,156 190,154 190,152      │

02:07:31 #5956 [Debug] > │ 191,150 191,149 192,147 192,145 193,143 193,141 194,140 194,138 195,136      │

02:07:31 #5957 [Debug] > │ 195,135 196,133 196,132 197,130 197,129 198,127 198,126 199,124 199,123      │

02:07:31 #5958 [Debug] > │ 200,121 200,120 201,119 201,118 202,116 202,115 203,114 203,113 204,112      │

02:07:31 #5959 [Debug] > │ 204,111 205,109 205,108 206,107 206,106 207,105 207,104 208,103 208,102      │

02:07:31 #5960 [Debug] > │ 209,101 209,101 210,100 210,99 211,98 211,97 212,96 212,96 213,95 213,94     │

02:07:31 #5961 [Debug] > │ 214,93 214,93 215,92 215,91 216,91 216,90 217,89 217,89 218,88 218,87 219,87 │

02:07:31 #5962 [Debug] > │ 219,86 220,90 220,94 221,97 221,101 222,104 222,108 223,111 223,114 224,118  │

02:07:31 #5963 [Debug] > │ 224,121 225,124 225,127 226,130 226,132 227,135 227,138 228,141 228,143      │

02:07:31 #5964 [Debug] > │ 229,146 229,149 230,151 230,153 231,156 231,158 232,161 232,163 233,165      │

02:07:31 #5965 [Debug] > │ 233,167 234,169 234,171 235,174 235,176 236,178 236,180 237,182 237,183      │

02:07:31 #5966 [Debug] > │ 238,185 238,187 239,189 239,191 240,193 240,194 241,196 241,198 242,199      │

02:07:31 #5967 [Debug] > │ 242,201 243,203 243,204 244,206 244,207 245,209 245,210 246,212 246,213      │

02:07:31 #5968 [Debug] > │ 247,215 247,216 248,217 248,219 249,220 249,221 250,223 250,224 251,225      │

02:07:31 #5969 [Debug] > │ 251,227 252,228 252,229 253,230 253,232 254,233 254,234 255,235 255,236      │

02:07:31 #5970 [Debug] > │ 256,237 256,238 257,239 257,241 258,242 258,243 259,244 259,245 260,246      │

02:07:31 #5971 [Debug] > │ 260,247 261,248 261,249 262,250 262,251 263,252 263,253 264,253 264,254      │

02:07:31 #5972 [Debug] > │ 265,255 265,256 266,257 266,258 267,259 267,260 268,260 268,261 269,262      │

02:07:31 #5973 [Debug] > │ 269,263 270,259 270,256 271,252 271,249 272,246 272,242 273,239 273,236      │

02:07:31 #5974 [Debug] > │ 274,233 274,229 275,226 275,223 276,220 276,217 277,214 277,211 278,208      │

02:07:31 #5975 [Debug] > │ 278,205 279,203 279,200 280,197 280,194 281,192 281,189 282,187 282,184      │

02:07:31 #5976 [Debug] > │ 283,182 283,179 284,177 284,174 285,172 285,170 286,168 286,165 287,163      │

02:07:31 #5977 [Debug] > │ 287,161 288,159 288,157 289,155 289,153 290,151 290,149 291,147 291,145      │

02:07:31 #5978 [Debug] > │ 292,144 292,142 293,140 293,138 294,137 294,135 295,134 295,132 296,130      │

02:07:31 #5979 [Debug] > │ 296,129 297,127 297,126 298,125 298,123 299,122 299,121 300,119 300,118      │

02:07:31 #5980 [Debug] > │ 301,117 301,115 302,114 302,113 303,112 303,111 304,110 304,109 305,108      │

02:07:31 #5981 [Debug] > │ 305,107 306,106 306,105 307,104 307,103 308,102 308,101 309,100 309,99       │

02:07:31 #5982 [Debug] > │ 310,98 310,97 311,97 311,96 312,95 312,94 313,94 313,93 314,92 314,91 315,91 │

02:07:31 #5983 [Debug] > │ 315,90 316,90 316,89 317,88 317,88 318,87 318,87 319,86 319,85 320,89 320,93 │

02:07:31 #5984 [Debug] > │ 320,97 321,100 321,104 322,107 322,110 323,114 323,117 324,120 324,123       │

02:07:31 #5985 [Debug] > │ 325,126 325,129 326,132 326,135 327,137 327,140 328,143 328,145 329,148      │

02:07:31 #5986 [Debug] > │ 329,150 330,153 330,155 331,158 331,160 332,162 332,164 333,167 333,169      │

02:07:31 #5987 [Debug] > │ 334,171 334,173 335,175 335,177 336,179 336,181 337,183 337,185 338,187      │

02:07:31 #5988 [Debug] > │ 338,189 339,190 339,192 340,194 340,196 341,197 341,199 342,201 342,202      │

02:07:31 #5989 [Debug] > │ 343,204 343,205 344,207 344,208 345,210 345,211 346,213 346,214 347,216      │

02:07:31 #5990 [Debug] > │ 347,217 348,218 348,220 349,221 349,222 350,224 350,225 351,226 351,228      │

02:07:31 #5991 [Debug] > │ 352,229 352,230 353,231 353,232 354,234 354,235 355,236 355,237 356,238      │

02:07:31 #5992 [Debug] > │ 356,239 357,240 357,241 358,242 358,243 359,244 359,246 360,247 360,248      │

02:07:31 #5993 [Debug] > │ 361,248 361,249 362,250 362,251 363,252 363,253 364,254 364,255 365,256      │

02:07:31 #5994 [Debug] > │ 365,257 366,258 366,259 367,259 367,260 368,261 368,262 369,263 369,259      │

02:07:31 #5995 [Debug] > │ 370,256 370,252 371,249 371,245 372,242 372,239 373,236 373,232 374,229      │

02:07:31 #5996 [Debug] > │ 374,226 375,223 375,220 376,217 376,214 377,211 377,208 378,205 378,202      │

02:07:31 #5997 [Debug] > │ 379,200 379,197 380,194 380,192 381,189 381,186 382,184 382,181 383,179      │

02:07:31 #5998 [Debug] > │ 383,177 384,174 384,172 385,170 385,167 386,165 386,163 387,161 387,159      │

02:07:31 #5999 [Debug] > │ 388,157 388,155 389,153 389,151 390,149 390,147 391,145 391,144 392,142      │

02:07:31 #6000 [Debug] > │ 392,140 393,138 393,137 394,135 394,133 395,132 395,130 396,129 396,127      │

02:07:31 #6001 [Debug] > │ 397,126 397,125 398,123 398,122 399,120 399,119 400,118 400,117 401,115      │

02:07:31 #6002 [Debug] > │ 401,114 402,113 402,112 403,111 403,110 404,109 404,108 405,107 405,106      │

02:07:31 #6003 [Debug] > │ 406,105 406,104 407,103 407,102 408,101 408,100 409,99 409,98 410,97 410,97  │

02:07:31 #6004 [Debug] > │ 411,96 411,95 412,94 412,94 413,93 413,92 414,91 414,91 415,90 415,89 416,89 │

02:07:31 #6005 [Debug] > │ 416,88 417,88 417,87 418,86 418,86 419,85 419,89 420,93 420,97 421,100       │

02:07:31 #6006 [Debug] > │ 421,104 422,107 422,110 423,114 423,117 424,120 424,123 425,126 425,129      │

02:07:31 #6007 [Debug] > │ 426,132 426,135 427,137 427,140 428,143 428,145 429,148 429,150 430,153      │

02:07:31 #6008 [Debug] > │ 430,155 431,158 431,160 432,162 432,164 433,167 433,169 434,171 434,173      │

02:07:31 #6009 [Debug] > │ 435,175 435,177 436,179 436,181 437,183 437,185 438,187 438,189 439,190      │

02:07:31 #6010 [Debug] > │ 439,192 440,194 440,196 441,197 441,199 442,201 442,202 443,204 443,205      │

02:07:31 #6011 [Debug] > │ 444,207 444,208 445,210 445,211 446,213 446,214 447,216 447,217 448,218      │

02:07:31 #6012 [Debug] > │ 448,220 449,221 449,222 450,224 450,225 451,226 451,228 452,229 452,230      │

02:07:31 #6013 [Debug] > │ 453,231 453,232 454,234 454,235 455,236 455,237 456,238 456,239 457,240      │

02:07:31 #6014 [Debug] > │ 457,241 458,242 458,243 459,244 459,245 460,247 460,248 461,248 461,249      │

02:07:31 #6015 [Debug] > │ 462,250 462,251 463,252 463,253 464,254 464,255 465,256 465,257 466,258      │

02:07:31 #6016 [Debug] > │ 466,259 467,259 467,260 468,261 468,262 469,263 469,264 470,260 470,257      │

02:07:31 #6017 [Debug] > │ 471,253 471,250 472,246 472,243 473,240 473,236 474,233 474,230 475,227      │

02:07:31 #6018 [Debug] > │ 475,224 476,221 476,218 477,215 477,212 478,209 478,206 479,203 479,200      │

02:07:31 #6019 [Debug] > │ 480,198 480,195 481,192 481,190 482,187 482,185 483,182 483,180 484,177      │

02:07:31 #6020 [Debug] > │ 484,175 485,173 485,170 486,168 486,166 487,164 487,161 488,159 488,157      │

02:07:31 #6021 [Debug] > │ 489,155 489,153 490,151 490,149 491,148 491,146 492,144 492,142 493,140      │

02:07:31 #6022 [Debug] > │ 493,139 494,137 494,135 495,134 495,132 496,131 496,129 497,128 497,126      │

02:07:31 #6023 [Debug] > │ 498,125 498,123 499,122 499,121 500,119 500,118 501,117 501,116 502,114      │

02:07:31 #6024 [Debug] > │ 502,113 503,112 503,111 504,110 504,109 505,108 505,107 506,106 506,105      │

02:07:31 #6025 [Debug] > │ 507,104 507,103 508,102 508,101 509,100 509,99 510,98 510,98 511,97 511,96   │

02:07:31 #6026 [Debug] > │ 512,95 512,94 513,94 513,93 514,92 514,92 515,91 515,90 516,90 516,89 517,88 │

02:07:31 #6027 [Debug] > │ 517,88 518,87 518,87 519,86 519,85 520,89 520,93 521,97 521,100 522,104      │

02:07:31 #6028 [Debug] > │ 522,107 523,110 523,114 524,117 524,120 525,123 525,126 526,129 526,132      │

02:07:31 #6029 [Debug] > │ 527,135 527,137 528,140 528,143 529,145 529,148 530,150 530,153 531,155      │

02:07:31 #6030 [Debug] > │ 531,158 532,160 532,162 533,165 533,167 534,169 534,171 535,173 535,175      │

02:07:31 #6031 [Debug] > │ 536,177 536,179 537,181 537,183 538,185 538,187 539,189 539,190 540,192      │

02:07:31 #6032 [Debug] > │ 540,194 541,196 541,197 542,199 542,201 543,202 543,204 544,205 544,207      │

02:07:31 #6033 [Debug] > │ 545,208 545,210 546,211 546,213 547,214 547,216 548,217 548,219 549,220      │

02:07:31 #6034 [Debug] > │ 549,221 550,223 550,224 551,225 551,226 552,228 552,229 553,230 553,231      │

02:07:31 #6035 [Debug] > │ 554,232 554,234 555,235 555,236 556,237 556,238 557,239 557,240 558,241      │

02:07:31 #6036 [Debug] > │ 558,242 559,243 559,245 560,246 560,247 561,248 561,249 562,249 562,250      │

02:07:31 #6037 [Debug] > │ 563,251 563,252 564,253 564,254 565,255 565,256 566,257 566,258 567,259      │

02:07:31 #6038 [Debug] > │ 567,259 568,260 568,261 569,262 "/>                                          │

02:07:31 #6039 [Debug] > │ <rect x="410" y="235" width="170" height="30" opacity="1" fill="none"        │

02:07:31 #6040 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:31 #6041 [Debug] > │ <text x="450" y="245" dy="0.76em" text-anchor="start"                        │

02:07:31 #6042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6043 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6044 [Debug] > │ velocity of bike (m/s)                                                       │

02:07:31 #6045 [Debug] > │ </text>                                                                      │

02:07:31 #6046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:31 #6047 [Debug] > │ points="420,250 440,250 "/>                                                  │

02:07:31 #6048 [Debug] > │ </svg>                                                                       │

02:07:31 #6049 [Debug] > │                                                                              │

02:07:31 #6050 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:31 #6051 [Debug] >

02:07:31 #6052 [Debug] > ╭─[ 753.17ms - stdout ]────────────────────────────────────────────────────────╮

02:07:31 #6053 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:31 #6054 [Debug] > │ and UH0 =                                                                    │

02:07:31 #6055 [Debug] > │     | UH0_0 of float * float * (unit -> UH0)                                 │

02:07:31 #6056 [Debug] > │     | UH0_1                                                                  │

02:07:31 #6057 [Debug] > │ and [<Struct>] US0 =                                                         │

02:07:31 #6058 [Debug] > │     | US0_0                                                                  │

02:07:31 #6059 [Debug] > │     | US0_1 of f1_0 : float * f1_1 : float                                   │

02:07:31 #6060 [Debug] > │ and [<Struct>] US1 =                                                         │

02:07:31 #6061 [Debug] > │     | US1_0                                                                  │

02:07:31 #6062 [Debug] > │     | US1_1 of f1_0 : float                                                  │

02:07:31 #6063 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:31 #6064 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:31 #6065 [Debug] > │     let v2 : bool = v1 < 1001                                                │

02:07:31 #6066 [Debug] > │     v2                                                                       │

02:07:31 #6067 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:31 #6068 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:31 #6069 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:31 #6070 [Debug] > │     v3                                                                       │

02:07:31 #6071 [Debug] > │ and closure0 () struct (v0 : float, v1 : float) : struct (float * float) =   │

02:07:31 #6072 [Debug] > │     let v2 : float =  -v1                                                    │

02:07:31 #6073 [Debug] > │     let v3 : bool = v1 >= v2                                                 │

02:07:31 #6074 [Debug] > │     let v4 : float =                                                         │

02:07:31 #6075 [Debug] > │         if v3 then                                                           │

02:07:31 #6076 [Debug] > │             v1                                                               │

02:07:31 #6077 [Debug] > │         else                                                                 │

02:07:31 #6078 [Debug] > │             v2                                                               │

02:07:31 #6079 [Debug] > │     let v5 : float = -1.225 * v4                                             │

02:07:31 #6080 [Debug] > │     let v6 : float = v5 * v1                                                 │

02:07:31 #6081 [Debug] > │     let v7 : float = v6 / 2.0                                                │

02:07:31 #6082 [Debug] > │     let v8 : float = v0 / 20.0                                               │

02:07:31 #6083 [Debug] > │     let v9 : int32 = int32 v8                                                │

02:07:31 #6084 [Debug] > │     let v10 : float = float v9                                               │

02:07:31 #6085 [Debug] > │     let v11 : float = v10 * 20.0                                             │

02:07:31 #6086 [Debug] > │     let v12 : float = v0 - v11                                               │

02:07:31 #6087 [Debug] > │     let v13 : bool = v12 > 0.0                                               │

02:07:31 #6088 [Debug] > │     let v15 : bool =                                                         │

02:07:31 #6089 [Debug] > │         if v13 then                                                          │

02:07:31 #6090 [Debug] > │             let v14 : bool = v12 < 10.0                                      │

02:07:31 #6091 [Debug] > │             v14                                                              │

02:07:31 #6092 [Debug] > │         else                                                                 │

02:07:31 #6093 [Debug] > │             false                                                            │

02:07:31 #6094 [Debug] > │     let v16 : float =                                                        │

02:07:31 #6095 [Debug] > │         if v15 then                                                          │

02:07:31 #6096 [Debug] > │             10.0                                                             │

02:07:31 #6097 [Debug] > │         else                                                                 │

02:07:31 #6098 [Debug] > │             0.0                                                              │

02:07:31 #6099 [Debug] > │     let v17 : float = v16 + v7                                               │

02:07:31 #6100 [Debug] > │     let v18 : float = v17 / 20.0                                             │

02:07:31 #6101 [Debug] > │     let v19 : float = v0 + 0.1                                               │

02:07:31 #6102 [Debug] > │     let v20 : float = v18 * 0.1                                              │

02:07:31 #6103 [Debug] > │     let v21 : float = v1 + v20                                               │

02:07:31 #6104 [Debug] > │     struct (v19, v21)                                                        │

02:07:31 #6105 [Debug] > │ and method3 () : (struct (float * float) -> struct (float * float)) =        │

02:07:31 #6106 [Debug] > │     closure0()                                                               │

02:07:31 #6107 [Debug] > │ and closure1 (v0 : (struct (float * float) -> struct (float * float)), v1 :  │

02:07:31 #6108 [Debug] > │ float, v2 : float, v3 : float, v4 : float) () : UH0 =                        │

02:07:31 #6109 [Debug] > │     let struct (v5 : float, v6 : float) = v0 struct (v3, v4)                 │

02:07:31 #6110 [Debug] > │     let v7 : (unit -> UH0) = closure1(v0, v1, v2, v5, v6)                    │

02:07:31 #6111 [Debug] > │     UH0_0(v3, v4, v7)                                                        │

02:07:31 #6112 [Debug] > │ and method4 (v0 : float, v1 : UH0) : US0 =                                   │

02:07:31 #6113 [Debug] > │     match v1 with                                                            │

02:07:31 #6114 [Debug] > │     | UH0_0(v2, v3, v4) -> (* StreamCons *)                                  │

02:07:31 #6115 [Debug] > │         let v5 : bool = v0 <= 0.0                                            │

02:07:31 #6116 [Debug] > │         if v5 then                                                           │

02:07:31 #6117 [Debug] > │             US0_1(v2, v3)                                                    │

02:07:31 #6118 [Debug] > │         else                                                                 │

02:07:31 #6119 [Debug] > │             let v7 : float = v0 - 1.0                                        │

02:07:31 #6120 [Debug] > │             let v8 : UH0 = v4 ()                                             │

02:07:31 #6121 [Debug] > │             method4(v7, v8)                                                  │

02:07:31 #6122 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:07:31 #6123 [Debug] > │         US0_0                                                                │

02:07:31 #6124 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:31 #6125 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:31 #6126 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (1001)                     │

02:07:31 #6127 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:31 #6128 [Debug] > │     while method1(v1) do                                                     │

02:07:31 #6129 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:31 #6130 [Debug] > │         let v4 : float = float v3                                            │

02:07:31 #6131 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:07:31 #6132 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:31 #6133 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:31 #6134 [Debug] > │         v1.l0 <- v6                                                          │

02:07:31 #6135 [Debug] > │         ()                                                                   │

02:07:31 #6136 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:31 #6137 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:31 #6138 [Debug] > │     let v9 : int32 = v0.Length                                               │

02:07:31 #6139 [Debug] > │     let v10 : (float []) = Array.zeroCreate<float> (v9)                      │

02:07:31 #6140 [Debug] > │     let v11 : Mut0 = {l0 = 0} : Mut0                                         │

02:07:31 #6141 [Debug] > │     while method2(v9, v11) do                                                │

02:07:31 #6142 [Debug] > │         let v13 : int32 = v11.l0                                             │

02:07:31 #6143 [Debug] > │         let v14 : float = v0.[int v13]                                       │

02:07:31 #6144 [Debug] > │         let v15 : (struct (float * float) -> struct (float * float)) =       │

02:07:31 #6145 [Debug] > │ method3()                                                                    │

02:07:31 #6146 [Debug] > │         let struct (v16 : float, v17 : float) = v15 struct (v7, v8)          │

02:07:31 #6147 [Debug] > │         let v18 : float = v14 / 0.1                                          │

02:07:31 #6148 [Debug] > │         let v19 : float = round v18                                          │

02:07:31 #6149 [Debug] > │         let v20 : float =  -v19                                              │

02:07:31 #6150 [Debug] > │         let v21 : bool = v19 >= v20                                          │

02:07:31 #6151 [Debug] > │         let v22 : float =                                                    │

02:07:31 #6152 [Debug] > │             if v21 then                                                      │

02:07:31 #6153 [Debug] > │                 v19                                                          │

02:07:31 #6154 [Debug] > │             else                                                             │

02:07:31 #6155 [Debug] > │                 v20                                                          │

02:07:31 #6156 [Debug] > │         let v23 : (unit -> UH0) = closure1(v15, v7, v8, v16, v17)            │

02:07:31 #6157 [Debug] > │         let v24 : UH0 = UH0_0(v7, v8, v23)                                   │

02:07:31 #6158 [Debug] > │         let v25 : US0 = method4(v22, v24)                                    │

02:07:31 #6159 [Debug] > │         let v31 : US1 =                                                      │

02:07:31 #6160 [Debug] > │             match v25 with                                                   │

02:07:31 #6161 [Debug] > │             | US0_0 -> (* None *)                                            │

02:07:31 #6162 [Debug] > │                 US1_0                                                        │

02:07:31 #6163 [Debug] > │             | US0_1(v26, v27) -> (* Some *)                                  │

02:07:31 #6164 [Debug] > │                 US1_1(v27)                                                   │

02:07:31 #6165 [Debug] > │         let v34 : float =                                                    │

02:07:31 #6166 [Debug] > │             match v31 with                                                   │

02:07:31 #6167 [Debug] > │             | US1_0 -> (* None *)                                            │

02:07:31 #6168 [Debug] > │                 0.0                                                          │

02:07:31 #6169 [Debug] > │             | US1_1(v32) -> (* Some *)                                       │

02:07:31 #6170 [Debug] > │                 v32                                                          │

02:07:31 #6171 [Debug] > │         v10.[int v13] <- v34                                                 │

02:07:31 #6172 [Debug] > │         let v35 : int32 = v13 + 1                                            │

02:07:31 #6173 [Debug] > │         v11.l0 <- v35                                                        │

02:07:31 #6174 [Debug] > │         ()                                                                   │

02:07:31 #6175 [Debug] > │     let v36 : string = "velocity of bike (m/s)"                              │

02:07:31 #6176 [Debug] > │     let v37 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:31 #6177 [Debug] > │ (v36, v0, v10)|]                                                             │

02:07:31 #6178 [Debug] > │     let v38 : string = "pedaling and coasting with air"                      │

02:07:31 #6179 [Debug] > │     let v39 : string = "time (s)"                                            │

02:07:31 #6180 [Debug] > │     let v40 : string = ""                                                    │

02:07:31 #6181 [Debug] > │     struct (v38, v39, v40, v37)                                              │

02:07:31 #6182 [Debug] > │ method0()                                                                    │

02:07:31 #6183 [Debug] > │                                                                              │

02:07:31 #6184 [Debug] > │                                                                              │

02:07:31 #6185 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:31 #6186 [Debug] >

02:07:31 #6187 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:31 #6188 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:31 #6189 [Debug] > │ ## velocity_ftxv                                                             │

02:07:31 #6190 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:31 #6191 [Debug] >

02:07:31 #6192 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:31 #6193 [Debug] > nominal state_1d = time * position * velocity

02:07:31 #6194 [Debug] > nominal rrr = f64 * f64 * f64

02:07:31 #6195 [Debug] >

02:07:31 #6196 [Debug] > inl newton_second_1d m fs (state_1d (t, x0, v0)) =

02:07:31 #6197 [Debug] >     inl f_net = fs |> listm.map (fun f => f (state_1d (t, x0, v0))) |>

02:07:31 #6198 [Debug] > listm'.sum

02:07:31 #6199 [Debug] >     inl acc = f_net / m

02:07:31 #6200 [Debug] >     rrr (1f64, v0, acc)

02:07:31 #6201 [Debug] >

02:07:31 #6202 [Debug] > inl euler_1d dt deriv (state_1d (t0, x0, v0) as t) =

02:07:31 #6203 [Debug] >     inl (rrr (_, _, dvdt)) = deriv t

02:07:31 #6204 [Debug] >     inl t1 = t0 + dt

02:07:31 #6205 [Debug] >     inl x1 = x0 + v0 * dt

02:07:31 #6206 [Debug] >     inl v1 = v0 + dvdt * dt

02:07:31 #6207 [Debug] >     state_1d (t1, x1, v1)

02:07:31 #6208 [Debug] >

02:07:31 #6209 [Debug] > inl update_txv dt m fs =

02:07:31 #6210 [Debug] >     newton_second_1d m fs |> euler_1d dt

02:07:31 #6211 [Debug] >

02:07:31 #6212 [Debug] > inl states_txv dt m txv0 fs =

02:07:31 #6213 [Debug] >     seq.iterate_ (update_txv dt m fs) txv0

02:07:31 #6214 [Debug] >

02:07:31 #6215 [Debug] > inl velocity_1d sts t =

02:07:31 #6216 [Debug] >     inl (state_1d (t0, _, _)) = sts 0

02:07:31 #6217 [Debug] >     inl (state_1d (t1, _, _)) = sts 1

02:07:31 #6218 [Debug] >     inl dt = t1 - t0

02:07:31 #6219 [Debug] >     inl num_steps = t / dt |> math.round |> abs

02:07:31 #6220 [Debug] >     inl (state_1d (_, _, v0)) = sts num_steps

02:07:31 #6221 [Debug] >     v0

02:07:31 #6222 [Debug] >

02:07:31 #6223 [Debug] > inl velocity_ftxv dt m txv0 fs =

02:07:31 #6224 [Debug] >     states_txv dt m txv0 fs |> velocity_1d

02:07:31 #6225 [Debug] >

02:07:31 #6226 [Debug] > inl position_1d sts t =

02:07:31 #6227 [Debug] >     inl (state_1d (t0, _, _)) = sts 0

02:07:31 #6228 [Debug] >     inl (state_1d (t1, _, _)) = sts 1

02:07:31 #6229 [Debug] >     inl dt = t1 - t0

02:07:31 #6230 [Debug] >     inl num_steps = t / dt |> math.round |> abs

02:07:31 #6231 [Debug] >     inl (state_1d (_, x0, _)) = sts num_steps

02:07:31 #6232 [Debug] >     x0

02:07:31 #6233 [Debug] >

02:07:31 #6234 [Debug] > inl position_ftxv dt m txv0 fs =

02:07:31 #6235 [Debug] >     states_txv dt m txv0 fs |> position_1d

02:07:31 #6236 [Debug] >

02:07:31 #6237 [Debug] > inl spring_force k (state_1d (_, x0, _)) =

02:07:31 #6238 [Debug] >     -k * x0

02:07:31 #6239 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3132-3274-3b6d9ff2f5b1\main.spi

02:07:31 #6240 [Debug] >

02:07:31 #6241 [Debug] > ╭─[ 185.08ms - stdout ]────────────────────────────────────────────────────────╮

02:07:31 #6242 [Debug] > │ ()                                                                           │

02:07:31 #6243 [Debug] > │                                                                              │

02:07:31 #6244 [Debug] > │                                                                              │

02:07:31 #6245 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:31 #6246 [Debug] >

02:07:31 #6247 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:31 #6248 [Debug] > // // test

02:07:31 #6249 [Debug] >

02:07:31 #6250 [Debug] > inl damped_ho_forces () =

02:07:31 #6251 [Debug] >     [[

02:07:31 #6252 [Debug] >         spring_force 0.8

02:07:31 #6253 [Debug] >         fun (state_1d (_, _, v0)) => f_air 2 1.225 (pi * math.square 0.02) v0

02:07:31 #6254 [Debug] >         fun _ => -0.0027 * 9.80665

02:07:31 #6255 [Debug] >     ]]

02:07:31 #6256 [Debug] >

02:07:31 #6257 [Debug] > inl damped_ho_states () =

02:07:31 #6258 [Debug] >     states_txv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ())

02:07:31 #6259 [Debug] >

02:07:31 #6260 [Debug] > inl pingpong_position t =

02:07:31 #6261 [Debug] >     position_ftxv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ()) t

02:07:31 #6262 [Debug] >

02:07:31 #6263 [Debug] > inl x : a _ f64 = am'.init_series 0 3 0.01

02:07:31 #6264 [Debug] > inl y = x |> am.map pingpong_position

02:07:31 #6265 [Debug] > "ping pong ball on a slinky", "time (s)", "", ;[[ "position (m)", x, y ]]

02:07:31 #6266 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3151-5144-5074a7060643\main.spi

02:07:31 #6267 [Debug] >

02:07:31 #6268 [Debug] > ╭─[ 271.46ms - return value ]──────────────────────────────────────────────────╮

02:07:31 #6269 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:31 #6270 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:31 #6271 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:31 #6272 [Debug] > │ stroke="none"/>                                                              │

02:07:31 #6273 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:31 #6274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6275 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6276 [Debug] > │ ping pong ball on a slinky                                                   │

02:07:31 #6277 [Debug] > │ </text>                                                                      │

02:07:31 #6278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:07:31 #6279 [Debug] > │ y2="75"/>                                                                    │

02:07:31 #6280 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:31 #6281 [Debug] > │ y2="75"/>                                                                    │

02:07:31 #6282 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:07:31 #6283 [Debug] > │ y2="75"/>                                                                    │

02:07:31 #6284 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:07:31 #6285 [Debug] > │ y2="75"/>                                                                    │

02:07:31 #6286 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:07:31 #6287 [Debug] > │ y2="75"/>                                                                    │

02:07:31 #6288 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:07:31 #6289 [Debug] > │ x2="103" y2="75"/>                                                           │

02:07:31 #6290 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:07:31 #6291 [Debug] > │ x2="111" y2="75"/>                                                           │

02:07:31 #6292 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:31 #6293 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:31 #6294 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:07:31 #6295 [Debug] > │ x2="128" y2="75"/>                                                           │

02:07:31 #6296 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:07:31 #6297 [Debug] > │ x2="136" y2="75"/>                                                           │

02:07:31 #6298 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:07:31 #6299 [Debug] > │ x2="144" y2="75"/>                                                           │

02:07:31 #6300 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:07:31 #6301 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:31 #6302 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:07:31 #6303 [Debug] > │ x2="161" y2="75"/>                                                           │

02:07:31 #6304 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:31 #6305 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:31 #6306 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:07:31 #6307 [Debug] > │ x2="178" y2="75"/>                                                           │

02:07:31 #6308 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:07:31 #6309 [Debug] > │ x2="186" y2="75"/>                                                           │

02:07:31 #6310 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:07:31 #6311 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:31 #6312 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:07:31 #6313 [Debug] > │ x2="203" y2="75"/>                                                           │

02:07:31 #6314 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:07:31 #6315 [Debug] > │ x2="211" y2="75"/>                                                           │

02:07:31 #6316 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:31 #6317 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:31 #6318 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:07:31 #6319 [Debug] > │ x2="228" y2="75"/>                                                           │

02:07:31 #6320 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:07:31 #6321 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:31 #6322 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:07:31 #6323 [Debug] > │ x2="244" y2="75"/>                                                           │

02:07:31 #6324 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:07:31 #6325 [Debug] > │ x2="252" y2="75"/>                                                           │

02:07:31 #6326 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:07:31 #6327 [Debug] > │ x2="261" y2="75"/>                                                           │

02:07:31 #6328 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:31 #6329 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:31 #6330 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:07:31 #6331 [Debug] > │ x2="277" y2="75"/>                                                           │

02:07:31 #6332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:07:31 #6333 [Debug] > │ x2="286" y2="75"/>                                                           │

02:07:31 #6334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:07:31 #6335 [Debug] > │ x2="294" y2="75"/>                                                           │

02:07:31 #6336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:07:31 #6337 [Debug] > │ x2="302" y2="75"/>                                                           │

02:07:31 #6338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:07:31 #6339 [Debug] > │ x2="311" y2="75"/>                                                           │

02:07:31 #6340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:31 #6341 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:31 #6342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:07:31 #6343 [Debug] > │ x2="327" y2="75"/>                                                           │

02:07:31 #6344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:07:31 #6345 [Debug] > │ x2="336" y2="75"/>                                                           │

02:07:31 #6346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:07:31 #6347 [Debug] > │ x2="344" y2="75"/>                                                           │

02:07:31 #6348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:07:31 #6349 [Debug] > │ x2="352" y2="75"/>                                                           │

02:07:31 #6350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:07:31 #6351 [Debug] > │ x2="361" y2="75"/>                                                           │

02:07:31 #6352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:31 #6353 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:31 #6354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:07:31 #6355 [Debug] > │ x2="377" y2="75"/>                                                           │

02:07:31 #6356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:07:31 #6357 [Debug] > │ x2="386" y2="75"/>                                                           │

02:07:31 #6358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:07:31 #6359 [Debug] > │ x2="394" y2="75"/>                                                           │

02:07:31 #6360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:07:31 #6361 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:31 #6362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:07:31 #6363 [Debug] > │ x2="410" y2="75"/>                                                           │

02:07:31 #6364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:31 #6365 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:31 #6366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:07:31 #6367 [Debug] > │ x2="427" y2="75"/>                                                           │

02:07:31 #6368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:07:31 #6369 [Debug] > │ x2="435" y2="75"/>                                                           │

02:07:31 #6370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:07:31 #6371 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:31 #6372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:07:31 #6373 [Debug] > │ x2="452" y2="75"/>                                                           │

02:07:31 #6374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:07:31 #6375 [Debug] > │ x2="460" y2="75"/>                                                           │

02:07:31 #6376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:31 #6377 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:31 #6378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:07:31 #6379 [Debug] > │ x2="477" y2="75"/>                                                           │

02:07:31 #6380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:07:31 #6381 [Debug] > │ x2="485" y2="75"/>                                                           │

02:07:31 #6382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:07:31 #6383 [Debug] > │ x2="494" y2="75"/>                                                           │

02:07:31 #6384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:07:31 #6385 [Debug] > │ x2="502" y2="75"/>                                                           │

02:07:31 #6386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:07:31 #6387 [Debug] > │ x2="510" y2="75"/>                                                           │

02:07:31 #6388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:31 #6389 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:31 #6390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:07:31 #6391 [Debug] > │ x2="527" y2="75"/>                                                           │

02:07:31 #6392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:07:31 #6393 [Debug] > │ x2="535" y2="75"/>                                                           │

02:07:31 #6394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:07:31 #6395 [Debug] > │ x2="544" y2="75"/>                                                           │

02:07:31 #6396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:07:31 #6397 [Debug] > │ x2="552" y2="75"/>                                                           │

02:07:31 #6398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:07:31 #6399 [Debug] > │ x2="560" y2="75"/>                                                           │

02:07:31 #6400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:31 #6401 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:31 #6402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:07:31 #6403 [Debug] > │ x2="577" y2="75"/>                                                           │

02:07:31 #6404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="419"         │

02:07:31 #6405 [Debug] > │ x2="584" y2="419"/>                                                          │

02:07:31 #6406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:07:31 #6407 [Debug] > │ x2="584" y2="406"/>                                                          │

02:07:31 #6408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:07:31 #6409 [Debug] > │ x2="584" y2="393"/>                                                          │

02:07:31 #6410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:07:31 #6411 [Debug] > │ x2="584" y2="380"/>                                                          │

02:07:31 #6412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:07:31 #6413 [Debug] > │ x2="584" y2="367"/>                                                          │

02:07:31 #6414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="354"         │

02:07:31 #6415 [Debug] > │ x2="584" y2="354"/>                                                          │

02:07:31 #6416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="342"         │

02:07:31 #6417 [Debug] > │ x2="584" y2="342"/>                                                          │

02:07:31 #6418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:07:31 #6419 [Debug] > │ x2="584" y2="329"/>                                                          │

02:07:31 #6420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:07:31 #6421 [Debug] > │ x2="584" y2="316"/>                                                          │

02:07:31 #6422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:07:31 #6423 [Debug] > │ x2="584" y2="303"/>                                                          │

02:07:31 #6424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="290"         │

02:07:31 #6425 [Debug] > │ x2="584" y2="290"/>                                                          │

02:07:31 #6426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="278"         │

02:07:31 #6427 [Debug] > │ x2="584" y2="278"/>                                                          │

02:07:31 #6428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="265"         │

02:07:31 #6429 [Debug] > │ x2="584" y2="265"/>                                                          │

02:07:31 #6430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="252"         │

02:07:31 #6431 [Debug] > │ x2="584" y2="252"/>                                                          │

02:07:31 #6432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="239"         │

02:07:31 #6433 [Debug] > │ x2="584" y2="239"/>                                                          │

02:07:31 #6434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="226"         │

02:07:31 #6435 [Debug] > │ x2="584" y2="226"/>                                                          │

02:07:31 #6436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:07:31 #6437 [Debug] > │ x2="584" y2="214"/>                                                          │

02:07:31 #6438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:07:31 #6439 [Debug] > │ x2="584" y2="201"/>                                                          │

02:07:31 #6440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:07:31 #6441 [Debug] > │ x2="584" y2="188"/>                                                          │

02:07:31 #6442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:07:31 #6443 [Debug] > │ x2="584" y2="175"/>                                                          │

02:07:31 #6444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:07:31 #6445 [Debug] > │ x2="584" y2="162"/>                                                          │

02:07:31 #6446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:07:31 #6447 [Debug] > │ x2="584" y2="149"/>                                                          │

02:07:31 #6448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:07:31 #6449 [Debug] > │ x2="584" y2="137"/>                                                          │

02:07:31 #6450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:07:31 #6451 [Debug] > │ x2="584" y2="124"/>                                                          │

02:07:31 #6452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="111"         │

02:07:31 #6453 [Debug] > │ x2="584" y2="111"/>                                                          │

02:07:31 #6454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:07:31 #6455 [Debug] > │ y2="98"/>                                                                    │

02:07:31 #6456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:31 #6457 [Debug] > │ y2="85"/>                                                                    │

02:07:31 #6458 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:31 #6459 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6460 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6461 [Debug] > │ time (s)                                                                     │

02:07:31 #6462 [Debug] > │ </text>                                                                      │

02:07:31 #6463 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:31 #6464 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6465 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:31 #6466 [Debug] > │                                                                              │

02:07:31 #6467 [Debug] > │ </text>                                                                      │

02:07:31 #6468 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:31 #6469 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6470 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6471 [Debug] > │ time (s)                                                                     │

02:07:31 #6472 [Debug] > │ </text>                                                                      │

02:07:31 #6473 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:31 #6474 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6475 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:31 #6476 [Debug] > │                                                                              │

02:07:31 #6477 [Debug] > │ </text>                                                                      │

02:07:31 #6478 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:31 #6479 [Debug] > │ y2="75"/>                                                                    │

02:07:31 #6480 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="103" y1="424"        │

02:07:31 #6481 [Debug] > │ x2="103" y2="75"/>                                                           │

02:07:31 #6482 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="136" y1="424"        │

02:07:31 #6483 [Debug] > │ x2="136" y2="75"/>                                                           │

02:07:31 #6484 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:31 #6485 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:31 #6486 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="203" y1="424"        │

02:07:31 #6487 [Debug] > │ x2="203" y2="75"/>                                                           │

02:07:31 #6488 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:07:31 #6489 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:31 #6490 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:31 #6491 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:31 #6492 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="302" y1="424"        │

02:07:31 #6493 [Debug] > │ x2="302" y2="75"/>                                                           │

02:07:31 #6494 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:07:31 #6495 [Debug] > │ x2="336" y2="75"/>                                                           │

02:07:31 #6496 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:31 #6497 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:31 #6498 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:07:31 #6499 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:31 #6500 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="435" y1="424"        │

02:07:31 #6501 [Debug] > │ x2="435" y2="75"/>                                                           │

02:07:31 #6502 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:31 #6503 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:31 #6504 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="502" y1="424"        │

02:07:31 #6505 [Debug] > │ x2="502" y2="75"/>                                                           │

02:07:31 #6506 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="535" y1="424"        │

02:07:31 #6507 [Debug] > │ x2="535" y2="75"/>                                                           │

02:07:31 #6508 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="406"         │

02:07:31 #6509 [Debug] > │ x2="584" y2="406"/>                                                          │

02:07:31 #6510 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="342"         │

02:07:31 #6511 [Debug] > │ x2="584" y2="342"/>                                                          │

02:07:31 #6512 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="278"         │

02:07:31 #6513 [Debug] > │ x2="584" y2="278"/>                                                          │

02:07:31 #6514 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="214"         │

02:07:31 #6515 [Debug] > │ x2="584" y2="214"/>                                                          │

02:07:31 #6516 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="149"         │

02:07:31 #6517 [Debug] > │ x2="584" y2="149"/>                                                          │

02:07:31 #6518 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:07:31 #6519 [Debug] > │ y2="85"/>                                                                    │

02:07:31 #6520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6521 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:31 #6522 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:31 #6523 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6524 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6525 [Debug] > │ 0.0                                                                          │

02:07:31 #6526 [Debug] > │ </text>                                                                      │

02:07:31 #6527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6528 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:31 #6529 [Debug] > │ <text x="103" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6530 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6531 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6532 [Debug] > │ 0.2                                                                          │

02:07:31 #6533 [Debug] > │ </text>                                                                      │

02:07:31 #6534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6535 [Debug] > │ points="103,69 103,74 "/>                                                    │

02:07:31 #6536 [Debug] > │ <text x="136" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6537 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6538 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6539 [Debug] > │ 0.4                                                                          │

02:07:31 #6540 [Debug] > │ </text>                                                                      │

02:07:31 #6541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6542 [Debug] > │ points="136,69 136,74 "/>                                                    │

02:07:31 #6543 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6545 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6546 [Debug] > │ 0.6                                                                          │

02:07:31 #6547 [Debug] > │ </text>                                                                      │

02:07:31 #6548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6549 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:31 #6550 [Debug] > │ <text x="203" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6551 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6552 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6553 [Debug] > │ 0.8                                                                          │

02:07:31 #6554 [Debug] > │ </text>                                                                      │

02:07:31 #6555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6556 [Debug] > │ points="203,69 203,74 "/>                                                    │

02:07:31 #6557 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6559 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6560 [Debug] > │ 1.0                                                                          │

02:07:31 #6561 [Debug] > │ </text>                                                                      │

02:07:31 #6562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6563 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:07:31 #6564 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6565 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6566 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6567 [Debug] > │ 1.2                                                                          │

02:07:31 #6568 [Debug] > │ </text>                                                                      │

02:07:31 #6569 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6570 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:31 #6571 [Debug] > │ <text x="302" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6572 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6573 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6574 [Debug] > │ 1.4                                                                          │

02:07:31 #6575 [Debug] > │ </text>                                                                      │

02:07:31 #6576 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6577 [Debug] > │ points="302,69 302,74 "/>                                                    │

02:07:31 #6578 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6579 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6580 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6581 [Debug] > │ 1.6                                                                          │

02:07:31 #6582 [Debug] > │ </text>                                                                      │

02:07:31 #6583 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6584 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:07:31 #6585 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6586 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6587 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6588 [Debug] > │ 1.8                                                                          │

02:07:31 #6589 [Debug] > │ </text>                                                                      │

02:07:31 #6590 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6591 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:31 #6592 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6593 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6594 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6595 [Debug] > │ 2.0                                                                          │

02:07:31 #6596 [Debug] > │ </text>                                                                      │

02:07:31 #6597 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6598 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:07:31 #6599 [Debug] > │ <text x="435" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6601 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6602 [Debug] > │ 2.2                                                                          │

02:07:31 #6603 [Debug] > │ </text>                                                                      │

02:07:31 #6604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6605 [Debug] > │ points="435,69 435,74 "/>                                                    │

02:07:31 #6606 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6607 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6608 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6609 [Debug] > │ 2.4                                                                          │

02:07:31 #6610 [Debug] > │ </text>                                                                      │

02:07:31 #6611 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6612 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:31 #6613 [Debug] > │ <text x="502" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6614 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6615 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6616 [Debug] > │ 2.6                                                                          │

02:07:31 #6617 [Debug] > │ </text>                                                                      │

02:07:31 #6618 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6619 [Debug] > │ points="502,69 502,74 "/>                                                    │

02:07:31 #6620 [Debug] > │ <text x="535" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:31 #6621 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6622 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6623 [Debug] > │ 2.8                                                                          │

02:07:31 #6624 [Debug] > │ </text>                                                                      │

02:07:31 #6625 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6626 [Debug] > │ points="535,69 535,74 "/>                                                    │

02:07:31 #6627 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6628 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:31 #6629 [Debug] > │ <text x="45" y="406" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #6630 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #6631 [Debug] > │ -0.2                                                                         │

02:07:31 #6632 [Debug] > │ </text>                                                                      │

02:07:31 #6633 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6634 [Debug] > │ points="49,406 54,406 "/>                                                    │

02:07:31 #6635 [Debug] > │ <text x="45" y="342" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #6636 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #6637 [Debug] > │ -0.1                                                                         │

02:07:31 #6638 [Debug] > │ </text>                                                                      │

02:07:31 #6639 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6640 [Debug] > │ points="49,342 54,342 "/>                                                    │

02:07:31 #6641 [Debug] > │ <text x="45" y="278" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #6642 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #6643 [Debug] > │ -0.1                                                                         │

02:07:31 #6644 [Debug] > │ </text>                                                                      │

02:07:31 #6645 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6646 [Debug] > │ points="49,278 54,278 "/>                                                    │

02:07:31 #6647 [Debug] > │ <text x="45" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #6648 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #6649 [Debug] > │ -0.0                                                                         │

02:07:31 #6650 [Debug] > │ </text>                                                                      │

02:07:31 #6651 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6652 [Debug] > │ points="49,214 54,214 "/>                                                    │

02:07:31 #6653 [Debug] > │ <text x="45" y="149" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:31 #6654 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #6655 [Debug] > │ 0.0                                                                          │

02:07:31 #6656 [Debug] > │ </text>                                                                      │

02:07:31 #6657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6658 [Debug] > │ points="49,149 54,149 "/>                                                    │

02:07:31 #6659 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:31 #6660 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:31 #6661 [Debug] > │ 0.1                                                                          │

02:07:31 #6662 [Debug] > │ </text>                                                                      │

02:07:31 #6663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6664 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:07:31 #6665 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6666 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:31 #6667 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:31 #6668 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6669 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6670 [Debug] > │ 0.0                                                                          │

02:07:31 #6671 [Debug] > │ </text>                                                                      │

02:07:31 #6672 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:31 #6673 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:31 #6674 [Debug] > │ <text x="103" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:31 #6675 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:31 #6676 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:31 #6677 [Debug] > │ 0.2                                                                          │

02:07:31 #6678 [Debug] > │ </text>                                                                      │

02:07:32 #6679 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6680 [Debug] > │ points="103,425 103,430 "/>                                                  │

02:07:32 #6681 [Debug] > │ <text x="136" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6682 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6683 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6684 [Debug] > │ 0.4                                                                          │

02:07:32 #6685 [Debug] > │ </text>                                                                      │

02:07:32 #6686 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6687 [Debug] > │ points="136,425 136,430 "/>                                                  │

02:07:32 #6688 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6689 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6690 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6691 [Debug] > │ 0.6                                                                          │

02:07:32 #6692 [Debug] > │ </text>                                                                      │

02:07:32 #6693 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6694 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:32 #6695 [Debug] > │ <text x="203" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6696 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6697 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6698 [Debug] > │ 0.8                                                                          │

02:07:32 #6699 [Debug] > │ </text>                                                                      │

02:07:32 #6700 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6701 [Debug] > │ points="203,425 203,430 "/>                                                  │

02:07:32 #6702 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6703 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6704 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6705 [Debug] > │ 1.0                                                                          │

02:07:32 #6706 [Debug] > │ </text>                                                                      │

02:07:32 #6707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6708 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:07:32 #6709 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6710 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6711 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6712 [Debug] > │ 1.2                                                                          │

02:07:32 #6713 [Debug] > │ </text>                                                                      │

02:07:32 #6714 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6715 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:32 #6716 [Debug] > │ <text x="302" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6717 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6718 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6719 [Debug] > │ 1.4                                                                          │

02:07:32 #6720 [Debug] > │ </text>                                                                      │

02:07:32 #6721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6722 [Debug] > │ points="302,425 302,430 "/>                                                  │

02:07:32 #6723 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6724 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6725 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6726 [Debug] > │ 1.6                                                                          │

02:07:32 #6727 [Debug] > │ </text>                                                                      │

02:07:32 #6728 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6729 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:07:32 #6730 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6731 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6732 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6733 [Debug] > │ 1.8                                                                          │

02:07:32 #6734 [Debug] > │ </text>                                                                      │

02:07:32 #6735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6736 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:32 #6737 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6739 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6740 [Debug] > │ 2.0                                                                          │

02:07:32 #6741 [Debug] > │ </text>                                                                      │

02:07:32 #6742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6743 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:07:32 #6744 [Debug] > │ <text x="435" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6746 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6747 [Debug] > │ 2.2                                                                          │

02:07:32 #6748 [Debug] > │ </text>                                                                      │

02:07:32 #6749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6750 [Debug] > │ points="435,425 435,430 "/>                                                  │

02:07:32 #6751 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6753 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6754 [Debug] > │ 2.4                                                                          │

02:07:32 #6755 [Debug] > │ </text>                                                                      │

02:07:32 #6756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6757 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:32 #6758 [Debug] > │ <text x="502" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6760 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6761 [Debug] > │ 2.6                                                                          │

02:07:32 #6762 [Debug] > │ </text>                                                                      │

02:07:32 #6763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6764 [Debug] > │ points="502,425 502,430 "/>                                                  │

02:07:32 #6765 [Debug] > │ <text x="535" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #6766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6767 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6768 [Debug] > │ 2.8                                                                          │

02:07:32 #6769 [Debug] > │ </text>                                                                      │

02:07:32 #6770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6771 [Debug] > │ points="535,425 535,430 "/>                                                  │

02:07:32 #6772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6773 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:32 #6774 [Debug] > │ <text x="595" y="406" dy="0.5ex" text-anchor="start"                         │

02:07:32 #6775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6776 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6777 [Debug] > │ -0.2                                                                         │

02:07:32 #6778 [Debug] > │ </text>                                                                      │

02:07:32 #6779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6780 [Debug] > │ points="585,406 590,406 "/>                                                  │

02:07:32 #6781 [Debug] > │ <text x="595" y="342" dy="0.5ex" text-anchor="start"                         │

02:07:32 #6782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6783 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6784 [Debug] > │ -0.1                                                                         │

02:07:32 #6785 [Debug] > │ </text>                                                                      │

02:07:32 #6786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6787 [Debug] > │ points="585,342 590,342 "/>                                                  │

02:07:32 #6788 [Debug] > │ <text x="595" y="278" dy="0.5ex" text-anchor="start"                         │

02:07:32 #6789 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6790 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6791 [Debug] > │ -0.1                                                                         │

02:07:32 #6792 [Debug] > │ </text>                                                                      │

02:07:32 #6793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6794 [Debug] > │ points="585,278 590,278 "/>                                                  │

02:07:32 #6795 [Debug] > │ <text x="595" y="214" dy="0.5ex" text-anchor="start"                         │

02:07:32 #6796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6797 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6798 [Debug] > │ -0.0                                                                         │

02:07:32 #6799 [Debug] > │ </text>                                                                      │

02:07:32 #6800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6801 [Debug] > │ points="585,214 590,214 "/>                                                  │

02:07:32 #6802 [Debug] > │ <text x="617" y="149" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:32 #6803 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #6804 [Debug] > │ 0.0                                                                          │

02:07:32 #6805 [Debug] > │ </text>                                                                      │

02:07:32 #6806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6807 [Debug] > │ points="585,149 590,149 "/>                                                  │

02:07:32 #6808 [Debug] > │ <text x="617" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #6809 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #6810 [Debug] > │ 0.1                                                                          │

02:07:32 #6811 [Debug] > │ </text>                                                                      │

02:07:32 #6812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #6813 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:07:32 #6814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:32 #6815 [Debug] > │ points="69,85 71,88 73,95 74,107 76,123 78,143 79,167 81,193 83,220 84,248   │

02:07:32 #6816 [Debug] > │ 86,276 88,304 89,329 91,353 93,373 94,390 96,402 98,411 99,415 101,414       │

02:07:32 #6817 [Debug] > │ 103,408 104,398 106,384 108,366 109,345 111,321 113,296 114,270 116,243      │

02:07:32 #6818 [Debug] > │ 118,217 119,193 121,170 123,151 124,134 126,121 128,112 129,108 131,107      │

02:07:32 #6819 [Debug] > │ 133,111 134,120 136,132 138,148 139,167 141,189 143,212 144,237 146,262      │

02:07:32 #6820 [Debug] > │ 148,286 149,310 151,331 153,351 154,367 156,380 158,390 159,395 161,396      │

02:07:32 #6821 [Debug] > │ 163,394 164,387 166,376 168,362 169,344 171,324 173,303 174,280 176,256      │

02:07:32 #6822 [Debug] > │ 178,233 179,210 181,189 183,171 184,154 186,141 188,131 189,125 191,123      │

02:07:32 #6823 [Debug] > │ 193,125 194,130 196,139 198,152 199,168 201,186 203,206 204,228 206,250      │

02:07:32 #6824 [Debug] > │ 208,272 209,294 211,314 213,333 214,349 216,362 218,373 219,379 221,382      │

02:07:32 #6825 [Debug] > │ 223,382 224,377 226,369 228,358 229,344 231,327 232,308 234,288 236,267      │

02:07:32 #6826 [Debug] > │ 237,246 239,225 241,205 242,187 244,171 246,157 247,147 249,140 251,136      │

02:07:32 #6827 [Debug] > │ 252,135 254,139 256,145 257,155 259,168 261,184 262,201 264,220 266,240      │

02:07:32 #6828 [Debug] > │ 267,261 269,281 271,300 272,318 274,334 276,347 277,358 279,366 281,371      │

02:07:32 #6829 [Debug] > │ 282,372 284,369 286,364 287,355 289,343 291,329 292,313 294,295 296,276      │

02:07:32 #6830 [Debug] > │ 297,256 299,237 301,218 302,201 304,185 306,171 307,160 309,152 311,147      │

02:07:32 #6831 [Debug] > │ 312,145 314,146 316,151 317,158 319,169 321,182 322,197 324,214 326,232      │

02:07:32 #6832 [Debug] > │ 327,251 329,270 331,288 332,305 334,321 336,334 337,346 339,354 341,360      │

02:07:32 #6833 [Debug] > │ 342,363 344,362 346,359 347,352 349,342 351,330 352,316 354,300 356,283      │

02:07:32 #6834 [Debug] > │ 357,265 359,247 361,229 362,212 364,197 366,183 367,172 369,163 371,156      │

02:07:32 #6835 [Debug] > │ 372,153 374,153 376,156 377,161 379,170 381,181 382,194 384,209 386,226      │

02:07:32 #6836 [Debug] > │ 387,243 389,260 391,277 392,294 394,309 396,323 397,335 399,344 401,351      │

02:07:32 #6837 [Debug] > │ 402,355 404,356 406,354 407,349 409,341 410,331 412,319 414,305 415,289      │

02:07:32 #6838 [Debug] > │ 417,273 419,256 420,239 422,223 424,208 425,194 427,182 429,172 430,165      │

02:07:32 #6839 [Debug] > │ 432,161 434,159 435,160 437,164 439,171 440,180 442,192 444,205 445,220      │

02:07:32 #6840 [Debug] > │ 447,235 449,252 450,268 452,284 454,299 455,313 457,325 459,335 460,342      │

02:07:32 #6841 [Debug] > │ 462,347 464,350 465,349 467,346 469,340 470,332 472,321 474,309 475,295      │

02:07:32 #6842 [Debug] > │ 477,280 479,264 480,248 482,232 484,217 485,204 487,192 489,181 490,173      │

02:07:32 #6843 [Debug] > │ 492,168 494,165 495,165 497,167 499,172 500,180 502,189 504,201 505,215      │

02:07:32 #6844 [Debug] > │ 507,229 509,244 510,260 512,275 514,290 515,303 517,316 519,326 520,335      │

02:07:32 #6845 [Debug] > │ 522,341 524,344 525,345 527,343 529,339 530,332 532,323 534,312 535,300      │

02:07:32 #6846 [Debug] > │ 537,286 539,271 540,256 542,241 544,226 545,213 547,200 549,190 550,181      │

02:07:32 #6847 [Debug] > │ 552,175 554,171 555,169 557,170 559,174 560,180 562,188 564,198 565,210      │

02:07:32 #6848 [Debug] > │ 567,223 569,238 "/>                                                          │

02:07:32 #6849 [Debug] > │ <rect x="464" y="235" width="116" height="30" opacity="1" fill="none"        │

02:07:32 #6850 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:32 #6851 [Debug] > │ <text x="504" y="245" dy="0.76em" text-anchor="start"                        │

02:07:32 #6852 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6853 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6854 [Debug] > │ position (m)                                                                 │

02:07:32 #6855 [Debug] > │ </text>                                                                      │

02:07:32 #6856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:32 #6857 [Debug] > │ points="474,250 494,250 "/>                                                  │

02:07:32 #6858 [Debug] > │ </svg>                                                                       │

02:07:32 #6859 [Debug] > │                                                                              │

02:07:32 #6860 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:32 #6861 [Debug] >

02:07:32 #6862 [Debug] > ╭─[ 600.89ms - stdout ]────────────────────────────────────────────────────────╮

02:07:32 #6863 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:32 #6864 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:32 #6865 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:32 #6866 [Debug] > │     let v2 : bool = v1 < 301                                                 │

02:07:32 #6867 [Debug] > │     v2                                                                       │

02:07:32 #6868 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:32 #6869 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:32 #6870 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:32 #6871 [Debug] > │     v3                                                                       │

02:07:32 #6872 [Debug] > │ and method3 (v0 : float, v1 : float, v2 : float, v3 : float) : struct (float │

02:07:32 #6873 [Debug] > │ * float * float) =                                                           │

02:07:32 #6874 [Debug] > │     let v4 : bool = v3 <= 0.0                                                │

02:07:32 #6875 [Debug] > │     if v4 then                                                               │

02:07:32 #6876 [Debug] > │         struct (v0, v1, v2)                                                  │

02:07:32 #6877 [Debug] > │     else                                                                     │

02:07:32 #6878 [Debug] > │         let v5 : float =  -v2                                                │

02:07:32 #6879 [Debug] > │         let v6 : bool = v2 >= v5                                             │

02:07:32 #6880 [Debug] > │         let v7 : float =                                                     │

02:07:32 #6881 [Debug] > │             if v6 then                                                       │

02:07:32 #6882 [Debug] > │                 v2                                                           │

02:07:32 #6883 [Debug] > │             else                                                             │

02:07:32 #6884 [Debug] > │                 v5                                                           │

02:07:32 #6885 [Debug] > │         let v8 : float = -0.0030787608005179976 * v7                         │

02:07:32 #6886 [Debug] > │         let v9 : float = v8 * v2                                             │

02:07:32 #6887 [Debug] > │         let v10 : float = v9 / 2.0                                           │

02:07:32 #6888 [Debug] > │         let v11 : float = -0.8 * v1                                          │

02:07:32 #6889 [Debug] > │         let v12 : float = v11 + v10                                          │

02:07:32 #6890 [Debug] > │         let v13 : float = v12 + -0.026477955                                 │

02:07:32 #6891 [Debug] > │         let v14 : float = v13 / 0.0027                                       │

02:07:32 #6892 [Debug] > │         let v15 : float = v0 + 0.001                                         │

02:07:32 #6893 [Debug] > │         let v16 : float = v2 * 0.001                                         │

02:07:32 #6894 [Debug] > │         let v17 : float = v1 + v16                                           │

02:07:32 #6895 [Debug] > │         let v18 : float = v14 * 0.001                                        │

02:07:32 #6896 [Debug] > │         let v19 : float = v2 + v18                                           │

02:07:32 #6897 [Debug] > │         let v20 : float = v3 - 1.0                                           │

02:07:32 #6898 [Debug] > │         method3(v15, v17, v19, v20)                                          │

02:07:32 #6899 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:32 #6900 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:32 #6901 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (301)                      │

02:07:32 #6902 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:32 #6903 [Debug] > │     while method1(v1) do                                                     │

02:07:32 #6904 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:32 #6905 [Debug] > │         let v4 : float = float v3                                            │

02:07:32 #6906 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:07:32 #6907 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:32 #6908 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:32 #6909 [Debug] > │         v1.l0 <- v6                                                          │

02:07:32 #6910 [Debug] > │         ()                                                                   │

02:07:32 #6911 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:32 #6912 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:32 #6913 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:32 #6914 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:32 #6915 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:32 #6916 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:32 #6917 [Debug] > │         let v13 : float = 0.0                                                │

02:07:32 #6918 [Debug] > │         let v14 : float = 0.1                                                │

02:07:32 #6919 [Debug] > │         let v15 : float = 0.0                                                │

02:07:32 #6920 [Debug] > │         let v16 : float = 0.0                                                │

02:07:32 #6921 [Debug] > │         let struct (v17 : float, v18 : float, v19 : float) = method3(v13,    │

02:07:32 #6922 [Debug] > │ v14, v15, v16)                                                               │

02:07:32 #6923 [Debug] > │         let v20 : float = 0.0                                                │

02:07:32 #6924 [Debug] > │         let v21 : float = 0.1                                                │

02:07:32 #6925 [Debug] > │         let v22 : float = 0.0                                                │

02:07:32 #6926 [Debug] > │         let v23 : float = 1.0                                                │

02:07:32 #6927 [Debug] > │         let struct (v24 : float, v25 : float, v26 : float) = method3(v20,    │

02:07:32 #6928 [Debug] > │ v21, v22, v23)                                                               │

02:07:32 #6929 [Debug] > │         let v27 : float = v24 - v17                                          │

02:07:32 #6930 [Debug] > │         let v28 : float = v12 / v27                                          │

02:07:32 #6931 [Debug] > │         let v29 : float = round v28                                          │

02:07:32 #6932 [Debug] > │         let v30 : float =  -v29                                              │

02:07:32 #6933 [Debug] > │         let v31 : bool = v29 >= v30                                          │

02:07:32 #6934 [Debug] > │         let v32 : float =                                                    │

02:07:32 #6935 [Debug] > │             if v31 then                                                      │

02:07:32 #6936 [Debug] > │                 v29                                                          │

02:07:32 #6937 [Debug] > │             else                                                             │

02:07:32 #6938 [Debug] > │                 v30                                                          │

02:07:32 #6939 [Debug] > │         let v33 : float = 0.0                                                │

02:07:32 #6940 [Debug] > │         let v34 : float = 0.1                                                │

02:07:32 #6941 [Debug] > │         let v35 : float = 0.0                                                │

02:07:32 #6942 [Debug] > │         let struct (v36 : float, v37 : float, v38 : float) = method3(v33,    │

02:07:32 #6943 [Debug] > │ v34, v35, v32)                                                               │

02:07:32 #6944 [Debug] > │         v8.[int v11] <- v37                                                  │

02:07:32 #6945 [Debug] > │         let v39 : int32 = v11 + 1                                            │

02:07:32 #6946 [Debug] > │         v9.l0 <- v39                                                         │

02:07:32 #6947 [Debug] > │         ()                                                                   │

02:07:32 #6948 [Debug] > │     let v40 : string = "position (m)"                                        │

02:07:32 #6949 [Debug] > │     let v41 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:32 #6950 [Debug] > │ (v40, v0, v8)|]                                                              │

02:07:32 #6951 [Debug] > │     let v42 : string = "ping pong ball on a slinky"                          │

02:07:32 #6952 [Debug] > │     let v43 : string = "time (s)"                                            │

02:07:32 #6953 [Debug] > │     let v44 : string = ""                                                    │

02:07:32 #6954 [Debug] > │     struct (v42, v43, v44, v41)                                              │

02:07:32 #6955 [Debug] > │ method0()                                                                    │

02:07:32 #6956 [Debug] > │                                                                              │

02:07:32 #6957 [Debug] > │                                                                              │

02:07:32 #6958 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:32 #6959 [Debug] >

02:07:32 #6960 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:32 #6961 [Debug] > // // test

02:07:32 #6962 [Debug] >

02:07:32 #6963 [Debug] > inl pingpong_velocity t =

02:07:32 #6964 [Debug] >     velocity_ftxv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ()) t

02:07:32 #6965 [Debug] >

02:07:32 #6966 [Debug] > inl x = am'.init_series 0 3 0.01

02:07:32 #6967 [Debug] > inl y = x |> am.map pingpong_velocity

02:07:32 #6968 [Debug] > "ping pong ball on a slinky", "time (s)", "", ;[[ "velocity (m/s)", x, y ]]

02:07:32 #6969 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3217-1711-1782d98acf2a\main.spi

02:07:32 #6970 [Debug] >

02:07:32 #6971 [Debug] > ╭─[ 325.54ms - return value ]──────────────────────────────────────────────────╮

02:07:32 #6972 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:32 #6973 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:32 #6974 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:32 #6975 [Debug] > │ stroke="none"/>                                                              │

02:07:32 #6976 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:32 #6977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #6978 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #6979 [Debug] > │ ping pong ball on a slinky                                                   │

02:07:32 #6980 [Debug] > │ </text>                                                                      │

02:07:32 #6981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:07:32 #6982 [Debug] > │ y2="75"/>                                                                    │

02:07:32 #6983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:32 #6984 [Debug] > │ y2="75"/>                                                                    │

02:07:32 #6985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:07:32 #6986 [Debug] > │ y2="75"/>                                                                    │

02:07:32 #6987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:07:32 #6988 [Debug] > │ y2="75"/>                                                                    │

02:07:32 #6989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:07:32 #6990 [Debug] > │ y2="75"/>                                                                    │

02:07:32 #6991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:07:32 #6992 [Debug] > │ x2="103" y2="75"/>                                                           │

02:07:32 #6993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:07:32 #6994 [Debug] > │ x2="111" y2="75"/>                                                           │

02:07:32 #6995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:32 #6996 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:32 #6997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:07:32 #6998 [Debug] > │ x2="128" y2="75"/>                                                           │

02:07:32 #6999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:07:32 #7000 [Debug] > │ x2="136" y2="75"/>                                                           │

02:07:32 #7001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:07:32 #7002 [Debug] > │ x2="144" y2="75"/>                                                           │

02:07:32 #7003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:07:32 #7004 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:32 #7005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:07:32 #7006 [Debug] > │ x2="161" y2="75"/>                                                           │

02:07:32 #7007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:32 #7008 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:32 #7009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:07:32 #7010 [Debug] > │ x2="178" y2="75"/>                                                           │

02:07:32 #7011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:07:32 #7012 [Debug] > │ x2="186" y2="75"/>                                                           │

02:07:32 #7013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:07:32 #7014 [Debug] > │ x2="194" y2="75"/>                                                           │

02:07:32 #7015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:07:32 #7016 [Debug] > │ x2="203" y2="75"/>                                                           │

02:07:32 #7017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:07:32 #7018 [Debug] > │ x2="211" y2="75"/>                                                           │

02:07:32 #7019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:32 #7020 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:32 #7021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:07:32 #7022 [Debug] > │ x2="228" y2="75"/>                                                           │

02:07:32 #7023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:07:32 #7024 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:32 #7025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:07:32 #7026 [Debug] > │ x2="244" y2="75"/>                                                           │

02:07:32 #7027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:07:32 #7028 [Debug] > │ x2="252" y2="75"/>                                                           │

02:07:32 #7029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:07:32 #7030 [Debug] > │ x2="261" y2="75"/>                                                           │

02:07:32 #7031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:32 #7032 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:32 #7033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:07:32 #7034 [Debug] > │ x2="277" y2="75"/>                                                           │

02:07:32 #7035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:07:32 #7036 [Debug] > │ x2="286" y2="75"/>                                                           │

02:07:32 #7037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:07:32 #7038 [Debug] > │ x2="294" y2="75"/>                                                           │

02:07:32 #7039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:07:32 #7040 [Debug] > │ x2="302" y2="75"/>                                                           │

02:07:32 #7041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:07:32 #7042 [Debug] > │ x2="311" y2="75"/>                                                           │

02:07:32 #7043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:32 #7044 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:32 #7045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:07:32 #7046 [Debug] > │ x2="327" y2="75"/>                                                           │

02:07:32 #7047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:07:32 #7048 [Debug] > │ x2="336" y2="75"/>                                                           │

02:07:32 #7049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:07:32 #7050 [Debug] > │ x2="344" y2="75"/>                                                           │

02:07:32 #7051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:07:32 #7052 [Debug] > │ x2="352" y2="75"/>                                                           │

02:07:32 #7053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:07:32 #7054 [Debug] > │ x2="361" y2="75"/>                                                           │

02:07:32 #7055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:32 #7056 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:32 #7057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:07:32 #7058 [Debug] > │ x2="377" y2="75"/>                                                           │

02:07:32 #7059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:07:32 #7060 [Debug] > │ x2="386" y2="75"/>                                                           │

02:07:32 #7061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:07:32 #7062 [Debug] > │ x2="394" y2="75"/>                                                           │

02:07:32 #7063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:07:32 #7064 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:32 #7065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:07:32 #7066 [Debug] > │ x2="410" y2="75"/>                                                           │

02:07:32 #7067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:32 #7068 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:32 #7069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:07:32 #7070 [Debug] > │ x2="427" y2="75"/>                                                           │

02:07:32 #7071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:07:32 #7072 [Debug] > │ x2="435" y2="75"/>                                                           │

02:07:32 #7073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:07:32 #7074 [Debug] > │ x2="444" y2="75"/>                                                           │

02:07:32 #7075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:07:32 #7076 [Debug] > │ x2="452" y2="75"/>                                                           │

02:07:32 #7077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:07:32 #7078 [Debug] > │ x2="460" y2="75"/>                                                           │

02:07:32 #7079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:32 #7080 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:32 #7081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:07:32 #7082 [Debug] > │ x2="477" y2="75"/>                                                           │

02:07:32 #7083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:07:32 #7084 [Debug] > │ x2="485" y2="75"/>                                                           │

02:07:32 #7085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:07:32 #7086 [Debug] > │ x2="494" y2="75"/>                                                           │

02:07:32 #7087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:07:32 #7088 [Debug] > │ x2="502" y2="75"/>                                                           │

02:07:32 #7089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:07:32 #7090 [Debug] > │ x2="510" y2="75"/>                                                           │

02:07:32 #7091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:32 #7092 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:32 #7093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:07:32 #7094 [Debug] > │ x2="527" y2="75"/>                                                           │

02:07:32 #7095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:07:32 #7096 [Debug] > │ x2="535" y2="75"/>                                                           │

02:07:32 #7097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:07:32 #7098 [Debug] > │ x2="544" y2="75"/>                                                           │

02:07:32 #7099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:07:32 #7100 [Debug] > │ x2="552" y2="75"/>                                                           │

02:07:32 #7101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:07:32 #7102 [Debug] > │ x2="560" y2="75"/>                                                           │

02:07:32 #7103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:32 #7104 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:32 #7105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:07:32 #7106 [Debug] > │ x2="577" y2="75"/>                                                           │

02:07:32 #7107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="414"         │

02:07:32 #7108 [Debug] > │ x2="584" y2="414"/>                                                          │

02:07:32 #7109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:07:32 #7110 [Debug] > │ x2="584" y2="398"/>                                                          │

02:07:32 #7111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:07:32 #7112 [Debug] > │ x2="584" y2="383"/>                                                          │

02:07:32 #7113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:07:32 #7114 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:32 #7115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="352"         │

02:07:32 #7116 [Debug] > │ x2="584" y2="352"/>                                                          │

02:07:32 #7117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="337"         │

02:07:32 #7118 [Debug] > │ x2="584" y2="337"/>                                                          │

02:07:32 #7119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:07:32 #7120 [Debug] > │ x2="584" y2="321"/>                                                          │

02:07:32 #7121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:07:32 #7122 [Debug] > │ x2="584" y2="306"/>                                                          │

02:07:32 #7123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="291"         │

02:07:32 #7124 [Debug] > │ x2="584" y2="291"/>                                                          │

02:07:32 #7125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="275"         │

02:07:32 #7126 [Debug] > │ x2="584" y2="275"/>                                                          │

02:07:32 #7127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:07:32 #7128 [Debug] > │ x2="584" y2="260"/>                                                          │

02:07:32 #7129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="244"         │

02:07:32 #7130 [Debug] > │ x2="584" y2="244"/>                                                          │

02:07:32 #7131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:07:32 #7132 [Debug] > │ x2="584" y2="229"/>                                                          │

02:07:32 #7133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:07:32 #7134 [Debug] > │ x2="584" y2="214"/>                                                          │

02:07:32 #7135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:07:32 #7136 [Debug] > │ x2="584" y2="198"/>                                                          │

02:07:32 #7137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:07:32 #7138 [Debug] > │ x2="584" y2="183"/>                                                          │

02:07:32 #7139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:07:32 #7140 [Debug] > │ x2="584" y2="167"/>                                                          │

02:07:32 #7141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:07:32 #7142 [Debug] > │ x2="584" y2="152"/>                                                          │

02:07:32 #7143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:07:32 #7144 [Debug] > │ x2="584" y2="137"/>                                                          │

02:07:32 #7145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:07:32 #7146 [Debug] > │ x2="584" y2="121"/>                                                          │

02:07:32 #7147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:07:32 #7148 [Debug] > │ x2="584" y2="106"/>                                                          │

02:07:32 #7149 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:32 #7150 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7151 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7152 [Debug] > │ time (s)                                                                     │

02:07:32 #7153 [Debug] > │ </text>                                                                      │

02:07:32 #7154 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:32 #7155 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7156 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:32 #7157 [Debug] > │                                                                              │

02:07:32 #7158 [Debug] > │ </text>                                                                      │

02:07:32 #7159 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:32 #7160 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7161 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7162 [Debug] > │ time (s)                                                                     │

02:07:32 #7163 [Debug] > │ </text>                                                                      │

02:07:32 #7164 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7165 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7166 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:32 #7167 [Debug] > │                                                                              │

02:07:32 #7168 [Debug] > │ </text>                                                                      │

02:07:32 #7169 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:32 #7170 [Debug] > │ y2="75"/>                                                                    │

02:07:32 #7171 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="103" y1="424"        │

02:07:32 #7172 [Debug] > │ x2="103" y2="75"/>                                                           │

02:07:32 #7173 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="136" y1="424"        │

02:07:32 #7174 [Debug] > │ x2="136" y2="75"/>                                                           │

02:07:32 #7175 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:32 #7176 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:32 #7177 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="203" y1="424"        │

02:07:32 #7178 [Debug] > │ x2="203" y2="75"/>                                                           │

02:07:32 #7179 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:07:32 #7180 [Debug] > │ x2="236" y2="75"/>                                                           │

02:07:32 #7181 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:32 #7182 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:32 #7183 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="302" y1="424"        │

02:07:32 #7184 [Debug] > │ x2="302" y2="75"/>                                                           │

02:07:32 #7185 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:07:32 #7186 [Debug] > │ x2="336" y2="75"/>                                                           │

02:07:32 #7187 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:32 #7188 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:32 #7189 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:07:32 #7190 [Debug] > │ x2="402" y2="75"/>                                                           │

02:07:32 #7191 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="435" y1="424"        │

02:07:32 #7192 [Debug] > │ x2="435" y2="75"/>                                                           │

02:07:32 #7193 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:32 #7194 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:32 #7195 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="502" y1="424"        │

02:07:32 #7196 [Debug] > │ x2="502" y2="75"/>                                                           │

02:07:32 #7197 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="535" y1="424"        │

02:07:32 #7198 [Debug] > │ x2="535" y2="75"/>                                                           │

02:07:32 #7199 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="398"         │

02:07:32 #7200 [Debug] > │ x2="584" y2="398"/>                                                          │

02:07:32 #7201 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="360"         │

02:07:32 #7202 [Debug] > │ x2="584" y2="360"/>                                                          │

02:07:32 #7203 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:07:32 #7204 [Debug] > │ x2="584" y2="321"/>                                                          │

02:07:32 #7205 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="283"         │

02:07:32 #7206 [Debug] > │ x2="584" y2="283"/>                                                          │

02:07:32 #7207 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="244"         │

02:07:32 #7208 [Debug] > │ x2="584" y2="244"/>                                                          │

02:07:32 #7209 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="206"         │

02:07:32 #7210 [Debug] > │ x2="584" y2="206"/>                                                          │

02:07:32 #7211 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="167"         │

02:07:32 #7212 [Debug] > │ x2="584" y2="167"/>                                                          │

02:07:32 #7213 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="129"         │

02:07:32 #7214 [Debug] > │ x2="584" y2="129"/>                                                          │

02:07:32 #7215 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="91" x2="584" │

02:07:32 #7216 [Debug] > │ y2="91"/>                                                                    │

02:07:32 #7217 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7218 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:32 #7219 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:32 #7220 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7221 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7222 [Debug] > │ 0.0                                                                          │

02:07:32 #7223 [Debug] > │ </text>                                                                      │

02:07:32 #7224 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7225 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:32 #7226 [Debug] > │ <text x="103" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7227 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7228 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7229 [Debug] > │ 0.2                                                                          │

02:07:32 #7230 [Debug] > │ </text>                                                                      │

02:07:32 #7231 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7232 [Debug] > │ points="103,69 103,74 "/>                                                    │

02:07:32 #7233 [Debug] > │ <text x="136" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7234 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7235 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7236 [Debug] > │ 0.4                                                                          │

02:07:32 #7237 [Debug] > │ </text>                                                                      │

02:07:32 #7238 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7239 [Debug] > │ points="136,69 136,74 "/>                                                    │

02:07:32 #7240 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7241 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7242 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7243 [Debug] > │ 0.6                                                                          │

02:07:32 #7244 [Debug] > │ </text>                                                                      │

02:07:32 #7245 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7246 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:32 #7247 [Debug] > │ <text x="203" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7248 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7249 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7250 [Debug] > │ 0.8                                                                          │

02:07:32 #7251 [Debug] > │ </text>                                                                      │

02:07:32 #7252 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7253 [Debug] > │ points="203,69 203,74 "/>                                                    │

02:07:32 #7254 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7255 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7256 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7257 [Debug] > │ 1.0                                                                          │

02:07:32 #7258 [Debug] > │ </text>                                                                      │

02:07:32 #7259 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7260 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:07:32 #7261 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7262 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7263 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7264 [Debug] > │ 1.2                                                                          │

02:07:32 #7265 [Debug] > │ </text>                                                                      │

02:07:32 #7266 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7267 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:32 #7268 [Debug] > │ <text x="302" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7269 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7270 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7271 [Debug] > │ 1.4                                                                          │

02:07:32 #7272 [Debug] > │ </text>                                                                      │

02:07:32 #7273 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7274 [Debug] > │ points="302,69 302,74 "/>                                                    │

02:07:32 #7275 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7277 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7278 [Debug] > │ 1.6                                                                          │

02:07:32 #7279 [Debug] > │ </text>                                                                      │

02:07:32 #7280 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7281 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:07:32 #7282 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7283 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7284 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7285 [Debug] > │ 1.8                                                                          │

02:07:32 #7286 [Debug] > │ </text>                                                                      │

02:07:32 #7287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7288 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:32 #7289 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7290 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7291 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7292 [Debug] > │ 2.0                                                                          │

02:07:32 #7293 [Debug] > │ </text>                                                                      │

02:07:32 #7294 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7295 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:07:32 #7296 [Debug] > │ <text x="435" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7297 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7298 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7299 [Debug] > │ 2.2                                                                          │

02:07:32 #7300 [Debug] > │ </text>                                                                      │

02:07:32 #7301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7302 [Debug] > │ points="435,69 435,74 "/>                                                    │

02:07:32 #7303 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7304 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7305 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7306 [Debug] > │ 2.4                                                                          │

02:07:32 #7307 [Debug] > │ </text>                                                                      │

02:07:32 #7308 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7309 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:32 #7310 [Debug] > │ <text x="502" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7311 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7312 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7313 [Debug] > │ 2.6                                                                          │

02:07:32 #7314 [Debug] > │ </text>                                                                      │

02:07:32 #7315 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7316 [Debug] > │ points="502,69 502,74 "/>                                                    │

02:07:32 #7317 [Debug] > │ <text x="535" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:32 #7318 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7319 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7320 [Debug] > │ 2.8                                                                          │

02:07:32 #7321 [Debug] > │ </text>                                                                      │

02:07:32 #7322 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7323 [Debug] > │ points="535,69 535,74 "/>                                                    │

02:07:32 #7324 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7325 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:32 #7326 [Debug] > │ <text x="45" y="398" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7327 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7328 [Debug] > │ -2.0                                                                         │

02:07:32 #7329 [Debug] > │ </text>                                                                      │

02:07:32 #7330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7331 [Debug] > │ points="49,398 54,398 "/>                                                    │

02:07:32 #7332 [Debug] > │ <text x="45" y="360" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7333 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7334 [Debug] > │ -1.5                                                                         │

02:07:32 #7335 [Debug] > │ </text>                                                                      │

02:07:32 #7336 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7337 [Debug] > │ points="49,360 54,360 "/>                                                    │

02:07:32 #7338 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7339 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7340 [Debug] > │ -1.0                                                                         │

02:07:32 #7341 [Debug] > │ </text>                                                                      │

02:07:32 #7342 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7343 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:07:32 #7344 [Debug] > │ <text x="45" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7345 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7346 [Debug] > │ -0.5                                                                         │

02:07:32 #7347 [Debug] > │ </text>                                                                      │

02:07:32 #7348 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7349 [Debug] > │ points="49,283 54,283 "/>                                                    │

02:07:32 #7350 [Debug] > │ <text x="45" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7351 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7352 [Debug] > │ 0.0                                                                          │

02:07:32 #7353 [Debug] > │ </text>                                                                      │

02:07:32 #7354 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7355 [Debug] > │ points="49,244 54,244 "/>                                                    │

02:07:32 #7356 [Debug] > │ <text x="45" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7357 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7358 [Debug] > │ 0.5                                                                          │

02:07:32 #7359 [Debug] > │ </text>                                                                      │

02:07:32 #7360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7361 [Debug] > │ points="49,206 54,206 "/>                                                    │

02:07:32 #7362 [Debug] > │ <text x="45" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7363 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7364 [Debug] > │ 1.0                                                                          │

02:07:32 #7365 [Debug] > │ </text>                                                                      │

02:07:32 #7366 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7367 [Debug] > │ points="49,167 54,167 "/>                                                    │

02:07:32 #7368 [Debug] > │ <text x="45" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7369 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7370 [Debug] > │ 1.5                                                                          │

02:07:32 #7371 [Debug] > │ </text>                                                                      │

02:07:32 #7372 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7373 [Debug] > │ points="49,129 54,129 "/>                                                    │

02:07:32 #7374 [Debug] > │ <text x="45" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:32 #7375 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7376 [Debug] > │ 2.0                                                                          │

02:07:32 #7377 [Debug] > │ </text>                                                                      │

02:07:32 #7378 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7379 [Debug] > │ points="49,91 54,91 "/>                                                      │

02:07:32 #7380 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7381 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:32 #7382 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:32 #7383 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7384 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7385 [Debug] > │ 0.0                                                                          │

02:07:32 #7386 [Debug] > │ </text>                                                                      │

02:07:32 #7387 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7388 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:32 #7389 [Debug] > │ <text x="103" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7390 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7391 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7392 [Debug] > │ 0.2                                                                          │

02:07:32 #7393 [Debug] > │ </text>                                                                      │

02:07:32 #7394 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7395 [Debug] > │ points="103,425 103,430 "/>                                                  │

02:07:32 #7396 [Debug] > │ <text x="136" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7397 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7398 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7399 [Debug] > │ 0.4                                                                          │

02:07:32 #7400 [Debug] > │ </text>                                                                      │

02:07:32 #7401 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7402 [Debug] > │ points="136,425 136,430 "/>                                                  │

02:07:32 #7403 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7404 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7405 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7406 [Debug] > │ 0.6                                                                          │

02:07:32 #7407 [Debug] > │ </text>                                                                      │

02:07:32 #7408 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7409 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:32 #7410 [Debug] > │ <text x="203" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7411 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7412 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7413 [Debug] > │ 0.8                                                                          │

02:07:32 #7414 [Debug] > │ </text>                                                                      │

02:07:32 #7415 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7416 [Debug] > │ points="203,425 203,430 "/>                                                  │

02:07:32 #7417 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7418 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7419 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7420 [Debug] > │ 1.0                                                                          │

02:07:32 #7421 [Debug] > │ </text>                                                                      │

02:07:32 #7422 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7423 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:07:32 #7424 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7425 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7426 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7427 [Debug] > │ 1.2                                                                          │

02:07:32 #7428 [Debug] > │ </text>                                                                      │

02:07:32 #7429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7430 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:32 #7431 [Debug] > │ <text x="302" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7432 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7433 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7434 [Debug] > │ 1.4                                                                          │

02:07:32 #7435 [Debug] > │ </text>                                                                      │

02:07:32 #7436 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7437 [Debug] > │ points="302,425 302,430 "/>                                                  │

02:07:32 #7438 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7439 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7440 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7441 [Debug] > │ 1.6                                                                          │

02:07:32 #7442 [Debug] > │ </text>                                                                      │

02:07:32 #7443 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7444 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:07:32 #7445 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7446 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7447 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7448 [Debug] > │ 1.8                                                                          │

02:07:32 #7449 [Debug] > │ </text>                                                                      │

02:07:32 #7450 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7451 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:32 #7452 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7453 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7454 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7455 [Debug] > │ 2.0                                                                          │

02:07:32 #7456 [Debug] > │ </text>                                                                      │

02:07:32 #7457 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7458 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:07:32 #7459 [Debug] > │ <text x="435" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7460 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7461 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7462 [Debug] > │ 2.2                                                                          │

02:07:32 #7463 [Debug] > │ </text>                                                                      │

02:07:32 #7464 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7465 [Debug] > │ points="435,425 435,430 "/>                                                  │

02:07:32 #7466 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7467 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7468 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7469 [Debug] > │ 2.4                                                                          │

02:07:32 #7470 [Debug] > │ </text>                                                                      │

02:07:32 #7471 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7472 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:32 #7473 [Debug] > │ <text x="502" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7474 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7475 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7476 [Debug] > │ 2.6                                                                          │

02:07:32 #7477 [Debug] > │ </text>                                                                      │

02:07:32 #7478 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7479 [Debug] > │ points="502,425 502,430 "/>                                                  │

02:07:32 #7480 [Debug] > │ <text x="535" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:32 #7481 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7482 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7483 [Debug] > │ 2.8                                                                          │

02:07:32 #7484 [Debug] > │ </text>                                                                      │

02:07:32 #7485 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7486 [Debug] > │ points="535,425 535,430 "/>                                                  │

02:07:32 #7487 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7488 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:32 #7489 [Debug] > │ <text x="595" y="398" dy="0.5ex" text-anchor="start"                         │

02:07:32 #7490 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7491 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7492 [Debug] > │ -2.0                                                                         │

02:07:32 #7493 [Debug] > │ </text>                                                                      │

02:07:32 #7494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7495 [Debug] > │ points="585,398 590,398 "/>                                                  │

02:07:32 #7496 [Debug] > │ <text x="595" y="360" dy="0.5ex" text-anchor="start"                         │

02:07:32 #7497 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7498 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7499 [Debug] > │ -1.5                                                                         │

02:07:32 #7500 [Debug] > │ </text>                                                                      │

02:07:32 #7501 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7502 [Debug] > │ points="585,360 590,360 "/>                                                  │

02:07:32 #7503 [Debug] > │ <text x="595" y="321" dy="0.5ex" text-anchor="start"                         │

02:07:32 #7504 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7505 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7506 [Debug] > │ -1.0                                                                         │

02:07:32 #7507 [Debug] > │ </text>                                                                      │

02:07:32 #7508 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7509 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:07:32 #7510 [Debug] > │ <text x="595" y="283" dy="0.5ex" text-anchor="start"                         │

02:07:32 #7511 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7512 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7513 [Debug] > │ -0.5                                                                         │

02:07:32 #7514 [Debug] > │ </text>                                                                      │

02:07:32 #7515 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7516 [Debug] > │ points="585,283 590,283 "/>                                                  │

02:07:32 #7517 [Debug] > │ <text x="617" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:32 #7518 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7519 [Debug] > │ 0.0                                                                          │

02:07:32 #7520 [Debug] > │ </text>                                                                      │

02:07:32 #7521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7522 [Debug] > │ points="585,244 590,244 "/>                                                  │

02:07:32 #7523 [Debug] > │ <text x="617" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:32 #7524 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7525 [Debug] > │ 0.5                                                                          │

02:07:32 #7526 [Debug] > │ </text>                                                                      │

02:07:32 #7527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7528 [Debug] > │ points="585,206 590,206 "/>                                                  │

02:07:32 #7529 [Debug] > │ <text x="617" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:32 #7530 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7531 [Debug] > │ 1.0                                                                          │

02:07:32 #7532 [Debug] > │ </text>                                                                      │

02:07:32 #7533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7534 [Debug] > │ points="585,167 590,167 "/>                                                  │

02:07:32 #7535 [Debug] > │ <text x="617" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:32 #7536 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7537 [Debug] > │ 1.5                                                                          │

02:07:32 #7538 [Debug] > │ </text>                                                                      │

02:07:32 #7539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7540 [Debug] > │ points="585,129 590,129 "/>                                                  │

02:07:32 #7541 [Debug] > │ <text x="617" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:32 #7542 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:32 #7543 [Debug] > │ 2.0                                                                          │

02:07:32 #7544 [Debug] > │ </text>                                                                      │

02:07:32 #7545 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:32 #7546 [Debug] > │ points="585,91 590,91 "/>                                                    │

02:07:32 #7547 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:32 #7548 [Debug] > │ points="69,244 71,275 73,304 74,331 76,356 78,377 79,393 81,406 83,413       │

02:07:32 #7549 [Debug] > │ 84,415 86,412 88,404 89,391 91,375 93,355 94,332 96,307 98,280 99,252        │

02:07:32 #7550 [Debug] > │ 101,223 103,196 104,170 106,146 108,126 109,109 111,96 113,89 114,85 116,87  │

02:07:32 #7551 [Debug] > │ 118,93 119,103 121,118 123,136 124,157 126,180 128,205 129,231 131,257       │

02:07:32 #7552 [Debug] > │ 133,283 134,308 136,331 138,351 139,368 141,381 143,389 144,394 146,393      │

02:07:32 #7553 [Debug] > │ 148,389 149,380 151,367 153,351 154,332 156,311 158,288 159,264 161,239      │

02:07:32 #7554 [Debug] > │ 163,214 164,190 166,168 168,148 169,132 171,118 173,109 174,104 176,103      │

02:07:32 #7555 [Debug] > │ 178,106 179,114 181,125 183,139 184,156 186,176 188,197 189,220 191,244      │

02:07:32 #7556 [Debug] > │ 193,267 194,290 196,312 198,331 199,348 201,361 203,371 204,377 206,379      │

02:07:32 #7557 [Debug] > │ 208,377 209,371 211,361 213,348 214,333 216,314 218,294 219,273 221,251      │

02:07:32 #7558 [Debug] > │ 223,228 224,206 226,185 228,166 229,150 231,136 232,126 234,119 236,117      │

02:07:32 #7559 [Debug] > │ 237,118 239,122 241,130 242,142 244,156 246,173 247,192 249,212 251,233      │

02:07:32 #7560 [Debug] > │ 252,254 254,276 256,296 257,315 259,331 261,345 262,355 264,363 266,366      │

02:07:32 #7561 [Debug] > │ 267,366 269,363 271,356 272,346 274,333 276,317 277,300 279,281 281,261      │

02:07:32 #7562 [Debug] > │ 282,240 284,220 286,200 287,182 289,165 291,151 292,140 294,133 296,128      │

02:07:32 #7563 [Debug] > │ 297,127 299,130 301,136 302,145 304,156 306,171 307,187 309,205 311,224      │

02:07:32 #7564 [Debug] > │ 312,244 314,263 316,283 317,301 319,317 321,331 322,342 324,350 326,355      │

02:07:32 #7565 [Debug] > │ 327,357 329,356 331,351 332,343 334,332 336,319 337,304 339,287 341,269      │

02:07:32 #7566 [Debug] > │ 342,250 344,231 346,212 347,195 349,178 351,164 352,153 354,144 356,138      │

02:07:32 #7567 [Debug] > │ 357,136 359,136 361,140 362,147 364,157 366,169 367,183 369,199 371,216      │

02:07:32 #7568 [Debug] > │ 372,234 374,253 376,271 377,288 379,304 381,318 382,330 384,339 386,346      │

02:07:32 #7569 [Debug] > │ 387,349 389,349 391,346 392,340 394,332 396,321 397,307 399,292 401,276      │

02:07:32 #7570 [Debug] > │ 402,258 404,241 406,223 407,206 409,190 410,176 412,164 414,154 415,148      │

02:07:32 #7571 [Debug] > │ 417,144 419,143 420,145 422,150 424,158 425,168 427,180 429,194 430,210      │

02:07:32 #7572 [Debug] > │ 432,227 434,244 435,261 437,278 439,293 440,307 442,320 444,330 445,337      │

02:07:32 #7573 [Debug] > │ 447,341 449,343 450,342 452,338 454,331 455,322 457,310 459,297 460,282      │

02:07:32 #7574 [Debug] > │ 462,266 464,249 465,233 467,216 469,201 470,187 472,174 474,164 475,156      │

02:07:32 #7575 [Debug] > │ 477,151 479,149 480,149 482,153 484,159 485,167 487,178 489,190 490,204      │

02:07:32 #7576 [Debug] > │ 492,220 494,236 495,252 497,268 499,283 500,297 502,310 504,320 505,329      │

02:07:32 #7577 [Debug] > │ 507,334 509,337 510,337 512,335 514,330 515,322 517,312 519,300 520,287      │

02:07:32 #7578 [Debug] > │ 522,272 524,257 525,241 527,226 529,210 530,196 532,184 534,173 535,164      │

02:07:32 #7579 [Debug] > │ 537,158 539,154 540,154 542,155 544,160 545,167 547,176 549,187 550,199      │

02:07:32 #7580 [Debug] > │ 552,213 554,228 555,244 557,259 559,274 560,288 562,301 564,312 565,321      │

02:07:32 #7581 [Debug] > │ 567,327 569,332 "/>                                                          │

02:07:32 #7582 [Debug] > │ <rect x="454" y="235" width="126" height="30" opacity="1" fill="none"        │

02:07:32 #7583 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:32 #7584 [Debug] > │ <text x="494" y="245" dy="0.76em" text-anchor="start"                        │

02:07:32 #7585 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:32 #7586 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:32 #7587 [Debug] > │ velocity (m/s)                                                               │

02:07:32 #7588 [Debug] > │ </text>                                                                      │

02:07:32 #7589 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:32 #7590 [Debug] > │ points="464,250 484,250 "/>                                                  │

02:07:32 #7591 [Debug] > │ </svg>                                                                       │

02:07:32 #7592 [Debug] > │                                                                              │

02:07:32 #7593 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:32 #7594 [Debug] >

02:07:32 #7595 [Debug] > ╭─[ 653.22ms - stdout ]────────────────────────────────────────────────────────╮

02:07:32 #7596 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:32 #7597 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:32 #7598 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:32 #7599 [Debug] > │     let v2 : bool = v1 < 301                                                 │

02:07:32 #7600 [Debug] > │     v2                                                                       │

02:07:32 #7601 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:32 #7602 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:32 #7603 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:32 #7604 [Debug] > │     v3                                                                       │

02:07:32 #7605 [Debug] > │ and method3 (v0 : float, v1 : float, v2 : float, v3 : float) : struct (float │

02:07:32 #7606 [Debug] > │ * float * float) =                                                           │

02:07:32 #7607 [Debug] > │     let v4 : bool = v3 <= 0.0                                                │

02:07:32 #7608 [Debug] > │     if v4 then                                                               │

02:07:32 #7609 [Debug] > │         struct (v0, v1, v2)                                                  │

02:07:32 #7610 [Debug] > │     else                                                                     │

02:07:32 #7611 [Debug] > │         let v5 : float =  -v2                                                │

02:07:32 #7612 [Debug] > │         let v6 : bool = v2 >= v5                                             │

02:07:32 #7613 [Debug] > │         let v7 : float =                                                     │

02:07:32 #7614 [Debug] > │             if v6 then                                                       │

02:07:32 #7615 [Debug] > │                 v2                                                           │

02:07:32 #7616 [Debug] > │             else                                                             │

02:07:32 #7617 [Debug] > │                 v5                                                           │

02:07:32 #7618 [Debug] > │         let v8 : float = -0.0030787608005179976 * v7                         │

02:07:32 #7619 [Debug] > │         let v9 : float = v8 * v2                                             │

02:07:32 #7620 [Debug] > │         let v10 : float = v9 / 2.0                                           │

02:07:32 #7621 [Debug] > │         let v11 : float = -0.8 * v1                                          │

02:07:32 #7622 [Debug] > │         let v12 : float = v11 + v10                                          │

02:07:32 #7623 [Debug] > │         let v13 : float = v12 + -0.026477955                                 │

02:07:32 #7624 [Debug] > │         let v14 : float = v13 / 0.0027                                       │

02:07:32 #7625 [Debug] > │         let v15 : float = v0 + 0.001                                         │

02:07:32 #7626 [Debug] > │         let v16 : float = v2 * 0.001                                         │

02:07:32 #7627 [Debug] > │         let v17 : float = v1 + v16                                           │

02:07:32 #7628 [Debug] > │         let v18 : float = v14 * 0.001                                        │

02:07:32 #7629 [Debug] > │         let v19 : float = v2 + v18                                           │

02:07:32 #7630 [Debug] > │         let v20 : float = v3 - 1.0                                           │

02:07:32 #7631 [Debug] > │         method3(v15, v17, v19, v20)                                          │

02:07:32 #7632 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:32 #7633 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:32 #7634 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (301)                      │

02:07:32 #7635 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:32 #7636 [Debug] > │     while method1(v1) do                                                     │

02:07:32 #7637 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:32 #7638 [Debug] > │         let v4 : float = float v3                                            │

02:07:32 #7639 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:07:32 #7640 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:32 #7641 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:32 #7642 [Debug] > │         v1.l0 <- v6                                                          │

02:07:32 #7643 [Debug] > │         ()                                                                   │

02:07:32 #7644 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:32 #7645 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:32 #7646 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:32 #7647 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:32 #7648 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:32 #7649 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:32 #7650 [Debug] > │         let v13 : float = 0.0                                                │

02:07:32 #7651 [Debug] > │         let v14 : float = 0.1                                                │

02:07:32 #7652 [Debug] > │         let v15 : float = 0.0                                                │

02:07:32 #7653 [Debug] > │         let v16 : float = 0.0                                                │

02:07:32 #7654 [Debug] > │         let struct (v17 : float, v18 : float, v19 : float) = method3(v13,    │

02:07:32 #7655 [Debug] > │ v14, v15, v16)                                                               │

02:07:32 #7656 [Debug] > │         let v20 : float = 0.0                                                │

02:07:32 #7657 [Debug] > │         let v21 : float = 0.1                                                │

02:07:32 #7658 [Debug] > │         let v22 : float = 0.0                                                │

02:07:32 #7659 [Debug] > │         let v23 : float = 1.0                                                │

02:07:32 #7660 [Debug] > │         let struct (v24 : float, v25 : float, v26 : float) = method3(v20,    │

02:07:32 #7661 [Debug] > │ v21, v22, v23)                                                               │

02:07:32 #7662 [Debug] > │         let v27 : float = v24 - v17                                          │

02:07:32 #7663 [Debug] > │         let v28 : float = v12 / v27                                          │

02:07:32 #7664 [Debug] > │         let v29 : float = round v28                                          │

02:07:32 #7665 [Debug] > │         let v30 : float =  -v29                                              │

02:07:32 #7666 [Debug] > │         let v31 : bool = v29 >= v30                                          │

02:07:32 #7667 [Debug] > │         let v32 : float =                                                    │

02:07:32 #7668 [Debug] > │             if v31 then                                                      │

02:07:32 #7669 [Debug] > │                 v29                                                          │

02:07:32 #7670 [Debug] > │             else                                                             │

02:07:32 #7671 [Debug] > │                 v30                                                          │

02:07:32 #7672 [Debug] > │         let v33 : float = 0.0                                                │

02:07:32 #7673 [Debug] > │         let v34 : float = 0.1                                                │

02:07:32 #7674 [Debug] > │         let v35 : float = 0.0                                                │

02:07:32 #7675 [Debug] > │         let struct (v36 : float, v37 : float, v38 : float) = method3(v33,    │

02:07:32 #7676 [Debug] > │ v34, v35, v32)                                                               │

02:07:32 #7677 [Debug] > │         v8.[int v11] <- v38                                                  │

02:07:32 #7678 [Debug] > │         let v39 : int32 = v11 + 1                                            │

02:07:32 #7679 [Debug] > │         v9.l0 <- v39                                                         │

02:07:32 #7680 [Debug] > │         ()                                                                   │

02:07:32 #7681 [Debug] > │     let v40 : string = "velocity (m/s)"                                      │

02:07:32 #7682 [Debug] > │     let v41 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:32 #7683 [Debug] > │ (v40, v0, v8)|]                                                              │

02:07:32 #7684 [Debug] > │     let v42 : string = "ping pong ball on a slinky"                          │

02:07:32 #7685 [Debug] > │     let v43 : string = "time (s)"                                            │

02:07:32 #7686 [Debug] > │     let v44 : string = ""                                                    │

02:07:32 #7687 [Debug] > │     struct (v42, v43, v44, v41)                                              │

02:07:32 #7688 [Debug] > │ method0()                                                                    │

02:07:32 #7689 [Debug] > │                                                                              │

02:07:32 #7690 [Debug] > │                                                                              │

02:07:32 #7691 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:32 #7692 [Debug] >

02:07:32 #7693 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:32 #7694 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:32 #7695 [Debug] > │ ## shift                                                                     │

02:07:32 #7696 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:32 #7697 [Debug] >

02:07:32 #7698 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:32 #7699 [Debug] > type update_function s = s -> s

02:07:32 #7700 [Debug] >

02:07:32 #7701 [Debug] > type differential_equation s ds = s -> ds

02:07:32 #7702 [Debug] >

02:07:32 #7703 [Debug] > type numerical_method s ds = differential_equation s ds -> update_function s

02:07:32 #7704 [Debug] >

02:07:32 #7705 [Debug] >

02:07:32 #7706 [Debug] > inl solver method =

02:07:32 #7707 [Debug] >     method >> seq.iterate

02:07:32 #7708 [Debug] > inl solver' method =

02:07:32 #7709 [Debug] >     method >> seq.iterate'

02:07:32 #7710 [Debug] > inl solver_ method =

02:07:32 #7711 [Debug] >     method >> seq.iterate_

02:07:32 #7712 [Debug] >

02:07:32 #7713 [Debug] >

02:07:32 #7714 [Debug] > inl euler_cromer_1d dt deriv (state_1d (t0, x0, v0) as t) =

02:07:32 #7715 [Debug] >     inl (rrr (_, _, dvdt)) = deriv t

02:07:32 #7716 [Debug] >     inl t1 = t0 + dt

02:07:32 #7717 [Debug] >     inl v1 = v0 + dvdt * dt

02:07:32 #7718 [Debug] >     inl x1 = x0 + v1 * dt

02:07:32 #7719 [Debug] >     state_1d (t1, x1, v1)

02:07:32 #7720 [Debug] >

02:07:32 #7721 [Debug] > inl update_txv_ec dt m fs =

02:07:32 #7722 [Debug] >     euler_cromer_1d dt (newton_second_1d m fs)

02:07:32 #7723 [Debug] >

02:07:32 #7724 [Debug] > prototype (+++) ds : ds -> ds -> ds

02:07:32 #7725 [Debug] > prototype scale ds : f64 -> ds -> ds

02:07:32 #7726 [Debug] >

02:07:32 #7727 [Debug] > instance (+++) rrr = fun (rrr (dtdt0, dxdt0, dvdt0)) (rrr (dtdt1, dxdt1, dvdt1))

02:07:32 #7728 [Debug] > =>

02:07:32 #7729 [Debug] >     rrr (dtdt0 + dtdt1, dxdt0 + dxdt1, dvdt0 + dvdt1)

02:07:32 #7730 [Debug] >

02:07:32 #7731 [Debug] > instance scale rrr = fun w (rrr (dtdt0, dxdt0, dvdt0)) =>

02:07:32 #7732 [Debug] >     rrr (w * dtdt0, w * dxdt0, w * dvdt0)

02:07:32 #7733 [Debug] >

02:07:32 #7734 [Debug] > prototype shift s : forall ds. f64 -> ds -> s -> s

02:07:32 #7735 [Debug] >

02:07:32 #7736 [Debug] > instance shift state_1d = fun dt ds (state_1d (t, x, v)) =>

02:07:32 #7737 [Debug] >     inl dtdt, dxdt, dvdt =

02:07:32 #7738 [Debug] >         real

02:07:32 #7739 [Debug] >             match ds with

02:07:32 #7740 [Debug] >             | rrr x => x

02:07:32 #7741 [Debug] >             | state_1d x => x

02:07:32 #7742 [Debug] >     state_1d (t + dtdt * dt, x + dxdt * dt, v + dvdt * dt)

02:07:32 #7743 [Debug] >

02:07:32 #7744 [Debug] > inl euler dt deriv st0 =

02:07:32 #7745 [Debug] >     shift dt (deriv st0) st0

02:07:32 #7746 [Debug] >

02:07:32 #7747 [Debug] > inl runge_kutta_4 dt deriv st0 =

02:07:32 #7748 [Debug] >     inl m0 = deriv st0

02:07:32 #7749 [Debug] >     inl m1 = deriv (shift (dt / 2) m0 st0)

02:07:32 #7750 [Debug] >     inl m2 = deriv (shift (dt / 2) m1 st0)

02:07:32 #7751 [Debug] >     inl m3 = deriv (shift dt m2 st0)

02:07:32 #7752 [Debug] >     shift (dt / 6) (m0 +++ m1 +++ m1 +++ m2 +++ m2 +++ m3) st0

02:07:32 #7753 [Debug] >

02:07:32 #7754 [Debug] > inl exponential (_, x0, v0) =

02:07:32 #7755 [Debug] >     1f64, v0, x0

02:07:32 #7756 [Debug] >

02:07:32 #7757 [Debug] > inl of_state_1d (state_1d (t, x, v)) =

02:07:32 #7758 [Debug] >     t, x, v

02:07:32 #7759 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3287-8759-844f15686818\main.spi

02:07:33 #7760 [Debug] >

02:07:33 #7761 [Debug] > ╭─[ 203.93ms - stdout ]────────────────────────────────────────────────────────╮

02:07:33 #7762 [Debug] > │ ()                                                                           │

02:07:33 #7763 [Debug] > │                                                                              │

02:07:33 #7764 [Debug] > │                                                                              │

02:07:33 #7765 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:33 #7766 [Debug] >

02:07:33 #7767 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:33 #7768 [Debug] > // // test

02:07:33 #7769 [Debug] >

02:07:33 #7770 [Debug] > solver (euler 0.01) (of_state_1d >> exponential >> state_1d) (state_1d (0, 1,

02:07:33 #7771 [Debug] > 1)) 800i32

02:07:33 #7772 [Debug] > |> _equal (state_1d (7.999999999999874, 2864.8311229272326, 2864.8311229272326))

02:07:33 #7773 [Debug] >

02:07:33 #7774 [Debug] > solver (euler_cromer_1d 0.1) (of_state_1d >> exponential >> rrr) (state_1d (0,

02:07:33 #7775 [Debug] > 1, 1)) 80i32

02:07:33 #7776 [Debug] > |> _equal (state_1d (7.999999999999988, 3043.379244966009, 2895.0121485099035))

02:07:33 #7777 [Debug] >

02:07:33 #7778 [Debug] > solver (runge_kutta_4 1) (of_state_1d >> exponential >> rrr) (state_1d (0, 1,

02:07:33 #7779 [Debug] > 1)) 8i32

02:07:33 #7780 [Debug] > |> _equal (state_1d (8.0, 2894.789038540849, 2894.789038540849))

02:07:33 #7781 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3311-1158-18d4064711b5\main.spi

02:07:33 #7782 [Debug] >

02:07:33 #7783 [Debug] > ╭─[ 594.85ms - stdout ]────────────────────────────────────────────────────────╮

02:07:33 #7784 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:33 #7785 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (7.999999999999874,       │

02:07:33 #7786 [Debug] > │ 2864.8311229272326, 2864.8311229272326)} / expected: %A{struct               │

02:07:33 #7787 [Debug] > │ (7.999999999999874, 2864.8311229272326, 2864.8311229272326)}"                │

02:07:33 #7788 [Debug] > │     let v1 : string = $"_equal / actual: %A{struct (7.999999999999988,       │

02:07:33 #7789 [Debug] > │ 3043.379244966009, 2895.0121485099035)} / expected: %A{struct                │

02:07:33 #7790 [Debug] > │ (7.999999999999988, 3043.379244966009, 2895.0121485099035)}"                 │

02:07:33 #7791 [Debug] > │     let v2 : string = $"_equal / actual: %A{struct (8.0, 2894.789038540849,  │

02:07:33 #7792 [Debug] > │ 2894.789038540849)} / expected: %A{struct (8.0, 2894.789038540849,           │

02:07:33 #7793 [Debug] > │ 2894.789038540849)}"                                                         │

02:07:33 #7794 [Debug] > │     ()                                                                       │

02:07:33 #7795 [Debug] > │ method0()                                                                    │

02:07:33 #7796 [Debug] > │                                                                              │

02:07:33 #7797 [Debug] > │                                                                              │

02:07:33 #7798 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:33 #7799 [Debug] >

02:07:33 #7800 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:33 #7801 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:33 #7802 [Debug] > │ ## vec                                                                       │

02:07:33 #7803 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:33 #7804 [Debug] >

02:07:33 #7805 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:33 #7806 [Debug] > type vec =

02:07:33 #7807 [Debug] >     {

02:07:33 #7808 [Debug] >         x : f64

02:07:33 #7809 [Debug] >         y : f64

02:07:33 #7810 [Debug] >         z : f64

02:07:33 #7811 [Debug] >     }

02:07:33 #7812 [Debug] >

02:07:33 #7813 [Debug] > inl vec x y z : vec =

02:07:33 #7814 [Debug] >     { x y z }

02:07:33 #7815 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3368-6850-6b63431c0168\main.spi

02:07:33 #7816 [Debug] >

02:07:33 #7817 [Debug] > ╭─[ 233.72ms - stdout ]────────────────────────────────────────────────────────╮

02:07:33 #7818 [Debug] > │ ()                                                                           │

02:07:33 #7819 [Debug] > │                                                                              │

02:07:33 #7820 [Debug] > │                                                                              │

02:07:33 #7821 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:33 #7822 [Debug] >

02:07:33 #7823 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:33 #7824 [Debug] > // // test

02:07:33 #7825 [Debug] >

02:07:33 #7826 [Debug] > vec 1 2 3 .z

02:07:33 #7827 [Debug] > |> _equal 3

02:07:34 #7828 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3392-9232-9d60379ac31c\main.spi

02:07:34 #7829 [Debug] >

02:07:34 #7830 [Debug] > ╭─[ 190.81ms - stdout ]────────────────────────────────────────────────────────╮

02:07:34 #7831 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:34 #7832 [Debug] > │     let v0 : string = $"_equal / actual: %A{3.0} / expected: %A{3.0}"        │

02:07:34 #7833 [Debug] > │     ()                                                                       │

02:07:34 #7834 [Debug] > │ method0()                                                                    │

02:07:34 #7835 [Debug] > │                                                                              │

02:07:34 #7836 [Debug] > │                                                                              │

02:07:34 #7837 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7838 [Debug] >

02:07:34 #7839 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:34 #7840 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:34 #7841 [Debug] > │ ### consts                                                                   │

02:07:34 #7842 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7843 [Debug] >

02:07:34 #7844 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:34 #7845 [Debug] > inl i_hat () = vec 1 0 0

02:07:34 #7846 [Debug] > inl j_hat () = vec 0 1 0

02:07:34 #7847 [Debug] > inl k_hat () = vec 0 0 1

02:07:34 #7848 [Debug] > inl zero_vec () = vec 0 0 0

02:07:34 #7849 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3412-1212-13551401802d\main.spi

02:07:34 #7850 [Debug] >

02:07:34 #7851 [Debug] > ╭─[ 193.72ms - stdout ]────────────────────────────────────────────────────────╮

02:07:34 #7852 [Debug] > │ ()                                                                           │

02:07:34 #7853 [Debug] > │                                                                              │

02:07:34 #7854 [Debug] > │                                                                              │

02:07:34 #7855 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7856 [Debug] >

02:07:34 #7857 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:34 #7858 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:34 #7859 [Debug] > │ ### ^+^                                                                      │

02:07:34 #7860 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7861 [Debug] >

02:07:34 #7862 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:34 #7863 [Debug] > inl (^+^) (a : vec) (b : vec) =

02:07:34 #7864 [Debug] >     vec (a.x + b.x) (a.y + b.y) (a.z + b.z)

02:07:34 #7865 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3432-3217-34d30349ad6b\main.spi

02:07:34 #7866 [Debug] >

02:07:34 #7867 [Debug] > ╭─[ 192.38ms - stdout ]────────────────────────────────────────────────────────╮

02:07:34 #7868 [Debug] > │ ()                                                                           │

02:07:34 #7869 [Debug] > │                                                                              │

02:07:34 #7870 [Debug] > │                                                                              │

02:07:34 #7871 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7872 [Debug] >

02:07:34 #7873 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:34 #7874 [Debug] > // // test

02:07:34 #7875 [Debug] >

02:07:34 #7876 [Debug] > vec 1 2 3 ^+^ vec 4 5 6

02:07:34 #7877 [Debug] > |> _equal (vec 5 7 9)

02:07:34 #7878 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3451-5146-506f838d545c\main.spi

02:07:34 #7879 [Debug] >

02:07:34 #7880 [Debug] > ╭─[ 174.00ms - stdout ]────────────────────────────────────────────────────────╮

02:07:34 #7881 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:34 #7882 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 7.0, 9.0)} /        │

02:07:34 #7883 [Debug] > │ expected: %A{struct (5.0, 7.0, 9.0)}"                                        │

02:07:34 #7884 [Debug] > │     ()                                                                       │

02:07:34 #7885 [Debug] > │ method0()                                                                    │

02:07:34 #7886 [Debug] > │                                                                              │

02:07:34 #7887 [Debug] > │                                                                              │

02:07:34 #7888 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7889 [Debug] >

02:07:34 #7890 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:34 #7891 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:34 #7892 [Debug] > │ ### sum_vec                                                                  │

02:07:34 #7893 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7894 [Debug] >

02:07:34 #7895 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:34 #7896 [Debug] > inl sum_vec vs =

02:07:34 #7897 [Debug] >     vs |> listm.fold (^+^) (zero_vec ())

02:07:34 #7898 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3470-7009-7f90852e57a6\main.spi

02:07:34 #7899 [Debug] >

02:07:34 #7900 [Debug] > ╭─[ 180.38ms - stdout ]────────────────────────────────────────────────────────╮

02:07:34 #7901 [Debug] > │ ()                                                                           │

02:07:34 #7902 [Debug] > │                                                                              │

02:07:34 #7903 [Debug] > │                                                                              │

02:07:34 #7904 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:34 #7905 [Debug] >

02:07:34 #7906 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:34 #7907 [Debug] > // // test

02:07:34 #7908 [Debug] >

02:07:34 #7909 [Debug] > [[ vec 1 2 3; vec 4 5 6 ]]

02:07:34 #7910 [Debug] > |> sum_vec

02:07:34 #7911 [Debug] > |> _equal (vec 5 7 9)

02:07:34 #7912 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3487-8770-88c30357ce1c\main.spi

02:07:35 #7913 [Debug] >

02:07:35 #7914 [Debug] > ╭─[ 175.54ms - stdout ]────────────────────────────────────────────────────────╮

02:07:35 #7915 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:35 #7916 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 7.0, 9.0)} /        │

02:07:35 #7917 [Debug] > │ expected: %A{struct (5.0, 7.0, 9.0)}"                                        │

02:07:35 #7918 [Debug] > │     ()                                                                       │

02:07:35 #7919 [Debug] > │ method0()                                                                    │

02:07:35 #7920 [Debug] > │                                                                              │

02:07:35 #7921 [Debug] > │                                                                              │

02:07:35 #7922 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7923 [Debug] >

02:07:35 #7924 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:35 #7925 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:35 #7926 [Debug] > │ ### *^                                                                       │

02:07:35 #7927 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7928 [Debug] >

02:07:35 #7929 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:35 #7930 [Debug] > inl (*^) c { x y z } =

02:07:35 #7931 [Debug] >     vec (c * x) (c * y) (c * z)

02:07:35 #7932 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3505-0576-077fb6dcb634\main.spi

02:07:35 #7933 [Debug] >

02:07:35 #7934 [Debug] > ╭─[ 149.54ms - stdout ]────────────────────────────────────────────────────────╮

02:07:35 #7935 [Debug] > │ ()                                                                           │

02:07:35 #7936 [Debug] > │                                                                              │

02:07:35 #7937 [Debug] > │                                                                              │

02:07:35 #7938 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7939 [Debug] >

02:07:35 #7940 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:35 #7941 [Debug] > // // test

02:07:35 #7942 [Debug] >

02:07:35 #7943 [Debug] > 5 *^ vec 1 2 3

02:07:35 #7944 [Debug] > |> _equal (vec 5 10 15)

02:07:35 #7945 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3520-2097-25ebb985c8a5\main.spi

02:07:35 #7946 [Debug] >

02:07:35 #7947 [Debug] > ╭─[ 188.14ms - stdout ]────────────────────────────────────────────────────────╮

02:07:35 #7948 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:35 #7949 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 10.0, 15.0)} /      │

02:07:35 #7950 [Debug] > │ expected: %A{struct (5.0, 10.0, 15.0)}"                                      │

02:07:35 #7951 [Debug] > │     ()                                                                       │

02:07:35 #7952 [Debug] > │ method0()                                                                    │

02:07:35 #7953 [Debug] > │                                                                              │

02:07:35 #7954 [Debug] > │                                                                              │

02:07:35 #7955 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7956 [Debug] >

02:07:35 #7957 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:35 #7958 [Debug] > // // test

02:07:35 #7959 [Debug] >

02:07:35 #7960 [Debug] > 3 *^ i_hat () ^+^ 4 *^ k_hat ()

02:07:35 #7961 [Debug] > |> _equal (vec 3 0 4)

02:07:35 #7962 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3540-4020-40e1455fe55b\main.spi

02:07:35 #7963 [Debug] >

02:07:35 #7964 [Debug] > ╭─[ 171.66ms - stdout ]────────────────────────────────────────────────────────╮

02:07:35 #7965 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:35 #7966 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (3.0, 0.0, 4.0)} /        │

02:07:35 #7967 [Debug] > │ expected: %A{struct (3.0, 0.0, 4.0)}"                                        │

02:07:35 #7968 [Debug] > │     ()                                                                       │

02:07:35 #7969 [Debug] > │ method0()                                                                    │

02:07:35 #7970 [Debug] > │                                                                              │

02:07:35 #7971 [Debug] > │                                                                              │

02:07:35 #7972 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7973 [Debug] >

02:07:35 #7974 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:35 #7975 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:35 #7976 [Debug] > │ ### ^*                                                                       │

02:07:35 #7977 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7978 [Debug] >

02:07:35 #7979 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:35 #7980 [Debug] > inl (^*) v c =

02:07:35 #7981 [Debug] >     (*^) c v

02:07:35 #7982 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3557-5791-52485d91ef1b\main.spi

02:07:35 #7983 [Debug] >

02:07:35 #7984 [Debug] > ╭─[ 161.18ms - stdout ]────────────────────────────────────────────────────────╮

02:07:35 #7985 [Debug] > │ ()                                                                           │

02:07:35 #7986 [Debug] > │                                                                              │

02:07:35 #7987 [Debug] > │                                                                              │

02:07:35 #7988 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #7989 [Debug] >

02:07:35 #7990 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:35 #7991 [Debug] > // // test

02:07:35 #7992 [Debug] >

02:07:35 #7993 [Debug] > vec 1 2 3 ^* 5

02:07:35 #7994 [Debug] > |> _equal (vec 5 10 15)

02:07:35 #7995 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3574-7421-76c4f8508280\main.spi

02:07:35 #7996 [Debug] >

02:07:35 #7997 [Debug] > ╭─[ 191.36ms - stdout ]────────────────────────────────────────────────────────╮

02:07:35 #7998 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:35 #7999 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 10.0, 15.0)} /      │

02:07:35 #8000 [Debug] > │ expected: %A{struct (5.0, 10.0, 15.0)}"                                      │

02:07:35 #8001 [Debug] > │     ()                                                                       │

02:07:35 #8002 [Debug] > │ method0()                                                                    │

02:07:35 #8003 [Debug] > │                                                                              │

02:07:35 #8004 [Debug] > │                                                                              │

02:07:35 #8005 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #8006 [Debug] >

02:07:35 #8007 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:35 #8008 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:35 #8009 [Debug] > │ ### ^/                                                                       │

02:07:35 #8010 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:35 #8011 [Debug] >

02:07:35 #8012 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:35 #8013 [Debug] > inl (^/) { x y z } c =

02:07:35 #8014 [Debug] >     vec (x / c) (y / c) (z / c)

02:07:36 #8015 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3594-9405-9b6b4249a12b\main.spi

02:07:36 #8016 [Debug] >

02:07:36 #8017 [Debug] > ╭─[ 208.58ms - stdout ]────────────────────────────────────────────────────────╮

02:07:36 #8018 [Debug] > │ ()                                                                           │

02:07:36 #8019 [Debug] > │                                                                              │

02:07:36 #8020 [Debug] > │                                                                              │

02:07:36 #8021 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:36 #8022 [Debug] >

02:07:36 #8023 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:36 #8024 [Debug] > // // test

02:07:36 #8025 [Debug] >

02:07:36 #8026 [Debug] > vec 1 2 3 ^/ 5

02:07:36 #8027 [Debug] > |> _equal (vec 0.2 0.4 0.6)

02:07:36 #8028 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3615-1504-1957ad38a292\main.spi

02:07:36 #8029 [Debug] >

02:07:36 #8030 [Debug] > ╭─[ 206.97ms - stdout ]────────────────────────────────────────────────────────╮

02:07:36 #8031 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:36 #8032 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (0.2, 0.4, 0.6)} /        │

02:07:36 #8033 [Debug] > │ expected: %A{struct (0.2, 0.4, 0.6)}"                                        │

02:07:36 #8034 [Debug] > │     ()                                                                       │

02:07:36 #8035 [Debug] > │ method0()                                                                    │

02:07:36 #8036 [Debug] > │                                                                              │

02:07:36 #8037 [Debug] > │                                                                              │

02:07:36 #8038 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:36 #8039 [Debug] >

02:07:36 #8040 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:36 #8041 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:36 #8042 [Debug] > │ ### negate_vec                                                               │

02:07:36 #8043 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:36 #8044 [Debug] >

02:07:36 #8045 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:36 #8046 [Debug] > inl negate_vec v =

02:07:36 #8047 [Debug] >     v ^* -1

02:07:36 #8048 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3636-3636-3866cfd96b24\main.spi

02:07:36 #8049 [Debug] >

02:07:36 #8050 [Debug] > ╭─[ 223.80ms - stdout ]────────────────────────────────────────────────────────╮

02:07:36 #8051 [Debug] > │ ()                                                                           │

02:07:36 #8052 [Debug] > │                                                                              │

02:07:36 #8053 [Debug] > │                                                                              │

02:07:36 #8054 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:36 #8055 [Debug] >

02:07:36 #8056 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:36 #8057 [Debug] > // // test

02:07:36 #8058 [Debug] >

02:07:36 #8059 [Debug] > vec 1 2 3

02:07:36 #8060 [Debug] > |> negate_vec

02:07:36 #8061 [Debug] > |> _equal (vec -1 -2 -3)

02:07:36 #8062 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3659-5909-5ef4673325ef\main.spi

02:07:36 #8063 [Debug] >

02:07:36 #8064 [Debug] > ╭─[ 217.01ms - stdout ]────────────────────────────────────────────────────────╮

02:07:36 #8065 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:36 #8066 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (-1.0, -2.0, -3.0)} /     │

02:07:36 #8067 [Debug] > │ expected: %A{struct (-1.0, -2.0, -3.0)}"                                     │

02:07:36 #8068 [Debug] > │     ()                                                                       │

02:07:36 #8069 [Debug] > │ method0()                                                                    │

02:07:36 #8070 [Debug] > │                                                                              │

02:07:36 #8071 [Debug] > │                                                                              │

02:07:36 #8072 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:36 #8073 [Debug] >

02:07:36 #8074 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:36 #8075 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:36 #8076 [Debug] > │ ### ^-^                                                                      │

02:07:36 #8077 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:36 #8078 [Debug] >

02:07:36 #8079 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:36 #8080 [Debug] > inl (^-^) a b =

02:07:36 #8081 [Debug] >     a ^+^ (negate_vec b)

02:07:36 #8082 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3681-8121-8b2ce58fc00e\main.spi

02:07:37 #8083 [Debug] >

02:07:37 #8084 [Debug] > ╭─[ 195.67ms - stdout ]────────────────────────────────────────────────────────╮

02:07:37 #8085 [Debug] > │ ()                                                                           │

02:07:37 #8086 [Debug] > │                                                                              │

02:07:37 #8087 [Debug] > │                                                                              │

02:07:37 #8088 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8089 [Debug] >

02:07:37 #8090 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:37 #8091 [Debug] > // // test

02:07:37 #8092 [Debug] >

02:07:37 #8093 [Debug] > vec 1 2 3 ^-^ vec 4 5 6

02:07:37 #8094 [Debug] > |> _equal (vec -3 -3 -3)

02:07:37 #8095 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3701-0104-0c3feadb3ca6\main.spi

02:07:37 #8096 [Debug] >

02:07:37 #8097 [Debug] > ╭─[ 208.96ms - stdout ]────────────────────────────────────────────────────────╮

02:07:37 #8098 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:37 #8099 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (-3.0, -3.0, -3.0)} /     │

02:07:37 #8100 [Debug] > │ expected: %A{struct (-3.0, -3.0, -3.0)}"                                     │

02:07:37 #8101 [Debug] > │     ()                                                                       │

02:07:37 #8102 [Debug] > │ method0()                                                                    │

02:07:37 #8103 [Debug] > │                                                                              │

02:07:37 #8104 [Debug] > │                                                                              │

02:07:37 #8105 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8106 [Debug] >

02:07:37 #8107 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:37 #8108 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:37 #8109 [Debug] > │ ### <.>                                                                      │

02:07:37 #8110 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8111 [Debug] >

02:07:37 #8112 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:37 #8113 [Debug] > inl (<.>) { x = ax y = ay z = az } { x = bx y = by z = bz } =

02:07:37 #8114 [Debug] >     ax * bx + ay * by + az * bz

02:07:37 #8115 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3722-2251-283b073eee8e\main.spi

02:07:37 #8116 [Debug] >

02:07:37 #8117 [Debug] > ╭─[ 351.08ms - stdout ]────────────────────────────────────────────────────────╮

02:07:37 #8118 [Debug] > │ ()                                                                           │

02:07:37 #8119 [Debug] > │                                                                              │

02:07:37 #8120 [Debug] > │                                                                              │

02:07:37 #8121 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8122 [Debug] >

02:07:37 #8123 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:37 #8124 [Debug] > // // test

02:07:37 #8125 [Debug] >

02:07:37 #8126 [Debug] > vec 1 2 3 <.> vec 4 5 6

02:07:37 #8127 [Debug] > |> _equal 32

02:07:37 #8128 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3757-5779-54e077b3dbfc\main.spi

02:07:37 #8129 [Debug] >

02:07:37 #8130 [Debug] > ╭─[ 170.16ms - stdout ]────────────────────────────────────────────────────────╮

02:07:37 #8131 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:37 #8132 [Debug] > │     let v0 : string = $"_equal / actual: %A{32.0} / expected: %A{32.0}"      │

02:07:37 #8133 [Debug] > │     ()                                                                       │

02:07:37 #8134 [Debug] > │ method0()                                                                    │

02:07:37 #8135 [Debug] > │                                                                              │

02:07:37 #8136 [Debug] > │                                                                              │

02:07:37 #8137 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8138 [Debug] >

02:07:37 #8139 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:37 #8140 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:37 #8141 [Debug] > │ ### \>\<                                                                     │

02:07:37 #8142 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8143 [Debug] >

02:07:37 #8144 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:37 #8145 [Debug] > inl (><) (a : vec) (b : vec) =

02:07:37 #8146 [Debug] >     vec

02:07:37 #8147 [Debug] >         (a.y * b.z - a.z * b.y)

02:07:37 #8148 [Debug] >         (a.z * b.x - a.x * b.z)

02:07:37 #8149 [Debug] >         (a.x * b.y - a.y * b.x)

02:07:37 #8150 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3775-7529-7b5a0ed4ac2e\main.spi

02:07:37 #8151 [Debug] >

02:07:37 #8152 [Debug] > ╭─[ 180.74ms - stdout ]────────────────────────────────────────────────────────╮

02:07:37 #8153 [Debug] > │ ()                                                                           │

02:07:37 #8154 [Debug] > │                                                                              │

02:07:37 #8155 [Debug] > │                                                                              │

02:07:37 #8156 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:37 #8157 [Debug] >

02:07:37 #8158 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:37 #8159 [Debug] > // // test

02:07:37 #8160 [Debug] >

02:07:37 #8161 [Debug] > vec 1 2 3 >< vec 4 5 6

02:07:37 #8162 [Debug] > |> _equal (vec -3 6 -3)

02:07:38 #8163 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3793-9358-99c5205f6656\main.spi

02:07:38 #8164 [Debug] >

02:07:38 #8165 [Debug] > ╭─[ 188.43ms - stdout ]────────────────────────────────────────────────────────╮

02:07:38 #8166 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:38 #8167 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (-3.0, 6.0, -3.0)} /      │

02:07:38 #8168 [Debug] > │ expected: %A{struct (-3.0, 6.0, -3.0)}"                                      │

02:07:38 #8169 [Debug] > │     ()                                                                       │

02:07:38 #8170 [Debug] > │ method0()                                                                    │

02:07:38 #8171 [Debug] > │                                                                              │

02:07:38 #8172 [Debug] > │                                                                              │

02:07:38 #8173 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8174 [Debug] >

02:07:38 #8175 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:38 #8176 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:38 #8177 [Debug] > │ ### magnitude                                                                │

02:07:38 #8178 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8179 [Debug] >

02:07:38 #8180 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:38 #8181 [Debug] > inl magnitude v =

02:07:38 #8182 [Debug] >     v <.> v |> sqrt

02:07:38 #8183 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3813-1303-13839b0e12c7\main.spi

02:07:38 #8184 [Debug] >

02:07:38 #8185 [Debug] > ╭─[ 165.75ms - stdout ]────────────────────────────────────────────────────────╮

02:07:38 #8186 [Debug] > │ ()                                                                           │

02:07:38 #8187 [Debug] > │                                                                              │

02:07:38 #8188 [Debug] > │                                                                              │

02:07:38 #8189 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8190 [Debug] >

02:07:38 #8191 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:38 #8192 [Debug] > // // test

02:07:38 #8193 [Debug] >

02:07:38 #8194 [Debug] > vec 1 2 3

02:07:38 #8195 [Debug] > |> magnitude

02:07:38 #8196 [Debug] > |> _almost_equal 3.7416573867739413

02:07:38 #8197 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3829-2982-2b7f18e5c733\main.spi

02:07:38 #8198 [Debug] >

02:07:38 #8199 [Debug] > ╭─[ 157.02ms - stdout ]────────────────────────────────────────────────────────╮

02:07:38 #8200 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:38 #8201 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{3.7416573867739413} /     │

02:07:38 #8202 [Debug] > │ expected: %A{3.7416573867739413}"                                            │

02:07:38 #8203 [Debug] > │     ()                                                                       │

02:07:38 #8204 [Debug] > │ method0()                                                                    │

02:07:38 #8205 [Debug] > │                                                                              │

02:07:38 #8206 [Debug] > │                                                                              │

02:07:38 #8207 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8208 [Debug] >

02:07:38 #8209 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:38 #8210 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:38 #8211 [Debug] > │ ### v1                                                                       │

02:07:38 #8212 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8213 [Debug] >

02:07:38 #8214 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:38 #8215 [Debug] > inl v1 t =

02:07:38 #8216 [Debug] >     2 *^ (t ** 2 *^ i_hat () ^+^ 3 *^ (t ** 3 *^ j_hat () ^+^ t ** 4 *^ k_hat

02:07:38 #8217 [Debug] > ()))

02:07:38 #8218 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3846-4605-43f383310a49\main.spi

02:07:38 #8219 [Debug] >

02:07:38 #8220 [Debug] > ╭─[ 181.76ms - stdout ]────────────────────────────────────────────────────────╮

02:07:38 #8221 [Debug] > │ ()                                                                           │

02:07:38 #8222 [Debug] > │                                                                              │

02:07:38 #8223 [Debug] > │                                                                              │

02:07:38 #8224 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8225 [Debug] >

02:07:38 #8226 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:38 #8227 [Debug] > // // test

02:07:38 #8228 [Debug] >

02:07:38 #8229 [Debug] > v1 1

02:07:38 #8230 [Debug] > |> _equal (vec 2 6 6)

02:07:38 #8231 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3864-6448-682d9f76033f\main.spi

02:07:38 #8232 [Debug] >

02:07:38 #8233 [Debug] > ╭─[ 203.65ms - stdout ]────────────────────────────────────────────────────────╮

02:07:38 #8234 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:38 #8235 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (2.0, 6.0, 6.0)} /        │

02:07:38 #8236 [Debug] > │ expected: %A{struct (2.0, 6.0, 6.0)}"                                        │

02:07:38 #8237 [Debug] > │     ()                                                                       │

02:07:38 #8238 [Debug] > │ method0()                                                                    │

02:07:38 #8239 [Debug] > │                                                                              │

02:07:38 #8240 [Debug] > │                                                                              │

02:07:38 #8241 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8242 [Debug] >

02:07:38 #8243 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:38 #8244 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:38 #8245 [Debug] > │ ### vec_derivative                                                           │

02:07:38 #8246 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:38 #8247 [Debug] >

02:07:38 #8248 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:38 #8249 [Debug] > type vec_derivative = (f64 -> vec) -> f64 -> vec

02:07:38 #8250 [Debug] >

02:07:38 #8251 [Debug] > inl vec_derivative dt : vec_derivative =

02:07:38 #8252 [Debug] >     fun v t =>

02:07:38 #8253 [Debug] >         (v (t + dt / 2) ^-^ v (t - dt / 2)) ^/ dt

02:07:38 #8254 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3885-8543-89852c8770d3\main.spi

02:07:39 #8255 [Debug] >

02:07:39 #8256 [Debug] > ╭─[ 195.44ms - stdout ]────────────────────────────────────────────────────────╮

02:07:39 #8257 [Debug] > │ ()                                                                           │

02:07:39 #8258 [Debug] > │                                                                              │

02:07:39 #8259 [Debug] > │                                                                              │

02:07:39 #8260 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:39 #8261 [Debug] >

02:07:39 #8262 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:39 #8263 [Debug] > // // test

02:07:39 #8264 [Debug] >

02:07:39 #8265 [Debug] > vec_derivative 0.01 v1 3 .x

02:07:39 #8266 [Debug] > |> _almost_equal (derivative 0.01 (v1 >> fun v => v.x) 3)

02:07:39 #8267 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3905-0517-07578db43606\main.spi

02:07:39 #8268 [Debug] >

02:07:39 #8269 [Debug] > ╭─[ 178.17ms - stdout ]────────────────────────────────────────────────────────╮

02:07:39 #8270 [Debug] > │ let rec method0 () : unit =                                                  │

02:07:39 #8271 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{11.999999999999744} /     │

02:07:39 #8272 [Debug] > │ expected: %A{11.999999999999744}"                                            │

02:07:39 #8273 [Debug] > │     ()                                                                       │

02:07:39 #8274 [Debug] > │ method0()                                                                    │

02:07:39 #8275 [Debug] > │                                                                              │

02:07:39 #8276 [Debug] > │                                                                              │

02:07:39 #8277 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:39 #8278 [Debug] >

02:07:39 #8279 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:39 #8280 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:39 #8281 [Debug] > │ ## states_ps                                                                 │

02:07:39 #8282 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:39 #8283 [Debug] >

02:07:39 #8284 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:39 #8285 [Debug] > nominal particle_state =

02:07:39 #8286 [Debug] >     {

02:07:39 #8287 [Debug] >         mass : f64

02:07:39 #8288 [Debug] >         charge : f64

02:07:39 #8289 [Debug] >         time : f64

02:07:39 #8290 [Debug] >         pos_vec : vec

02:07:39 #8291 [Debug] >         velocity : vec

02:07:39 #8292 [Debug] >     }

02:07:39 #8293 [Debug] >

02:07:39 #8294 [Debug] > inl default_particle_state () : particle_state =

02:07:39 #8295 [Debug] >     particle_state {

02:07:39 #8296 [Debug] >         mass = 1

02:07:39 #8297 [Debug] >         charge = 0

02:07:39 #8298 [Debug] >         time = 0

02:07:39 #8299 [Debug] >         pos_vec = zero_vec ()

02:07:39 #8300 [Debug] >         velocity = zero_vec ()

02:07:39 #8301 [Debug] >     }

02:07:39 #8302 [Debug] >

02:07:39 #8303 [Debug] > type one_body_force = particle_state -> vec

02:07:39 #8304 [Debug] >

02:07:39 #8305 [Debug] > nominal d_particle_state =

02:07:39 #8306 [Debug] >     {

02:07:39 #8307 [Debug] >         dmdt : f64

02:07:39 #8308 [Debug] >         dqdt : f64

02:07:39 #8309 [Debug] >         dtdt : f64

02:07:39 #8310 [Debug] >         drdt : vec

02:07:39 #8311 [Debug] >         dvdt : vec

02:07:39 #8312 [Debug] >     }

02:07:39 #8313 [Debug] >

02:07:39 #8314 [Debug] > inl newton_second_ps (fs : list one_body_force) (st : particle_state) :

02:07:39 #8315 [Debug] > d_particle_state =

02:07:39 #8316 [Debug] >     inl f_net = fs |> listm.map (fun f => f st) |> sum_vec

02:07:39 #8317 [Debug] >     d_particle_state {

02:07:39 #8318 [Debug] >         dmdt = 0

02:07:39 #8319 [Debug] >         dqdt = 0

02:07:39 #8320 [Debug] >         dtdt = 1

02:07:39 #8321 [Debug] >         drdt = st.velocity

02:07:39 #8322 [Debug] >         dvdt = f_net ^/ st.mass

02:07:39 #8323 [Debug] >     }

02:07:39 #8324 [Debug] >

02:07:39 #8325 [Debug] > inl earth_surface_gravity (st : particle_state) =

02:07:39 #8326 [Debug] >     inl g = 9.80665

02:07:39 #8327 [Debug] >     -st.mass * g *^ k_hat ()

02:07:39 #8328 [Debug] >

02:07:39 #8329 [Debug] > inl air_resistance drag rho area (st : particle_state) =

02:07:39 #8330 [Debug] >     -0.5 * drag * rho * area * magnitude st.velocity *^ st.velocity

02:07:39 #8331 [Debug] >

02:07:39 #8332 [Debug] > inl euler_cromer_ps dt (deriv : particle_state -> d_particle_state)

02:07:39 #8333 [Debug] > (particle_state st) =

02:07:39 #8334 [Debug] >     inl dst : d_particle_state = deriv (particle_state st)

02:07:39 #8335 [Debug] >     inl v' = st.velocity ^+^ dst.dvdt ^* dt

02:07:39 #8336 [Debug] >     particle_state { st with

02:07:39 #8337 [Debug] >         time = st.time + dt

02:07:39 #8338 [Debug] >         pos_vec = st.pos_vec ^+^ v' ^* dt

02:07:39 #8339 [Debug] >         velocity = st.velocity ^+^ dst.dvdt ^* dt

02:07:39 #8340 [Debug] >     }

02:07:39 #8341 [Debug] >

02:07:39 #8342 [Debug] > instance (+++) d_particle_state = fun (dps : d_particle_state) (dps' :

02:07:39 #8343 [Debug] > d_particle_state) =>

02:07:39 #8344 [Debug] >     d_particle_state {

02:07:39 #8345 [Debug] >         dmdt = dps.dmdt + dps'.dmdt

02:07:39 #8346 [Debug] >         dqdt = dps.dqdt + dps'.dqdt

02:07:39 #8347 [Debug] >         dtdt = dps.dtdt + dps'.dtdt

02:07:39 #8348 [Debug] >         drdt = dps.drdt ^+^ dps'.drdt

02:07:39 #8349 [Debug] >         dvdt = dps.dvdt ^+^ dps'.dvdt

02:07:39 #8350 [Debug] >     }

02:07:39 #8351 [Debug] >

02:07:39 #8352 [Debug] > instance scale d_particle_state = fun w (dps : d_particle_state) =>

02:07:39 #8353 [Debug] >     d_particle_state {

02:07:39 #8354 [Debug] >         dmdt = w * dps.dmdt

02:07:39 #8355 [Debug] >         dqdt = w * dps.dqdt

02:07:39 #8356 [Debug] >         dtdt = w * dps.dtdt

02:07:39 #8357 [Debug] >         drdt = w *^ dps.drdt

02:07:39 #8358 [Debug] >         dvdt = w *^ dps.dvdt

02:07:39 #8359 [Debug] >     }

02:07:39 #8360 [Debug] >

02:07:39 #8361 [Debug] > instance shift particle_state = fun dt dps (particle_state st) =>

02:07:39 #8362 [Debug] >     inl (d_particle_state dps) =

02:07:39 #8363 [Debug] >         real

02:07:39 #8364 [Debug] >             match dps with

02:07:39 #8365 [Debug] >             | d_particle_state _ => dps

02:07:39 #8366 [Debug] >     particle_state { st with

02:07:39 #8367 [Debug] >         time = st.time + dps.dtdt * dt

02:07:39 #8368 [Debug] >         pos_vec = st.pos_vec ^+^ dps.drdt ^* dt

02:07:39 #8369 [Debug] >         velocity = st.velocity ^+^ dps.dvdt ^* dt

02:07:39 #8370 [Debug] >     }

02:07:39 #8371 [Debug] >

02:07:39 #8372 [Debug] > inl states_ps (method : numerical_method particle_state d_particle_state) : _ ->

02:07:39 #8373 [Debug] > _ -> i32 -> particle_state =

02:07:39 #8374 [Debug] >     newton_second_ps >> method >> seq.iterate_

02:07:39 #8375 [Debug] >

02:07:39 #8376 [Debug] > inl z_ge0 sts =

02:07:39 #8377 [Debug] >     sts

02:07:39 #8378 [Debug] >     |> seq.take_while_ (fun (particle_state st) _ => st.pos_vec.z >= 0)

02:07:39 #8379 [Debug] >

02:07:39 #8380 [Debug] > inl trajectory sts =

02:07:39 #8381 [Debug] >     sts |> listm.map (fun (particle_state st) => st.pos_vec.y, st.pos_vec.z)

02:07:39 #8382 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3923-2370-2d463b6eae73\main.spi

02:07:39 #8383 [Debug] >

02:07:39 #8384 [Debug] > ╭─[ 171.54ms - stdout ]────────────────────────────────────────────────────────╮

02:07:39 #8385 [Debug] > │ ()                                                                           │

02:07:39 #8386 [Debug] > │                                                                              │

02:07:39 #8387 [Debug] > │                                                                              │

02:07:39 #8388 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:39 #8389 [Debug] >

02:07:39 #8390 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:39 #8391 [Debug] > // // test

02:07:39 #8392 [Debug] >

02:07:39 #8393 [Debug] > inl update_ps (method : numerical_method particle_state d_particle_state) =

02:07:39 #8394 [Debug] >     newton_second_ps >> method

02:07:39 #8395 [Debug] >

02:07:39 #8396 [Debug] > inl position_ps (method : numerical_method particle_state d_particle_state) fs

02:07:39 #8397 [Debug] > st t =

02:07:39 #8398 [Debug] >     inl states : i32 -> particle_state = states_ps method fs st

02:07:39 #8399 [Debug] >     inl dt = (states 1).time - (states 0).time

02:07:39 #8400 [Debug] >     inl num_steps = t / dt |> math.round |> abs

02:07:39 #8401 [Debug] >     inl st1 = solver' method (newton_second_ps fs) st num_steps

02:07:39 #8402 [Debug] >     st1.pos_vec

02:07:39 #8403 [Debug] >

02:07:39 #8404 [Debug] > inl sun_gravity (st : particle_state) : vec =

02:07:39 #8405 [Debug] >     inl big_g = 0.0000000000667408

02:07:39 #8406 [Debug] >     inl sun_mass = 1988480000000000000000000000000

02:07:39 #8407 [Debug] >     -big_g * sun_mass * st.mass *^ st.pos_vec ^/ magnitude st.pos_vec ** 3

02:07:39 #8408 [Debug] >

02:07:39 #8409 [Debug] > inl wind_force v_wind drag rho area (st : particle_state) =

02:07:39 #8410 [Debug] >     inl v_rel = st.velocity ^-^ v_wind

02:07:39 #8411 [Debug] >     -0.5 * drag * rho * area * magnitude v_rel *^ v_rel

02:07:39 #8412 [Debug] >

02:07:39 #8413 [Debug] > inl rock_state () =

02:07:39 #8414 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:07:39 #8415 [Debug] >     particle_state { default_particle_state' with

02:07:39 #8416 [Debug] >         mass = 2

02:07:39 #8417 [Debug] >         velocity = vec 3 0 4

02:07:39 #8418 [Debug] >     }

02:07:39 #8419 [Debug] >

02:07:39 #8420 [Debug] > inl halley_update dt =

02:07:39 #8421 [Debug] >     update_ps (euler_cromer_ps dt) [[ sun_gravity ]]

02:07:39 #8422 [Debug] >

02:07:39 #8423 [Debug] > inl halley_initial () =

02:07:39 #8424 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:07:39 #8425 [Debug] >     particle_state { default_particle_state' with

02:07:39 #8426 [Debug] >         mass = 220000000000000

02:07:39 #8427 [Debug] >         pos_vec = 87660000000 *^ i_hat ()

02:07:39 #8428 [Debug] >         velocity = 54569 *^ j_hat ()

02:07:39 #8429 [Debug] >     }

02:07:39 #8430 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3941-4104-43ab18b54364\main.spi

02:07:39 #8431 [Debug] >

02:07:39 #8432 [Debug] > ╭─[ 185.25ms - stdout ]────────────────────────────────────────────────────────╮

02:07:39 #8433 [Debug] > │ ()                                                                           │

02:07:39 #8434 [Debug] > │                                                                              │

02:07:39 #8435 [Debug] > │                                                                              │

02:07:39 #8436 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:39 #8437 [Debug] >

02:07:39 #8438 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:39 #8439 [Debug] > // // test

02:07:39 #8440 [Debug] >

02:07:39 #8441 [Debug] > inl baseball_forces () =

02:07:39 #8442 [Debug] >     inl area = pi * (0.074 / 2) ** 2

02:07:39 #8443 [Debug] >     [[

02:07:39 #8444 [Debug] >         earth_surface_gravity

02:07:39 #8445 [Debug] >         air_resistance 0.3 1.225 area

02:07:39 #8446 [Debug] >     ]]

02:07:39 #8447 [Debug] >

02:07:39 #8448 [Debug] > inl baseball_trajectory dt v0 theta_deg =

02:07:39 #8449 [Debug] >     inl theta_rad = theta_deg * pi / 180

02:07:39 #8450 [Debug] >     inl vy0 = v0 * cos theta_rad

02:07:39 #8451 [Debug] >     inl vz0 = v0 * sin theta_rad

02:07:39 #8452 [Debug] >     inl initial_state =

02:07:39 #8453 [Debug] >         particle_state {

02:07:39 #8454 [Debug] >             mass = 0.145

02:07:39 #8455 [Debug] >             charge = 0

02:07:39 #8456 [Debug] >             time = 0

02:07:39 #8457 [Debug] >             pos_vec = zero_vec ()

02:07:39 #8458 [Debug] >             velocity = vec 0 vy0 vz0

02:07:39 #8459 [Debug] >         }

02:07:39 #8460 [Debug] >     states_ps (euler_cromer_ps dt) (baseball_forces ()) initial_state

02:07:39 #8461 [Debug] >     >> Some

02:07:39 #8462 [Debug] >     |> z_ge0

02:07:39 #8463 [Debug] >     |> trajectory

02:07:39 #8464 [Debug] >

02:07:39 #8465 [Debug] > inl baseball_range dt v0 theta_deg =

02:07:39 #8466 [Debug] >     baseball_trajectory dt v0 theta_deg

02:07:39 #8467 [Debug] >     |> listm.fold (fun _ (y, _) => y) 0

02:07:39 #8468 [Debug] >

02:07:39 #8469 [Debug] > inl x : a _ f64 = am'.init_series 10 80 1

02:07:39 #8470 [Debug] > inl y = x |> am.map (baseball_range 0.01 45)

02:07:39 #8471 [Debug] > "range for a baseball hit at 45 m/s",

02:07:39 #8472 [Debug] > "angle above horizontal (degrees)",

02:07:39 #8473 [Debug] > "",

02:07:39 #8474 [Debug] > ;[[ "horizontal range (m)", x, y ]]

02:07:39 #8475 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3959-5973-5138f06d55a1\main.spi

02:07:40 #8476 [Debug] >

02:07:40 #8477 [Debug] > ╭─[ 909.25ms - return value ]──────────────────────────────────────────────────╮

02:07:40 #8478 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:40 #8479 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:40 #8480 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:40 #8481 [Debug] > │ stroke="none"/>                                                              │

02:07:40 #8482 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:40 #8483 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8484 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8485 [Debug] > │ range for a baseball hit at 45 m/s                                           │

02:07:40 #8486 [Debug] > │ </text>                                                                      │

02:07:40 #8487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="424" x2="55" │

02:07:40 #8488 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:07:40 #8490 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:40 #8492 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:07:40 #8494 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="84" y1="424" x2="84" │

02:07:40 #8496 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="91" y1="424" x2="91" │

02:07:40 #8498 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="98" y1="424" x2="98" │

02:07:40 #8500 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="105" y1="424"        │

02:07:40 #8502 [Debug] > │ x2="105" y2="75"/>                                                           │

02:07:40 #8503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="112" y1="424"        │

02:07:40 #8504 [Debug] > │ x2="112" y2="75"/>                                                           │

02:07:40 #8505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:40 #8506 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:40 #8507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="127" y1="424"        │

02:07:40 #8508 [Debug] > │ x2="127" y2="75"/>                                                           │

02:07:40 #8509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="134" y1="424"        │

02:07:40 #8510 [Debug] > │ x2="134" y2="75"/>                                                           │

02:07:40 #8511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="141" y1="424"        │

02:07:40 #8512 [Debug] > │ x2="141" y2="75"/>                                                           │

02:07:40 #8513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="148" y1="424"        │

02:07:40 #8514 [Debug] > │ x2="148" y2="75"/>                                                           │

02:07:40 #8515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="155" y1="424"        │

02:07:40 #8516 [Debug] > │ x2="155" y2="75"/>                                                           │

02:07:40 #8517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:07:40 #8518 [Debug] > │ x2="162" y2="75"/>                                                           │

02:07:40 #8519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:40 #8520 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:40 #8521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:07:40 #8522 [Debug] > │ x2="176" y2="75"/>                                                           │

02:07:40 #8523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:07:40 #8524 [Debug] > │ x2="184" y2="75"/>                                                           │

02:07:40 #8525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:07:40 #8526 [Debug] > │ x2="191" y2="75"/>                                                           │

02:07:40 #8527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:07:40 #8528 [Debug] > │ x2="198" y2="75"/>                                                           │

02:07:40 #8529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="205" y1="424"        │

02:07:40 #8530 [Debug] > │ x2="205" y2="75"/>                                                           │

02:07:40 #8531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="212" y1="424"        │

02:07:40 #8532 [Debug] > │ x2="212" y2="75"/>                                                           │

02:07:40 #8533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:40 #8534 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:40 #8535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="226" y1="424"        │

02:07:40 #8536 [Debug] > │ x2="226" y2="75"/>                                                           │

02:07:40 #8537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="233" y1="424"        │

02:07:40 #8538 [Debug] > │ x2="233" y2="75"/>                                                           │

02:07:40 #8539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="241" y1="424"        │

02:07:40 #8540 [Debug] > │ x2="241" y2="75"/>                                                           │

02:07:40 #8541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="248" y1="424"        │

02:07:40 #8542 [Debug] > │ x2="248" y2="75"/>                                                           │

02:07:40 #8543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="255" y1="424"        │

02:07:40 #8544 [Debug] > │ x2="255" y2="75"/>                                                           │

02:07:40 #8545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="262" y1="424"        │

02:07:40 #8546 [Debug] > │ x2="262" y2="75"/>                                                           │

02:07:40 #8547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:40 #8548 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:40 #8549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:07:40 #8550 [Debug] > │ x2="276" y2="75"/>                                                           │

02:07:40 #8551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:07:40 #8552 [Debug] > │ x2="283" y2="75"/>                                                           │

02:07:40 #8553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:07:40 #8554 [Debug] > │ x2="290" y2="75"/>                                                           │

02:07:40 #8555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:07:40 #8556 [Debug] > │ x2="298" y2="75"/>                                                           │

02:07:40 #8557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:07:40 #8558 [Debug] > │ x2="305" y2="75"/>                                                           │

02:07:40 #8559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:07:40 #8560 [Debug] > │ x2="312" y2="75"/>                                                           │

02:07:40 #8561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:40 #8562 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:40 #8563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="326" y1="424"        │

02:07:40 #8564 [Debug] > │ x2="326" y2="75"/>                                                           │

02:07:40 #8565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="333" y1="424"        │

02:07:40 #8566 [Debug] > │ x2="333" y2="75"/>                                                           │

02:07:40 #8567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="340" y1="424"        │

02:07:40 #8568 [Debug] > │ x2="340" y2="75"/>                                                           │

02:07:40 #8569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="348" y1="424"        │

02:07:40 #8570 [Debug] > │ x2="348" y2="75"/>                                                           │

02:07:40 #8571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="355" y1="424"        │

02:07:40 #8572 [Debug] > │ x2="355" y2="75"/>                                                           │

02:07:40 #8573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="362" y1="424"        │

02:07:40 #8574 [Debug] > │ x2="362" y2="75"/>                                                           │

02:07:40 #8575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:40 #8576 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:40 #8577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="376" y1="424"        │

02:07:40 #8578 [Debug] > │ x2="376" y2="75"/>                                                           │

02:07:40 #8579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:07:40 #8580 [Debug] > │ x2="383" y2="75"/>                                                           │

02:07:40 #8581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:07:40 #8582 [Debug] > │ x2="390" y2="75"/>                                                           │

02:07:40 #8583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="397" y1="424"        │

02:07:40 #8584 [Debug] > │ x2="397" y2="75"/>                                                           │

02:07:40 #8585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:07:40 #8586 [Debug] > │ x2="405" y2="75"/>                                                           │

02:07:40 #8587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="412" y1="424"        │

02:07:40 #8588 [Debug] > │ x2="412" y2="75"/>                                                           │

02:07:40 #8589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:40 #8590 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:40 #8591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:07:40 #8592 [Debug] > │ x2="426" y2="75"/>                                                           │

02:07:40 #8593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:07:40 #8594 [Debug] > │ x2="433" y2="75"/>                                                           │

02:07:40 #8595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:07:40 #8596 [Debug] > │ x2="440" y2="75"/>                                                           │

02:07:40 #8597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="447" y1="424"        │

02:07:40 #8598 [Debug] > │ x2="447" y2="75"/>                                                           │

02:07:40 #8599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="454" y1="424"        │

02:07:40 #8600 [Debug] > │ x2="454" y2="75"/>                                                           │

02:07:40 #8601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="462" y1="424"        │

02:07:40 #8602 [Debug] > │ x2="462" y2="75"/>                                                           │

02:07:40 #8603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:40 #8604 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:40 #8605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:07:40 #8606 [Debug] > │ x2="476" y2="75"/>                                                           │

02:07:40 #8607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="483" y1="424"        │

02:07:40 #8608 [Debug] > │ x2="483" y2="75"/>                                                           │

02:07:40 #8609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:07:40 #8610 [Debug] > │ x2="490" y2="75"/>                                                           │

02:07:40 #8611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:07:40 #8612 [Debug] > │ x2="497" y2="75"/>                                                           │

02:07:40 #8613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="504" y1="424"        │

02:07:40 #8614 [Debug] > │ x2="504" y2="75"/>                                                           │

02:07:40 #8615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="511" y1="424"        │

02:07:40 #8616 [Debug] > │ x2="511" y2="75"/>                                                           │

02:07:40 #8617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:40 #8618 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:40 #8619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="526" y1="424"        │

02:07:40 #8620 [Debug] > │ x2="526" y2="75"/>                                                           │

02:07:40 #8621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="533" y1="424"        │

02:07:40 #8622 [Debug] > │ x2="533" y2="75"/>                                                           │

02:07:40 #8623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:07:40 #8624 [Debug] > │ x2="540" y2="75"/>                                                           │

02:07:40 #8625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:07:40 #8626 [Debug] > │ x2="547" y2="75"/>                                                           │

02:07:40 #8627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:07:40 #8628 [Debug] > │ x2="554" y2="75"/>                                                           │

02:07:40 #8629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:07:40 #8630 [Debug] > │ x2="561" y2="75"/>                                                           │

02:07:40 #8631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:40 #8632 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:40 #8633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="576" y1="424"        │

02:07:40 #8634 [Debug] > │ x2="576" y2="75"/>                                                           │

02:07:40 #8635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="583" y1="424"        │

02:07:40 #8636 [Debug] > │ x2="583" y2="75"/>                                                           │

02:07:40 #8637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="410"         │

02:07:40 #8638 [Debug] > │ x2="584" y2="410"/>                                                          │

02:07:40 #8639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="389"         │

02:07:40 #8640 [Debug] > │ x2="584" y2="389"/>                                                          │

02:07:40 #8641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:07:40 #8642 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:40 #8643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="347"         │

02:07:40 #8644 [Debug] > │ x2="584" y2="347"/>                                                          │

02:07:40 #8645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="326"         │

02:07:40 #8646 [Debug] > │ x2="584" y2="326"/>                                                          │

02:07:40 #8647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:07:40 #8648 [Debug] > │ x2="584" y2="305"/>                                                          │

02:07:40 #8649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:07:40 #8650 [Debug] > │ x2="584" y2="283"/>                                                          │

02:07:40 #8651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="262"         │

02:07:40 #8652 [Debug] > │ x2="584" y2="262"/>                                                          │

02:07:40 #8653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:07:40 #8654 [Debug] > │ x2="584" y2="241"/>                                                          │

02:07:40 #8655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="220"         │

02:07:40 #8656 [Debug] > │ x2="584" y2="220"/>                                                          │

02:07:40 #8657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:07:40 #8658 [Debug] > │ x2="584" y2="199"/>                                                          │

02:07:40 #8659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:07:40 #8660 [Debug] > │ x2="584" y2="178"/>                                                          │

02:07:40 #8661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="156"         │

02:07:40 #8662 [Debug] > │ x2="584" y2="156"/>                                                          │

02:07:40 #8663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:07:40 #8664 [Debug] > │ x2="584" y2="135"/>                                                          │

02:07:40 #8665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:07:40 #8666 [Debug] > │ x2="584" y2="114"/>                                                          │

02:07:40 #8667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:07:40 #8668 [Debug] > │ y2="93"/>                                                                    │

02:07:40 #8669 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:40 #8670 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8671 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8672 [Debug] > │ angle above horizontal (degrees)                                             │

02:07:40 #8673 [Debug] > │ </text>                                                                      │

02:07:40 #8674 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:40 #8675 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8676 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:40 #8677 [Debug] > │                                                                              │

02:07:40 #8678 [Debug] > │ </text>                                                                      │

02:07:40 #8679 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:40 #8680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8681 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8682 [Debug] > │ angle above horizontal (degrees)                                             │

02:07:40 #8683 [Debug] > │ </text>                                                                      │

02:07:40 #8684 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8686 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:40 #8687 [Debug] > │                                                                              │

02:07:40 #8688 [Debug] > │ </text>                                                                      │

02:07:40 #8689 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:40 #8690 [Debug] > │ y2="75"/>                                                                    │

02:07:40 #8691 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="105" y1="424"        │

02:07:40 #8692 [Debug] > │ x2="105" y2="75"/>                                                           │

02:07:40 #8693 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="141" y1="424"        │

02:07:40 #8694 [Debug] > │ x2="141" y2="75"/>                                                           │

02:07:40 #8695 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="176" y1="424"        │

02:07:40 #8696 [Debug] > │ x2="176" y2="75"/>                                                           │

02:07:40 #8697 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="212" y1="424"        │

02:07:40 #8698 [Debug] > │ x2="212" y2="75"/>                                                           │

02:07:40 #8699 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="248" y1="424"        │

02:07:40 #8700 [Debug] > │ x2="248" y2="75"/>                                                           │

02:07:40 #8701 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="283" y1="424"        │

02:07:40 #8702 [Debug] > │ x2="283" y2="75"/>                                                           │

02:07:40 #8703 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:40 #8704 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:40 #8705 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="355" y1="424"        │

02:07:40 #8706 [Debug] > │ x2="355" y2="75"/>                                                           │

02:07:40 #8707 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="390" y1="424"        │

02:07:40 #8708 [Debug] > │ x2="390" y2="75"/>                                                           │

02:07:40 #8709 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="426" y1="424"        │

02:07:40 #8710 [Debug] > │ x2="426" y2="75"/>                                                           │

02:07:40 #8711 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="462" y1="424"        │

02:07:40 #8712 [Debug] > │ x2="462" y2="75"/>                                                           │

02:07:40 #8713 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="497" y1="424"        │

02:07:40 #8714 [Debug] > │ x2="497" y2="75"/>                                                           │

02:07:40 #8715 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="533" y1="424"        │

02:07:40 #8716 [Debug] > │ x2="533" y2="75"/>                                                           │

02:07:40 #8717 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:40 #8718 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:40 #8719 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="410"         │

02:07:40 #8720 [Debug] > │ x2="584" y2="410"/>                                                          │

02:07:40 #8721 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="368"         │

02:07:40 #8722 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:40 #8723 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="326"         │

02:07:40 #8724 [Debug] > │ x2="584" y2="326"/>                                                          │

02:07:40 #8725 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="283"         │

02:07:40 #8726 [Debug] > │ x2="584" y2="283"/>                                                          │

02:07:40 #8727 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="241"         │

02:07:40 #8728 [Debug] > │ x2="584" y2="241"/>                                                          │

02:07:40 #8729 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="199"         │

02:07:40 #8730 [Debug] > │ x2="584" y2="199"/>                                                          │

02:07:40 #8731 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="156"         │

02:07:40 #8732 [Debug] > │ x2="584" y2="156"/>                                                          │

02:07:40 #8733 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="114"         │

02:07:40 #8734 [Debug] > │ x2="584" y2="114"/>                                                          │

02:07:40 #8735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8736 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:40 #8737 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:40 #8738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8739 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8740 [Debug] > │ 10.0                                                                         │

02:07:40 #8741 [Debug] > │ </text>                                                                      │

02:07:40 #8742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8743 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:40 #8744 [Debug] > │ <text x="105" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8746 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8747 [Debug] > │ 15.0                                                                         │

02:07:40 #8748 [Debug] > │ </text>                                                                      │

02:07:40 #8749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8750 [Debug] > │ points="105,69 105,74 "/>                                                    │

02:07:40 #8751 [Debug] > │ <text x="141" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8753 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8754 [Debug] > │ 20.0                                                                         │

02:07:40 #8755 [Debug] > │ </text>                                                                      │

02:07:40 #8756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8757 [Debug] > │ points="141,69 141,74 "/>                                                    │

02:07:40 #8758 [Debug] > │ <text x="176" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8760 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8761 [Debug] > │ 25.0                                                                         │

02:07:40 #8762 [Debug] > │ </text>                                                                      │

02:07:40 #8763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8764 [Debug] > │ points="176,69 176,74 "/>                                                    │

02:07:40 #8765 [Debug] > │ <text x="212" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8767 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8768 [Debug] > │ 30.0                                                                         │

02:07:40 #8769 [Debug] > │ </text>                                                                      │

02:07:40 #8770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8771 [Debug] > │ points="212,69 212,74 "/>                                                    │

02:07:40 #8772 [Debug] > │ <text x="248" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8774 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8775 [Debug] > │ 35.0                                                                         │

02:07:40 #8776 [Debug] > │ </text>                                                                      │

02:07:40 #8777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8778 [Debug] > │ points="248,69 248,74 "/>                                                    │

02:07:40 #8779 [Debug] > │ <text x="283" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8781 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8782 [Debug] > │ 40.0                                                                         │

02:07:40 #8783 [Debug] > │ </text>                                                                      │

02:07:40 #8784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8785 [Debug] > │ points="283,69 283,74 "/>                                                    │

02:07:40 #8786 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8788 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8789 [Debug] > │ 45.0                                                                         │

02:07:40 #8790 [Debug] > │ </text>                                                                      │

02:07:40 #8791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8792 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:40 #8793 [Debug] > │ <text x="355" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8795 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8796 [Debug] > │ 50.0                                                                         │

02:07:40 #8797 [Debug] > │ </text>                                                                      │

02:07:40 #8798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8799 [Debug] > │ points="355,69 355,74 "/>                                                    │

02:07:40 #8800 [Debug] > │ <text x="390" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8802 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8803 [Debug] > │ 55.0                                                                         │

02:07:40 #8804 [Debug] > │ </text>                                                                      │

02:07:40 #8805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8806 [Debug] > │ points="390,69 390,74 "/>                                                    │

02:07:40 #8807 [Debug] > │ <text x="426" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8809 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8810 [Debug] > │ 60.0                                                                         │

02:07:40 #8811 [Debug] > │ </text>                                                                      │

02:07:40 #8812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8813 [Debug] > │ points="426,69 426,74 "/>                                                    │

02:07:40 #8814 [Debug] > │ <text x="462" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8816 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8817 [Debug] > │ 65.0                                                                         │

02:07:40 #8818 [Debug] > │ </text>                                                                      │

02:07:40 #8819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8820 [Debug] > │ points="462,69 462,74 "/>                                                    │

02:07:40 #8821 [Debug] > │ <text x="497" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8823 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8824 [Debug] > │ 70.0                                                                         │

02:07:40 #8825 [Debug] > │ </text>                                                                      │

02:07:40 #8826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8827 [Debug] > │ points="497,69 497,74 "/>                                                    │

02:07:40 #8828 [Debug] > │ <text x="533" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8829 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8830 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8831 [Debug] > │ 75.0                                                                         │

02:07:40 #8832 [Debug] > │ </text>                                                                      │

02:07:40 #8833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8834 [Debug] > │ points="533,69 533,74 "/>                                                    │

02:07:40 #8835 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:40 #8836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8837 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8838 [Debug] > │ 80.0                                                                         │

02:07:40 #8839 [Debug] > │ </text>                                                                      │

02:07:40 #8840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8841 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:40 #8842 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8843 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:40 #8844 [Debug] > │ <text x="45" y="410" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8845 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8846 [Debug] > │ 40.0                                                                         │

02:07:40 #8847 [Debug] > │ </text>                                                                      │

02:07:40 #8848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8849 [Debug] > │ points="49,410 54,410 "/>                                                    │

02:07:40 #8850 [Debug] > │ <text x="45" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8851 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8852 [Debug] > │ 50.0                                                                         │

02:07:40 #8853 [Debug] > │ </text>                                                                      │

02:07:40 #8854 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8855 [Debug] > │ points="49,368 54,368 "/>                                                    │

02:07:40 #8856 [Debug] > │ <text x="45" y="326" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8857 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8858 [Debug] > │ 60.0                                                                         │

02:07:40 #8859 [Debug] > │ </text>                                                                      │

02:07:40 #8860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8861 [Debug] > │ points="49,326 54,326 "/>                                                    │

02:07:40 #8862 [Debug] > │ <text x="45" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8863 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8864 [Debug] > │ 70.0                                                                         │

02:07:40 #8865 [Debug] > │ </text>                                                                      │

02:07:40 #8866 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8867 [Debug] > │ points="49,283 54,283 "/>                                                    │

02:07:40 #8868 [Debug] > │ <text x="45" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8869 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8870 [Debug] > │ 80.0                                                                         │

02:07:40 #8871 [Debug] > │ </text>                                                                      │

02:07:40 #8872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8873 [Debug] > │ points="49,241 54,241 "/>                                                    │

02:07:40 #8874 [Debug] > │ <text x="45" y="199" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8875 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8876 [Debug] > │ 90.0                                                                         │

02:07:40 #8877 [Debug] > │ </text>                                                                      │

02:07:40 #8878 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8879 [Debug] > │ points="49,199 54,199 "/>                                                    │

02:07:40 #8880 [Debug] > │ <text x="45" y="156" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8881 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8882 [Debug] > │ 100.0                                                                        │

02:07:40 #8883 [Debug] > │ </text>                                                                      │

02:07:40 #8884 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8885 [Debug] > │ points="49,156 54,156 "/>                                                    │

02:07:40 #8886 [Debug] > │ <text x="45" y="114" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:40 #8887 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #8888 [Debug] > │ 110.0                                                                        │

02:07:40 #8889 [Debug] > │ </text>                                                                      │

02:07:40 #8890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8891 [Debug] > │ points="49,114 54,114 "/>                                                    │

02:07:40 #8892 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8893 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:40 #8894 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:40 #8895 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8896 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8897 [Debug] > │ 10.0                                                                         │

02:07:40 #8898 [Debug] > │ </text>                                                                      │

02:07:40 #8899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8900 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:40 #8901 [Debug] > │ <text x="105" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8902 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8903 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8904 [Debug] > │ 15.0                                                                         │

02:07:40 #8905 [Debug] > │ </text>                                                                      │

02:07:40 #8906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8907 [Debug] > │ points="105,425 105,430 "/>                                                  │

02:07:40 #8908 [Debug] > │ <text x="141" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8909 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8910 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8911 [Debug] > │ 20.0                                                                         │

02:07:40 #8912 [Debug] > │ </text>                                                                      │

02:07:40 #8913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8914 [Debug] > │ points="141,425 141,430 "/>                                                  │

02:07:40 #8915 [Debug] > │ <text x="176" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8916 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8917 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8918 [Debug] > │ 25.0                                                                         │

02:07:40 #8919 [Debug] > │ </text>                                                                      │

02:07:40 #8920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8921 [Debug] > │ points="176,425 176,430 "/>                                                  │

02:07:40 #8922 [Debug] > │ <text x="212" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8924 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8925 [Debug] > │ 30.0                                                                         │

02:07:40 #8926 [Debug] > │ </text>                                                                      │

02:07:40 #8927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8928 [Debug] > │ points="212,425 212,430 "/>                                                  │

02:07:40 #8929 [Debug] > │ <text x="248" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8930 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8931 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8932 [Debug] > │ 35.0                                                                         │

02:07:40 #8933 [Debug] > │ </text>                                                                      │

02:07:40 #8934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8935 [Debug] > │ points="248,425 248,430 "/>                                                  │

02:07:40 #8936 [Debug] > │ <text x="283" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8938 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8939 [Debug] > │ 40.0                                                                         │

02:07:40 #8940 [Debug] > │ </text>                                                                      │

02:07:40 #8941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8942 [Debug] > │ points="283,425 283,430 "/>                                                  │

02:07:40 #8943 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8944 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8945 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8946 [Debug] > │ 45.0                                                                         │

02:07:40 #8947 [Debug] > │ </text>                                                                      │

02:07:40 #8948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8949 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:40 #8950 [Debug] > │ <text x="355" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8951 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8952 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8953 [Debug] > │ 50.0                                                                         │

02:07:40 #8954 [Debug] > │ </text>                                                                      │

02:07:40 #8955 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8956 [Debug] > │ points="355,425 355,430 "/>                                                  │

02:07:40 #8957 [Debug] > │ <text x="390" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8959 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8960 [Debug] > │ 55.0                                                                         │

02:07:40 #8961 [Debug] > │ </text>                                                                      │

02:07:40 #8962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8963 [Debug] > │ points="390,425 390,430 "/>                                                  │

02:07:40 #8964 [Debug] > │ <text x="426" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8966 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8967 [Debug] > │ 60.0                                                                         │

02:07:40 #8968 [Debug] > │ </text>                                                                      │

02:07:40 #8969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8970 [Debug] > │ points="426,425 426,430 "/>                                                  │

02:07:40 #8971 [Debug] > │ <text x="462" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8973 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8974 [Debug] > │ 65.0                                                                         │

02:07:40 #8975 [Debug] > │ </text>                                                                      │

02:07:40 #8976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8977 [Debug] > │ points="462,425 462,430 "/>                                                  │

02:07:40 #8978 [Debug] > │ <text x="497" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8980 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8981 [Debug] > │ 70.0                                                                         │

02:07:40 #8982 [Debug] > │ </text>                                                                      │

02:07:40 #8983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8984 [Debug] > │ points="497,425 497,430 "/>                                                  │

02:07:40 #8985 [Debug] > │ <text x="533" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8987 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8988 [Debug] > │ 75.0                                                                         │

02:07:40 #8989 [Debug] > │ </text>                                                                      │

02:07:40 #8990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8991 [Debug] > │ points="533,425 533,430 "/>                                                  │

02:07:40 #8992 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:40 #8993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #8994 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #8995 [Debug] > │ 80.0                                                                         │

02:07:40 #8996 [Debug] > │ </text>                                                                      │

02:07:40 #8997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #8998 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:40 #8999 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9000 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:40 #9001 [Debug] > │ <text x="622" y="410" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:40 #9002 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #9003 [Debug] > │ 40.0                                                                         │

02:07:40 #9004 [Debug] > │ </text>                                                                      │

02:07:40 #9005 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9006 [Debug] > │ points="585,410 590,410 "/>                                                  │

02:07:40 #9007 [Debug] > │ <text x="622" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:40 #9008 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #9009 [Debug] > │ 50.0                                                                         │

02:07:40 #9010 [Debug] > │ </text>                                                                      │

02:07:40 #9011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9012 [Debug] > │ points="585,368 590,368 "/>                                                  │

02:07:40 #9013 [Debug] > │ <text x="622" y="326" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:40 #9014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #9015 [Debug] > │ 60.0                                                                         │

02:07:40 #9016 [Debug] > │ </text>                                                                      │

02:07:40 #9017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9018 [Debug] > │ points="585,326 590,326 "/>                                                  │

02:07:40 #9019 [Debug] > │ <text x="622" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:40 #9020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #9021 [Debug] > │ 70.0                                                                         │

02:07:40 #9022 [Debug] > │ </text>                                                                      │

02:07:40 #9023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9024 [Debug] > │ points="585,283 590,283 "/>                                                  │

02:07:40 #9025 [Debug] > │ <text x="622" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:40 #9026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #9027 [Debug] > │ 80.0                                                                         │

02:07:40 #9028 [Debug] > │ </text>                                                                      │

02:07:40 #9029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9030 [Debug] > │ points="585,241 590,241 "/>                                                  │

02:07:40 #9031 [Debug] > │ <text x="622" y="199" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:40 #9032 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:40 #9033 [Debug] > │ 90.0                                                                         │

02:07:40 #9034 [Debug] > │ </text>                                                                      │

02:07:40 #9035 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9036 [Debug] > │ points="585,199 590,199 "/>                                                  │

02:07:40 #9037 [Debug] > │ <text x="595" y="156" dy="0.5ex" text-anchor="start"                         │

02:07:40 #9038 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #9039 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #9040 [Debug] > │ 100.0                                                                        │

02:07:40 #9041 [Debug] > │ </text>                                                                      │

02:07:40 #9042 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9043 [Debug] > │ points="585,156 590,156 "/>                                                  │

02:07:40 #9044 [Debug] > │ <text x="595" y="114" dy="0.5ex" text-anchor="start"                         │

02:07:40 #9045 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #9046 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #9047 [Debug] > │ 110.0                                                                        │

02:07:40 #9048 [Debug] > │ </text>                                                                      │

02:07:40 #9049 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:40 #9050 [Debug] > │ points="585,114 590,114 "/>                                                  │

02:07:40 #9051 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:40 #9052 [Debug] > │ points="69,343 77,325 84,307 91,290 98,275 105,259 112,245 119,231 127,219   │

02:07:40 #9053 [Debug] > │ 134,207 141,196 148,184 155,174 162,164 169,155 176,147 184,139 191,132      │

02:07:40 #9054 [Debug] > │ 198,126 205,119 212,114 219,109 226,104 233,100 241,96 248,93 255,91 262,89  │

02:07:40 #9055 [Debug] > │ 269,88 276,86 283,86 290,85 298,86 305,87 312,88 319,90 326,92 333,95 340,98 │

02:07:40 #9056 [Debug] > │ 348,102 355,106 362,110 369,115 376,120 383,126 390,132 397,139 405,146      │

02:07:40 #9057 [Debug] > │ 412,153 419,161 426,169 433,178 440,187 447,197 454,207 462,217 469,228      │

02:07:40 #9058 [Debug] > │ 476,239 483,250 490,262 497,274 504,287 511,300 519,313 526,326 533,340      │

02:07:40 #9059 [Debug] > │ 540,355 547,369 554,384 561,399 569,415 "/>                                  │

02:07:40 #9060 [Debug] > │ <rect x="421" y="235" width="159" height="30" opacity="1" fill="none"        │

02:07:40 #9061 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:40 #9062 [Debug] > │ <text x="461" y="245" dy="0.76em" text-anchor="start"                        │

02:07:40 #9063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:40 #9064 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:40 #9065 [Debug] > │ horizontal range (m)                                                         │

02:07:40 #9066 [Debug] > │ </text>                                                                      │

02:07:40 #9067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:40 #9068 [Debug] > │ points="431,250 451,250 "/>                                                  │

02:07:40 #9069 [Debug] > │ </svg>                                                                       │

02:07:40 #9070 [Debug] > │                                                                              │

02:07:40 #9071 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:40 #9072 [Debug] >

02:07:40 #9073 [Debug] > ╭─[ 1.15s - stdout ]───────────────────────────────────────────────────────────╮

02:07:40 #9074 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:07:40 #9075 [Debug] > │ and UH0 =                                                                    │

02:07:40 #9076 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:07:40 #9077 [Debug] > │ * float * UH0                                                                │

02:07:40 #9078 [Debug] > │     | UH0_1                                                                  │

02:07:40 #9079 [Debug] > │ and UH1 =                                                                    │

02:07:40 #9080 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:07:40 #9081 [Debug] > │     | UH1_1                                                                  │

02:07:40 #9082 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:07:40 #9083 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:07:40 #9084 [Debug] > │     let v2 : bool = v1 < 71                                                  │

02:07:40 #9085 [Debug] > │     v2                                                                       │

02:07:40 #9086 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:07:40 #9087 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:07:40 #9088 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:07:40 #9089 [Debug] > │     v3                                                                       │

02:07:40 #9090 [Debug] > │ and method4 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5  │

02:07:40 #9091 [Debug] > │ : float, v6 : float, v7 : float, v8 : float, v9 : int32) : struct (float *   │

02:07:40 #9092 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:07:40 #9093 [Debug] > │     let v10 : bool = v9 <= 0                                                 │

02:07:40 #9094 [Debug] > │     if v10 then                                                              │

02:07:40 #9095 [Debug] > │         struct (v0, v1, v2, v3, v4, v5, v6, v7, v8)                          │

02:07:40 #9096 [Debug] > │     else                                                                     │

02:07:40 #9097 [Debug] > │         let v11 : float = v6 * v6                                            │

02:07:40 #9098 [Debug] > │         let v12 : float = v7 * v7                                            │

02:07:40 #9099 [Debug] > │         let v13 : float = v11 + v12                                          │

02:07:40 #9100 [Debug] > │         let v14 : float = v8 * v8                                            │

02:07:40 #9101 [Debug] > │         let v15 : float = v13 + v14                                          │

02:07:40 #9102 [Debug] > │         let v16 : float = sqrt v15                                           │

02:07:40 #9103 [Debug] > │         let v17 : float = -0.0007902794129829633 * v16                       │

02:07:40 #9104 [Debug] > │         let v18 : float = v17 * v6                                           │

02:07:40 #9105 [Debug] > │         let v19 : float = v17 * v7                                           │

02:07:40 #9106 [Debug] > │         let v20 : float = v17 * v8                                           │

02:07:40 #9107 [Debug] > │         let v21 : float =  -v1                                               │

02:07:40 #9108 [Debug] > │         let v22 : float = v21 * 9.80665                                      │

02:07:40 #9109 [Debug] > │         let v23 : float = v22 * 0.0                                          │

02:07:40 #9110 [Debug] > │         let v24 : float = v23 + v18                                          │

02:07:40 #9111 [Debug] > │         let v25 : float = v23 + v19                                          │

02:07:40 #9112 [Debug] > │         let v26 : float = v22 + v20                                          │

02:07:40 #9113 [Debug] > │         let v27 : float = v24 / v1                                           │

02:07:40 #9114 [Debug] > │         let v28 : float = v25 / v1                                           │

02:07:40 #9115 [Debug] > │         let v29 : float = v26 / v1                                           │

02:07:40 #9116 [Debug] > │         let v30 : float = 0.01 * v27                                         │

02:07:40 #9117 [Debug] > │         let v31 : float = 0.01 * v28                                         │

02:07:40 #9118 [Debug] > │         let v32 : float = 0.01 * v29                                         │

02:07:40 #9119 [Debug] > │         let v33 : float = v6 + v30                                           │

02:07:40 #9120 [Debug] > │         let v34 : float = v7 + v31                                           │

02:07:40 #9121 [Debug] > │         let v35 : float = v8 + v32                                           │

02:07:40 #9122 [Debug] > │         let v36 : float = v5 + 0.01                                          │

02:07:40 #9123 [Debug] > │         let v37 : float = 0.01 * v33                                         │

02:07:40 #9124 [Debug] > │         let v38 : float = 0.01 * v34                                         │

02:07:40 #9125 [Debug] > │         let v39 : float = 0.01 * v35                                         │

02:07:40 #9126 [Debug] > │         let v40 : float = v2 + v37                                           │

02:07:40 #9127 [Debug] > │         let v41 : float = v3 + v38                                           │

02:07:40 #9128 [Debug] > │         let v42 : float = v4 + v39                                           │

02:07:40 #9129 [Debug] > │         let v43 : int32 = v9 - 1                                             │

02:07:40 #9130 [Debug] > │         method4(v0, v1, v40, v41, v42, v36, v33, v34, v35, v43)              │

02:07:40 #9131 [Debug] > │ and method5 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:07:40 #9132 [Debug] > │     match v0 with                                                            │

02:07:40 #9133 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:40 #9134 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:07:40 #9135 [Debug] > │         method5(v11, v12)                                                    │

02:07:40 #9136 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:40 #9137 [Debug] > │         v1                                                                   │

02:07:40 #9138 [Debug] > │ and method3 (v0 : float, v1 : float, v2 : UH0, v3 : int32) : UH0 =           │

02:07:40 #9139 [Debug] > │     let v4 : float = 0.0                                                     │

02:07:40 #9140 [Debug] > │     let v5 : float = 0.145                                                   │

02:07:40 #9141 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:40 #9142 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:40 #9143 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:40 #9144 [Debug] > │     let v9 : float = 0.0                                                     │

02:07:40 #9145 [Debug] > │     let v10 : float = 0.0                                                    │

02:07:40 #9146 [Debug] > │     let struct (v11 : float, v12 : float, v13 : float, v14 : float, v15 :    │

02:07:40 #9147 [Debug] > │ float, v16 : float, v17 : float, v18 : float, v19 : float) = method4(v4, v5, │

02:07:40 #9148 [Debug] > │ v6, v7, v8, v9, v10, v0, v1, v3)                                             │

02:07:40 #9149 [Debug] > │     let v20 : bool = v15 >= 0.0                                              │

02:07:40 #9150 [Debug] > │     if v20 then                                                              │

02:07:40 #9151 [Debug] > │         let v21 : UH0 = UH0_0(v11, v12, v13, v14, v15, v16, v17, v18, v19,   │

02:07:40 #9152 [Debug] > │ v2)                                                                          │

02:07:40 #9153 [Debug] > │         let v22 : int32 = v3 + 1                                             │

02:07:40 #9154 [Debug] > │         method3(v0, v1, v21, v22)                                            │

02:07:40 #9155 [Debug] > │     else                                                                     │

02:07:40 #9156 [Debug] > │         let v24 : UH0 = UH0_1                                                │

02:07:40 #9157 [Debug] > │         method5(v2, v24)                                                     │

02:07:40 #9158 [Debug] > │ and method6 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:07:40 #9159 [Debug] > │     match v0 with                                                            │

02:07:40 #9160 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:40 #9161 [Debug] > │         let v12 : UH1 = method6(v11, v1)                                     │

02:07:40 #9162 [Debug] > │         UH1_0(v5, v6, v12)                                                   │

02:07:40 #9163 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:40 #9164 [Debug] > │         v1                                                                   │

02:07:40 #9165 [Debug] > │ and method7 (v0 : UH1, v1 : float) : float =                                 │

02:07:40 #9166 [Debug] > │     match v0 with                                                            │

02:07:40 #9167 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:07:40 #9168 [Debug] > │         method7(v4, v2)                                                      │

02:07:40 #9169 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:07:40 #9170 [Debug] > │         v1                                                                   │

02:07:40 #9171 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:40 #9172 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:40 #9173 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (71)                       │

02:07:40 #9174 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:40 #9175 [Debug] > │     while method1(v1) do                                                     │

02:07:40 #9176 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:07:40 #9177 [Debug] > │         let v4 : float = float v3                                            │

02:07:40 #9178 [Debug] > │         let v5 : float = 10.0 + v4                                           │

02:07:40 #9179 [Debug] > │         v0.[int v3] <- v5                                                    │

02:07:40 #9180 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:07:40 #9181 [Debug] > │         v1.l0 <- v6                                                          │

02:07:40 #9182 [Debug] > │         ()                                                                   │

02:07:40 #9183 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:07:40 #9184 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:07:40 #9185 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:07:40 #9186 [Debug] > │     while method2(v7, v9) do                                                 │

02:07:40 #9187 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:07:40 #9188 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:07:40 #9189 [Debug] > │         let v13 : float = v12 * 3.141592653589793                            │

02:07:40 #9190 [Debug] > │         let v14 : float = v13 / 180.0                                        │

02:07:40 #9191 [Debug] > │         let v15 : float = cos v14                                            │

02:07:40 #9192 [Debug] > │         let v16 : float = 45.0 * v15                                         │

02:07:40 #9193 [Debug] > │         let v17 : float = sin v14                                            │

02:07:40 #9194 [Debug] > │         let v18 : float = 45.0 * v17                                         │

02:07:40 #9195 [Debug] > │         let v19 : UH0 = UH0_1                                                │

02:07:40 #9196 [Debug] > │         let v20 : int32 = 0                                                  │

02:07:40 #9197 [Debug] > │         let v21 : UH0 = method3(v16, v18, v19, v20)                          │

02:07:40 #9198 [Debug] > │         let v22 : UH1 = UH1_1                                                │

02:07:40 #9199 [Debug] > │         let v23 : UH1 = method6(v21, v22)                                    │

02:07:40 #9200 [Debug] > │         let v24 : float = 0.0                                                │

02:07:40 #9201 [Debug] > │         let v25 : float = method7(v23, v24)                                  │

02:07:40 #9202 [Debug] > │         v8.[int v11] <- v25                                                  │

02:07:40 #9203 [Debug] > │         let v26 : int32 = v11 + 1                                            │

02:07:40 #9204 [Debug] > │         v9.l0 <- v26                                                         │

02:07:40 #9205 [Debug] > │         ()                                                                   │

02:07:40 #9206 [Debug] > │     let v27 : string = "horizontal range (m)"                                │

02:07:40 #9207 [Debug] > │     let v28 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:40 #9208 [Debug] > │ (v27, v0, v8)|]                                                              │

02:07:40 #9209 [Debug] > │     let v29 : string = "range for a baseball hit at 45 m/s"                  │

02:07:40 #9210 [Debug] > │     let v30 : string = "angle above horizontal (degrees)"                    │

02:07:40 #9211 [Debug] > │     let v31 : string = ""                                                    │

02:07:40 #9212 [Debug] > │     struct (v29, v30, v31, v28)                                              │

02:07:40 #9213 [Debug] > │ method0()                                                                    │

02:07:40 #9214 [Debug] > │                                                                              │

02:07:40 #9215 [Debug] > │                                                                              │

02:07:40 #9216 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:40 #9217 [Debug] >

02:07:40 #9218 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:40 #9219 [Debug] > // // test

02:07:40 #9220 [Debug] >

02:07:40 #9221 [Debug] > inl best_angle (min, max) =

02:07:40 #9222 [Debug] >     let rec loop theta_deg (best_range, best_theta_deg) =

02:07:40 #9223 [Debug] >         if theta_deg > max

02:07:40 #9224 [Debug] >         then best_range, best_theta_deg

02:07:40 #9225 [Debug] >         else

02:07:40 #9226 [Debug] >             inl range = baseball_range 0.01 45 theta_deg

02:07:40 #9227 [Debug] >             loop

02:07:40 #9228 [Debug] >                 (theta_deg + 1)

02:07:40 #9229 [Debug] >                 (if range > best_range

02:07:40 #9230 [Debug] >                     then range, theta_deg

02:07:40 #9231 [Debug] >                     else best_range, best_theta_deg)

02:07:40 #9232 [Debug] >     loop min (0f64, min)

02:07:40 #9233 [Debug] >

02:07:40 #9234 [Debug] > best_angle (30f64, 60f64)

02:07:40 #9235 [Debug] > |> _equal (116.77499158246208, 41)

02:07:40 #9236 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4080-8064-88ec0699261d\main.spi

02:07:41 #9237 [Debug] >

02:07:41 #9238 [Debug] > ╭─[ 554.59ms - stdout ]────────────────────────────────────────────────────────╮

02:07:41 #9239 [Debug] > │ type UH0 =                                                                   │

02:07:41 #9240 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:07:41 #9241 [Debug] > │ * float * UH0                                                                │

02:07:41 #9242 [Debug] > │     | UH0_1                                                                  │

02:07:41 #9243 [Debug] > │ and UH1 =                                                                    │

02:07:41 #9244 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:07:41 #9245 [Debug] > │     | UH1_1                                                                  │

02:07:41 #9246 [Debug] > │ let rec method3 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, │

02:07:41 #9247 [Debug] > │ v5 : float, v6 : float, v7 : float, v8 : float, v9 : int32) : struct (float  │

02:07:41 #9248 [Debug] > │ * float * float * float * float * float * float * float * float) =           │

02:07:41 #9249 [Debug] > │     let v10 : bool = v9 <= 0                                                 │

02:07:41 #9250 [Debug] > │     if v10 then                                                              │

02:07:41 #9251 [Debug] > │         struct (v0, v1, v2, v3, v4, v5, v6, v7, v8)                          │

02:07:41 #9252 [Debug] > │     else                                                                     │

02:07:41 #9253 [Debug] > │         let v11 : float = v6 * v6                                            │

02:07:41 #9254 [Debug] > │         let v12 : float = v7 * v7                                            │

02:07:41 #9255 [Debug] > │         let v13 : float = v11 + v12                                          │

02:07:41 #9256 [Debug] > │         let v14 : float = v8 * v8                                            │

02:07:41 #9257 [Debug] > │         let v15 : float = v13 + v14                                          │

02:07:41 #9258 [Debug] > │         let v16 : float = sqrt v15                                           │

02:07:41 #9259 [Debug] > │         let v17 : float = -0.0007902794129829633 * v16                       │

02:07:41 #9260 [Debug] > │         let v18 : float = v17 * v6                                           │

02:07:41 #9261 [Debug] > │         let v19 : float = v17 * v7                                           │

02:07:41 #9262 [Debug] > │         let v20 : float = v17 * v8                                           │

02:07:41 #9263 [Debug] > │         let v21 : float =  -v1                                               │

02:07:41 #9264 [Debug] > │         let v22 : float = v21 * 9.80665                                      │

02:07:41 #9265 [Debug] > │         let v23 : float = v22 * 0.0                                          │

02:07:41 #9266 [Debug] > │         let v24 : float = v23 + v18                                          │

02:07:41 #9267 [Debug] > │         let v25 : float = v23 + v19                                          │

02:07:41 #9268 [Debug] > │         let v26 : float = v22 + v20                                          │

02:07:41 #9269 [Debug] > │         let v27 : float = v24 / v1                                           │

02:07:41 #9270 [Debug] > │         let v28 : float = v25 / v1                                           │

02:07:41 #9271 [Debug] > │         let v29 : float = v26 / v1                                           │

02:07:41 #9272 [Debug] > │         let v30 : float = 0.01 * v27                                         │

02:07:41 #9273 [Debug] > │         let v31 : float = 0.01 * v28                                         │

02:07:41 #9274 [Debug] > │         let v32 : float = 0.01 * v29                                         │

02:07:41 #9275 [Debug] > │         let v33 : float = v6 + v30                                           │

02:07:41 #9276 [Debug] > │         let v34 : float = v7 + v31                                           │

02:07:41 #9277 [Debug] > │         let v35 : float = v8 + v32                                           │

02:07:41 #9278 [Debug] > │         let v36 : float = v5 + 0.01                                          │

02:07:41 #9279 [Debug] > │         let v37 : float = 0.01 * v33                                         │

02:07:41 #9280 [Debug] > │         let v38 : float = 0.01 * v34                                         │

02:07:41 #9281 [Debug] > │         let v39 : float = 0.01 * v35                                         │

02:07:41 #9282 [Debug] > │         let v40 : float = v2 + v37                                           │

02:07:41 #9283 [Debug] > │         let v41 : float = v3 + v38                                           │

02:07:41 #9284 [Debug] > │         let v42 : float = v4 + v39                                           │

02:07:41 #9285 [Debug] > │         let v43 : int32 = v9 - 1                                             │

02:07:41 #9286 [Debug] > │         method3(v0, v1, v40, v41, v42, v36, v33, v34, v35, v43)              │

02:07:41 #9287 [Debug] > │ and method4 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:07:41 #9288 [Debug] > │     match v0 with                                                            │

02:07:41 #9289 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:41 #9290 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:07:41 #9291 [Debug] > │         method4(v11, v12)                                                    │

02:07:41 #9292 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:41 #9293 [Debug] > │         v1                                                                   │

02:07:41 #9294 [Debug] > │ and method2 (v0 : float, v1 : float, v2 : UH0, v3 : int32) : UH0 =           │

02:07:41 #9295 [Debug] > │     let v4 : float = 0.0                                                     │

02:07:41 #9296 [Debug] > │     let v5 : float = 0.145                                                   │

02:07:41 #9297 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:41 #9298 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:41 #9299 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:41 #9300 [Debug] > │     let v9 : float = 0.0                                                     │

02:07:41 #9301 [Debug] > │     let v10 : float = 0.0                                                    │

02:07:41 #9302 [Debug] > │     let struct (v11 : float, v12 : float, v13 : float, v14 : float, v15 :    │

02:07:41 #9303 [Debug] > │ float, v16 : float, v17 : float, v18 : float, v19 : float) = method3(v4, v5, │

02:07:41 #9304 [Debug] > │ v6, v7, v8, v9, v10, v0, v1, v3)                                             │

02:07:41 #9305 [Debug] > │     let v20 : bool = v15 >= 0.0                                              │

02:07:41 #9306 [Debug] > │     if v20 then                                                              │

02:07:41 #9307 [Debug] > │         let v21 : UH0 = UH0_0(v11, v12, v13, v14, v15, v16, v17, v18, v19,   │

02:07:41 #9308 [Debug] > │ v2)                                                                          │

02:07:41 #9309 [Debug] > │         let v22 : int32 = v3 + 1                                             │

02:07:41 #9310 [Debug] > │         method2(v0, v1, v21, v22)                                            │

02:07:41 #9311 [Debug] > │     else                                                                     │

02:07:41 #9312 [Debug] > │         let v24 : UH0 = UH0_1                                                │

02:07:41 #9313 [Debug] > │         method4(v2, v24)                                                     │

02:07:41 #9314 [Debug] > │ and method5 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:07:41 #9315 [Debug] > │     match v0 with                                                            │

02:07:41 #9316 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:41 #9317 [Debug] > │         let v12 : UH1 = method5(v11, v1)                                     │

02:07:41 #9318 [Debug] > │         UH1_0(v5, v6, v12)                                                   │

02:07:41 #9319 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:41 #9320 [Debug] > │         v1                                                                   │

02:07:41 #9321 [Debug] > │ and method6 (v0 : UH1, v1 : float) : float =                                 │

02:07:41 #9322 [Debug] > │     match v0 with                                                            │

02:07:41 #9323 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:07:41 #9324 [Debug] > │         method6(v4, v2)                                                      │

02:07:41 #9325 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:07:41 #9326 [Debug] > │         v1                                                                   │

02:07:41 #9327 [Debug] > │ and method1 (v0 : float, v1 : float, v2 : float) : struct (float * float) =  │

02:07:41 #9328 [Debug] > │     let v3 : bool = v0 > 60.0                                                │

02:07:41 #9329 [Debug] > │     if v3 then                                                               │

02:07:41 #9330 [Debug] > │         struct (v2, v1)                                                      │

02:07:41 #9331 [Debug] > │     else                                                                     │

02:07:41 #9332 [Debug] > │         let v4 : float = v0 * 3.141592653589793                              │

02:07:41 #9333 [Debug] > │         let v5 : float = v4 / 180.0                                          │

02:07:41 #9334 [Debug] > │         let v6 : float = cos v5                                              │

02:07:41 #9335 [Debug] > │         let v7 : float = 45.0 * v6                                           │

02:07:41 #9336 [Debug] > │         let v8 : float = sin v5                                              │

02:07:41 #9337 [Debug] > │         let v9 : float = 45.0 * v8                                           │

02:07:41 #9338 [Debug] > │         let v10 : UH0 = UH0_1                                                │

02:07:41 #9339 [Debug] > │         let v11 : int32 = 0                                                  │

02:07:41 #9340 [Debug] > │         let v12 : UH0 = method2(v7, v9, v10, v11)                            │

02:07:41 #9341 [Debug] > │         let v13 : UH1 = UH1_1                                                │

02:07:41 #9342 [Debug] > │         let v14 : UH1 = method5(v12, v13)                                    │

02:07:41 #9343 [Debug] > │         let v15 : float = 0.0                                                │

02:07:41 #9344 [Debug] > │         let v16 : float = method6(v14, v15)                                  │

02:07:41 #9345 [Debug] > │         let v17 : float = v0 + 1.0                                           │

02:07:41 #9346 [Debug] > │         let v18 : bool = v16 > v2                                            │

02:07:41 #9347 [Debug] > │         let struct (v19 : float, v20 : float) =                              │

02:07:41 #9348 [Debug] > │             if v18 then                                                      │

02:07:41 #9349 [Debug] > │                 struct (v16, v0)                                             │

02:07:41 #9350 [Debug] > │             else                                                             │

02:07:41 #9351 [Debug] > │                 struct (v2, v1)                                              │

02:07:41 #9352 [Debug] > │         method1(v17, v20, v19)                                               │

02:07:41 #9353 [Debug] > │ and method0 () : unit =                                                      │

02:07:41 #9354 [Debug] > │     let v0 : float = 30.0                                                    │

02:07:41 #9355 [Debug] > │     let v1 : float = 0.0                                                     │

02:07:41 #9356 [Debug] > │     let v2 : float = 30.0                                                    │

02:07:41 #9357 [Debug] > │     let struct (v3 : float, v4 : float) = method1(v0, v2, v1)                │

02:07:41 #9358 [Debug] > │     let v5 : bool = v3 = 116.77499158246208                                  │

02:07:41 #9359 [Debug] > │     let v7 : bool =                                                          │

02:07:41 #9360 [Debug] > │         if v5 then                                                           │

02:07:41 #9361 [Debug] > │             let v6 : bool = v4 = 41.0                                        │

02:07:41 #9362 [Debug] > │             v6                                                               │

02:07:41 #9363 [Debug] > │         else                                                                 │

02:07:41 #9364 [Debug] > │             false                                                            │

02:07:41 #9365 [Debug] > │     let v8 : string = $"_equal / actual: %A{struct (v3, v4)} / expected:     │

02:07:41 #9366 [Debug] > │ %A{struct (116.77499158246208, 41.0)}"                                       │

02:07:41 #9367 [Debug] > │     let v9 : bool = v7 = false                                               │

02:07:41 #9368 [Debug] > │     if v9 then                                                               │

02:07:41 #9369 [Debug] > │         failwith<unit> v8                                                    │

02:07:41 #9370 [Debug] > │ method0()                                                                    │

02:07:41 #9371 [Debug] > │                                                                              │

02:07:41 #9372 [Debug] > │                                                                              │

02:07:41 #9373 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:41 #9374 [Debug] >

02:07:41 #9375 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:41 #9376 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:41 #9377 [Debug] > │ ## relativity_ps                                                             │

02:07:41 #9378 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:41 #9379 [Debug] >

02:07:41 #9380 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:41 #9381 [Debug] > inl relativity_ps fs (st : particle_state) =

02:07:41 #9382 [Debug] >     inl f_net = fs |> listm.map (fun f => f st) |> sum_vec

02:07:41 #9383 [Debug] >     inl c = 299792458

02:07:41 #9384 [Debug] >     inl u = st.velocity ^/ c

02:07:41 #9385 [Debug] >     inl acc = sqrt (1 - (u <.> u)) *^ (f_net ^-^ (f_net <.> u) *^ u) ^/ st.mass

02:07:41 #9386 [Debug] >     d_particle_state {

02:07:41 #9387 [Debug] >         dmdt = 0

02:07:41 #9388 [Debug] >         dqdt = 0

02:07:41 #9389 [Debug] >         dtdt = 1

02:07:41 #9390 [Debug] >         drdt = st.velocity

02:07:41 #9391 [Debug] >         dvdt = acc

02:07:41 #9392 [Debug] >     }

02:07:41 #9393 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4140-4064-486adc0a9a5d\main.spi

02:07:41 #9394 [Debug] >

02:07:41 #9395 [Debug] > ╭─[ 186.74ms - stdout ]────────────────────────────────────────────────────────╮

02:07:41 #9396 [Debug] > │ ()                                                                           │

02:07:41 #9397 [Debug] > │                                                                              │

02:07:41 #9398 [Debug] > │                                                                              │

02:07:41 #9399 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:41 #9400 [Debug] >

02:07:41 #9401 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:41 #9402 [Debug] > // // test

02:07:41 #9403 [Debug] >

02:07:41 #9404 [Debug] > inl year = 365.25 * 24 * 60 * 60

02:07:41 #9405 [Debug] > inl c = 299792458

02:07:41 #9406 [Debug] > inl ~method = runge_kutta_4 100000

02:07:41 #9407 [Debug] > inl forces = [[ fun _ => 10 *^ i_hat () ]]

02:07:41 #9408 [Debug] > inl (particle_state default_particle_state') = default_particle_state ()

02:07:41 #9409 [Debug] > inl initial_state =

02:07:41 #9410 [Debug] >     particle_state { default_particle_state' with

02:07:41 #9411 [Debug] >         mass = 1

02:07:41 #9412 [Debug] >     }

02:07:41 #9413 [Debug] >

02:07:41 #9414 [Debug] > inl newton_states = solver_ method (newton_second_ps forces) initial_state

02:07:41 #9415 [Debug] > inl relativity_states = solver_ method (relativity_ps forces) initial_state

02:07:41 #9416 [Debug] >

02:07:41 #9417 [Debug] > inl newton_x, newton_y =

02:07:41 #9418 [Debug] >     newton_states

02:07:41 #9419 [Debug] >     >> Some

02:07:41 #9420 [Debug] >     |> seq.take_while_ (fun (particle_state st) (_ : i32) => st.time <= year)

02:07:41 #9421 [Debug] >     |> listm.map (fun (particle_state st) => st.time / year, st.velocity.x / c)

02:07:41 #9422 [Debug] >     |> listm'.unzip

02:07:41 #9423 [Debug] >

02:07:41 #9424 [Debug] > inl _, relativity_y =

02:07:41 #9425 [Debug] >     relativity_states

02:07:41 #9426 [Debug] >     >> Some

02:07:41 #9427 [Debug] >     |> seq.take_while_ (fun (particle_state st) (_ : i32) => st.time <= year)

02:07:41 #9428 [Debug] >     |> listm.map (fun (particle_state st) => st.time / year, st.velocity.x / c)

02:07:41 #9429 [Debug] >     |> listm'.unzip

02:07:41 #9430 [Debug] >

02:07:41 #9431 [Debug] > inl newton_x : a i32 _ = newton_x |> listm.toArray

02:07:41 #9432 [Debug] > inl newton_y : a i32 _ = newton_y |> listm.toArray

02:07:41 #9433 [Debug] > inl relativity_y : a i32 _ = relativity_y |> listm.toArray

02:07:41 #9434 [Debug] >

02:07:41 #9435 [Debug] > "response to a constant force",

02:07:41 #9436 [Debug] > "time (years)",

02:07:41 #9437 [Debug] > "velocity (multiples of c)",

02:07:41 #9438 [Debug] > ;[[

02:07:41 #9439 [Debug] >     "newtonian", newton_x, newton_y

02:07:41 #9440 [Debug] >     "relativistic", newton_x, relativity_y

02:07:41 #9441 [Debug] > ]]

02:07:41 #9442 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4159-5940-597cc66cf2f0\main.spi

02:07:42 #9443 [Debug] >

02:07:42 #9444 [Debug] > ╭─[ 537.24ms - return value ]──────────────────────────────────────────────────╮

02:07:42 #9445 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:42 #9446 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:42 #9447 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:42 #9448 [Debug] > │ stroke="none"/>                                                              │

02:07:42 #9449 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:42 #9450 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9451 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9452 [Debug] > │ response to a constant force                                                 │

02:07:42 #9453 [Debug] > │ </text>                                                                      │

02:07:42 #9454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:07:42 #9455 [Debug] > │ y2="75"/>                                                                    │

02:07:42 #9456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:42 #9457 [Debug] > │ y2="75"/>                                                                    │

02:07:42 #9458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:07:42 #9459 [Debug] > │ y2="75"/>                                                                    │

02:07:42 #9460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:07:42 #9461 [Debug] > │ y2="75"/>                                                                    │

02:07:42 #9462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:42 #9463 [Debug] > │ y2="75"/>                                                                    │

02:07:42 #9464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:07:42 #9465 [Debug] > │ x2="109" y2="75"/>                                                           │

02:07:42 #9466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:42 #9467 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:42 #9468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:42 #9469 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:42 #9470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:07:42 #9471 [Debug] > │ x2="139" y2="75"/>                                                           │

02:07:42 #9472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:07:42 #9473 [Debug] > │ x2="149" y2="75"/>                                                           │

02:07:42 #9474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:07:42 #9475 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:42 #9476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:42 #9477 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:42 #9478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:07:42 #9479 [Debug] > │ x2="179" y2="75"/>                                                           │

02:07:42 #9480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:42 #9481 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:42 #9482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:07:42 #9483 [Debug] > │ x2="199" y2="75"/>                                                           │

02:07:42 #9484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:07:42 #9485 [Debug] > │ x2="209" y2="75"/>                                                           │

02:07:42 #9486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:42 #9487 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:42 #9488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:07:42 #9489 [Debug] > │ x2="229" y2="75"/>                                                           │

02:07:42 #9490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:07:42 #9491 [Debug] > │ x2="239" y2="75"/>                                                           │

02:07:42 #9492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:42 #9493 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:42 #9494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:07:42 #9495 [Debug] > │ x2="259" y2="75"/>                                                           │

02:07:42 #9496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:42 #9497 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:42 #9498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:07:42 #9499 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:42 #9500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:07:42 #9501 [Debug] > │ x2="289" y2="75"/>                                                           │

02:07:42 #9502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:07:42 #9503 [Debug] > │ x2="299" y2="75"/>                                                           │

02:07:42 #9504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:42 #9505 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:42 #9506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:42 #9507 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:42 #9508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:07:42 #9509 [Debug] > │ x2="329" y2="75"/>                                                           │

02:07:42 #9510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:07:42 #9511 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:42 #9512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:07:42 #9513 [Debug] > │ x2="349" y2="75"/>                                                           │

02:07:42 #9514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:07:42 #9515 [Debug] > │ x2="359" y2="75"/>                                                           │

02:07:42 #9516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:42 #9517 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:42 #9518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:07:42 #9519 [Debug] > │ x2="379" y2="75"/>                                                           │

02:07:42 #9520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:07:42 #9521 [Debug] > │ x2="389" y2="75"/>                                                           │

02:07:42 #9522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:07:42 #9523 [Debug] > │ x2="399" y2="75"/>                                                           │

02:07:42 #9524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:07:42 #9525 [Debug] > │ x2="409" y2="75"/>                                                           │

02:07:42 #9526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:42 #9527 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:42 #9528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:07:42 #9529 [Debug] > │ x2="429" y2="75"/>                                                           │

02:07:42 #9530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:07:42 #9531 [Debug] > │ x2="439" y2="75"/>                                                           │

02:07:42 #9532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:07:42 #9533 [Debug] > │ x2="449" y2="75"/>                                                           │

02:07:42 #9534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:07:42 #9535 [Debug] > │ x2="459" y2="75"/>                                                           │

02:07:42 #9536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:42 #9537 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:42 #9538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:07:42 #9539 [Debug] > │ x2="479" y2="75"/>                                                           │

02:07:42 #9540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:07:42 #9541 [Debug] > │ x2="489" y2="75"/>                                                           │

02:07:42 #9542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:07:42 #9543 [Debug] > │ x2="499" y2="75"/>                                                           │

02:07:42 #9544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:07:42 #9545 [Debug] > │ x2="509" y2="75"/>                                                           │

02:07:42 #9546 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:42 #9547 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:42 #9548 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:07:42 #9549 [Debug] > │ x2="529" y2="75"/>                                                           │

02:07:42 #9550 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:07:42 #9551 [Debug] > │ x2="539" y2="75"/>                                                           │

02:07:42 #9552 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:07:42 #9553 [Debug] > │ x2="549" y2="75"/>                                                           │

02:07:42 #9554 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:07:42 #9555 [Debug] > │ x2="559" y2="75"/>                                                           │

02:07:42 #9556 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:42 #9557 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:42 #9558 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:07:42 #9559 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:42 #9560 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:07:42 #9561 [Debug] > │ x2="584" y2="399"/>                                                          │

02:07:42 #9562 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:07:42 #9563 [Debug] > │ x2="584" y2="383"/>                                                          │

02:07:42 #9564 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:07:42 #9565 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:42 #9566 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="352"         │

02:07:42 #9567 [Debug] > │ x2="584" y2="352"/>                                                          │

02:07:42 #9568 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:07:42 #9569 [Debug] > │ x2="584" y2="336"/>                                                          │

02:07:42 #9570 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:07:42 #9571 [Debug] > │ x2="584" y2="321"/>                                                          │

02:07:42 #9572 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:07:42 #9573 [Debug] > │ x2="584" y2="305"/>                                                          │

02:07:42 #9574 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:07:42 #9575 [Debug] > │ x2="584" y2="289"/>                                                          │

02:07:42 #9576 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="274"         │

02:07:42 #9577 [Debug] > │ x2="584" y2="274"/>                                                          │

02:07:42 #9578 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="258"         │

02:07:42 #9579 [Debug] > │ x2="584" y2="258"/>                                                          │

02:07:42 #9580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="242"         │

02:07:42 #9581 [Debug] > │ x2="584" y2="242"/>                                                          │

02:07:42 #9582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:07:42 #9583 [Debug] > │ x2="584" y2="227"/>                                                          │

02:07:42 #9584 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:07:42 #9585 [Debug] > │ x2="584" y2="211"/>                                                          │

02:07:42 #9586 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:07:42 #9587 [Debug] > │ x2="584" y2="195"/>                                                          │

02:07:42 #9588 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:07:42 #9589 [Debug] > │ x2="584" y2="180"/>                                                          │

02:07:42 #9590 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="164"         │

02:07:42 #9591 [Debug] > │ x2="584" y2="164"/>                                                          │

02:07:42 #9592 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="148"         │

02:07:42 #9593 [Debug] > │ x2="584" y2="148"/>                                                          │

02:07:42 #9594 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:07:42 #9595 [Debug] > │ x2="584" y2="133"/>                                                          │

02:07:42 #9596 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:07:42 #9597 [Debug] > │ x2="584" y2="117"/>                                                          │

02:07:42 #9598 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:07:42 #9599 [Debug] > │ x2="584" y2="101"/>                                                          │

02:07:42 #9600 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="86" x2="584" │

02:07:42 #9601 [Debug] > │ y2="86"/>                                                                    │

02:07:42 #9602 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:42 #9603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9604 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9605 [Debug] > │ time (years)                                                                 │

02:07:42 #9606 [Debug] > │ </text>                                                                      │

02:07:42 #9607 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:42 #9608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9609 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:42 #9610 [Debug] > │ velocity (multiples of c)                                                    │

02:07:42 #9611 [Debug] > │ </text>                                                                      │

02:07:42 #9612 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:42 #9613 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9614 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9615 [Debug] > │ time (years)                                                                 │

02:07:42 #9616 [Debug] > │ </text>                                                                      │

02:07:42 #9617 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9619 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:42 #9620 [Debug] > │ velocity (multiples of c)                                                    │

02:07:42 #9621 [Debug] > │ </text>                                                                      │

02:07:42 #9622 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:42 #9623 [Debug] > │ y2="75"/>                                                                    │

02:07:42 #9624 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:42 #9625 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:42 #9626 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:42 #9627 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:42 #9628 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:42 #9629 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:42 #9630 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:42 #9631 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:42 #9632 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:42 #9633 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:42 #9634 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:42 #9635 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:42 #9636 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:42 #9637 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:42 #9638 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:42 #9639 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:42 #9640 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:42 #9641 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:42 #9642 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:42 #9643 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:42 #9644 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:07:42 #9645 [Debug] > │ x2="584" y2="415"/>                                                          │

02:07:42 #9646 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="352"         │

02:07:42 #9647 [Debug] > │ x2="584" y2="352"/>                                                          │

02:07:42 #9648 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:07:42 #9649 [Debug] > │ x2="584" y2="289"/>                                                          │

02:07:42 #9650 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="227"         │

02:07:42 #9651 [Debug] > │ x2="584" y2="227"/>                                                          │

02:07:42 #9652 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="164"         │

02:07:42 #9653 [Debug] > │ x2="584" y2="164"/>                                                          │

02:07:42 #9654 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="101"         │

02:07:42 #9655 [Debug] > │ x2="584" y2="101"/>                                                          │

02:07:42 #9656 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9657 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:42 #9658 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:42 #9659 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9660 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9661 [Debug] > │ 0.0                                                                          │

02:07:42 #9662 [Debug] > │ </text>                                                                      │

02:07:42 #9663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9664 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:42 #9665 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9667 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9668 [Debug] > │ 0.1                                                                          │

02:07:42 #9669 [Debug] > │ </text>                                                                      │

02:07:42 #9670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9671 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:42 #9672 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9674 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9675 [Debug] > │ 0.2                                                                          │

02:07:42 #9676 [Debug] > │ </text>                                                                      │

02:07:42 #9677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9678 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:42 #9679 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9681 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9682 [Debug] > │ 0.3                                                                          │

02:07:42 #9683 [Debug] > │ </text>                                                                      │

02:07:42 #9684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9685 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:42 #9686 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9688 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9689 [Debug] > │ 0.4                                                                          │

02:07:42 #9690 [Debug] > │ </text>                                                                      │

02:07:42 #9691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9692 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:42 #9693 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9694 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9695 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9696 [Debug] > │ 0.5                                                                          │

02:07:42 #9697 [Debug] > │ </text>                                                                      │

02:07:42 #9698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9699 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:42 #9700 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9702 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9703 [Debug] > │ 0.6                                                                          │

02:07:42 #9704 [Debug] > │ </text>                                                                      │

02:07:42 #9705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9706 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:42 #9707 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9709 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9710 [Debug] > │ 0.7                                                                          │

02:07:42 #9711 [Debug] > │ </text>                                                                      │

02:07:42 #9712 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9713 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:42 #9714 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9716 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9717 [Debug] > │ 0.8                                                                          │

02:07:42 #9718 [Debug] > │ </text>                                                                      │

02:07:42 #9719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9720 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:42 #9721 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9722 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9723 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9724 [Debug] > │ 0.9                                                                          │

02:07:42 #9725 [Debug] > │ </text>                                                                      │

02:07:42 #9726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9727 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:42 #9728 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:42 #9729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9730 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9731 [Debug] > │ 1.0                                                                          │

02:07:42 #9732 [Debug] > │ </text>                                                                      │

02:07:42 #9733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9734 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:42 #9735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9736 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:42 #9737 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:42 #9738 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:42 #9739 [Debug] > │ 0.0                                                                          │

02:07:42 #9740 [Debug] > │ </text>                                                                      │

02:07:42 #9741 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9742 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:07:42 #9743 [Debug] > │ <text x="45" y="352" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:42 #9744 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:42 #9745 [Debug] > │ 0.2                                                                          │

02:07:42 #9746 [Debug] > │ </text>                                                                      │

02:07:42 #9747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9748 [Debug] > │ points="49,352 54,352 "/>                                                    │

02:07:42 #9749 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:42 #9750 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:42 #9751 [Debug] > │ 0.4                                                                          │

02:07:42 #9752 [Debug] > │ </text>                                                                      │

02:07:42 #9753 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9754 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:07:42 #9755 [Debug] > │ <text x="45" y="227" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:42 #9756 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:42 #9757 [Debug] > │ 0.6                                                                          │

02:07:42 #9758 [Debug] > │ </text>                                                                      │

02:07:42 #9759 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9760 [Debug] > │ points="49,227 54,227 "/>                                                    │

02:07:42 #9761 [Debug] > │ <text x="45" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:42 #9762 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:42 #9763 [Debug] > │ 0.8                                                                          │

02:07:42 #9764 [Debug] > │ </text>                                                                      │

02:07:42 #9765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9766 [Debug] > │ points="49,164 54,164 "/>                                                    │

02:07:42 #9767 [Debug] > │ <text x="45" y="101" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:42 #9768 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:42 #9769 [Debug] > │ 1.0                                                                          │

02:07:42 #9770 [Debug] > │ </text>                                                                      │

02:07:42 #9771 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9772 [Debug] > │ points="49,101 54,101 "/>                                                    │

02:07:42 #9773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9774 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:42 #9775 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:42 #9776 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9777 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9778 [Debug] > │ 0.0                                                                          │

02:07:42 #9779 [Debug] > │ </text>                                                                      │

02:07:42 #9780 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9781 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:42 #9782 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9783 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9784 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9785 [Debug] > │ 0.1                                                                          │

02:07:42 #9786 [Debug] > │ </text>                                                                      │

02:07:42 #9787 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9788 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:42 #9789 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9790 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9791 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9792 [Debug] > │ 0.2                                                                          │

02:07:42 #9793 [Debug] > │ </text>                                                                      │

02:07:42 #9794 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9795 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:42 #9796 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9797 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9798 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9799 [Debug] > │ 0.3                                                                          │

02:07:42 #9800 [Debug] > │ </text>                                                                      │

02:07:42 #9801 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9802 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:42 #9803 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9804 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9805 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9806 [Debug] > │ 0.4                                                                          │

02:07:42 #9807 [Debug] > │ </text>                                                                      │

02:07:42 #9808 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9809 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:42 #9810 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9811 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9812 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9813 [Debug] > │ 0.5                                                                          │

02:07:42 #9814 [Debug] > │ </text>                                                                      │

02:07:42 #9815 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9816 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:42 #9817 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9818 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9819 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9820 [Debug] > │ 0.6                                                                          │

02:07:42 #9821 [Debug] > │ </text>                                                                      │

02:07:42 #9822 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9823 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:42 #9824 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9825 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9826 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9827 [Debug] > │ 0.7                                                                          │

02:07:42 #9828 [Debug] > │ </text>                                                                      │

02:07:42 #9829 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9830 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:42 #9831 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9832 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9833 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9834 [Debug] > │ 0.8                                                                          │

02:07:42 #9835 [Debug] > │ </text>                                                                      │

02:07:42 #9836 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9837 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:42 #9838 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9839 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9840 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9841 [Debug] > │ 0.9                                                                          │

02:07:42 #9842 [Debug] > │ </text>                                                                      │

02:07:42 #9843 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9844 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:42 #9845 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:42 #9846 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9847 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9848 [Debug] > │ 1.0                                                                          │

02:07:42 #9849 [Debug] > │ </text>                                                                      │

02:07:42 #9850 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9851 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:42 #9852 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9853 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:42 #9854 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:07:42 #9855 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9856 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9857 [Debug] > │ 0.0                                                                          │

02:07:42 #9858 [Debug] > │ </text>                                                                      │

02:07:42 #9859 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9860 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:07:42 #9861 [Debug] > │ <text x="595" y="352" dy="0.5ex" text-anchor="start"                         │

02:07:42 #9862 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9863 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9864 [Debug] > │ 0.2                                                                          │

02:07:42 #9865 [Debug] > │ </text>                                                                      │

02:07:42 #9866 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9867 [Debug] > │ points="585,352 590,352 "/>                                                  │

02:07:42 #9868 [Debug] > │ <text x="595" y="289" dy="0.5ex" text-anchor="start"                         │

02:07:42 #9869 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9870 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9871 [Debug] > │ 0.4                                                                          │

02:07:42 #9872 [Debug] > │ </text>                                                                      │

02:07:42 #9873 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9874 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:07:42 #9875 [Debug] > │ <text x="595" y="227" dy="0.5ex" text-anchor="start"                         │

02:07:42 #9876 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9877 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9878 [Debug] > │ 0.6                                                                          │

02:07:42 #9879 [Debug] > │ </text>                                                                      │

02:07:42 #9880 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9881 [Debug] > │ points="585,227 590,227 "/>                                                  │

02:07:42 #9882 [Debug] > │ <text x="595" y="164" dy="0.5ex" text-anchor="start"                         │

02:07:42 #9883 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9884 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9885 [Debug] > │ 0.8                                                                          │

02:07:42 #9886 [Debug] > │ </text>                                                                      │

02:07:42 #9887 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9888 [Debug] > │ points="585,164 590,164 "/>                                                  │

02:07:42 #9889 [Debug] > │ <text x="595" y="101" dy="0.5ex" text-anchor="start"                         │

02:07:42 #9890 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9891 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9892 [Debug] > │ 1.0                                                                          │

02:07:42 #9893 [Debug] > │ </text>                                                                      │

02:07:42 #9894 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:42 #9895 [Debug] > │ points="585,101 590,101 "/>                                                  │

02:07:42 #9896 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:42 #9897 [Debug] > │ points="69,415 71,414 73,413 74,411 76,410 77,409 79,408 81,407 82,406       │

02:07:42 #9898 [Debug] > │ 84,405 85,404 87,403 88,402 90,401 92,400 93,399 95,398 96,397 98,396        │

02:07:42 #9899 [Debug] > │ 100,395 101,394 103,393 104,392 106,391 107,390 109,388 111,387 112,386      │

02:07:42 #9900 [Debug] > │ 114,385 115,384 117,383 119,382 120,381 122,380 123,379 125,378 127,377      │

02:07:42 #9901 [Debug] > │ 128,376 130,375 131,374 133,373 134,372 136,371 138,370 139,369 141,368      │

02:07:42 #9902 [Debug] > │ 142,367 144,365 146,364 147,363 149,362 150,361 152,360 153,359 155,358      │

02:07:42 #9903 [Debug] > │ 157,357 158,356 160,355 161,354 163,353 165,352 166,351 168,350 169,349      │

02:07:42 #9904 [Debug] > │ 171,348 172,347 174,346 176,345 177,344 179,343 180,341 182,340 184,339      │

02:07:42 #9905 [Debug] > │ 185,338 187,337 188,336 190,335 191,334 193,333 195,332 196,331 198,330      │

02:07:42 #9906 [Debug] > │ 199,329 201,328 203,327 204,326 206,325 207,324 209,323 210,322 212,321      │

02:07:42 #9907 [Debug] > │ 214,320 215,318 217,317 218,316 220,315 222,314 223,313 225,312 226,311      │

02:07:42 #9908 [Debug] > │ 228,310 229,309 231,308 233,307 234,306 236,305 237,304 239,303 241,302      │

02:07:42 #9909 [Debug] > │ 242,301 244,300 245,299 247,298 248,297 250,295 252,294 253,293 255,292      │

02:07:42 #9910 [Debug] > │ 256,291 258,290 260,289 261,288 263,287 264,286 266,285 268,284 269,283      │

02:07:42 #9911 [Debug] > │ 271,282 272,281 274,280 275,279 277,278 279,277 280,276 282,275 283,274      │

02:07:42 #9912 [Debug] > │ 285,272 287,271 288,270 290,269 291,268 293,267 294,266 296,265 298,264      │

02:07:42 #9913 [Debug] > │ 299,263 301,262 302,261 304,260 306,259 307,258 309,257 310,256 312,255      │

02:07:42 #9914 [Debug] > │ 313,254 315,253 317,252 318,251 320,249 321,248 323,247 325,246 326,245      │

02:07:42 #9915 [Debug] > │ 328,244 329,243 331,242 332,241 334,240 336,239 337,238 339,237 340,236      │

02:07:42 #9916 [Debug] > │ 342,235 344,234 345,233 347,232 348,231 350,230 351,229 353,228 355,226      │

02:07:42 #9917 [Debug] > │ 356,225 358,224 359,223 361,222 363,221 364,220 366,219 367,218 369,217      │

02:07:42 #9918 [Debug] > │ 370,216 372,215 374,214 375,213 377,212 378,211 380,210 382,209 383,208      │

02:07:42 #9919 [Debug] > │ 385,207 386,206 388,205 390,203 391,202 393,201 394,200 396,199 397,198      │

02:07:42 #9920 [Debug] > │ 399,197 401,196 402,195 404,194 405,193 407,192 409,191 410,190 412,189      │

02:07:42 #9921 [Debug] > │ 413,188 415,187 416,186 418,185 420,184 421,183 423,182 424,180 426,179      │

02:07:42 #9922 [Debug] > │ 428,178 429,177 431,176 432,175 434,174 435,173 437,172 439,171 440,170      │

02:07:42 #9923 [Debug] > │ 442,169 443,168 445,167 447,166 448,165 450,164 451,163 453,162 454,161      │

02:07:42 #9924 [Debug] > │ 456,160 458,159 459,157 461,156 462,155 464,154 466,153 467,152 469,151      │

02:07:42 #9925 [Debug] > │ 470,150 472,149 473,148 475,147 477,146 478,145 480,144 481,143 483,142      │

02:07:42 #9926 [Debug] > │ 485,141 486,140 488,139 489,138 491,137 492,136 494,135 496,133 497,132      │

02:07:42 #9927 [Debug] > │ 499,131 500,130 502,129 504,128 505,127 507,126 508,125 510,124 511,123      │

02:07:42 #9928 [Debug] > │ 513,122 515,121 516,120 518,119 519,118 521,117 523,116 524,115 526,114      │

02:07:42 #9929 [Debug] > │ 527,113 529,112 531,110 532,109 534,108 535,107 537,106 538,105 540,104      │

02:07:42 #9930 [Debug] > │ 542,103 543,102 545,101 546,100 548,99 550,98 551,97 553,96 554,95 556,94    │

02:07:42 #9931 [Debug] > │ 557,93 559,92 561,91 562,90 564,89 565,87 567,86 569,85 "/>                  │

02:07:42 #9932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:42 #9933 [Debug] > │ points="69,415 71,414 73,413 74,411 76,410 77,409 79,408 81,407 82,406       │

02:07:42 #9934 [Debug] > │ 84,405 85,404 87,403 88,402 90,401 92,400 93,399 95,398 96,397 98,396        │

02:07:42 #9935 [Debug] > │ 100,395 101,394 103,393 104,392 106,391 107,390 109,389 111,388 112,387      │

02:07:42 #9936 [Debug] > │ 114,385 115,384 117,383 119,382 120,381 122,380 123,379 125,378 127,377      │

02:07:42 #9937 [Debug] > │ 128,376 130,375 131,374 133,373 134,372 136,371 138,370 139,369 141,368      │

02:07:42 #9938 [Debug] > │ 142,367 144,366 146,365 147,364 149,363 150,362 152,361 153,360 155,359      │

02:07:42 #9939 [Debug] > │ 157,358 158,357 160,356 161,355 163,354 165,353 166,352 168,351 169,350      │

02:07:42 #9940 [Debug] > │ 171,349 172,348 174,347 176,346 177,345 179,344 180,343 182,342 184,341      │

02:07:42 #9941 [Debug] > │ 185,340 187,340 188,339 190,338 191,337 193,336 195,335 196,334 198,333      │

02:07:42 #9942 [Debug] > │ 199,332 201,331 203,330 204,329 206,328 207,327 209,326 210,325 212,325      │

02:07:42 #9943 [Debug] > │ 214,324 215,323 217,322 218,321 220,320 222,319 223,318 225,317 226,316      │

02:07:42 #9944 [Debug] > │ 228,315 229,315 231,314 233,313 234,312 236,311 237,310 239,309 241,308      │

02:07:42 #9945 [Debug] > │ 242,308 244,307 245,306 247,305 248,304 250,303 252,302 253,302 255,301      │

02:07:42 #9946 [Debug] > │ 256,300 258,299 260,298 261,297 263,297 264,296 266,295 268,294 269,293      │

02:07:42 #9947 [Debug] > │ 271,292 272,292 274,291 275,290 277,289 279,288 280,288 282,287 283,286      │

02:07:42 #9948 [Debug] > │ 285,285 287,284 288,284 290,283 291,282 293,281 294,280 296,280 298,279      │

02:07:42 #9949 [Debug] > │ 299,278 301,277 302,277 304,276 306,275 307,274 309,274 310,273 312,272      │

02:07:42 #9950 [Debug] > │ 313,271 315,271 317,270 318,269 320,269 321,268 323,267 325,266 326,266      │

02:07:42 #9951 [Debug] > │ 328,265 329,264 331,264 332,263 334,262 336,261 337,261 339,260 340,259      │

02:07:42 #9952 [Debug] > │ 342,259 344,258 345,257 347,257 348,256 350,255 351,255 353,254 355,253      │

02:07:42 #9953 [Debug] > │ 356,253 358,252 359,251 361,251 363,250 364,249 366,249 367,248 369,248      │

02:07:42 #9954 [Debug] > │ 370,247 372,246 374,246 375,245 377,244 378,244 380,243 382,243 383,242      │

02:07:42 #9955 [Debug] > │ 385,241 386,241 388,240 390,240 391,239 393,238 394,238 396,237 397,237      │

02:07:42 #9956 [Debug] > │ 399,236 401,235 402,235 404,234 405,234 407,233 409,233 410,232 412,231      │

02:07:42 #9957 [Debug] > │ 413,231 415,230 416,230 418,229 420,229 421,228 423,228 424,227 426,227      │

02:07:42 #9958 [Debug] > │ 428,226 429,225 431,225 432,224 434,224 435,223 437,223 439,222 440,222      │

02:07:42 #9959 [Debug] > │ 442,221 443,221 445,220 447,220 448,219 450,219 451,218 453,218 454,217      │

02:07:42 #9960 [Debug] > │ 456,217 458,216 459,216 461,215 462,215 464,214 466,214 467,213 469,213      │

02:07:42 #9961 [Debug] > │ 470,213 472,212 473,212 475,211 477,211 478,210 480,210 481,209 483,209      │

02:07:42 #9962 [Debug] > │ 485,208 486,208 488,208 489,207 491,207 492,206 494,206 496,205 497,205      │

02:07:42 #9963 [Debug] > │ 499,204 500,204 502,204 504,203 505,203 507,202 508,202 510,202 511,201      │

02:07:42 #9964 [Debug] > │ 513,201 515,200 516,200 518,200 519,199 521,199 523,198 524,198 526,198      │

02:07:42 #9965 [Debug] > │ 527,197 529,197 531,196 532,196 534,196 535,195 537,195 538,194 540,194      │

02:07:42 #9966 [Debug] > │ 542,194 543,193 545,193 546,193 548,192 550,192 551,192 553,191 554,191      │

02:07:42 #9967 [Debug] > │ 556,190 557,190 559,190 561,189 562,189 564,189 565,188 567,188 569,188 "/>  │

02:07:42 #9968 [Debug] > │ <rect x="464" y="227" width="116" height="45" opacity="1" fill="none"        │

02:07:42 #9969 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:42 #9970 [Debug] > │ <text x="504" y="237" dy="0.76em" text-anchor="start"                        │

02:07:42 #9971 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9972 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9973 [Debug] > │ newtonian                                                                    │

02:07:42 #9974 [Debug] > │ </text>                                                                      │

02:07:42 #9975 [Debug] > │ <text x="504" y="252" dy="0.76em" text-anchor="start"                        │

02:07:42 #9976 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:42 #9977 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:42 #9978 [Debug] > │ relativistic                                                                 │

02:07:42 #9979 [Debug] > │ </text>                                                                      │

02:07:42 #9980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:42 #9981 [Debug] > │ points="474,242 494,242 "/>                                                  │

02:07:42 #9982 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:42 #9983 [Debug] > │ points="474,257 494,257 "/>                                                  │

02:07:42 #9984 [Debug] > │ </svg>                                                                       │

02:07:42 #9985 [Debug] > │                                                                              │

02:07:42 #9986 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:42 #9987 [Debug] >

02:07:42 #9988 [Debug] > ╭─[ 757.25ms - stdout ]────────────────────────────────────────────────────────╮

02:07:42 #9989 [Debug] > │ type UH0 =                                                                   │

02:07:42 #9990 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:07:42 #9991 [Debug] > │ * float * UH0                                                                │

02:07:42 #9992 [Debug] > │     | UH0_1                                                                  │

02:07:42 #9993 [Debug] > │ and UH1 =                                                                    │

02:07:42 #9994 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:07:42 #9995 [Debug] > │     | UH1_1                                                                  │

02:07:42 #9996 [Debug] > │ and UH2 =                                                                    │

02:07:42 #9997 [Debug] > │     | UH2_0 of float * UH2                                                   │

02:07:42 #9998 [Debug] > │     | UH2_1                                                                  │

02:07:42 #9999 [Debug] > │ let rec closure1 (v0 : (struct (float * float * float * float * float *      │

02:07:42 #10000 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:07:42 #10001 [Debug] > │ float * float * float * float * float))) struct (v1 : float, v2 : float, v3  │

02:07:42 #10002 [Debug] > │ : float, v4 : float, v5 : float, v6 : float, v7 : float, v8 : float, v9 :    │

02:07:42 #10003 [Debug] > │ float) : struct (float * float * float * float * float * float * float *     │

02:07:42 #10004 [Debug] > │ float * float) =                                                             │

02:07:42 #10005 [Debug] > │     let struct (v10 : float, v11 : float, v12 : float, v13 : float, v14 :    │

02:07:42 #10006 [Debug] > │ float, v15 : float, v16 : float, v17 : float, v18 : float) = v0 struct (v1,  │

02:07:42 #10007 [Debug] > │ v2, v3, v4, v5, v6, v7, v8, v9)                                              │

02:07:42 #10008 [Debug] > │     let v19 : float = v15 * 50000.0                                          │

02:07:42 #10009 [Debug] > │     let v20 : float = v6 + v19                                               │

02:07:42 #10010 [Debug] > │     let v21 : float = 50000.0 * v12                                          │

02:07:42 #10011 [Debug] > │     let v22 : float = 50000.0 * v13                                          │

02:07:42 #10012 [Debug] > │     let v23 : float = 50000.0 * v14                                          │

02:07:42 #10013 [Debug] > │     let v24 : float = v3 + v21                                               │

02:07:42 #10014 [Debug] > │     let v25 : float = v4 + v22                                               │

02:07:42 #10015 [Debug] > │     let v26 : float = v5 + v23                                               │

02:07:42 #10016 [Debug] > │     let v27 : float = 50000.0 * v16                                          │

02:07:42 #10017 [Debug] > │     let v28 : float = 50000.0 * v17                                          │

02:07:42 #10018 [Debug] > │     let v29 : float = 50000.0 * v18                                          │

02:07:42 #10019 [Debug] > │     let v30 : float = v7 + v27                                               │

02:07:42 #10020 [Debug] > │     let v31 : float = v8 + v28                                               │

02:07:42 #10021 [Debug] > │     let v32 : float = v9 + v29                                               │

02:07:42 #10022 [Debug] > │     let struct (v33 : float, v34 : float, v35 : float, v36 : float, v37 :    │

02:07:42 #10023 [Debug] > │ float, v38 : float, v39 : float, v40 : float, v41 : float) = v0 struct (v1,  │

02:07:42 #10024 [Debug] > │ v2, v24, v25, v26, v20, v30, v31, v32)                                       │

02:07:42 #10025 [Debug] > │     let v42 : float = v38 * 50000.0                                          │

02:07:42 #10026 [Debug] > │     let v43 : float = v6 + v42                                               │

02:07:42 #10027 [Debug] > │     let v44 : float = 50000.0 * v35                                          │

02:07:42 #10028 [Debug] > │     let v45 : float = 50000.0 * v36                                          │

02:07:42 #10029 [Debug] > │     let v46 : float = 50000.0 * v37                                          │

02:07:42 #10030 [Debug] > │     let v47 : float = v3 + v44                                               │

02:07:42 #10031 [Debug] > │     let v48 : float = v4 + v45                                               │

02:07:42 #10032 [Debug] > │     let v49 : float = v5 + v46                                               │

02:07:42 #10033 [Debug] > │     let v50 : float = 50000.0 * v39                                          │

02:07:42 #10034 [Debug] > │     let v51 : float = 50000.0 * v40                                          │

02:07:42 #10035 [Debug] > │     let v52 : float = 50000.0 * v41                                          │

02:07:42 #10036 [Debug] > │     let v53 : float = v7 + v50                                               │

02:07:42 #10037 [Debug] > │     let v54 : float = v8 + v51                                               │

02:07:42 #10038 [Debug] > │     let v55 : float = v9 + v52                                               │

02:07:42 #10039 [Debug] > │     let struct (v56 : float, v57 : float, v58 : float, v59 : float, v60 :    │

02:07:42 #10040 [Debug] > │ float, v61 : float, v62 : float, v63 : float, v64 : float) = v0 struct (v1,  │

02:07:42 #10041 [Debug] > │ v2, v47, v48, v49, v43, v53, v54, v55)                                       │

02:07:42 #10042 [Debug] > │     let v65 : float = v61 * 100000.0                                         │

02:07:42 #10043 [Debug] > │     let v66 : float = v6 + v65                                               │

02:07:42 #10044 [Debug] > │     let v67 : float = 100000.0 * v58                                         │

02:07:42 #10045 [Debug] > │     let v68 : float = 100000.0 * v59                                         │

02:07:42 #10046 [Debug] > │     let v69 : float = 100000.0 * v60                                         │

02:07:42 #10047 [Debug] > │     let v70 : float = v3 + v67                                               │

02:07:42 #10048 [Debug] > │     let v71 : float = v4 + v68                                               │

02:07:42 #10049 [Debug] > │     let v72 : float = v5 + v69                                               │

02:07:42 #10050 [Debug] > │     let v73 : float = 100000.0 * v62                                         │

02:07:42 #10051 [Debug] > │     let v74 : float = 100000.0 * v63                                         │

02:07:42 #10052 [Debug] > │     let v75 : float = 100000.0 * v64                                         │

02:07:42 #10053 [Debug] > │     let v76 : float = v7 + v73                                               │

02:07:42 #10054 [Debug] > │     let v77 : float = v8 + v74                                               │

02:07:42 #10055 [Debug] > │     let v78 : float = v9 + v75                                               │

02:07:42 #10056 [Debug] > │     let struct (v79 : float, v80 : float, v81 : float, v82 : float, v83 :    │

02:07:42 #10057 [Debug] > │ float, v84 : float, v85 : float, v86 : float, v87 : float) = v0 struct (v1,  │

02:07:42 #10058 [Debug] > │ v2, v70, v71, v72, v66, v76, v77, v78)                                       │

02:07:42 #10059 [Debug] > │     let v88 : float = v10 + v33                                              │

02:07:42 #10060 [Debug] > │     let v89 : float = v11 + v34                                              │

02:07:42 #10061 [Debug] > │     let v90 : float = v15 + v38                                              │

02:07:42 #10062 [Debug] > │     let v91 : float = v12 + v35                                              │

02:07:42 #10063 [Debug] > │     let v92 : float = v13 + v36                                              │

02:07:42 #10064 [Debug] > │     let v93 : float = v14 + v37                                              │

02:07:42 #10065 [Debug] > │     let v94 : float = v16 + v39                                              │

02:07:42 #10066 [Debug] > │     let v95 : float = v17 + v40                                              │

02:07:42 #10067 [Debug] > │     let v96 : float = v18 + v41                                              │

02:07:42 #10068 [Debug] > │     let v97 : float = v88 + v33                                              │

02:07:42 #10069 [Debug] > │     let v98 : float = v89 + v34                                              │

02:07:42 #10070 [Debug] > │     let v99 : float = v90 + v38                                              │

02:07:42 #10071 [Debug] > │     let v100 : float = v91 + v35                                             │

02:07:42 #10072 [Debug] > │     let v101 : float = v92 + v36                                             │

02:07:42 #10073 [Debug] > │     let v102 : float = v93 + v37                                             │

02:07:42 #10074 [Debug] > │     let v103 : float = v94 + v39                                             │

02:07:42 #10075 [Debug] > │     let v104 : float = v95 + v40                                             │

02:07:42 #10076 [Debug] > │     let v105 : float = v96 + v41                                             │

02:07:42 #10077 [Debug] > │     let v106 : float = v97 + v56                                             │

02:07:42 #10078 [Debug] > │     let v107 : float = v98 + v57                                             │

02:07:42 #10079 [Debug] > │     let v108 : float = v99 + v61                                             │

02:07:42 #10080 [Debug] > │     let v109 : float = v100 + v58                                            │

02:07:42 #10081 [Debug] > │     let v110 : float = v101 + v59                                            │

02:07:42 #10082 [Debug] > │     let v111 : float = v102 + v60                                            │

02:07:42 #10083 [Debug] > │     let v112 : float = v103 + v62                                            │

02:07:42 #10084 [Debug] > │     let v113 : float = v104 + v63                                            │

02:07:42 #10085 [Debug] > │     let v114 : float = v105 + v64                                            │

02:07:42 #10086 [Debug] > │     let v115 : float = v106 + v56                                            │

02:07:42 #10087 [Debug] > │     let v116 : float = v107 + v57                                            │

02:07:42 #10088 [Debug] > │     let v117 : float = v108 + v61                                            │

02:07:42 #10089 [Debug] > │     let v118 : float = v109 + v58                                            │

02:07:42 #10090 [Debug] > │     let v119 : float = v110 + v59                                            │

02:07:42 #10091 [Debug] > │     let v120 : float = v111 + v60                                            │

02:07:42 #10092 [Debug] > │     let v121 : float = v112 + v62                                            │

02:07:42 #10093 [Debug] > │     let v122 : float = v113 + v63                                            │

02:07:42 #10094 [Debug] > │     let v123 : float = v114 + v64                                            │

02:07:42 #10095 [Debug] > │     let v124 : float = v115 + v79                                            │

02:07:42 #10096 [Debug] > │     let v125 : float = v116 + v80                                            │

02:07:42 #10097 [Debug] > │     let v126 : float = v117 + v84                                            │

02:07:42 #10098 [Debug] > │     let v127 : float = v118 + v81                                            │

02:07:42 #10099 [Debug] > │     let v128 : float = v119 + v82                                            │

02:07:42 #10100 [Debug] > │     let v129 : float = v120 + v83                                            │

02:07:42 #10101 [Debug] > │     let v130 : float = v121 + v85                                            │

02:07:42 #10102 [Debug] > │     let v131 : float = v122 + v86                                            │

02:07:42 #10103 [Debug] > │     let v132 : float = v123 + v87                                            │

02:07:42 #10104 [Debug] > │     let v133 : float = v126 * 16666.666666666668                             │

02:07:42 #10105 [Debug] > │     let v134 : float = v6 + v133                                             │

02:07:42 #10106 [Debug] > │     let v135 : float = 16666.666666666668 * v127                             │

02:07:42 #10107 [Debug] > │     let v136 : float = 16666.666666666668 * v128                             │

02:07:42 #10108 [Debug] > │     let v137 : float = 16666.666666666668 * v129                             │

02:07:42 #10109 [Debug] > │     let v138 : float = v3 + v135                                             │

02:07:42 #10110 [Debug] > │     let v139 : float = v4 + v136                                             │

02:07:42 #10111 [Debug] > │     let v140 : float = v5 + v137                                             │

02:07:42 #10112 [Debug] > │     let v141 : float = 16666.666666666668 * v130                             │

02:07:42 #10113 [Debug] > │     let v142 : float = 16666.666666666668 * v131                             │

02:07:42 #10114 [Debug] > │     let v143 : float = 16666.666666666668 * v132                             │

02:07:42 #10115 [Debug] > │     let v144 : float = v7 + v141                                             │

02:07:42 #10116 [Debug] > │     let v145 : float = v8 + v142                                             │

02:07:42 #10117 [Debug] > │     let v146 : float = v9 + v143                                             │

02:07:42 #10118 [Debug] > │     struct (v1, v2, v138, v139, v140, v134, v144, v145, v146)                │

02:07:42 #10119 [Debug] > │ and closure0 () (v0 : (struct (float * float * float * float * float * float │

02:07:42 #10120 [Debug] > │ * float * float * float) -> struct (float * float * float * float * float *  │

02:07:42 #10121 [Debug] > │ float * float * float * float))) : (struct (float * float * float * float *  │

02:07:42 #10122 [Debug] > │ float * float * float * float * float) -> struct (float * float * float *    │

02:07:42 #10123 [Debug] > │ float * float * float * float * float * float)) =                            │

02:07:42 #10124 [Debug] > │     closure1(v0)                                                             │

02:07:42 #10125 [Debug] > │ and closure2 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:07:42 #10126 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:07:42 #10127 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:07:42 #10128 [Debug] > │     let v9 : float = 10.0 / v1                                               │

02:07:42 #10129 [Debug] > │     let v10 : float = 0.0 / v1                                               │

02:07:42 #10130 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v9, v10, v10)                         │

02:07:42 #10131 [Debug] > │ and closure3 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:07:42 #10132 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:07:42 #10133 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:07:42 #10134 [Debug] > │     let v9 : float = v6 / 299792458.0                                        │

02:07:42 #10135 [Debug] > │     let v10 : float = v7 / 299792458.0                                       │

02:07:42 #10136 [Debug] > │     let v11 : float = v8 / 299792458.0                                       │

02:07:42 #10137 [Debug] > │     let v12 : float = v9 * v9                                                │

02:07:42 #10138 [Debug] > │     let v13 : float = v10 * v10                                              │

02:07:42 #10139 [Debug] > │     let v14 : float = v12 + v13                                              │

02:07:42 #10140 [Debug] > │     let v15 : float = v11 * v11                                              │

02:07:42 #10141 [Debug] > │     let v16 : float = v14 + v15                                              │

02:07:42 #10142 [Debug] > │     let v17 : float = 1.0 - v16                                              │

02:07:42 #10143 [Debug] > │     let v18 : float = sqrt v17                                               │

02:07:42 #10144 [Debug] > │     let v19 : float = 10.0 * v9                                              │

02:07:42 #10145 [Debug] > │     let v20 : float = 0.0 * v10                                              │

02:07:42 #10146 [Debug] > │     let v21 : float = v19 + v20                                              │

02:07:42 #10147 [Debug] > │     let v22 : float = 0.0 * v11                                              │

02:07:42 #10148 [Debug] > │     let v23 : float = v21 + v22                                              │

02:07:42 #10149 [Debug] > │     let v24 : float = v23 * v9                                               │

02:07:42 #10150 [Debug] > │     let v25 : float = v23 * v10                                              │

02:07:42 #10151 [Debug] > │     let v26 : float = v23 * v11                                              │

02:07:42 #10152 [Debug] > │     let v27 : float = -1.0 * v24                                             │

02:07:42 #10153 [Debug] > │     let v28 : float = -1.0 * v25                                             │

02:07:42 #10154 [Debug] > │     let v29 : float = -1.0 * v26                                             │

02:07:42 #10155 [Debug] > │     let v30 : float = 10.0 + v27                                             │

02:07:42 #10156 [Debug] > │     let v31 : float = v18 * v30                                              │

02:07:42 #10157 [Debug] > │     let v32 : float = v18 * v28                                              │

02:07:42 #10158 [Debug] > │     let v33 : float = v18 * v29                                              │

02:07:42 #10159 [Debug] > │     let v34 : float = v31 / v1                                               │

02:07:42 #10160 [Debug] > │     let v35 : float = v32 / v1                                               │

02:07:42 #10161 [Debug] > │     let v36 : float = v33 / v1                                               │

02:07:42 #10162 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v34, v35, v36)                        │

02:07:42 #10163 [Debug] > │ and method2 (v0 : (struct (float * float * float * float * float * float *   │

02:07:42 #10164 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:07:42 #10165 [Debug] > │ float * float * float * float)), v1 : float, v2 : float, v3 : float, v4 :    │

02:07:42 #10166 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float, v9 : float, v10 :     │

02:07:42 #10167 [Debug] > │ int32) : struct (float * float * float * float * float * float * float *     │

02:07:42 #10168 [Debug] > │ float * float) =                                                             │

02:07:42 #10169 [Debug] > │     let v11 : bool = v10 <= 0                                                │

02:07:42 #10170 [Debug] > │     if v11 then                                                              │

02:07:42 #10171 [Debug] > │         struct (v1, v2, v3, v4, v5, v6, v7, v8, v9)                          │

02:07:42 #10172 [Debug] > │     else                                                                     │

02:07:42 #10173 [Debug] > │         let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:07:42 #10174 [Debug] > │ : float, v17 : float, v18 : float, v19 : float, v20 : float) = v0 struct     │

02:07:42 #10175 [Debug] > │ (v1, v2, v3, v4, v5, v6, v7, v8, v9)                                         │

02:07:42 #10176 [Debug] > │         let v21 : int32 = v10 - 1                                            │

02:07:42 #10177 [Debug] > │         method2(v0, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)        │

02:07:42 #10178 [Debug] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:07:42 #10179 [Debug] > │     match v0 with                                                            │

02:07:42 #10180 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:42 #10181 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:07:42 #10182 [Debug] > │         method3(v11, v12)                                                    │

02:07:42 #10183 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:42 #10184 [Debug] > │         v1                                                                   │

02:07:42 #10185 [Debug] > │ and method1 (v0 : (struct (float * float * float * float * float * float *   │

02:07:42 #10186 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:07:42 #10187 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:07:42 #10188 [Debug] > │     let v3 : float = 0.0                                                     │

02:07:42 #10189 [Debug] > │     let v4 : float = 1.0                                                     │

02:07:42 #10190 [Debug] > │     let v5 : float = 0.0                                                     │

02:07:42 #10191 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:42 #10192 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:42 #10193 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:42 #10194 [Debug] > │     let v9 : float = 0.0                                                     │

02:07:42 #10195 [Debug] > │     let v10 : float = 0.0                                                    │

02:07:42 #10196 [Debug] > │     let v11 : float = 0.0                                                    │

02:07:42 #10197 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:07:42 #10198 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:07:42 #10199 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:07:42 #10200 [Debug] > │     let v21 : bool = v17 <= 31557600.0                                       │

02:07:42 #10201 [Debug] > │     if v21 then                                                              │

02:07:42 #10202 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:07:42 #10203 [Debug] > │ v1)                                                                          │

02:07:42 #10204 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:07:42 #10205 [Debug] > │         method1(v0, v22, v23)                                                │

02:07:42 #10206 [Debug] > │     else                                                                     │

02:07:42 #10207 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:07:42 #10208 [Debug] > │         method3(v1, v25)                                                     │

02:07:42 #10209 [Debug] > │ and method4 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:07:42 #10210 [Debug] > │     match v0 with                                                            │

02:07:42 #10211 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:42 #10212 [Debug] > │         let v12 : UH1 = method4(v11, v1)                                     │

02:07:42 #10213 [Debug] > │         let v13 : float = v7 / 31557600.0                                    │

02:07:42 #10214 [Debug] > │         let v14 : float = v8 / 299792458.0                                   │

02:07:42 #10215 [Debug] > │         UH1_0(v13, v14, v12)                                                 │

02:07:42 #10216 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:42 #10217 [Debug] > │         v1                                                                   │

02:07:42 #10218 [Debug] > │ and method5 (v0 : UH1, v1 : UH2, v2 : UH2) : struct (UH2 * UH2) =            │

02:07:42 #10219 [Debug] > │     match v0 with                                                            │

02:07:42 #10220 [Debug] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

02:07:42 #10221 [Debug] > │         let v6 : UH2 = UH2_0(v3, v1)                                         │

02:07:42 #10222 [Debug] > │         let v7 : UH2 = UH2_0(v4, v2)                                         │

02:07:42 #10223 [Debug] > │         method5(v5, v6, v7)                                                  │

02:07:42 #10224 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:07:42 #10225 [Debug] > │         struct (v1, v2)                                                      │

02:07:42 #10226 [Debug] > │ and method6 (v0 : UH2, v1 : UH2) : UH2 =                                     │

02:07:42 #10227 [Debug] > │     match v0 with                                                            │

02:07:42 #10228 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:07:42 #10229 [Debug] > │         let v4 : UH2 = UH2_0(v2, v1)                                         │

02:07:42 #10230 [Debug] > │         method6(v3, v4)                                                      │

02:07:42 #10231 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:42 #10232 [Debug] > │         v1                                                                   │

02:07:42 #10233 [Debug] > │ and method7 (v0 : (struct (float * float * float * float * float * float *   │

02:07:42 #10234 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:07:42 #10235 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:07:42 #10236 [Debug] > │     let v3 : float = 0.0                                                     │

02:07:42 #10237 [Debug] > │     let v4 : float = 1.0                                                     │

02:07:42 #10238 [Debug] > │     let v5 : float = 0.0                                                     │

02:07:42 #10239 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:42 #10240 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:42 #10241 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:42 #10242 [Debug] > │     let v9 : float = 0.0                                                     │

02:07:42 #10243 [Debug] > │     let v10 : float = 0.0                                                    │

02:07:42 #10244 [Debug] > │     let v11 : float = 0.0                                                    │

02:07:42 #10245 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:07:42 #10246 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:07:42 #10247 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:07:42 #10248 [Debug] > │     let v21 : bool = v17 <= 31557600.0                                       │

02:07:42 #10249 [Debug] > │     if v21 then                                                              │

02:07:42 #10250 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:07:42 #10251 [Debug] > │ v1)                                                                          │

02:07:42 #10252 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:07:42 #10253 [Debug] > │         method7(v0, v22, v23)                                                │

02:07:42 #10254 [Debug] > │     else                                                                     │

02:07:42 #10255 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:07:42 #10256 [Debug] > │         method3(v1, v25)                                                     │

02:07:42 #10257 [Debug] > │ and method8 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:07:42 #10258 [Debug] > │     match v0 with                                                            │

02:07:42 #10259 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:42 #10260 [Debug] > │         let v12 : UH1 = method8(v11, v1)                                     │

02:07:42 #10261 [Debug] > │         let v13 : float = v7 / 31557600.0                                    │

02:07:42 #10262 [Debug] > │         let v14 : float = v8 / 299792458.0                                   │

02:07:42 #10263 [Debug] > │         UH1_0(v13, v14, v12)                                                 │

02:07:42 #10264 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:42 #10265 [Debug] > │         v1                                                                   │

02:07:42 #10266 [Debug] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

02:07:42 #10267 [Debug] > │     match v0 with                                                            │

02:07:42 #10268 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:07:42 #10269 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:07:42 #10270 [Debug] > │         method10(v3, v4)                                                     │

02:07:42 #10271 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:42 #10272 [Debug] > │         v1                                                                   │

02:07:42 #10273 [Debug] > │ and method11 (v0 : (float []), v1 : UH2, v2 : int32) : int32 =               │

02:07:42 #10274 [Debug] > │     match v1 with                                                            │

02:07:42 #10275 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:07:42 #10276 [Debug] > │         v0.[int v2] <- v3                                                    │

02:07:42 #10277 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:07:42 #10278 [Debug] > │         method11(v0, v4, v5)                                                 │

02:07:42 #10279 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:42 #10280 [Debug] > │         v2                                                                   │

02:07:42 #10281 [Debug] > │ and method9 (v0 : UH2) : (float []) =                                        │

02:07:42 #10282 [Debug] > │     let v1 : int32 = 0                                                       │

02:07:42 #10283 [Debug] > │     let v2 : int32 = method10(v0, v1)                                        │

02:07:42 #10284 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:07:42 #10285 [Debug] > │     let v4 : int32 = 0                                                       │

02:07:42 #10286 [Debug] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

02:07:42 #10287 [Debug] > │     v3                                                                       │

02:07:42 #10288 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:42 #10289 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:42 #10290 [Debug] > │     let v0 : ((struct (float * float * float * float * float * float * float │

02:07:42 #10291 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:42 #10292 [Debug] > │ float * float * float)) -> (struct (float * float * float * float * float *  │

02:07:42 #10293 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:07:42 #10294 [Debug] > │ float * float * float * float * float))) = closure0()                        │

02:07:42 #10295 [Debug] > │     let v1 : (struct (float * float * float * float * float * float * float  │

02:07:42 #10296 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:42 #10297 [Debug] > │ float * float * float)) = closure2()                                         │

02:07:42 #10298 [Debug] > │     let v2 : (struct (float * float * float * float * float * float * float  │

02:07:42 #10299 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:42 #10300 [Debug] > │ float * float * float)) = v0 v1                                              │

02:07:42 #10301 [Debug] > │     let v3 : (struct (float * float * float * float * float * float * float  │

02:07:42 #10302 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:42 #10303 [Debug] > │ float * float * float)) = closure3()                                         │

02:07:42 #10304 [Debug] > │     let v4 : (struct (float * float * float * float * float * float * float  │

02:07:42 #10305 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:42 #10306 [Debug] > │ float * float * float)) = v0 v3                                              │

02:07:42 #10307 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:07:42 #10308 [Debug] > │     let v6 : int32 = 0                                                       │

02:07:42 #10309 [Debug] > │     let v7 : UH0 = method1(v2, v5, v6)                                       │

02:07:42 #10310 [Debug] > │     let v8 : UH1 = UH1_1                                                     │

02:07:42 #10311 [Debug] > │     let v9 : UH1 = method4(v7, v8)                                           │

02:07:42 #10312 [Debug] > │     let v10 : UH2 = UH2_1                                                    │

02:07:42 #10313 [Debug] > │     let v11 : UH2 = UH2_1                                                    │

02:07:42 #10314 [Debug] > │     let struct (v12 : UH2, v13 : UH2) = method5(v9, v10, v11)                │

02:07:42 #10315 [Debug] > │     let v14 : UH2 = UH2_1                                                    │

02:07:42 #10316 [Debug] > │     let v15 : UH2 = method6(v12, v14)                                        │

02:07:42 #10317 [Debug] > │     let v16 : UH2 = UH2_1                                                    │

02:07:42 #10318 [Debug] > │     let v17 : UH2 = method6(v13, v16)                                        │

02:07:42 #10319 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:07:42 #10320 [Debug] > │     let v19 : int32 = 0                                                      │

02:07:42 #10321 [Debug] > │     let v20 : UH0 = method7(v4, v18, v19)                                    │

02:07:42 #10322 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:07:42 #10323 [Debug] > │     let v22 : UH1 = method8(v20, v21)                                        │

02:07:42 #10324 [Debug] > │     let v23 : UH2 = UH2_1                                                    │

02:07:42 #10325 [Debug] > │     let v24 : UH2 = UH2_1                                                    │

02:07:42 #10326 [Debug] > │     let struct (v25 : UH2, v26 : UH2) = method5(v22, v23, v24)               │

02:07:42 #10327 [Debug] > │     let v27 : UH2 = UH2_1                                                    │

02:07:42 #10328 [Debug] > │     let v28 : UH2 = method6(v25, v27)                                        │

02:07:42 #10329 [Debug] > │     let v29 : UH2 = UH2_1                                                    │

02:07:42 #10330 [Debug] > │     let v30 : UH2 = method6(v26, v29)                                        │

02:07:42 #10331 [Debug] > │     let v31 : (float []) = method9(v15)                                      │

02:07:42 #10332 [Debug] > │     let v32 : (float []) = method9(v17)                                      │

02:07:42 #10333 [Debug] > │     let v33 : (float []) = method9(v30)                                      │

02:07:42 #10334 [Debug] > │     let v34 : string = "newtonian"                                           │

02:07:42 #10335 [Debug] > │     let v35 : string = "relativistic"                                        │

02:07:42 #10336 [Debug] > │     let v36 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:42 #10337 [Debug] > │ (v34, v31, v32); struct (v35, v31, v33)|]                                    │

02:07:42 #10338 [Debug] > │     let v37 : string = "response to a constant force"                        │

02:07:42 #10339 [Debug] > │     let v38 : string = "time (years)"                                        │

02:07:42 #10340 [Debug] > │     let v39 : string = "velocity (multiples of c)"                           │

02:07:42 #10341 [Debug] > │     struct (v37, v38, v39, v36)                                              │

02:07:42 #10342 [Debug] > │ method0()                                                                    │

02:07:42 #10343 [Debug] > │                                                                              │

02:07:42 #10344 [Debug] > │                                                                              │

02:07:42 #10345 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:42 #10346 [Debug] >

02:07:42 #10347 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:42 #10348 [Debug] > inl uniform_lorentz_force v_e v_b (st : particle_state) =

02:07:42 #10349 [Debug] >     st.charge *^ (v_e ^+^ st.velocity >< v_b)

02:07:42 #10350 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4250-5058-5a39b7564d38\main.spi

02:07:42 #10351 [Debug] >

02:07:42 #10352 [Debug] > ╭─[ 217.47ms - stdout ]────────────────────────────────────────────────────────╮

02:07:42 #10353 [Debug] > │ ()                                                                           │

02:07:42 #10354 [Debug] > │                                                                              │

02:07:42 #10355 [Debug] > │                                                                              │

02:07:42 #10356 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:42 #10357 [Debug] >

02:07:42 #10358 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:42 #10359 [Debug] > // // test

02:07:42 #10360 [Debug] >

02:07:42 #10361 [Debug] > inl c : f64 = 299792458

02:07:42 #10362 [Debug] > inl ~method = runge_kutta_4 0.000000001

02:07:42 #10363 [Debug] > inl forces = [[ uniform_lorentz_force (zero_vec ()) (k_hat ()) ]]

02:07:42 #10364 [Debug] > inl (particle_state default_particle_state') = default_particle_state ()

02:07:42 #10365 [Debug] > inl initial_state =

02:07:42 #10366 [Debug] >     particle_state { default_particle_state' with

02:07:42 #10367 [Debug] >         mass = 0.000000000000000000000000001672621898

02:07:42 #10368 [Debug] >         charge = 0.0000000000000000001602176621

02:07:42 #10369 [Debug] >         velocity = 0.8 *^ (c *^ j_hat ())

02:07:42 #10370 [Debug] >     }

02:07:42 #10371 [Debug] >

02:07:42 #10372 [Debug] > inl newton_states = solver_ method (newton_second_ps forces) initial_state

02:07:42 #10373 [Debug] > inl relativity_states = solver_ method (relativity_ps forces) initial_state

02:07:42 #10374 [Debug] >

02:07:42 #10375 [Debug] > inl newton_x, newton_y =

02:07:42 #10376 [Debug] >     newton_states

02:07:42 #10377 [Debug] >     >> Some

02:07:42 #10378 [Debug] >     |> seq.take_while_ (fun (particle_state st) i => i < 100i32)

02:07:42 #10379 [Debug] >     |> listm.map (fun (particle_state st) => st.pos_vec.x, st.pos_vec.y)

02:07:42 #10380 [Debug] >     |> listm'.unzip

02:07:42 #10381 [Debug] >

02:07:42 #10382 [Debug] > inl relativity_x, relativity_y =

02:07:42 #10383 [Debug] >     relativity_states

02:07:42 #10384 [Debug] >     >> Some

02:07:42 #10385 [Debug] >     |> seq.take_while_ (fun (particle_state st) i => i < 165i32)

02:07:42 #10386 [Debug] >     |> listm.map (fun (particle_state st) => st.pos_vec.x, st.pos_vec.y)

02:07:42 #10387 [Debug] >     |> listm'.unzip

02:07:42 #10388 [Debug] >

02:07:42 #10389 [Debug] > inl newton_x : a i32 _ = newton_x |> listm.toArray

02:07:42 #10390 [Debug] > inl newton_y : a i32 _ = newton_y |> listm.toArray

02:07:42 #10391 [Debug] >

02:07:42 #10392 [Debug] > inl relativity_x : a i32 _ = relativity_x |> listm.toArray

02:07:42 #10393 [Debug] > inl relativity_y : a i32 _ = relativity_y |> listm.toArray

02:07:42 #10394 [Debug] >

02:07:42 #10395 [Debug] > "proton in a 1-t magnetic field",

02:07:42 #10396 [Debug] > "x (m)",

02:07:42 #10397 [Debug] > "y (m)",

02:07:42 #10398 [Debug] > ;[[

02:07:42 #10399 [Debug] >     "newtonian", newton_x, newton_y

02:07:42 #10400 [Debug] >     "relativistic", relativity_x, relativity_y

02:07:42 #10401 [Debug] > ]]

02:07:42 #10402 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4272-7239-75a2e7b477f9\main.spi

02:07:43 #10403 [Debug] >

02:07:43 #10404 [Debug] > ╭─[ 551.71ms - return value ]──────────────────────────────────────────────────╮

02:07:43 #10405 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:43 #10406 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:43 #10407 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:43 #10408 [Debug] > │ stroke="none"/>                                                              │

02:07:43 #10409 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:43 #10410 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10411 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10412 [Debug] > │ proton in a 1-t magnetic field                                               │

02:07:43 #10413 [Debug] > │ </text>                                                                      │

02:07:43 #10414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="58" y1="424" x2="58" │

02:07:43 #10415 [Debug] > │ y2="75"/>                                                                    │

02:07:43 #10416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:43 #10417 [Debug] > │ y2="75"/>                                                                    │

02:07:43 #10418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="81" y1="424" x2="81" │

02:07:43 #10419 [Debug] > │ y2="75"/>                                                                    │

02:07:43 #10420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:07:43 #10421 [Debug] > │ y2="75"/>                                                                    │

02:07:43 #10422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="105" y1="424"        │

02:07:43 #10423 [Debug] > │ x2="105" y2="75"/>                                                           │

02:07:43 #10424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="117" y1="424"        │

02:07:43 #10425 [Debug] > │ x2="117" y2="75"/>                                                           │

02:07:43 #10426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:43 #10427 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:43 #10428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="141" y1="424"        │

02:07:43 #10429 [Debug] > │ x2="141" y2="75"/>                                                           │

02:07:43 #10430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:07:43 #10431 [Debug] > │ x2="153" y2="75"/>                                                           │

02:07:43 #10432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="165" y1="424"        │

02:07:43 #10433 [Debug] > │ x2="165" y2="75"/>                                                           │

02:07:43 #10434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:07:43 #10435 [Debug] > │ x2="177" y2="75"/>                                                           │

02:07:43 #10436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:43 #10437 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:43 #10438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="201" y1="424"        │

02:07:43 #10439 [Debug] > │ x2="201" y2="75"/>                                                           │

02:07:43 #10440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:07:43 #10441 [Debug] > │ x2="213" y2="75"/>                                                           │

02:07:43 #10442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="225" y1="424"        │

02:07:43 #10443 [Debug] > │ x2="225" y2="75"/>                                                           │

02:07:43 #10444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:07:43 #10445 [Debug] > │ x2="237" y2="75"/>                                                           │

02:07:43 #10446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:43 #10447 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:43 #10448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:07:43 #10449 [Debug] > │ x2="261" y2="75"/>                                                           │

02:07:43 #10450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="273" y1="424"        │

02:07:43 #10451 [Debug] > │ x2="273" y2="75"/>                                                           │

02:07:43 #10452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="285" y1="424"        │

02:07:43 #10453 [Debug] > │ x2="285" y2="75"/>                                                           │

02:07:43 #10454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:07:43 #10455 [Debug] > │ x2="297" y2="75"/>                                                           │

02:07:43 #10456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:43 #10457 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:43 #10458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:07:43 #10459 [Debug] > │ x2="321" y2="75"/>                                                           │

02:07:43 #10460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="333" y1="424"        │

02:07:43 #10461 [Debug] > │ x2="333" y2="75"/>                                                           │

02:07:43 #10462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:07:43 #10463 [Debug] > │ x2="345" y2="75"/>                                                           │

02:07:43 #10464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="356" y1="424"        │

02:07:43 #10465 [Debug] > │ x2="356" y2="75"/>                                                           │

02:07:43 #10466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:07:43 #10467 [Debug] > │ x2="368" y2="75"/>                                                           │

02:07:43 #10468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:07:43 #10469 [Debug] > │ x2="380" y2="75"/>                                                           │

02:07:43 #10470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:07:43 #10471 [Debug] > │ x2="392" y2="75"/>                                                           │

02:07:43 #10472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="404" y1="424"        │

02:07:43 #10473 [Debug] > │ x2="404" y2="75"/>                                                           │

02:07:43 #10474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="416" y1="424"        │

02:07:43 #10475 [Debug] > │ x2="416" y2="75"/>                                                           │

02:07:43 #10476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:07:43 #10477 [Debug] > │ x2="428" y2="75"/>                                                           │

02:07:43 #10478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:07:43 #10479 [Debug] > │ x2="440" y2="75"/>                                                           │

02:07:43 #10480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:07:43 #10481 [Debug] > │ x2="452" y2="75"/>                                                           │

02:07:43 #10482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:07:43 #10483 [Debug] > │ x2="464" y2="75"/>                                                           │

02:07:43 #10484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:07:43 #10485 [Debug] > │ x2="476" y2="75"/>                                                           │

02:07:43 #10486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="488" y1="424"        │

02:07:43 #10487 [Debug] > │ x2="488" y2="75"/>                                                           │

02:07:43 #10488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="500" y1="424"        │

02:07:43 #10489 [Debug] > │ x2="500" y2="75"/>                                                           │

02:07:43 #10490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:07:43 #10491 [Debug] > │ x2="512" y2="75"/>                                                           │

02:07:43 #10492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:07:43 #10493 [Debug] > │ x2="524" y2="75"/>                                                           │

02:07:43 #10494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:07:43 #10495 [Debug] > │ x2="536" y2="75"/>                                                           │

02:07:43 #10496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="548" y1="424"        │

02:07:43 #10497 [Debug] > │ x2="548" y2="75"/>                                                           │

02:07:43 #10498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:07:43 #10499 [Debug] > │ x2="560" y2="75"/>                                                           │

02:07:43 #10500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="408"         │

02:07:43 #10501 [Debug] > │ x2="584" y2="408"/>                                                          │

02:07:43 #10502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="388"         │

02:07:43 #10503 [Debug] > │ x2="584" y2="388"/>                                                          │

02:07:43 #10504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:07:43 #10505 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:43 #10506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:07:43 #10507 [Debug] > │ x2="584" y2="349"/>                                                          │

02:07:43 #10508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:07:43 #10509 [Debug] > │ x2="584" y2="329"/>                                                          │

02:07:43 #10510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:07:43 #10511 [Debug] > │ x2="584" y2="309"/>                                                          │

02:07:43 #10512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:07:43 #10513 [Debug] > │ x2="584" y2="289"/>                                                          │

02:07:43 #10514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:07:43 #10515 [Debug] > │ x2="584" y2="270"/>                                                          │

02:07:43 #10516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:07:43 #10517 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:43 #10518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="230"         │

02:07:43 #10519 [Debug] > │ x2="584" y2="230"/>                                                          │

02:07:43 #10520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:07:43 #10521 [Debug] > │ x2="584" y2="211"/>                                                          │

02:07:43 #10522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="191"         │

02:07:43 #10523 [Debug] > │ x2="584" y2="191"/>                                                          │

02:07:43 #10524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:07:43 #10525 [Debug] > │ x2="584" y2="171"/>                                                          │

02:07:43 #10526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:07:43 #10527 [Debug] > │ x2="584" y2="151"/>                                                          │

02:07:43 #10528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:07:43 #10529 [Debug] > │ x2="584" y2="132"/>                                                          │

02:07:43 #10530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:07:43 #10531 [Debug] > │ x2="584" y2="112"/>                                                          │

02:07:43 #10532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:07:43 #10533 [Debug] > │ y2="92"/>                                                                    │

02:07:43 #10534 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:43 #10535 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10536 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10537 [Debug] > │ x (m)                                                                        │

02:07:43 #10538 [Debug] > │ </text>                                                                      │

02:07:43 #10539 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:43 #10540 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10541 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:43 #10542 [Debug] > │ y (m)                                                                        │

02:07:43 #10543 [Debug] > │ </text>                                                                      │

02:07:43 #10544 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:43 #10545 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10546 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10547 [Debug] > │ x (m)                                                                        │

02:07:43 #10548 [Debug] > │ </text>                                                                      │

02:07:43 #10549 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10550 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10551 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:43 #10552 [Debug] > │ y (m)                                                                        │

02:07:43 #10553 [Debug] > │ </text>                                                                      │

02:07:43 #10554 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:43 #10555 [Debug] > │ y2="75"/>                                                                    │

02:07:43 #10556 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:43 #10557 [Debug] > │ y2="75"/>                                                                    │

02:07:43 #10558 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="129" y1="424"        │

02:07:43 #10559 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:43 #10560 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="159" y1="424"        │

02:07:43 #10561 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:43 #10562 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="189" y1="424"        │

02:07:43 #10563 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:43 #10564 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:43 #10565 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:43 #10566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="249" y1="424"        │

02:07:43 #10567 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:43 #10568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="279" y1="424"        │

02:07:43 #10569 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:43 #10570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="309" y1="424"        │

02:07:43 #10571 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:43 #10572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="339" y1="424"        │

02:07:43 #10573 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:43 #10574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="368" y1="424"        │

02:07:43 #10575 [Debug] > │ x2="368" y2="75"/>                                                           │

02:07:43 #10576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="398" y1="424"        │

02:07:43 #10577 [Debug] > │ x2="398" y2="75"/>                                                           │

02:07:43 #10578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="428" y1="424"        │

02:07:43 #10579 [Debug] > │ x2="428" y2="75"/>                                                           │

02:07:43 #10580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="458" y1="424"        │

02:07:43 #10581 [Debug] > │ x2="458" y2="75"/>                                                           │

02:07:43 #10582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="488" y1="424"        │

02:07:43 #10583 [Debug] > │ x2="488" y2="75"/>                                                           │

02:07:43 #10584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="518" y1="424"        │

02:07:43 #10585 [Debug] > │ x2="518" y2="75"/>                                                           │

02:07:43 #10586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="548" y1="424"        │

02:07:43 #10587 [Debug] > │ x2="548" y2="75"/>                                                           │

02:07:43 #10588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="578" y1="424"        │

02:07:43 #10589 [Debug] > │ x2="578" y2="75"/>                                                           │

02:07:43 #10590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="408"         │

02:07:43 #10591 [Debug] > │ x2="584" y2="408"/>                                                          │

02:07:43 #10592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="368"         │

02:07:43 #10593 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:43 #10594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="329"         │

02:07:43 #10595 [Debug] > │ x2="584" y2="329"/>                                                          │

02:07:43 #10596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:07:43 #10597 [Debug] > │ x2="584" y2="289"/>                                                          │

02:07:43 #10598 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:07:43 #10599 [Debug] > │ x2="584" y2="250"/>                                                          │

02:07:43 #10600 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="211"         │

02:07:43 #10601 [Debug] > │ x2="584" y2="211"/>                                                          │

02:07:43 #10602 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="171"         │

02:07:43 #10603 [Debug] > │ x2="584" y2="171"/>                                                          │

02:07:43 #10604 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="132"         │

02:07:43 #10605 [Debug] > │ x2="584" y2="132"/>                                                          │

02:07:43 #10606 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="92" x2="584" │

02:07:43 #10607 [Debug] > │ y2="92"/>                                                                    │

02:07:43 #10608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10609 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:43 #10610 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:43 #10611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10612 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10613 [Debug] > │ 0.0                                                                          │

02:07:43 #10614 [Debug] > │ </text>                                                                      │

02:07:43 #10615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10616 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:43 #10617 [Debug] > │ <text x="99" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:43 #10618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10619 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10620 [Debug] > │ 0.5                                                                          │

02:07:43 #10621 [Debug] > │ </text>                                                                      │

02:07:43 #10622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10623 [Debug] > │ points="99,69 99,74 "/>                                                      │

02:07:43 #10624 [Debug] > │ <text x="129" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10626 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10627 [Debug] > │ 1.0                                                                          │

02:07:43 #10628 [Debug] > │ </text>                                                                      │

02:07:43 #10629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10630 [Debug] > │ points="129,69 129,74 "/>                                                    │

02:07:43 #10631 [Debug] > │ <text x="159" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10633 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10634 [Debug] > │ 1.5                                                                          │

02:07:43 #10635 [Debug] > │ </text>                                                                      │

02:07:43 #10636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10637 [Debug] > │ points="159,69 159,74 "/>                                                    │

02:07:43 #10638 [Debug] > │ <text x="189" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10640 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10641 [Debug] > │ 2.0                                                                          │

02:07:43 #10642 [Debug] > │ </text>                                                                      │

02:07:43 #10643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10644 [Debug] > │ points="189,69 189,74 "/>                                                    │

02:07:43 #10645 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10647 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10648 [Debug] > │ 2.5                                                                          │

02:07:43 #10649 [Debug] > │ </text>                                                                      │

02:07:43 #10650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10651 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:43 #10652 [Debug] > │ <text x="249" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10654 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10655 [Debug] > │ 3.0                                                                          │

02:07:43 #10656 [Debug] > │ </text>                                                                      │

02:07:43 #10657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10658 [Debug] > │ points="249,69 249,74 "/>                                                    │

02:07:43 #10659 [Debug] > │ <text x="279" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10661 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10662 [Debug] > │ 3.5                                                                          │

02:07:43 #10663 [Debug] > │ </text>                                                                      │

02:07:43 #10664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10665 [Debug] > │ points="279,69 279,74 "/>                                                    │

02:07:43 #10666 [Debug] > │ <text x="309" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10668 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10669 [Debug] > │ 4.0                                                                          │

02:07:43 #10670 [Debug] > │ </text>                                                                      │

02:07:43 #10671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10672 [Debug] > │ points="309,69 309,74 "/>                                                    │

02:07:43 #10673 [Debug] > │ <text x="339" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10675 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10676 [Debug] > │ 4.5                                                                          │

02:07:43 #10677 [Debug] > │ </text>                                                                      │

02:07:43 #10678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10679 [Debug] > │ points="339,69 339,74 "/>                                                    │

02:07:43 #10680 [Debug] > │ <text x="368" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10682 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10683 [Debug] > │ 5.0                                                                          │

02:07:43 #10684 [Debug] > │ </text>                                                                      │

02:07:43 #10685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10686 [Debug] > │ points="368,69 368,74 "/>                                                    │

02:07:43 #10687 [Debug] > │ <text x="398" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10689 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10690 [Debug] > │ 5.5                                                                          │

02:07:43 #10691 [Debug] > │ </text>                                                                      │

02:07:43 #10692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10693 [Debug] > │ points="398,69 398,74 "/>                                                    │

02:07:43 #10694 [Debug] > │ <text x="428" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10696 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10697 [Debug] > │ 6.0                                                                          │

02:07:43 #10698 [Debug] > │ </text>                                                                      │

02:07:43 #10699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10700 [Debug] > │ points="428,69 428,74 "/>                                                    │

02:07:43 #10701 [Debug] > │ <text x="458" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10703 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10704 [Debug] > │ 6.5                                                                          │

02:07:43 #10705 [Debug] > │ </text>                                                                      │

02:07:43 #10706 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10707 [Debug] > │ points="458,69 458,74 "/>                                                    │

02:07:43 #10708 [Debug] > │ <text x="488" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10709 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10710 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10711 [Debug] > │ 7.0                                                                          │

02:07:43 #10712 [Debug] > │ </text>                                                                      │

02:07:43 #10713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10714 [Debug] > │ points="488,69 488,74 "/>                                                    │

02:07:43 #10715 [Debug] > │ <text x="518" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10716 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10717 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10718 [Debug] > │ 7.5                                                                          │

02:07:43 #10719 [Debug] > │ </text>                                                                      │

02:07:43 #10720 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10721 [Debug] > │ points="518,69 518,74 "/>                                                    │

02:07:43 #10722 [Debug] > │ <text x="548" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10723 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10724 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10725 [Debug] > │ 8.0                                                                          │

02:07:43 #10726 [Debug] > │ </text>                                                                      │

02:07:43 #10727 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10728 [Debug] > │ points="548,69 548,74 "/>                                                    │

02:07:43 #10729 [Debug] > │ <text x="578" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:43 #10730 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10731 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10732 [Debug] > │ 8.5                                                                          │

02:07:43 #10733 [Debug] > │ </text>                                                                      │

02:07:43 #10734 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10735 [Debug] > │ points="578,69 578,74 "/>                                                    │

02:07:43 #10736 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10737 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:43 #10738 [Debug] > │ <text x="45" y="408" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10739 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10740 [Debug] > │ -4.0                                                                         │

02:07:43 #10741 [Debug] > │ </text>                                                                      │

02:07:43 #10742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10743 [Debug] > │ points="49,408 54,408 "/>                                                    │

02:07:43 #10744 [Debug] > │ <text x="45" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10745 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10746 [Debug] > │ -3.0                                                                         │

02:07:43 #10747 [Debug] > │ </text>                                                                      │

02:07:43 #10748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10749 [Debug] > │ points="49,368 54,368 "/>                                                    │

02:07:43 #10750 [Debug] > │ <text x="45" y="329" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10751 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10752 [Debug] > │ -2.0                                                                         │

02:07:43 #10753 [Debug] > │ </text>                                                                      │

02:07:43 #10754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10755 [Debug] > │ points="49,329 54,329 "/>                                                    │

02:07:43 #10756 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10757 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10758 [Debug] > │ -1.0                                                                         │

02:07:43 #10759 [Debug] > │ </text>                                                                      │

02:07:43 #10760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10761 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:07:43 #10762 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10763 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10764 [Debug] > │ 0.0                                                                          │

02:07:43 #10765 [Debug] > │ </text>                                                                      │

02:07:43 #10766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10767 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:07:43 #10768 [Debug] > │ <text x="45" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10769 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10770 [Debug] > │ 1.0                                                                          │

02:07:43 #10771 [Debug] > │ </text>                                                                      │

02:07:43 #10772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10773 [Debug] > │ points="49,211 54,211 "/>                                                    │

02:07:43 #10774 [Debug] > │ <text x="45" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10775 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10776 [Debug] > │ 2.0                                                                          │

02:07:43 #10777 [Debug] > │ </text>                                                                      │

02:07:43 #10778 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10779 [Debug] > │ points="49,171 54,171 "/>                                                    │

02:07:43 #10780 [Debug] > │ <text x="45" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10781 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10782 [Debug] > │ 3.0                                                                          │

02:07:43 #10783 [Debug] > │ </text>                                                                      │

02:07:43 #10784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10785 [Debug] > │ points="49,132 54,132 "/>                                                    │

02:07:43 #10786 [Debug] > │ <text x="45" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:43 #10787 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10788 [Debug] > │ 4.0                                                                          │

02:07:43 #10789 [Debug] > │ </text>                                                                      │

02:07:43 #10790 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10791 [Debug] > │ points="49,92 54,92 "/>                                                      │

02:07:43 #10792 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10793 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:43 #10794 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:43 #10795 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10796 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10797 [Debug] > │ 0.0                                                                          │

02:07:43 #10798 [Debug] > │ </text>                                                                      │

02:07:43 #10799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10800 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:43 #10801 [Debug] > │ <text x="99" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:43 #10802 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10803 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10804 [Debug] > │ 0.5                                                                          │

02:07:43 #10805 [Debug] > │ </text>                                                                      │

02:07:43 #10806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10807 [Debug] > │ points="99,425 99,430 "/>                                                    │

02:07:43 #10808 [Debug] > │ <text x="129" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10809 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10810 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10811 [Debug] > │ 1.0                                                                          │

02:07:43 #10812 [Debug] > │ </text>                                                                      │

02:07:43 #10813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10814 [Debug] > │ points="129,425 129,430 "/>                                                  │

02:07:43 #10815 [Debug] > │ <text x="159" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10816 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10817 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10818 [Debug] > │ 1.5                                                                          │

02:07:43 #10819 [Debug] > │ </text>                                                                      │

02:07:43 #10820 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10821 [Debug] > │ points="159,425 159,430 "/>                                                  │

02:07:43 #10822 [Debug] > │ <text x="189" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10823 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10824 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10825 [Debug] > │ 2.0                                                                          │

02:07:43 #10826 [Debug] > │ </text>                                                                      │

02:07:43 #10827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10828 [Debug] > │ points="189,425 189,430 "/>                                                  │

02:07:43 #10829 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10831 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10832 [Debug] > │ 2.5                                                                          │

02:07:43 #10833 [Debug] > │ </text>                                                                      │

02:07:43 #10834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10835 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:43 #10836 [Debug] > │ <text x="249" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10838 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10839 [Debug] > │ 3.0                                                                          │

02:07:43 #10840 [Debug] > │ </text>                                                                      │

02:07:43 #10841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10842 [Debug] > │ points="249,425 249,430 "/>                                                  │

02:07:43 #10843 [Debug] > │ <text x="279" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10845 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10846 [Debug] > │ 3.5                                                                          │

02:07:43 #10847 [Debug] > │ </text>                                                                      │

02:07:43 #10848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10849 [Debug] > │ points="279,425 279,430 "/>                                                  │

02:07:43 #10850 [Debug] > │ <text x="309" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10852 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10853 [Debug] > │ 4.0                                                                          │

02:07:43 #10854 [Debug] > │ </text>                                                                      │

02:07:43 #10855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10856 [Debug] > │ points="309,425 309,430 "/>                                                  │

02:07:43 #10857 [Debug] > │ <text x="339" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10859 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10860 [Debug] > │ 4.5                                                                          │

02:07:43 #10861 [Debug] > │ </text>                                                                      │

02:07:43 #10862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10863 [Debug] > │ points="339,425 339,430 "/>                                                  │

02:07:43 #10864 [Debug] > │ <text x="368" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10866 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10867 [Debug] > │ 5.0                                                                          │

02:07:43 #10868 [Debug] > │ </text>                                                                      │

02:07:43 #10869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10870 [Debug] > │ points="368,425 368,430 "/>                                                  │

02:07:43 #10871 [Debug] > │ <text x="398" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10872 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10873 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10874 [Debug] > │ 5.5                                                                          │

02:07:43 #10875 [Debug] > │ </text>                                                                      │

02:07:43 #10876 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10877 [Debug] > │ points="398,425 398,430 "/>                                                  │

02:07:43 #10878 [Debug] > │ <text x="428" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10880 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10881 [Debug] > │ 6.0                                                                          │

02:07:43 #10882 [Debug] > │ </text>                                                                      │

02:07:43 #10883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10884 [Debug] > │ points="428,425 428,430 "/>                                                  │

02:07:43 #10885 [Debug] > │ <text x="458" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10886 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10887 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10888 [Debug] > │ 6.5                                                                          │

02:07:43 #10889 [Debug] > │ </text>                                                                      │

02:07:43 #10890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10891 [Debug] > │ points="458,425 458,430 "/>                                                  │

02:07:43 #10892 [Debug] > │ <text x="488" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10893 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10894 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10895 [Debug] > │ 7.0                                                                          │

02:07:43 #10896 [Debug] > │ </text>                                                                      │

02:07:43 #10897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10898 [Debug] > │ points="488,425 488,430 "/>                                                  │

02:07:43 #10899 [Debug] > │ <text x="518" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10901 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10902 [Debug] > │ 7.5                                                                          │

02:07:43 #10903 [Debug] > │ </text>                                                                      │

02:07:43 #10904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10905 [Debug] > │ points="518,425 518,430 "/>                                                  │

02:07:43 #10906 [Debug] > │ <text x="548" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10907 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10908 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10909 [Debug] > │ 8.0                                                                          │

02:07:43 #10910 [Debug] > │ </text>                                                                      │

02:07:43 #10911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10912 [Debug] > │ points="548,425 548,430 "/>                                                  │

02:07:43 #10913 [Debug] > │ <text x="578" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:43 #10914 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10915 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10916 [Debug] > │ 8.5                                                                          │

02:07:43 #10917 [Debug] > │ </text>                                                                      │

02:07:43 #10918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10919 [Debug] > │ points="578,425 578,430 "/>                                                  │

02:07:43 #10920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10921 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:43 #10922 [Debug] > │ <text x="595" y="408" dy="0.5ex" text-anchor="start"                         │

02:07:43 #10923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10924 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10925 [Debug] > │ -4.0                                                                         │

02:07:43 #10926 [Debug] > │ </text>                                                                      │

02:07:43 #10927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10928 [Debug] > │ points="585,408 590,408 "/>                                                  │

02:07:43 #10929 [Debug] > │ <text x="595" y="368" dy="0.5ex" text-anchor="start"                         │

02:07:43 #10930 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10931 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10932 [Debug] > │ -3.0                                                                         │

02:07:43 #10933 [Debug] > │ </text>                                                                      │

02:07:43 #10934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10935 [Debug] > │ points="585,368 590,368 "/>                                                  │

02:07:43 #10936 [Debug] > │ <text x="595" y="329" dy="0.5ex" text-anchor="start"                         │

02:07:43 #10937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10938 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10939 [Debug] > │ -2.0                                                                         │

02:07:43 #10940 [Debug] > │ </text>                                                                      │

02:07:43 #10941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10942 [Debug] > │ points="585,329 590,329 "/>                                                  │

02:07:43 #10943 [Debug] > │ <text x="595" y="289" dy="0.5ex" text-anchor="start"                         │

02:07:43 #10944 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #10945 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #10946 [Debug] > │ -1.0                                                                         │

02:07:43 #10947 [Debug] > │ </text>                                                                      │

02:07:43 #10948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10949 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:07:43 #10950 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:43 #10951 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10952 [Debug] > │ 0.0                                                                          │

02:07:43 #10953 [Debug] > │ </text>                                                                      │

02:07:43 #10954 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10955 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:07:43 #10956 [Debug] > │ <text x="617" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:43 #10957 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10958 [Debug] > │ 1.0                                                                          │

02:07:43 #10959 [Debug] > │ </text>                                                                      │

02:07:43 #10960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10961 [Debug] > │ points="585,211 590,211 "/>                                                  │

02:07:43 #10962 [Debug] > │ <text x="617" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:43 #10963 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10964 [Debug] > │ 2.0                                                                          │

02:07:43 #10965 [Debug] > │ </text>                                                                      │

02:07:43 #10966 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10967 [Debug] > │ points="585,171 590,171 "/>                                                  │

02:07:43 #10968 [Debug] > │ <text x="617" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:07:43 #10969 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10970 [Debug] > │ 3.0                                                                          │

02:07:43 #10971 [Debug] > │ </text>                                                                      │

02:07:43 #10972 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10973 [Debug] > │ points="585,132 590,132 "/>                                                  │

02:07:43 #10974 [Debug] > │ <text x="617" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:43 #10975 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:43 #10976 [Debug] > │ 4.0                                                                          │

02:07:43 #10977 [Debug] > │ </text>                                                                      │

02:07:43 #10978 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:43 #10979 [Debug] > │ points="585,92 590,92 "/>                                                    │

02:07:43 #10980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:43 #10981 [Debug] > │ points="69,250 70,241 72,231 76,222 80,213 86,204 94,196 102,189 111,181     │

02:07:43 #10982 [Debug] > │ 122,175 133,169 145,164 158,160 171,156 185,154 199,152 213,151 228,151      │

02:07:43 #10983 [Debug] > │ 242,152 256,154 270,157 283,161 296,165 308,170 319,176 329,183 338,190      │

02:07:43 #10984 [Debug] > │ 346,198 353,206 359,215 364,224 367,233 368,242 369,252 368,261 366,271      │

02:07:43 #10985 [Debug] > │ 362,280 357,289 351,297 343,305 335,313 325,320 314,326 303,332 291,337      │

02:07:43 #10986 [Debug] > │ 278,341 264,344 250,347 236,348 222,349 208,348 193,347 179,345 166,342      │

02:07:43 #10987 [Debug] > │ 153,338 140,334 128,329 117,322 107,316 98,308 90,300 84,292 78,283 74,274   │

02:07:43 #10988 [Debug] > │ 71,265 70,256 70,246 71,237 73,227 77,218 83,210 89,201 97,193 106,186       │

02:07:43 #10989 [Debug] > │ 115,179 126,173 138,167 150,162 163,158 177,155 191,153 205,152 219,151      │

02:07:43 #10990 [Debug] > │ 234,152 248,153 262,155 275,158 288,162 301,167 312,173 323,179 333,186      │

02:07:43 #10991 [Debug] > │ 342,193 349,201 356,210 361,218 365,228 368,237 369,246 369,256 "/>          │

02:07:43 #10992 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:43 #10993 [Debug] > │ points="69,250 70,241 71,231 73,222 76,212 80,203 84,194 89,186 95,177       │

02:07:43 #10994 [Debug] > │ 102,169 110,160 118,153 127,145 136,138 146,131 157,125 168,119 179,114      │

02:07:43 #10995 [Debug] > │ 192,108 204,104 217,100 230,96 244,93 258,90 272,88 286,87 300,86 314,85     │

02:07:43 #10996 [Debug] > │ 329,85 343,86 357,87 371,89 385,91 399,94 412,97 425,101 438,105 451,110     │

02:07:43 #10997 [Debug] > │ 463,115 474,121 485,127 495,134 505,140 515,148 523,155 531,163 538,171      │

02:07:43 #10998 [Debug] > │ 545,180 550,188 555,197 560,206 563,216 566,225 567,234 568,244 568,253      │

02:07:43 #10999 [Debug] > │ 568,263 566,272 564,281 561,291 557,300 552,309 547,317 540,326 533,334      │

02:07:43 #11000 [Debug] > │ 526,342 517,350 508,357 499,364 488,371 478,377 466,383 455,388 442,393      │

02:07:43 #11001 [Debug] > │ 430,398 417,402 403,405 390,408 376,410 362,412 348,414 333,414 319,415      │

02:07:43 #11002 [Debug] > │ 305,414 290,414 276,412 262,410 248,408 235,405 221,401 208,397 196,393      │

02:07:43 #11003 [Debug] > │ 183,388 171,383 160,377 149,371 139,364 129,357 120,350 112,342 104,334      │

02:07:43 #11004 [Debug] > │ 97,326 91,317 86,309 81,300 77,290 74,281 72,272 70,263 70,253 70,244 71,234 │

02:07:43 #11005 [Debug] > │ 72,225 75,215 78,206 83,197 88,188 93,180 100,171 107,163 115,155 124,148    │

02:07:43 #11006 [Debug] > │ 133,140 143,133 153,127 164,121 176,115 188,110 200,105 213,101 226,97       │

02:07:43 #11007 [Debug] > │ 239,94 253,91 267,89 281,87 295,86 310,85 324,85 338,86 353,87 367,88 381,90 │

02:07:43 #11008 [Debug] > │ 394,93 408,96 421,100 434,104 447,109 459,114 470,119 482,125 492,131        │

02:07:43 #11009 [Debug] > │ 502,138 512,145 520,153 529,161 536,169 543,177 549,186 554,194 558,203      │

02:07:43 #11010 [Debug] > │ 562,213 565,222 567,231 568,241 569,250 "/>                                  │

02:07:43 #11011 [Debug] > │ <rect x="464" y="227" width="116" height="45" opacity="1" fill="none"        │

02:07:43 #11012 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:43 #11013 [Debug] > │ <text x="504" y="237" dy="0.76em" text-anchor="start"                        │

02:07:43 #11014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #11015 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #11016 [Debug] > │ newtonian                                                                    │

02:07:43 #11017 [Debug] > │ </text>                                                                      │

02:07:43 #11018 [Debug] > │ <text x="504" y="252" dy="0.76em" text-anchor="start"                        │

02:07:43 #11019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:43 #11020 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:43 #11021 [Debug] > │ relativistic                                                                 │

02:07:43 #11022 [Debug] > │ </text>                                                                      │

02:07:43 #11023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:43 #11024 [Debug] > │ points="474,242 494,242 "/>                                                  │

02:07:43 #11025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:43 #11026 [Debug] > │ points="474,257 494,257 "/>                                                  │

02:07:43 #11027 [Debug] > │ </svg>                                                                       │

02:07:43 #11028 [Debug] > │                                                                              │

02:07:43 #11029 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:43 #11030 [Debug] >

02:07:43 #11031 [Debug] > ╭─[ 874.37ms - stdout ]────────────────────────────────────────────────────────╮

02:07:43 #11032 [Debug] > │ type UH0 =                                                                   │

02:07:43 #11033 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:07:43 #11034 [Debug] > │ * float * UH0                                                                │

02:07:43 #11035 [Debug] > │     | UH0_1                                                                  │

02:07:43 #11036 [Debug] > │ and UH1 =                                                                    │

02:07:43 #11037 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:07:43 #11038 [Debug] > │     | UH1_1                                                                  │

02:07:43 #11039 [Debug] > │ and UH2 =                                                                    │

02:07:43 #11040 [Debug] > │     | UH2_0 of float * UH2                                                   │

02:07:43 #11041 [Debug] > │     | UH2_1                                                                  │

02:07:43 #11042 [Debug] > │ let rec closure1 (v0 : (struct (float * float * float * float * float *      │

02:07:43 #11043 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:07:43 #11044 [Debug] > │ float * float * float * float * float))) struct (v1 : float, v2 : float, v3  │

02:07:43 #11045 [Debug] > │ : float, v4 : float, v5 : float, v6 : float, v7 : float, v8 : float, v9 :    │

02:07:43 #11046 [Debug] > │ float) : struct (float * float * float * float * float * float * float *     │

02:07:43 #11047 [Debug] > │ float * float) =                                                             │

02:07:43 #11048 [Debug] > │     let struct (v10 : float, v11 : float, v12 : float, v13 : float, v14 :    │

02:07:43 #11049 [Debug] > │ float, v15 : float, v16 : float, v17 : float, v18 : float) = v0 struct (v1,  │

02:07:43 #11050 [Debug] > │ v2, v3, v4, v5, v6, v7, v8, v9)                                              │

02:07:43 #11051 [Debug] > │     let v19 : float = v15 * 5E-10                                            │

02:07:43 #11052 [Debug] > │     let v20 : float = v6 + v19                                               │

02:07:43 #11053 [Debug] > │     let v21 : float = 5E-10 * v12                                            │

02:07:43 #11054 [Debug] > │     let v22 : float = 5E-10 * v13                                            │

02:07:43 #11055 [Debug] > │     let v23 : float = 5E-10 * v14                                            │

02:07:43 #11056 [Debug] > │     let v24 : float = v3 + v21                                               │

02:07:43 #11057 [Debug] > │     let v25 : float = v4 + v22                                               │

02:07:43 #11058 [Debug] > │     let v26 : float = v5 + v23                                               │

02:07:43 #11059 [Debug] > │     let v27 : float = 5E-10 * v16                                            │

02:07:43 #11060 [Debug] > │     let v28 : float = 5E-10 * v17                                            │

02:07:43 #11061 [Debug] > │     let v29 : float = 5E-10 * v18                                            │

02:07:43 #11062 [Debug] > │     let v30 : float = v7 + v27                                               │

02:07:43 #11063 [Debug] > │     let v31 : float = v8 + v28                                               │

02:07:43 #11064 [Debug] > │     let v32 : float = v9 + v29                                               │

02:07:43 #11065 [Debug] > │     let struct (v33 : float, v34 : float, v35 : float, v36 : float, v37 :    │

02:07:43 #11066 [Debug] > │ float, v38 : float, v39 : float, v40 : float, v41 : float) = v0 struct (v1,  │

02:07:43 #11067 [Debug] > │ v2, v24, v25, v26, v20, v30, v31, v32)                                       │

02:07:43 #11068 [Debug] > │     let v42 : float = v38 * 5E-10                                            │

02:07:43 #11069 [Debug] > │     let v43 : float = v6 + v42                                               │

02:07:43 #11070 [Debug] > │     let v44 : float = 5E-10 * v35                                            │

02:07:43 #11071 [Debug] > │     let v45 : float = 5E-10 * v36                                            │

02:07:43 #11072 [Debug] > │     let v46 : float = 5E-10 * v37                                            │

02:07:43 #11073 [Debug] > │     let v47 : float = v3 + v44                                               │

02:07:43 #11074 [Debug] > │     let v48 : float = v4 + v45                                               │

02:07:43 #11075 [Debug] > │     let v49 : float = v5 + v46                                               │

02:07:43 #11076 [Debug] > │     let v50 : float = 5E-10 * v39                                            │

02:07:43 #11077 [Debug] > │     let v51 : float = 5E-10 * v40                                            │

02:07:43 #11078 [Debug] > │     let v52 : float = 5E-10 * v41                                            │

02:07:43 #11079 [Debug] > │     let v53 : float = v7 + v50                                               │

02:07:43 #11080 [Debug] > │     let v54 : float = v8 + v51                                               │

02:07:43 #11081 [Debug] > │     let v55 : float = v9 + v52                                               │

02:07:43 #11082 [Debug] > │     let struct (v56 : float, v57 : float, v58 : float, v59 : float, v60 :    │

02:07:43 #11083 [Debug] > │ float, v61 : float, v62 : float, v63 : float, v64 : float) = v0 struct (v1,  │

02:07:43 #11084 [Debug] > │ v2, v47, v48, v49, v43, v53, v54, v55)                                       │

02:07:43 #11085 [Debug] > │     let v65 : float = v61 * 1E-09                                            │

02:07:43 #11086 [Debug] > │     let v66 : float = v6 + v65                                               │

02:07:43 #11087 [Debug] > │     let v67 : float = 1E-09 * v58                                            │

02:07:43 #11088 [Debug] > │     let v68 : float = 1E-09 * v59                                            │

02:07:43 #11089 [Debug] > │     let v69 : float = 1E-09 * v60                                            │

02:07:43 #11090 [Debug] > │     let v70 : float = v3 + v67                                               │

02:07:43 #11091 [Debug] > │     let v71 : float = v4 + v68                                               │

02:07:43 #11092 [Debug] > │     let v72 : float = v5 + v69                                               │

02:07:43 #11093 [Debug] > │     let v73 : float = 1E-09 * v62                                            │

02:07:43 #11094 [Debug] > │     let v74 : float = 1E-09 * v63                                            │

02:07:43 #11095 [Debug] > │     let v75 : float = 1E-09 * v64                                            │

02:07:43 #11096 [Debug] > │     let v76 : float = v7 + v73                                               │

02:07:43 #11097 [Debug] > │     let v77 : float = v8 + v74                                               │

02:07:43 #11098 [Debug] > │     let v78 : float = v9 + v75                                               │

02:07:43 #11099 [Debug] > │     let struct (v79 : float, v80 : float, v81 : float, v82 : float, v83 :    │

02:07:43 #11100 [Debug] > │ float, v84 : float, v85 : float, v86 : float, v87 : float) = v0 struct (v1,  │

02:07:43 #11101 [Debug] > │ v2, v70, v71, v72, v66, v76, v77, v78)                                       │

02:07:43 #11102 [Debug] > │     let v88 : float = v10 + v33                                              │

02:07:43 #11103 [Debug] > │     let v89 : float = v11 + v34                                              │

02:07:43 #11104 [Debug] > │     let v90 : float = v15 + v38                                              │

02:07:43 #11105 [Debug] > │     let v91 : float = v12 + v35                                              │

02:07:43 #11106 [Debug] > │     let v92 : float = v13 + v36                                              │

02:07:43 #11107 [Debug] > │     let v93 : float = v14 + v37                                              │

02:07:43 #11108 [Debug] > │     let v94 : float = v16 + v39                                              │

02:07:43 #11109 [Debug] > │     let v95 : float = v17 + v40                                              │

02:07:43 #11110 [Debug] > │     let v96 : float = v18 + v41                                              │

02:07:43 #11111 [Debug] > │     let v97 : float = v88 + v33                                              │

02:07:43 #11112 [Debug] > │     let v98 : float = v89 + v34                                              │

02:07:43 #11113 [Debug] > │     let v99 : float = v90 + v38                                              │

02:07:43 #11114 [Debug] > │     let v100 : float = v91 + v35                                             │

02:07:43 #11115 [Debug] > │     let v101 : float = v92 + v36                                             │

02:07:43 #11116 [Debug] > │     let v102 : float = v93 + v37                                             │

02:07:43 #11117 [Debug] > │     let v103 : float = v94 + v39                                             │

02:07:43 #11118 [Debug] > │     let v104 : float = v95 + v40                                             │

02:07:43 #11119 [Debug] > │     let v105 : float = v96 + v41                                             │

02:07:43 #11120 [Debug] > │     let v106 : float = v97 + v56                                             │

02:07:43 #11121 [Debug] > │     let v107 : float = v98 + v57                                             │

02:07:43 #11122 [Debug] > │     let v108 : float = v99 + v61                                             │

02:07:43 #11123 [Debug] > │     let v109 : float = v100 + v58                                            │

02:07:43 #11124 [Debug] > │     let v110 : float = v101 + v59                                            │

02:07:43 #11125 [Debug] > │     let v111 : float = v102 + v60                                            │

02:07:43 #11126 [Debug] > │     let v112 : float = v103 + v62                                            │

02:07:43 #11127 [Debug] > │     let v113 : float = v104 + v63                                            │

02:07:43 #11128 [Debug] > │     let v114 : float = v105 + v64                                            │

02:07:43 #11129 [Debug] > │     let v115 : float = v106 + v56                                            │

02:07:43 #11130 [Debug] > │     let v116 : float = v107 + v57                                            │

02:07:43 #11131 [Debug] > │     let v117 : float = v108 + v61                                            │

02:07:43 #11132 [Debug] > │     let v118 : float = v109 + v58                                            │

02:07:43 #11133 [Debug] > │     let v119 : float = v110 + v59                                            │

02:07:43 #11134 [Debug] > │     let v120 : float = v111 + v60                                            │

02:07:43 #11135 [Debug] > │     let v121 : float = v112 + v62                                            │

02:07:43 #11136 [Debug] > │     let v122 : float = v113 + v63                                            │

02:07:43 #11137 [Debug] > │     let v123 : float = v114 + v64                                            │

02:07:43 #11138 [Debug] > │     let v124 : float = v115 + v79                                            │

02:07:43 #11139 [Debug] > │     let v125 : float = v116 + v80                                            │

02:07:43 #11140 [Debug] > │     let v126 : float = v117 + v84                                            │

02:07:43 #11141 [Debug] > │     let v127 : float = v118 + v81                                            │

02:07:43 #11142 [Debug] > │     let v128 : float = v119 + v82                                            │

02:07:43 #11143 [Debug] > │     let v129 : float = v120 + v83                                            │

02:07:43 #11144 [Debug] > │     let v130 : float = v121 + v85                                            │

02:07:43 #11145 [Debug] > │     let v131 : float = v122 + v86                                            │

02:07:43 #11146 [Debug] > │     let v132 : float = v123 + v87                                            │

02:07:43 #11147 [Debug] > │     let v133 : float = v126 * 1.6666666666666669E-10                         │

02:07:43 #11148 [Debug] > │     let v134 : float = v6 + v133                                             │

02:07:43 #11149 [Debug] > │     let v135 : float = 1.6666666666666669E-10 * v127                         │

02:07:43 #11150 [Debug] > │     let v136 : float = 1.6666666666666669E-10 * v128                         │

02:07:43 #11151 [Debug] > │     let v137 : float = 1.6666666666666669E-10 * v129                         │

02:07:43 #11152 [Debug] > │     let v138 : float = v3 + v135                                             │

02:07:43 #11153 [Debug] > │     let v139 : float = v4 + v136                                             │

02:07:43 #11154 [Debug] > │     let v140 : float = v5 + v137                                             │

02:07:43 #11155 [Debug] > │     let v141 : float = 1.6666666666666669E-10 * v130                         │

02:07:43 #11156 [Debug] > │     let v142 : float = 1.6666666666666669E-10 * v131                         │

02:07:43 #11157 [Debug] > │     let v143 : float = 1.6666666666666669E-10 * v132                         │

02:07:43 #11158 [Debug] > │     let v144 : float = v7 + v141                                             │

02:07:43 #11159 [Debug] > │     let v145 : float = v8 + v142                                             │

02:07:43 #11160 [Debug] > │     let v146 : float = v9 + v143                                             │

02:07:43 #11161 [Debug] > │     struct (v1, v2, v138, v139, v140, v134, v144, v145, v146)                │

02:07:43 #11162 [Debug] > │ and closure0 () (v0 : (struct (float * float * float * float * float * float │

02:07:43 #11163 [Debug] > │ * float * float * float) -> struct (float * float * float * float * float *  │

02:07:43 #11164 [Debug] > │ float * float * float * float))) : (struct (float * float * float * float *  │

02:07:43 #11165 [Debug] > │ float * float * float * float * float) -> struct (float * float * float *    │

02:07:43 #11166 [Debug] > │ float * float * float * float * float * float)) =                            │

02:07:43 #11167 [Debug] > │     closure1(v0)                                                             │

02:07:43 #11168 [Debug] > │ and closure2 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:07:43 #11169 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:07:43 #11170 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:07:43 #11171 [Debug] > │     let v9 : float = v8 * 0.0                                                │

02:07:43 #11172 [Debug] > │     let v10 : float = v7 - v9                                                │

02:07:43 #11173 [Debug] > │     let v11 : float = v9 - v6                                                │

02:07:43 #11174 [Debug] > │     let v12 : float = v6 * 0.0                                               │

02:07:43 #11175 [Debug] > │     let v13 : float = v7 * 0.0                                               │

02:07:43 #11176 [Debug] > │     let v14 : float = v12 - v13                                              │

02:07:43 #11177 [Debug] > │     let v15 : float = v0 * v10                                               │

02:07:43 #11178 [Debug] > │     let v16 : float = v0 * v11                                               │

02:07:43 #11179 [Debug] > │     let v17 : float = v0 * v14                                               │

02:07:43 #11180 [Debug] > │     let v18 : float = v15 / v1                                               │

02:07:43 #11181 [Debug] > │     let v19 : float = v16 / v1                                               │

02:07:43 #11182 [Debug] > │     let v20 : float = v17 / v1                                               │

02:07:43 #11183 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v18, v19, v20)                        │

02:07:43 #11184 [Debug] > │ and closure3 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:07:43 #11185 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:07:43 #11186 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:07:43 #11187 [Debug] > │     let v9 : float = v8 * 0.0                                                │

02:07:43 #11188 [Debug] > │     let v10 : float = v7 - v9                                                │

02:07:43 #11189 [Debug] > │     let v11 : float = v9 - v6                                                │

02:07:43 #11190 [Debug] > │     let v12 : float = v6 * 0.0                                               │

02:07:43 #11191 [Debug] > │     let v13 : float = v7 * 0.0                                               │

02:07:43 #11192 [Debug] > │     let v14 : float = v12 - v13                                              │

02:07:43 #11193 [Debug] > │     let v15 : float = v0 * v10                                               │

02:07:43 #11194 [Debug] > │     let v16 : float = v0 * v11                                               │

02:07:43 #11195 [Debug] > │     let v17 : float = v0 * v14                                               │

02:07:43 #11196 [Debug] > │     let v18 : float = v6 / 299792458.0                                       │

02:07:43 #11197 [Debug] > │     let v19 : float = v7 / 299792458.0                                       │

02:07:43 #11198 [Debug] > │     let v20 : float = v8 / 299792458.0                                       │

02:07:43 #11199 [Debug] > │     let v21 : float = v18 * v18                                              │

02:07:43 #11200 [Debug] > │     let v22 : float = v19 * v19                                              │

02:07:43 #11201 [Debug] > │     let v23 : float = v21 + v22                                              │

02:07:43 #11202 [Debug] > │     let v24 : float = v20 * v20                                              │

02:07:43 #11203 [Debug] > │     let v25 : float = v23 + v24                                              │

02:07:43 #11204 [Debug] > │     let v26 : float = 1.0 - v25                                              │

02:07:43 #11205 [Debug] > │     let v27 : float = sqrt v26                                               │

02:07:43 #11206 [Debug] > │     let v28 : float = v15 * v18                                              │

02:07:43 #11207 [Debug] > │     let v29 : float = v16 * v19                                              │

02:07:43 #11208 [Debug] > │     let v30 : float = v28 + v29                                              │

02:07:43 #11209 [Debug] > │     let v31 : float = v17 * v20                                              │

02:07:43 #11210 [Debug] > │     let v32 : float = v30 + v31                                              │

02:07:43 #11211 [Debug] > │     let v33 : float = v32 * v18                                              │

02:07:43 #11212 [Debug] > │     let v34 : float = v32 * v19                                              │

02:07:43 #11213 [Debug] > │     let v35 : float = v32 * v20                                              │

02:07:43 #11214 [Debug] > │     let v36 : float = -1.0 * v33                                             │

02:07:43 #11215 [Debug] > │     let v37 : float = -1.0 * v34                                             │

02:07:43 #11216 [Debug] > │     let v38 : float = -1.0 * v35                                             │

02:07:43 #11217 [Debug] > │     let v39 : float = v15 + v36                                              │

02:07:43 #11218 [Debug] > │     let v40 : float = v16 + v37                                              │

02:07:43 #11219 [Debug] > │     let v41 : float = v17 + v38                                              │

02:07:43 #11220 [Debug] > │     let v42 : float = v27 * v39                                              │

02:07:43 #11221 [Debug] > │     let v43 : float = v27 * v40                                              │

02:07:43 #11222 [Debug] > │     let v44 : float = v27 * v41                                              │

02:07:43 #11223 [Debug] > │     let v45 : float = v42 / v1                                               │

02:07:43 #11224 [Debug] > │     let v46 : float = v43 / v1                                               │

02:07:43 #11225 [Debug] > │     let v47 : float = v44 / v1                                               │

02:07:43 #11226 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v45, v46, v47)                        │

02:07:43 #11227 [Debug] > │ and method2 (v0 : (struct (float * float * float * float * float * float *   │

02:07:43 #11228 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:07:43 #11229 [Debug] > │ float * float * float * float)), v1 : float, v2 : float, v3 : float, v4 :    │

02:07:43 #11230 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float, v9 : float, v10 :     │

02:07:43 #11231 [Debug] > │ int32) : struct (float * float * float * float * float * float * float *     │

02:07:43 #11232 [Debug] > │ float * float) =                                                             │

02:07:43 #11233 [Debug] > │     let v11 : bool = v10 <= 0                                                │

02:07:43 #11234 [Debug] > │     if v11 then                                                              │

02:07:43 #11235 [Debug] > │         struct (v1, v2, v3, v4, v5, v6, v7, v8, v9)                          │

02:07:43 #11236 [Debug] > │     else                                                                     │

02:07:43 #11237 [Debug] > │         let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:07:43 #11238 [Debug] > │ : float, v17 : float, v18 : float, v19 : float, v20 : float) = v0 struct     │

02:07:43 #11239 [Debug] > │ (v1, v2, v3, v4, v5, v6, v7, v8, v9)                                         │

02:07:43 #11240 [Debug] > │         let v21 : int32 = v10 - 1                                            │

02:07:43 #11241 [Debug] > │         method2(v0, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)        │

02:07:43 #11242 [Debug] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:07:43 #11243 [Debug] > │     match v0 with                                                            │

02:07:43 #11244 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:43 #11245 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:07:43 #11246 [Debug] > │         method3(v11, v12)                                                    │

02:07:43 #11247 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:43 #11248 [Debug] > │         v1                                                                   │

02:07:43 #11249 [Debug] > │ and method1 (v0 : (struct (float * float * float * float * float * float *   │

02:07:43 #11250 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:07:43 #11251 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:07:43 #11252 [Debug] > │     let v3 : float = 1.602176621E-19                                         │

02:07:43 #11253 [Debug] > │     let v4 : float = 1.672621898E-27                                         │

02:07:43 #11254 [Debug] > │     let v5 : float = 0.0                                                     │

02:07:43 #11255 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:43 #11256 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:43 #11257 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:43 #11258 [Debug] > │     let v9 : float = 0.0                                                     │

02:07:43 #11259 [Debug] > │     let v10 : float = 239833966.4                                            │

02:07:43 #11260 [Debug] > │     let v11 : float = 0.0                                                    │

02:07:43 #11261 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:07:43 #11262 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:07:43 #11263 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:07:43 #11264 [Debug] > │     let v21 : bool = v2 < 100                                                │

02:07:43 #11265 [Debug] > │     if v21 then                                                              │

02:07:43 #11266 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:07:43 #11267 [Debug] > │ v1)                                                                          │

02:07:43 #11268 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:07:43 #11269 [Debug] > │         method1(v0, v22, v23)                                                │

02:07:43 #11270 [Debug] > │     else                                                                     │

02:07:43 #11271 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:07:43 #11272 [Debug] > │         method3(v1, v25)                                                     │

02:07:43 #11273 [Debug] > │ and method4 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:07:43 #11274 [Debug] > │     match v0 with                                                            │

02:07:43 #11275 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:43 #11276 [Debug] > │         let v12 : UH1 = method4(v11, v1)                                     │

02:07:43 #11277 [Debug] > │         UH1_0(v4, v5, v12)                                                   │

02:07:43 #11278 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:43 #11279 [Debug] > │         v1                                                                   │

02:07:43 #11280 [Debug] > │ and method5 (v0 : UH1, v1 : UH2, v2 : UH2) : struct (UH2 * UH2) =            │

02:07:43 #11281 [Debug] > │     match v0 with                                                            │

02:07:43 #11282 [Debug] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

02:07:43 #11283 [Debug] > │         let v6 : UH2 = UH2_0(v3, v1)                                         │

02:07:43 #11284 [Debug] > │         let v7 : UH2 = UH2_0(v4, v2)                                         │

02:07:43 #11285 [Debug] > │         method5(v5, v6, v7)                                                  │

02:07:43 #11286 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:07:43 #11287 [Debug] > │         struct (v1, v2)                                                      │

02:07:43 #11288 [Debug] > │ and method6 (v0 : UH2, v1 : UH2) : UH2 =                                     │

02:07:43 #11289 [Debug] > │     match v0 with                                                            │

02:07:43 #11290 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:07:43 #11291 [Debug] > │         let v4 : UH2 = UH2_0(v2, v1)                                         │

02:07:43 #11292 [Debug] > │         method6(v3, v4)                                                      │

02:07:43 #11293 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:43 #11294 [Debug] > │         v1                                                                   │

02:07:43 #11295 [Debug] > │ and method7 (v0 : (struct (float * float * float * float * float * float *   │

02:07:43 #11296 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:07:43 #11297 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:07:43 #11298 [Debug] > │     let v3 : float = 1.602176621E-19                                         │

02:07:43 #11299 [Debug] > │     let v4 : float = 1.672621898E-27                                         │

02:07:43 #11300 [Debug] > │     let v5 : float = 0.0                                                     │

02:07:43 #11301 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:43 #11302 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:43 #11303 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:43 #11304 [Debug] > │     let v9 : float = 0.0                                                     │

02:07:43 #11305 [Debug] > │     let v10 : float = 239833966.4                                            │

02:07:43 #11306 [Debug] > │     let v11 : float = 0.0                                                    │

02:07:43 #11307 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:07:43 #11308 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:07:43 #11309 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:07:43 #11310 [Debug] > │     let v21 : bool = v2 < 165                                                │

02:07:43 #11311 [Debug] > │     if v21 then                                                              │

02:07:43 #11312 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:07:43 #11313 [Debug] > │ v1)                                                                          │

02:07:43 #11314 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:07:43 #11315 [Debug] > │         method7(v0, v22, v23)                                                │

02:07:43 #11316 [Debug] > │     else                                                                     │

02:07:43 #11317 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:07:43 #11318 [Debug] > │         method3(v1, v25)                                                     │

02:07:43 #11319 [Debug] > │ and method8 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:07:43 #11320 [Debug] > │     match v0 with                                                            │

02:07:43 #11321 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:43 #11322 [Debug] > │         let v12 : UH1 = method8(v11, v1)                                     │

02:07:43 #11323 [Debug] > │         UH1_0(v4, v5, v12)                                                   │

02:07:43 #11324 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:43 #11325 [Debug] > │         v1                                                                   │

02:07:43 #11326 [Debug] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

02:07:43 #11327 [Debug] > │     match v0 with                                                            │

02:07:43 #11328 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:07:43 #11329 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:07:43 #11330 [Debug] > │         method10(v3, v4)                                                     │

02:07:43 #11331 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:43 #11332 [Debug] > │         v1                                                                   │

02:07:43 #11333 [Debug] > │ and method11 (v0 : (float []), v1 : UH2, v2 : int32) : int32 =               │

02:07:43 #11334 [Debug] > │     match v1 with                                                            │

02:07:43 #11335 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:07:43 #11336 [Debug] > │         v0.[int v2] <- v3                                                    │

02:07:43 #11337 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:07:43 #11338 [Debug] > │         method11(v0, v4, v5)                                                 │

02:07:43 #11339 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:43 #11340 [Debug] > │         v2                                                                   │

02:07:43 #11341 [Debug] > │ and method9 (v0 : UH2) : (float []) =                                        │

02:07:43 #11342 [Debug] > │     let v1 : int32 = 0                                                       │

02:07:43 #11343 [Debug] > │     let v2 : int32 = method10(v0, v1)                                        │

02:07:43 #11344 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:07:43 #11345 [Debug] > │     let v4 : int32 = 0                                                       │

02:07:43 #11346 [Debug] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

02:07:43 #11347 [Debug] > │     v3                                                                       │

02:07:43 #11348 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:43 #11349 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:43 #11350 [Debug] > │     let v0 : ((struct (float * float * float * float * float * float * float │

02:07:43 #11351 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:43 #11352 [Debug] > │ float * float * float)) -> (struct (float * float * float * float * float *  │

02:07:43 #11353 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:07:43 #11354 [Debug] > │ float * float * float * float * float))) = closure0()                        │

02:07:43 #11355 [Debug] > │     let v1 : (struct (float * float * float * float * float * float * float  │

02:07:43 #11356 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:43 #11357 [Debug] > │ float * float * float)) = closure2()                                         │

02:07:43 #11358 [Debug] > │     let v2 : (struct (float * float * float * float * float * float * float  │

02:07:43 #11359 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:43 #11360 [Debug] > │ float * float * float)) = v0 v1                                              │

02:07:43 #11361 [Debug] > │     let v3 : (struct (float * float * float * float * float * float * float  │

02:07:43 #11362 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:43 #11363 [Debug] > │ float * float * float)) = closure3()                                         │

02:07:43 #11364 [Debug] > │     let v4 : (struct (float * float * float * float * float * float * float  │

02:07:43 #11365 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:07:43 #11366 [Debug] > │ float * float * float)) = v0 v3                                              │

02:07:43 #11367 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:07:43 #11368 [Debug] > │     let v6 : int32 = 0                                                       │

02:07:43 #11369 [Debug] > │     let v7 : UH0 = method1(v2, v5, v6)                                       │

02:07:43 #11370 [Debug] > │     let v8 : UH1 = UH1_1                                                     │

02:07:43 #11371 [Debug] > │     let v9 : UH1 = method4(v7, v8)                                           │

02:07:43 #11372 [Debug] > │     let v10 : UH2 = UH2_1                                                    │

02:07:43 #11373 [Debug] > │     let v11 : UH2 = UH2_1                                                    │

02:07:43 #11374 [Debug] > │     let struct (v12 : UH2, v13 : UH2) = method5(v9, v10, v11)                │

02:07:43 #11375 [Debug] > │     let v14 : UH2 = UH2_1                                                    │

02:07:43 #11376 [Debug] > │     let v15 : UH2 = method6(v12, v14)                                        │

02:07:43 #11377 [Debug] > │     let v16 : UH2 = UH2_1                                                    │

02:07:43 #11378 [Debug] > │     let v17 : UH2 = method6(v13, v16)                                        │

02:07:43 #11379 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:07:43 #11380 [Debug] > │     let v19 : int32 = 0                                                      │

02:07:43 #11381 [Debug] > │     let v20 : UH0 = method7(v4, v18, v19)                                    │

02:07:43 #11382 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:07:43 #11383 [Debug] > │     let v22 : UH1 = method8(v20, v21)                                        │

02:07:43 #11384 [Debug] > │     let v23 : UH2 = UH2_1                                                    │

02:07:43 #11385 [Debug] > │     let v24 : UH2 = UH2_1                                                    │

02:07:43 #11386 [Debug] > │     let struct (v25 : UH2, v26 : UH2) = method5(v22, v23, v24)               │

02:07:43 #11387 [Debug] > │     let v27 : UH2 = UH2_1                                                    │

02:07:43 #11388 [Debug] > │     let v28 : UH2 = method6(v25, v27)                                        │

02:07:43 #11389 [Debug] > │     let v29 : UH2 = UH2_1                                                    │

02:07:43 #11390 [Debug] > │     let v30 : UH2 = method6(v26, v29)                                        │

02:07:43 #11391 [Debug] > │     let v31 : (float []) = method9(v15)                                      │

02:07:43 #11392 [Debug] > │     let v32 : (float []) = method9(v17)                                      │

02:07:43 #11393 [Debug] > │     let v33 : (float []) = method9(v28)                                      │

02:07:43 #11394 [Debug] > │     let v34 : (float []) = method9(v30)                                      │

02:07:43 #11395 [Debug] > │     let v35 : string = "newtonian"                                           │

02:07:43 #11396 [Debug] > │     let v36 : string = "relativistic"                                        │

02:07:43 #11397 [Debug] > │     let v37 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:43 #11398 [Debug] > │ (v35, v31, v32); struct (v36, v33, v34)|]                                    │

02:07:43 #11399 [Debug] > │     let v38 : string = "proton in a 1-t magnetic field"                      │

02:07:43 #11400 [Debug] > │     let v39 : string = "x (m)"                                               │

02:07:43 #11401 [Debug] > │     let v40 : string = "y (m)"                                               │

02:07:43 #11402 [Debug] > │     struct (v38, v39, v40, v37)                                              │

02:07:43 #11403 [Debug] > │ method0()                                                                    │

02:07:43 #11404 [Debug] > │                                                                              │

02:07:43 #11405 [Debug] > │                                                                              │

02:07:43 #11406 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:43 #11407 [Debug] >

02:07:43 #11408 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:43 #11409 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:43 #11410 [Debug] > │ ### system kinetic energy versus time 1                                      │

02:07:43 #11411 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:43 #11412 [Debug] >

02:07:43 #11413 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:43 #11414 [Debug] > // // test

02:07:43 #11415 [Debug] >

02:07:43 #11416 [Debug] > inl central_force f (particle_state st1) (particle_state st2) =

02:07:43 #11417 [Debug] >     inl r1 = st1.pos_vec

02:07:43 #11418 [Debug] >     inl r2 = st2.pos_vec

02:07:43 #11419 [Debug] >     inl r21 = r2 ^-^ r1

02:07:43 #11420 [Debug] >     inl r21mag = magnitude r21

02:07:43 #11421 [Debug] >     f r21mag *^ r21 ^/ r21mag

02:07:43 #11422 [Debug] >

02:07:43 #11423 [Debug] > inl billiard_force k re =

02:07:43 #11424 [Debug] >     inl f r =

02:07:43 #11425 [Debug] >         if r >= re

02:07:43 #11426 [Debug] >         then 0

02:07:43 #11427 [Debug] >         else -k * (r - re)

02:07:43 #11428 [Debug] >     central_force f

02:07:43 #11429 [Debug] >

02:07:43 #11430 [Debug] > type force_vector = vec

02:07:43 #11431 [Debug] > type two_body_force = particle_state -> particle_state -> force_vector

02:07:43 #11432 [Debug] >

02:07:43 #11433 [Debug] > union force =

02:07:43 #11434 [Debug] >     | ExternalForce : i32 * one_body_force

02:07:43 #11435 [Debug] >     | InternalForce : i32 * i32 * two_body_force

02:07:43 #11436 [Debug] >

02:07:43 #11437 [Debug] > nominal multi_particle_state = list particle_state

02:07:43 #11438 [Debug] >

02:07:43 #11439 [Debug] > nominal d_multi_particle_state = list d_particle_state

02:07:43 #11440 [Debug] >

02:07:43 #11441 [Debug] > inl force_on n sts force =

02:07:43 #11442 [Debug] >     match force with

02:07:43 #11443 [Debug] >     | ExternalForce (n0, f_one_body) =>

02:07:43 #11444 [Debug] >         if n = n0

02:07:43 #11445 [Debug] >         then f_one_body

02:07:43 #11446 [Debug] >         else fun _ => zero_vec ()

02:07:43 #11447 [Debug] >     | InternalForce (n0, n1, f_two_body) =>

02:07:43 #11448 [Debug] >         if n = n0

02:07:43 #11449 [Debug] >         then f_two_body (sts |> listm'.item n1)

02:07:43 #11450 [Debug] >         elif n = n1

02:07:43 #11451 [Debug] >         then f_two_body (sts |> listm'.item n0)

02:07:43 #11452 [Debug] >         else fun _ => zero_vec ()

02:07:43 #11453 [Debug] >

02:07:43 #11454 [Debug] > inl forces_on n (multi_particle_state sts) fs =

02:07:43 #11455 [Debug] >     fs |> listm.map (force_on n sts)

02:07:43 #11456 [Debug] >

02:07:43 #11457 [Debug] > inl newton_second_mps fs (multi_particle_state sts) : d_multi_particle_state =

02:07:43 #11458 [Debug] >     inl deriv (n, st) =

02:07:43 #11459 [Debug] >         newton_second_ps (forces_on n (multi_particle_state sts) fs) st

02:07:43 #11460 [Debug] >     sts |> listm'.indexed |> listm.map deriv |> d_multi_particle_state

02:07:43 #11461 [Debug] >

02:07:43 #11462 [Debug] > instance (+++) d_multi_particle_state = fun (d_multi_particle_state dsts1)

02:07:43 #11463 [Debug] > (d_multi_particle_state dsts2) =>

02:07:43 #11464 [Debug] >     d_multi_particle_state (listm'.zip_with_ (+++) dsts1 dsts2)

02:07:43 #11465 [Debug] >

02:07:43 #11466 [Debug] > instance scale d_multi_particle_state = fun w (d_multi_particle_state dsts) =>

02:07:43 #11467 [Debug] >     d_multi_particle_state (dsts |> listm.map (scale w))

02:07:43 #11468 [Debug] >

02:07:43 #11469 [Debug] > instance shift multi_particle_state = fun dt dsts (multi_particle_state sts) =>

02:07:43 #11470 [Debug] >     inl (d_multi_particle_state dsts) =

02:07:43 #11471 [Debug] >         real

02:07:43 #11472 [Debug] >             match dsts with

02:07:43 #11473 [Debug] >             | d_multi_particle_state _ => dsts

02:07:43 #11474 [Debug] >     listm'.zip_with_ (shift dt) dsts sts |> multi_particle_state

02:07:43 #11475 [Debug] >

02:07:43 #11476 [Debug] > inl euler_cromer_mps dt : numerical_method multi_particle_state

02:07:43 #11477 [Debug] > d_multi_particle_state =

02:07:43 #11478 [Debug] >     fun deriv mpst0 =>

02:07:43 #11479 [Debug] >         inl mpst1 = euler dt deriv mpst0

02:07:43 #11480 [Debug] >         inl (multi_particle_state sts0) = mpst0

02:07:43 #11481 [Debug] >         inl (multi_particle_state sts1) = mpst1

02:07:43 #11482 [Debug] >         sts1

02:07:43 #11483 [Debug] >         |> listm'.zip_ sts0

02:07:43 #11484 [Debug] >         |> listm.map (fun ((particle_state st0), (particle_state st1)) =>

02:07:43 #11485 [Debug] >             particle_state {

02:07:43 #11486 [Debug] >                 st1 with

02:07:43 #11487 [Debug] >                     pos_vec = st0.pos_vec ^+^ st1.velocity ^* dt

02:07:43 #11488 [Debug] >             }

02:07:43 #11489 [Debug] >         )

02:07:43 #11490 [Debug] >         |> multi_particle_state

02:07:43 #11491 [Debug] >

02:07:43 #11492 [Debug] > inl update_mps (method : numerical_method multi_particle_state

02:07:43 #11493 [Debug] > d_multi_particle_state) =

02:07:43 #11494 [Debug] >     newton_second_mps >> method

02:07:43 #11495 [Debug] >

02:07:43 #11496 [Debug] > inl states_mps (method : numerical_method multi_particle_state

02:07:43 #11497 [Debug] > d_multi_particle_state) =

02:07:43 #11498 [Debug] >     newton_second_mps >> method >> seq.iterate_

02:07:43 #11499 [Debug] >

02:07:43 #11500 [Debug] >

02:07:43 #11501 [Debug] > inl kinetic_energy (particle_state st) =

02:07:43 #11502 [Debug] >     inl m = st.mass

02:07:43 #11503 [Debug] >     inl v = magnitude st.velocity

02:07:43 #11504 [Debug] >     0.5 * m * v ** 2

02:07:43 #11505 [Debug] >

02:07:43 #11506 [Debug] > inl system_ke (multi_particle_state sts) =

02:07:43 #11507 [Debug] >     sts |> listm.map kinetic_energy |> listm'.sum

02:07:43 #11508 [Debug] >

02:07:43 #11509 [Debug] > inl linear_spring_pe k re (particle_state st1) (particle_state st2) =

02:07:43 #11510 [Debug] >     inl r1 = st1.pos_vec

02:07:43 #11511 [Debug] >     inl r2 = st2.pos_vec

02:07:43 #11512 [Debug] >     inl r21 = r2 ^-^ r1

02:07:43 #11513 [Debug] >     inl r21mag = magnitude r21

02:07:43 #11514 [Debug] >     k * (r21mag - re) ** 2 / 2

02:07:43 #11515 [Debug] >

02:07:43 #11516 [Debug] > inl earth_surface_gravity_pe (particle_state st) =

02:07:43 #11517 [Debug] >     inl g = 9.80665

02:07:43 #11518 [Debug] >     inl m = st.mass

02:07:43 #11519 [Debug] >     inl z = st.pos_vec.z

02:07:43 #11520 [Debug] >     m * g * z

02:07:43 #11521 [Debug] >

02:07:43 #11522 [Debug] > inl two_springs_pe (multi_particle_state sts) =

02:07:43 #11523 [Debug] >     inl st0 = sts |> listm'.item 0i32

02:07:43 #11524 [Debug] >     inl st1 = sts |> listm'.item 1i32

02:07:43 #11525 [Debug] >     linear_spring_pe 100 0.5 (default_particle_state ()) st0

02:07:43 #11526 [Debug] >     + linear_spring_pe 100 0.5 st0 st1

02:07:43 #11527 [Debug] >     + earth_surface_gravity_pe st0

02:07:43 #11528 [Debug] >     + earth_surface_gravity_pe st1

02:07:43 #11529 [Debug] >

02:07:43 #11530 [Debug] > inl two_springs_me mpst =

02:07:43 #11531 [Debug] >     system_ke mpst + two_springs_pe mpst

02:07:43 #11532 [Debug] >

02:07:43 #11533 [Debug] > inl ball_radius () = 0.03

02:07:43 #11534 [Debug] >

02:07:43 #11535 [Debug] > inl billiard_forces k =

02:07:43 #11536 [Debug] >     [[ InternalForce (0, 1, billiard_force k (2 * ball_radius ())) ]]

02:07:43 #11537 [Debug] >

02:07:43 #11538 [Debug] > inl billiard_update n_method k dt =

02:07:43 #11539 [Debug] >     update_mps (n_method dt) (billiard_forces k)

02:07:43 #11540 [Debug] >

02:07:43 #11541 [Debug] > inl billiard_initial () =

02:07:43 #11542 [Debug] >     inl ball_mass = 0.160

02:07:43 #11543 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:07:43 #11544 [Debug] >     multi_particle_state [[

02:07:43 #11545 [Debug] >         particle_state {

02:07:43 #11546 [Debug] >             default_particle_state' with

02:07:43 #11547 [Debug] >                 mass = ball_mass

02:07:43 #11548 [Debug] >                 pos_vec = zero_vec ()

02:07:43 #11549 [Debug] >                 velocity = 0.2 *^ i_hat ()

02:07:43 #11550 [Debug] >         }

02:07:43 #11551 [Debug] >         particle_state {

02:07:43 #11552 [Debug] >             default_particle_state' with

02:07:43 #11553 [Debug] >                 mass = ball_mass

02:07:43 #11554 [Debug] >                 pos_vec = i_hat () ^+^ 0.02 *^ j_hat ()

02:07:43 #11555 [Debug] >                 velocity = zero_vec ()

02:07:43 #11556 [Debug] >         }

02:07:43 #11557 [Debug] >     ]]

02:07:43 #11558 [Debug] >

02:07:43 #11559 [Debug] > inl billiard_states ~n_method k dt =

02:07:43 #11560 [Debug] >     states_mps (n_method dt) (billiard_forces k) (billiard_initial ())

02:07:43 #11561 [Debug] >

02:07:43 #11562 [Debug] > inl billiard_states_finite n_method k dt =

02:07:43 #11563 [Debug] >     billiard_states n_method k dt

02:07:43 #11564 [Debug] >     >> Some

02:07:43 #11565 [Debug] >     |> seq.take_while_ (fun (multi_particle_state mpst) (_ : i32) =>

02:07:43 #11566 [Debug] >         (mpst |> listm'.item 0i32).time <= 10

02:07:43 #11567 [Debug] >     )

02:07:43 #11568 [Debug] >

02:07:43 #11569 [Debug] > inl momentum (particle_state st) =

02:07:43 #11570 [Debug] >     inl m = st.mass

02:07:43 #11571 [Debug] >     inl v = st.velocity

02:07:43 #11572 [Debug] >     m *^ v

02:07:43 #11573 [Debug] >

02:07:43 #11574 [Debug] > inl system_p (multi_particle_state sts) =

02:07:43 #11575 [Debug] >     sts |> listm.map momentum |> sum_vec

02:07:43 #11576 [Debug] >

02:07:43 #11577 [Debug] >

02:07:43 #11578 [Debug] > inl time_ke_ec_x, time_ke_ec_y =

02:07:43 #11579 [Debug] >     billiard_states_finite euler_cromer_mps 30 0.03

02:07:43 #11580 [Debug] >     |> listm.map (fun (multi_particle_state mpst) =>

02:07:43 #11581 [Debug] >         (mpst |> listm'.item 0i32).time, system_ke (multi_particle_state mpst)

02:07:43 #11582 [Debug] >     )

02:07:43 #11583 [Debug] >     |> listm'.unzip

02:07:43 #11584 [Debug] >

02:07:43 #11585 [Debug] > inl time_ke_rk4_x, time_ke_rk4_y =

02:07:43 #11586 [Debug] >     billiard_states_finite runge_kutta_4 30 0.03

02:07:43 #11587 [Debug] >     |> listm.map (fun (multi_particle_state mpst) =>

02:07:43 #11588 [Debug] >         (mpst |> listm'.item 0i32).time, system_ke (multi_particle_state mpst)

02:07:43 #11589 [Debug] >     )

02:07:43 #11590 [Debug] >     |> listm'.unzip

02:07:43 #11591 [Debug] >

02:07:43 #11592 [Debug] > inl time_ke_ec_x : a i32 _ = time_ke_ec_x |> listm.toArray

02:07:43 #11593 [Debug] > inl time_ke_ec_y : a i32 _ = time_ke_ec_y |> listm.toArray

02:07:43 #11594 [Debug] >

02:07:43 #11595 [Debug] > inl time_ke_rk4_x : a i32 _ = time_ke_rk4_x |> listm.toArray

02:07:43 #11596 [Debug] > inl time_ke_rk4_y : a i32 _ = time_ke_rk4_y |> listm.toArray

02:07:43 #11597 [Debug] >

02:07:43 #11598 [Debug] > "system kinetic energy versus time",

02:07:43 #11599 [Debug] > "time (s)",

02:07:43 #11600 [Debug] > "system kinetic energy (j)",

02:07:43 #11601 [Debug] > ;[[

02:07:43 #11602 [Debug] >     "euler-cromer", time_ke_ec_x, time_ke_ec_y

02:07:43 #11603 [Debug] >     "runge-kutta 4", time_ke_rk4_x, time_ke_rk4_y

02:07:43 #11604 [Debug] > ]]

02:07:43 #11605 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4378-7812-7a6f9fe9a422\main.spi

02:07:45 #11606 [Debug] >

02:07:45 #11607 [Debug] > ╭─[ 1.75s - return value ]─────────────────────────────────────────────────────╮

02:07:45 #11608 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:07:45 #11609 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:07:45 #11610 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:07:45 #11611 [Debug] > │ stroke="none"/>                                                              │

02:07:45 #11612 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:07:45 #11613 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11614 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11615 [Debug] > │ system kinetic energy versus time                                            │

02:07:45 #11616 [Debug] > │ </text>                                                                      │

02:07:45 #11617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:07:45 #11618 [Debug] > │ y2="75"/>                                                                    │

02:07:45 #11619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:45 #11620 [Debug] > │ y2="75"/>                                                                    │

02:07:45 #11621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:07:45 #11622 [Debug] > │ y2="75"/>                                                                    │

02:07:45 #11623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:07:45 #11624 [Debug] > │ y2="75"/>                                                                    │

02:07:45 #11625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:07:45 #11626 [Debug] > │ y2="75"/>                                                                    │

02:07:45 #11627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:07:45 #11628 [Debug] > │ x2="109" y2="75"/>                                                           │

02:07:45 #11629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:07:45 #11630 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:45 #11631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:07:45 #11632 [Debug] > │ x2="129" y2="75"/>                                                           │

02:07:45 #11633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:07:45 #11634 [Debug] > │ x2="139" y2="75"/>                                                           │

02:07:45 #11635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:07:45 #11636 [Debug] > │ x2="149" y2="75"/>                                                           │

02:07:45 #11637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:07:45 #11638 [Debug] > │ x2="159" y2="75"/>                                                           │

02:07:45 #11639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:07:45 #11640 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:45 #11641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:07:45 #11642 [Debug] > │ x2="179" y2="75"/>                                                           │

02:07:45 #11643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:07:45 #11644 [Debug] > │ x2="189" y2="75"/>                                                           │

02:07:45 #11645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:07:45 #11646 [Debug] > │ x2="199" y2="75"/>                                                           │

02:07:45 #11647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:07:45 #11648 [Debug] > │ x2="209" y2="75"/>                                                           │

02:07:45 #11649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:07:45 #11650 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:45 #11651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:07:45 #11652 [Debug] > │ x2="229" y2="75"/>                                                           │

02:07:45 #11653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:07:45 #11654 [Debug] > │ x2="239" y2="75"/>                                                           │

02:07:45 #11655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:07:45 #11656 [Debug] > │ x2="249" y2="75"/>                                                           │

02:07:45 #11657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:07:45 #11658 [Debug] > │ x2="259" y2="75"/>                                                           │

02:07:45 #11659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:07:45 #11660 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:45 #11661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:07:45 #11662 [Debug] > │ x2="279" y2="75"/>                                                           │

02:07:45 #11663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:07:45 #11664 [Debug] > │ x2="289" y2="75"/>                                                           │

02:07:45 #11665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:07:45 #11666 [Debug] > │ x2="299" y2="75"/>                                                           │

02:07:45 #11667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:07:45 #11668 [Debug] > │ x2="309" y2="75"/>                                                           │

02:07:45 #11669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:07:45 #11670 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:45 #11671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:07:45 #11672 [Debug] > │ x2="329" y2="75"/>                                                           │

02:07:45 #11673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:07:45 #11674 [Debug] > │ x2="339" y2="75"/>                                                           │

02:07:45 #11675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:07:45 #11676 [Debug] > │ x2="349" y2="75"/>                                                           │

02:07:45 #11677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:07:45 #11678 [Debug] > │ x2="359" y2="75"/>                                                           │

02:07:45 #11679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:07:45 #11680 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:45 #11681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:07:45 #11682 [Debug] > │ x2="379" y2="75"/>                                                           │

02:07:45 #11683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:07:45 #11684 [Debug] > │ x2="389" y2="75"/>                                                           │

02:07:45 #11685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:07:45 #11686 [Debug] > │ x2="399" y2="75"/>                                                           │

02:07:45 #11687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:07:45 #11688 [Debug] > │ x2="409" y2="75"/>                                                           │

02:07:45 #11689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:07:45 #11690 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:45 #11691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:07:45 #11692 [Debug] > │ x2="429" y2="75"/>                                                           │

02:07:45 #11693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:07:45 #11694 [Debug] > │ x2="439" y2="75"/>                                                           │

02:07:45 #11695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:07:45 #11696 [Debug] > │ x2="449" y2="75"/>                                                           │

02:07:45 #11697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:07:45 #11698 [Debug] > │ x2="459" y2="75"/>                                                           │

02:07:45 #11699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:07:45 #11700 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:45 #11701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:07:45 #11702 [Debug] > │ x2="479" y2="75"/>                                                           │

02:07:45 #11703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:07:45 #11704 [Debug] > │ x2="489" y2="75"/>                                                           │

02:07:45 #11705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:07:45 #11706 [Debug] > │ x2="499" y2="75"/>                                                           │

02:07:45 #11707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:07:45 #11708 [Debug] > │ x2="509" y2="75"/>                                                           │

02:07:45 #11709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:07:45 #11710 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:45 #11711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:07:45 #11712 [Debug] > │ x2="529" y2="75"/>                                                           │

02:07:45 #11713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:07:45 #11714 [Debug] > │ x2="539" y2="75"/>                                                           │

02:07:45 #11715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:07:45 #11716 [Debug] > │ x2="549" y2="75"/>                                                           │

02:07:45 #11717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:07:45 #11718 [Debug] > │ x2="559" y2="75"/>                                                           │

02:07:45 #11719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:07:45 #11720 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:45 #11721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:07:45 #11722 [Debug] > │ x2="579" y2="75"/>                                                           │

02:07:45 #11723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:07:45 #11724 [Debug] > │ x2="584" y2="416"/>                                                          │

02:07:45 #11725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:07:45 #11726 [Debug] > │ x2="584" y2="404"/>                                                          │

02:07:45 #11727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:07:45 #11728 [Debug] > │ x2="584" y2="392"/>                                                          │

02:07:45 #11729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:07:45 #11730 [Debug] > │ x2="584" y2="380"/>                                                          │

02:07:45 #11731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:07:45 #11732 [Debug] > │ x2="584" y2="368"/>                                                          │

02:07:45 #11733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="356"         │

02:07:45 #11734 [Debug] > │ x2="584" y2="356"/>                                                          │

02:07:45 #11735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:07:45 #11736 [Debug] > │ x2="584" y2="344"/>                                                          │

02:07:45 #11737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:07:45 #11738 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:45 #11739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:07:45 #11740 [Debug] > │ x2="584" y2="321"/>                                                          │

02:07:45 #11741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:07:45 #11742 [Debug] > │ x2="584" y2="309"/>                                                          │

02:07:45 #11743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="297"         │

02:07:45 #11744 [Debug] > │ x2="584" y2="297"/>                                                          │

02:07:45 #11745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:07:45 #11746 [Debug] > │ x2="584" y2="285"/>                                                          │

02:07:45 #11747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:07:45 #11748 [Debug] > │ x2="584" y2="273"/>                                                          │

02:07:45 #11749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="261"         │

02:07:45 #11750 [Debug] > │ x2="584" y2="261"/>                                                          │

02:07:45 #11751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="249"         │

02:07:45 #11752 [Debug] > │ x2="584" y2="249"/>                                                          │

02:07:45 #11753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="237"         │

02:07:45 #11754 [Debug] > │ x2="584" y2="237"/>                                                          │

02:07:45 #11755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="225"         │

02:07:45 #11756 [Debug] > │ x2="584" y2="225"/>                                                          │

02:07:45 #11757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:07:45 #11758 [Debug] > │ x2="584" y2="213"/>                                                          │

02:07:45 #11759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:07:45 #11760 [Debug] > │ x2="584" y2="201"/>                                                          │

02:07:45 #11761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:07:45 #11762 [Debug] > │ x2="584" y2="189"/>                                                          │

02:07:45 #11763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:07:45 #11764 [Debug] > │ x2="584" y2="177"/>                                                          │

02:07:45 #11765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:07:45 #11766 [Debug] > │ x2="584" y2="165"/>                                                          │

02:07:45 #11767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="153"         │

02:07:45 #11768 [Debug] > │ x2="584" y2="153"/>                                                          │

02:07:45 #11769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:07:45 #11770 [Debug] > │ x2="584" y2="142"/>                                                          │

02:07:45 #11771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:07:45 #11772 [Debug] > │ x2="584" y2="130"/>                                                          │

02:07:45 #11773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:07:45 #11774 [Debug] > │ x2="584" y2="118"/>                                                          │

02:07:45 #11775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:07:45 #11776 [Debug] > │ x2="584" y2="106"/>                                                          │

02:07:45 #11777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:07:45 #11778 [Debug] > │ y2="94"/>                                                                    │

02:07:45 #11779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:07:45 #11780 [Debug] > │ y2="82"/>                                                                    │

02:07:45 #11781 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:07:45 #11782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11783 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11784 [Debug] > │ time (s)                                                                     │

02:07:45 #11785 [Debug] > │ </text>                                                                      │

02:07:45 #11786 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:07:45 #11787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11788 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:07:45 #11789 [Debug] > │ system kinetic energy (j)                                                    │

02:07:45 #11790 [Debug] > │ </text>                                                                      │

02:07:45 #11791 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:07:45 #11792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11793 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11794 [Debug] > │ time (s)                                                                     │

02:07:45 #11795 [Debug] > │ </text>                                                                      │

02:07:45 #11796 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:07:45 #11797 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11798 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:07:45 #11799 [Debug] > │ system kinetic energy (j)                                                    │

02:07:45 #11800 [Debug] > │ </text>                                                                      │

02:07:45 #11801 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:07:45 #11802 [Debug] > │ y2="75"/>                                                                    │

02:07:45 #11803 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:07:45 #11804 [Debug] > │ x2="119" y2="75"/>                                                           │

02:07:45 #11805 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:07:45 #11806 [Debug] > │ x2="169" y2="75"/>                                                           │

02:07:45 #11807 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:07:45 #11808 [Debug] > │ x2="219" y2="75"/>                                                           │

02:07:45 #11809 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:07:45 #11810 [Debug] > │ x2="269" y2="75"/>                                                           │

02:07:45 #11811 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:07:45 #11812 [Debug] > │ x2="319" y2="75"/>                                                           │

02:07:45 #11813 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:07:45 #11814 [Debug] > │ x2="369" y2="75"/>                                                           │

02:07:45 #11815 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:07:45 #11816 [Debug] > │ x2="419" y2="75"/>                                                           │

02:07:45 #11817 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:07:45 #11818 [Debug] > │ x2="469" y2="75"/>                                                           │

02:07:45 #11819 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:07:45 #11820 [Debug] > │ x2="519" y2="75"/>                                                           │

02:07:45 #11821 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:07:45 #11822 [Debug] > │ x2="569" y2="75"/>                                                           │

02:07:45 #11823 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="380"         │

02:07:45 #11824 [Debug] > │ x2="584" y2="380"/>                                                          │

02:07:45 #11825 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:07:45 #11826 [Debug] > │ x2="584" y2="332"/>                                                          │

02:07:45 #11827 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="285"         │

02:07:45 #11828 [Debug] > │ x2="584" y2="285"/>                                                          │

02:07:45 #11829 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="237"         │

02:07:45 #11830 [Debug] > │ x2="584" y2="237"/>                                                          │

02:07:45 #11831 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="189"         │

02:07:45 #11832 [Debug] > │ x2="584" y2="189"/>                                                          │

02:07:45 #11833 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="142"         │

02:07:45 #11834 [Debug] > │ x2="584" y2="142"/>                                                          │

02:07:45 #11835 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="94" x2="584" │

02:07:45 #11836 [Debug] > │ y2="94"/>                                                                    │

02:07:45 #11837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11838 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:07:45 #11839 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:07:45 #11840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11841 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11842 [Debug] > │ 0.0                                                                          │

02:07:45 #11843 [Debug] > │ </text>                                                                      │

02:07:45 #11844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11845 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:07:45 #11846 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11848 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11849 [Debug] > │ 1.0                                                                          │

02:07:45 #11850 [Debug] > │ </text>                                                                      │

02:07:45 #11851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11852 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:07:45 #11853 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11854 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11855 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11856 [Debug] > │ 2.0                                                                          │

02:07:45 #11857 [Debug] > │ </text>                                                                      │

02:07:45 #11858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11859 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:07:45 #11860 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11862 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11863 [Debug] > │ 3.0                                                                          │

02:07:45 #11864 [Debug] > │ </text>                                                                      │

02:07:45 #11865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11866 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:07:45 #11867 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11868 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11869 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11870 [Debug] > │ 4.0                                                                          │

02:07:45 #11871 [Debug] > │ </text>                                                                      │

02:07:45 #11872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11873 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:07:45 #11874 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11876 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11877 [Debug] > │ 5.0                                                                          │

02:07:45 #11878 [Debug] > │ </text>                                                                      │

02:07:45 #11879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11880 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:07:45 #11881 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11883 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11884 [Debug] > │ 6.0                                                                          │

02:07:45 #11885 [Debug] > │ </text>                                                                      │

02:07:45 #11886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11887 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:07:45 #11888 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11890 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11891 [Debug] > │ 7.0                                                                          │

02:07:45 #11892 [Debug] > │ </text>                                                                      │

02:07:45 #11893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11894 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:07:45 #11895 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11897 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11898 [Debug] > │ 8.0                                                                          │

02:07:45 #11899 [Debug] > │ </text>                                                                      │

02:07:45 #11900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11901 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:07:45 #11902 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11904 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11905 [Debug] > │ 9.0                                                                          │

02:07:45 #11906 [Debug] > │ </text>                                                                      │

02:07:45 #11907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11908 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:07:45 #11909 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:07:45 #11910 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11911 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11912 [Debug] > │ 10.0                                                                         │

02:07:45 #11913 [Debug] > │ </text>                                                                      │

02:07:45 #11914 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11915 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:07:45 #11916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11917 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:07:45 #11918 [Debug] > │ <text x="45" y="380" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:45 #11919 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11920 [Debug] > │ 0.0                                                                          │

02:07:45 #11921 [Debug] > │ </text>                                                                      │

02:07:45 #11922 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11923 [Debug] > │ points="49,380 54,380 "/>                                                    │

02:07:45 #11924 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:45 #11925 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11926 [Debug] > │ 0.0                                                                          │

02:07:45 #11927 [Debug] > │ </text>                                                                      │

02:07:45 #11928 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11929 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:07:45 #11930 [Debug] > │ <text x="45" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:45 #11931 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11932 [Debug] > │ 0.0                                                                          │

02:07:45 #11933 [Debug] > │ </text>                                                                      │

02:07:45 #11934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11935 [Debug] > │ points="49,285 54,285 "/>                                                    │

02:07:45 #11936 [Debug] > │ <text x="45" y="237" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:45 #11937 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11938 [Debug] > │ 0.0                                                                          │

02:07:45 #11939 [Debug] > │ </text>                                                                      │

02:07:45 #11940 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11941 [Debug] > │ points="49,237 54,237 "/>                                                    │

02:07:45 #11942 [Debug] > │ <text x="45" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:45 #11943 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11944 [Debug] > │ 0.0                                                                          │

02:07:45 #11945 [Debug] > │ </text>                                                                      │

02:07:45 #11946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11947 [Debug] > │ points="49,189 54,189 "/>                                                    │

02:07:45 #11948 [Debug] > │ <text x="45" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:07:45 #11949 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11950 [Debug] > │ 0.0                                                                          │

02:07:45 #11951 [Debug] > │ </text>                                                                      │

02:07:45 #11952 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11953 [Debug] > │ points="49,142 54,142 "/>                                                    │

02:07:45 #11954 [Debug] > │ <text x="45" y="94" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:07:45 #11955 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #11956 [Debug] > │ 0.0                                                                          │

02:07:45 #11957 [Debug] > │ </text>                                                                      │

02:07:45 #11958 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11959 [Debug] > │ points="49,94 54,94 "/>                                                      │

02:07:45 #11960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11961 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:07:45 #11962 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:07:45 #11963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11964 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11965 [Debug] > │ 0.0                                                                          │

02:07:45 #11966 [Debug] > │ </text>                                                                      │

02:07:45 #11967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11968 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:07:45 #11969 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #11970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11971 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11972 [Debug] > │ 1.0                                                                          │

02:07:45 #11973 [Debug] > │ </text>                                                                      │

02:07:45 #11974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11975 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:07:45 #11976 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #11977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11978 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11979 [Debug] > │ 2.0                                                                          │

02:07:45 #11980 [Debug] > │ </text>                                                                      │

02:07:45 #11981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11982 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:07:45 #11983 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #11984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11985 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11986 [Debug] > │ 3.0                                                                          │

02:07:45 #11987 [Debug] > │ </text>                                                                      │

02:07:45 #11988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11989 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:07:45 #11990 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #11991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11992 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #11993 [Debug] > │ 4.0                                                                          │

02:07:45 #11994 [Debug] > │ </text>                                                                      │

02:07:45 #11995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #11996 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:07:45 #11997 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #11998 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #11999 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12000 [Debug] > │ 5.0                                                                          │

02:07:45 #12001 [Debug] > │ </text>                                                                      │

02:07:45 #12002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12003 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:07:45 #12004 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #12005 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12006 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12007 [Debug] > │ 6.0                                                                          │

02:07:45 #12008 [Debug] > │ </text>                                                                      │

02:07:45 #12009 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12010 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:07:45 #12011 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #12012 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12013 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12014 [Debug] > │ 7.0                                                                          │

02:07:45 #12015 [Debug] > │ </text>                                                                      │

02:07:45 #12016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12017 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:07:45 #12018 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #12019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12020 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12021 [Debug] > │ 8.0                                                                          │

02:07:45 #12022 [Debug] > │ </text>                                                                      │

02:07:45 #12023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12024 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:07:45 #12025 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #12026 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12027 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12028 [Debug] > │ 9.0                                                                          │

02:07:45 #12029 [Debug] > │ </text>                                                                      │

02:07:45 #12030 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12031 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:07:45 #12032 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:07:45 #12033 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12034 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12035 [Debug] > │ 10.0                                                                         │

02:07:45 #12036 [Debug] > │ </text>                                                                      │

02:07:45 #12037 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12038 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:07:45 #12039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12040 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:07:45 #12041 [Debug] > │ <text x="595" y="380" dy="0.5ex" text-anchor="start"                         │

02:07:45 #12042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12043 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12044 [Debug] > │ 0.0                                                                          │

02:07:45 #12045 [Debug] > │ </text>                                                                      │

02:07:45 #12046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12047 [Debug] > │ points="585,380 590,380 "/>                                                  │

02:07:45 #12048 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:07:45 #12049 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12050 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12051 [Debug] > │ 0.0                                                                          │

02:07:45 #12052 [Debug] > │ </text>                                                                      │

02:07:45 #12053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12054 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:07:45 #12055 [Debug] > │ <text x="595" y="285" dy="0.5ex" text-anchor="start"                         │

02:07:45 #12056 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12057 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12058 [Debug] > │ 0.0                                                                          │

02:07:45 #12059 [Debug] > │ </text>                                                                      │

02:07:45 #12060 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12061 [Debug] > │ points="585,285 590,285 "/>                                                  │

02:07:45 #12062 [Debug] > │ <text x="595" y="237" dy="0.5ex" text-anchor="start"                         │

02:07:45 #12063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12064 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12065 [Debug] > │ 0.0                                                                          │

02:07:45 #12066 [Debug] > │ </text>                                                                      │

02:07:45 #12067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12068 [Debug] > │ points="585,237 590,237 "/>                                                  │

02:07:45 #12069 [Debug] > │ <text x="595" y="189" dy="0.5ex" text-anchor="start"                         │

02:07:45 #12070 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12071 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12072 [Debug] > │ 0.0                                                                          │

02:07:45 #12073 [Debug] > │ </text>                                                                      │

02:07:45 #12074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12075 [Debug] > │ points="585,189 590,189 "/>                                                  │

02:07:45 #12076 [Debug] > │ <text x="595" y="142" dy="0.5ex" text-anchor="start"                         │

02:07:45 #12077 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12078 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12079 [Debug] > │ 0.0                                                                          │

02:07:45 #12080 [Debug] > │ </text>                                                                      │

02:07:45 #12081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12082 [Debug] > │ points="585,142 590,142 "/>                                                  │

02:07:45 #12083 [Debug] > │ <text x="595" y="94" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:07:45 #12084 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:07:45 #12085 [Debug] > │ 0.0                                                                          │

02:07:45 #12086 [Debug] > │ </text>                                                                      │

02:07:45 #12087 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:07:45 #12088 [Debug] > │ points="585,94 590,94 "/>                                                    │

02:07:45 #12089 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:45 #12090 [Debug] > │ points="69,94 71,94 72,94 74,94 75,94 77,94 78,94 80,94 81,94 83,94 84,94    │

02:07:45 #12091 [Debug] > │ 86,94 87,94 89,94 90,94 92,94 93,94 95,94 96,94 98,94 99,94 101,94 102,94    │

02:07:45 #12092 [Debug] > │ 104,94 105,94 107,94 108,94 110,94 111,94 113,94 114,94 116,94 117,94 119,94 │

02:07:45 #12093 [Debug] > │ 120,94 122,94 123,94 125,94 126,94 128,94 129,94 131,94 132,94 134,94 135,94 │

02:07:45 #12094 [Debug] > │ 137,94 138,94 140,94 141,94 143,94 144,94 146,94 147,94 149,94 150,94 152,94 │

02:07:45 #12095 [Debug] > │ 153,94 155,94 156,94 158,94 159,94 161,94 162,94 164,94 165,94 167,94 168,94 │

02:07:45 #12096 [Debug] > │ 170,94 171,94 173,94 174,94 176,94 177,94 179,94 180,94 182,94 183,94 185,94 │

02:07:45 #12097 [Debug] > │ 186,94 188,94 189,94 191,94 192,94 194,94 195,94 197,94 198,94 200,94 201,94 │

02:07:45 #12098 [Debug] > │ 203,94 204,94 206,94 207,94 209,94 210,94 212,94 213,94 215,94 216,94 218,94 │

02:07:45 #12099 [Debug] > │ 219,94 221,94 222,94 224,94 225,94 227,94 228,94 230,94 231,94 233,94 234,94 │

02:07:45 #12100 [Debug] > │ 236,94 237,94 239,94 240,94 242,94 243,94 245,94 246,94 248,94 249,94 251,94 │

02:07:45 #12101 [Debug] > │ 252,94 254,94 255,94 257,94 258,94 260,94 261,94 263,94 264,94 266,94 267,94 │

02:07:45 #12102 [Debug] > │ 269,94 270,94 272,94 273,94 275,94 276,94 278,94 279,94 281,94 282,94 284,94 │

02:07:45 #12103 [Debug] > │ 285,94 287,94 288,94 290,94 291,94 293,94 294,94 296,94 297,94 299,94 300,94 │

02:07:45 #12104 [Debug] > │ 302,94 303,94 305,94 306,94 308,243 309,402 311,368 312,185 314,85 315,85    │

02:07:45 #12105 [Debug] > │ 317,85 318,85 320,85 321,85 323,85 324,85 326,85 327,85 329,85 330,85 332,85 │

02:07:45 #12106 [Debug] > │ 333,85 335,85 336,85 338,85 339,85 341,85 342,85 344,85 345,85 347,85 348,85 │

02:07:45 #12107 [Debug] > │ 350,85 351,85 353,85 354,85 356,85 357,85 359,85 360,85 362,85 363,85 365,85 │

02:07:45 #12108 [Debug] > │ 366,85 368,85 369,85 371,85 372,85 374,85 375,85 377,85 378,85 380,85 381,85 │

02:07:45 #12109 [Debug] > │ 383,85 384,85 386,85 387,85 389,85 390,85 392,85 393,85 395,85 396,85 398,85 │

02:07:45 #12110 [Debug] > │ 399,85 401,85 402,85 404,85 405,85 407,85 408,85 410,85 411,85 413,85 414,85 │

02:07:45 #12111 [Debug] > │ 416,85 417,85 419,85 420,85 422,85 423,85 425,85 426,85 428,85 429,85 431,85 │

02:07:45 #12112 [Debug] > │ 432,85 434,85 435,85 437,85 438,85 440,85 441,85 443,85 444,85 446,85 447,85 │

02:07:45 #12113 [Debug] > │ 449,85 450,85 452,85 453,85 455,85 456,85 458,85 459,85 461,85 462,85 464,85 │

02:07:45 #12114 [Debug] > │ 465,85 467,85 468,85 470,85 471,85 473,85 474,85 476,85 477,85 479,85 480,85 │

02:07:45 #12115 [Debug] > │ 482,85 483,85 485,85 486,85 488,85 489,85 491,85 492,85 494,85 495,85 497,85 │

02:07:45 #12116 [Debug] > │ 498,85 500,85 501,85 503,85 504,85 506,85 507,85 509,85 510,85 512,85 513,85 │

02:07:45 #12117 [Debug] > │ 515,85 516,85 518,85 519,85 521,85 522,85 524,85 525,85 527,85 528,85 530,85 │

02:07:45 #12118 [Debug] > │ 531,85 533,85 534,85 536,85 537,85 539,85 540,85 542,85 543,85 545,85 546,85 │

02:07:45 #12119 [Debug] > │ 548,85 549,85 551,85 552,85 554,85 555,85 557,85 558,85 560,85 561,85 563,85 │

02:07:45 #12120 [Debug] > │ 564,85 566,85 567,85 569,85 "/>                                              │

02:07:45 #12121 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:45 #12122 [Debug] > │ points="69,94 71,94 72,94 74,94 75,94 77,94 78,94 80,94 81,94 83,94 84,94    │

02:07:45 #12123 [Debug] > │ 86,94 87,94 89,94 90,94 92,94 93,94 95,94 96,94 98,94 99,94 101,94 102,94    │

02:07:45 #12124 [Debug] > │ 104,94 105,94 107,94 108,94 110,94 111,94 113,94 114,94 116,94 117,94 119,94 │

02:07:45 #12125 [Debug] > │ 120,94 122,94 123,94 125,94 126,94 128,94 129,94 131,94 132,94 134,94 135,94 │

02:07:45 #12126 [Debug] > │ 137,94 138,94 140,94 141,94 143,94 144,94 146,94 147,94 149,94 150,94 152,94 │

02:07:45 #12127 [Debug] > │ 153,94 155,94 156,94 158,94 159,94 161,94 162,94 164,94 165,94 167,94 168,94 │

02:07:45 #12128 [Debug] > │ 170,94 171,94 173,94 174,94 176,94 177,94 179,94 180,94 182,94 183,94 185,94 │

02:07:45 #12129 [Debug] > │ 186,94 188,94 189,94 191,94 192,94 194,94 195,94 197,94 198,94 200,94 201,94 │

02:07:45 #12130 [Debug] > │ 203,94 204,94 206,94 207,94 209,94 210,94 212,94 213,94 215,94 216,94 218,94 │

02:07:45 #12131 [Debug] > │ 219,94 221,94 222,94 224,94 225,94 227,94 228,94 230,94 231,94 233,94 234,94 │

02:07:45 #12132 [Debug] > │ 236,94 237,94 239,94 240,94 242,94 243,94 245,94 246,94 248,94 249,94 251,94 │

02:07:45 #12133 [Debug] > │ 252,94 254,94 255,94 257,94 258,94 260,94 261,94 263,94 264,94 266,94 267,94 │

02:07:45 #12134 [Debug] > │ 269,94 270,94 272,94 273,94 275,94 276,94 278,94 279,94 281,94 282,94 284,94 │

02:07:45 #12135 [Debug] > │ 285,94 287,94 288,94 290,94 291,94 293,94 294,94 296,94 297,94 299,94 300,94 │

02:07:45 #12136 [Debug] > │ 302,94 303,94 305,94 306,157 308,335 309,415 311,298 312,130 314,104 315,104 │

02:07:45 #12137 [Debug] > │ 317,104 318,104 320,104 321,104 323,104 324,104 326,104 327,104 329,104      │

02:07:45 #12138 [Debug] > │ 330,104 332,104 333,104 335,104 336,104 338,104 339,104 341,104 342,104      │

02:07:45 #12139 [Debug] > │ 344,104 345,104 347,104 348,104 350,104 351,104 353,104 354,104 356,104      │

02:07:45 #12140 [Debug] > │ 357,104 359,104 360,104 362,104 363,104 365,104 366,104 368,104 369,104      │

02:07:45 #12141 [Debug] > │ 371,104 372,104 374,104 375,104 377,104 378,104 380,104 381,104 383,104      │

02:07:45 #12142 [Debug] > │ 384,104 386,104 387,104 389,104 390,104 392,104 393,104 395,104 396,104      │

02:07:45 #12143 [Debug] > │ 398,104 399,104 401,104 402,104 404,104 405,104 407,104 408,104 410,104      │

02:07:45 #12144 [Debug] > │ 411,104 413,104 414,104 416,104 417,104 419,104 420,104 422,104 423,104      │

02:07:45 #12145 [Debug] > │ 425,104 426,104 428,104 429,104 431,104 432,104 434,104 435,104 437,104      │

02:07:45 #12146 [Debug] > │ 438,104 440,104 441,104 443,104 444,104 446,104 447,104 449,104 450,104      │

02:07:45 #12147 [Debug] > │ 452,104 453,104 455,104 456,104 458,104 459,104 461,104 462,104 464,104      │

02:07:45 #12148 [Debug] > │ 465,104 467,104 468,104 470,104 471,104 473,104 474,104 476,104 477,104      │

02:07:45 #12149 [Debug] > │ 479,104 480,104 482,104 483,104 485,104 486,104 488,104 489,104 491,104      │

02:07:45 #12150 [Debug] > │ 492,104 494,104 495,104 497,104 498,104 500,104 501,104 503,104 504,104      │

02:07:45 #12151 [Debug] > │ 506,104 507,104 509,104 510,104 512,104 513,104 515,104 516,104 518,104      │

02:07:45 #12152 [Debug] > │ 519,104 521,104 522,104 524,104 525,104 527,104 528,104 530,104 531,104      │

02:07:45 #12153 [Debug] > │ 533,104 534,104 536,104 537,104 539,104 540,104 542,104 543,104 545,104      │

02:07:45 #12154 [Debug] > │ 546,104 548,104 549,104 551,104 552,104 554,104 555,104 557,104 558,104      │

02:07:45 #12155 [Debug] > │ 560,104 561,104 563,104 564,104 566,104 567,104 569,104 "/>                  │

02:07:45 #12156 [Debug] > │ <rect x="459" y="227" width="121" height="45" opacity="1" fill="none"        │

02:07:45 #12157 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:07:45 #12158 [Debug] > │ <text x="499" y="237" dy="0.76em" text-anchor="start"                        │

02:07:45 #12159 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12160 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12161 [Debug] > │ euler-cromer                                                                 │

02:07:45 #12162 [Debug] > │ </text>                                                                      │

02:07:45 #12163 [Debug] > │ <text x="499" y="252" dy="0.76em" text-anchor="start"                        │

02:07:45 #12164 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:07:45 #12165 [Debug] > │ fill="#FFFFFF">                                                              │

02:07:45 #12166 [Debug] > │ runge-kutta 4                                                                │

02:07:45 #12167 [Debug] > │ </text>                                                                      │

02:07:45 #12168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:07:45 #12169 [Debug] > │ points="469,242 489,242 "/>                                                  │

02:07:45 #12170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:07:45 #12171 [Debug] > │ points="469,257 489,257 "/>                                                  │

02:07:45 #12172 [Debug] > │ </svg>                                                                       │

02:07:45 #12173 [Debug] > │                                                                              │

02:07:45 #12174 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:45 #12175 [Debug] >

02:07:45 #12176 [Debug] > ╭─[ 1.96s - stdout ]───────────────────────────────────────────────────────────╮

02:07:45 #12177 [Debug] > │ type UH0 =                                                                   │

02:07:45 #12178 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:07:45 #12179 [Debug] > │ * float * UH0                                                                │

02:07:45 #12180 [Debug] > │     | UH0_1                                                                  │

02:07:45 #12181 [Debug] > │ and UH1 =                                                                    │

02:07:45 #12182 [Debug] > │     | UH1_0 of float * float * float * float * float * float * float * float │

02:07:45 #12183 [Debug] > │ * float * UH1                                                                │

02:07:45 #12184 [Debug] > │     | UH1_1                                                                  │

02:07:45 #12185 [Debug] > │ and UH2 =                                                                    │

02:07:45 #12186 [Debug] > │     | UH2_0 of float * float * float * float * float * float * float * float │

02:07:45 #12187 [Debug] > │ * float * float * float * float * float * float * float * float * float *    │

02:07:45 #12188 [Debug] > │ float * UH2                                                                  │

02:07:45 #12189 [Debug] > │     | UH2_1                                                                  │

02:07:45 #12190 [Debug] > │ and UH3 =                                                                    │

02:07:45 #12191 [Debug] > │     | UH3_0 of int32 * float * float * float * float * float * float * float │

02:07:45 #12192 [Debug] > │ * float * float * UH3                                                        │

02:07:45 #12193 [Debug] > │     | UH3_1                                                                  │

02:07:45 #12194 [Debug] > │ and [<Struct>] US0 =                                                         │

02:07:45 #12195 [Debug] > │     | US0_0                                                                  │

02:07:45 #12196 [Debug] > │     | US0_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

02:07:45 #12197 [Debug] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

02:07:45 #12198 [Debug] > │ and UH4 =                                                                    │

02:07:45 #12199 [Debug] > │     | UH4_0 of UH0 * UH4                                                     │

02:07:45 #12200 [Debug] > │     | UH4_1                                                                  │

02:07:45 #12201 [Debug] > │ and UH5 =                                                                    │

02:07:45 #12202 [Debug] > │     | UH5_0 of float * float * UH5                                           │

02:07:45 #12203 [Debug] > │     | UH5_1                                                                  │

02:07:45 #12204 [Debug] > │ and UH6 =                                                                    │

02:07:45 #12205 [Debug] > │     | UH6_0 of float * UH6                                                   │

02:07:45 #12206 [Debug] > │     | UH6_1                                                                  │

02:07:45 #12207 [Debug] > │ let rec method2 (v0 : UH0, v1 : UH0) : UH0 =                                 │

02:07:45 #12208 [Debug] > │     match v0 with                                                            │

02:07:45 #12209 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:45 #12210 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:07:45 #12211 [Debug] > │         method2(v11, v12)                                                    │

02:07:45 #12212 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:45 #12213 [Debug] > │         v1                                                                   │

02:07:45 #12214 [Debug] > │ and method1 (v0 : float, v1 : UH0, v2 : UH1, v3 : UH0) : UH0 =               │

02:07:45 #12215 [Debug] > │     match v2 with                                                            │

02:07:45 #12216 [Debug] > │     | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* Cons *)        │

02:07:45 #12217 [Debug] > │         match v3 with                                                        │

02:07:45 #12218 [Debug] > │         | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (* Cons │

02:07:45 #12219 [Debug] > │ *)                                                                           │

02:07:45 #12220 [Debug] > │             let v24 : float = v9 * v0                                        │

02:07:45 #12221 [Debug] > │             let v25 : float = v19 + v24                                      │

02:07:45 #12222 [Debug] > │             let v26 : float = v0 * v6                                        │

02:07:45 #12223 [Debug] > │             let v27 : float = v0 * v7                                        │

02:07:45 #12224 [Debug] > │             let v28 : float = v0 * v8                                        │

02:07:45 #12225 [Debug] > │             let v29 : float = v16 + v26                                      │

02:07:45 #12226 [Debug] > │             let v30 : float = v17 + v27                                      │

02:07:45 #12227 [Debug] > │             let v31 : float = v18 + v28                                      │

02:07:45 #12228 [Debug] > │             let v32 : float = v0 * v10                                       │

02:07:45 #12229 [Debug] > │             let v33 : float = v0 * v11                                       │

02:07:45 #12230 [Debug] > │             let v34 : float = v0 * v12                                       │

02:07:45 #12231 [Debug] > │             let v35 : float = v20 + v32                                      │

02:07:45 #12232 [Debug] > │             let v36 : float = v21 + v33                                      │

02:07:45 #12233 [Debug] > │             let v37 : float = v22 + v34                                      │

02:07:45 #12234 [Debug] > │             let v38 : UH0 = UH0_0(v14, v15, v29, v30, v31, v25, v35, v36,    │

02:07:45 #12235 [Debug] > │ v37, v1)                                                                     │

02:07:45 #12236 [Debug] > │             method1(v0, v38, v13, v23)                                       │

02:07:45 #12237 [Debug] > │         | _ ->                                                               │

02:07:45 #12238 [Debug] > │             let v40 : UH0 = UH0_1                                            │

02:07:45 #12239 [Debug] > │             method2(v1, v40)                                                 │

02:07:45 #12240 [Debug] > │     | _ ->                                                                   │

02:07:45 #12241 [Debug] > │         let v43 : UH0 = UH0_1                                                │

02:07:45 #12242 [Debug] > │         method2(v1, v43)                                                     │

02:07:45 #12243 [Debug] > │ and method4 (v0 : UH2, v1 : UH2) : UH2 =                                     │

02:07:45 #12244 [Debug] > │     match v0 with                                                            │

02:07:45 #12245 [Debug] > │     | UH2_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15,    │

02:07:45 #12246 [Debug] > │ v16, v17, v18, v19, v20) -> (* Cons *)                                       │

02:07:45 #12247 [Debug] > │         let v21 : UH2 = UH2_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, │

02:07:45 #12248 [Debug] > │ v13, v14, v15, v16, v17, v18, v19, v1)                                       │

02:07:45 #12249 [Debug] > │         method4(v20, v21)                                                    │

02:07:45 #12250 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:45 #12251 [Debug] > │         v1                                                                   │

02:07:45 #12252 [Debug] > │ and method3 (v0 : UH2, v1 : UH0, v2 : UH0) : UH2 =                           │

02:07:45 #12253 [Debug] > │     match v1 with                                                            │

02:07:45 #12254 [Debug] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

02:07:45 #12255 [Debug] > │         match v2 with                                                        │

02:07:45 #12256 [Debug] > │         | UH0_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (* Cons │

02:07:45 #12257 [Debug] > │ *)                                                                           │

02:07:45 #12258 [Debug] > │             let v23 : UH2 = UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v13, │

02:07:45 #12259 [Debug] > │ v14, v15, v16, v17, v18, v19, v20, v21, v0)                                  │

02:07:45 #12260 [Debug] > │             method3(v23, v12, v22)                                           │

02:07:45 #12261 [Debug] > │         | _ ->                                                               │

02:07:45 #12262 [Debug] > │             let v25 : UH2 = UH2_1                                            │

02:07:45 #12263 [Debug] > │             method4(v0, v25)                                                 │

02:07:45 #12264 [Debug] > │     | _ ->                                                                   │

02:07:45 #12265 [Debug] > │         let v28 : UH2 = UH2_1                                                │

02:07:45 #12266 [Debug] > │         method4(v0, v28)                                                     │

02:07:45 #12267 [Debug] > │ and method5 (v0 : float, v1 : UH2, v2 : UH0) : UH0 =                         │

02:07:45 #12268 [Debug] > │     match v1 with                                                            │

02:07:45 #12269 [Debug] > │     | UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16,   │

02:07:45 #12270 [Debug] > │ v17, v18, v19, v20, v21) -> (* Cons *)                                       │

02:07:45 #12271 [Debug] > │         let v22 : UH0 = method5(v0, v21, v2)                                 │

02:07:45 #12272 [Debug] > │         let v23 : float = v0 * v18                                           │

02:07:45 #12273 [Debug] > │         let v24 : float = v0 * v19                                           │

02:07:45 #12274 [Debug] > │         let v25 : float = v0 * v20                                           │

02:07:45 #12275 [Debug] > │         let v26 : float = v5 + v23                                           │

02:07:45 #12276 [Debug] > │         let v27 : float = v6 + v24                                           │

02:07:45 #12277 [Debug] > │         let v28 : float = v7 + v25                                           │

02:07:45 #12278 [Debug] > │         UH0_0(v12, v13, v26, v27, v28, v17, v18, v19, v20, v22)              │

02:07:45 #12279 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:07:45 #12280 [Debug] > │         v2                                                                   │

02:07:45 #12281 [Debug] > │ and closure2 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

02:07:45 #12282 [Debug] > │     let v3 : UH1 = v1 v2                                                     │

02:07:45 #12283 [Debug] > │     let v4 : UH0 = UH0_1                                                     │

02:07:45 #12284 [Debug] > │     let v5 : UH0 = method1(v0, v4, v3, v2)                                   │

02:07:45 #12285 [Debug] > │     let v6 : UH2 = UH2_1                                                     │

02:07:45 #12286 [Debug] > │     let v7 : UH2 = method3(v6, v2, v5)                                       │

02:07:45 #12287 [Debug] > │     let v8 : UH0 = UH0_1                                                     │

02:07:45 #12288 [Debug] > │     let v9 : UH0 = method5(v0, v7, v8)                                       │

02:07:45 #12289 [Debug] > │     v9                                                                       │

02:07:45 #12290 [Debug] > │ and closure1 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

02:07:45 #12291 [Debug] > │     closure2(v0, v1)                                                         │

02:07:45 #12292 [Debug] > │ and closure0 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

02:07:45 #12293 [Debug] > │     closure1(v0)                                                             │

02:07:45 #12294 [Debug] > │ and method6 (v0 : UH0, v1 : UH3, v2 : int32) : struct (UH3 * int32) =        │

02:07:45 #12295 [Debug] > │     match v0 with                                                            │

02:07:45 #12296 [Debug] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

02:07:45 #12297 [Debug] > │         let v13 : int32 = v2 + 1                                             │

02:07:45 #12298 [Debug] > │         let v14 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v1)  │

02:07:45 #12299 [Debug] > │         method6(v12, v14, v13)                                               │

02:07:45 #12300 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:45 #12301 [Debug] > │         struct (v1, v2)                                                      │

02:07:45 #12302 [Debug] > │ and method7 (v0 : UH3, v1 : UH3) : UH3 =                                     │

02:07:45 #12303 [Debug] > │     match v0 with                                                            │

02:07:45 #12304 [Debug] > │     | UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)     │

02:07:45 #12305 [Debug] > │         let v13 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v1)  │

02:07:45 #12306 [Debug] > │         method7(v12, v13)                                                    │

02:07:45 #12307 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:07:45 #12308 [Debug] > │         v1                                                                   │

02:07:45 #12309 [Debug] > │ and closure4 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5 │

02:07:45 #12310 [Debug] > │ : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :       │

02:07:45 #12311 [Debug] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:07:45 #12312 [Debug] > │ : float, v17 : float) : struct (float * float * float) =                     │

02:07:45 #12313 [Debug] > │     let v18 : float = -1.0 * v2                                              │

02:07:45 #12314 [Debug] > │     let v19 : float = -1.0 * v3                                              │

02:07:45 #12315 [Debug] > │     let v20 : float = -1.0 * v4                                              │

02:07:45 #12316 [Debug] > │     let v21 : float = v11 + v18                                              │

02:07:45 #12317 [Debug] > │     let v22 : float = v12 + v19                                              │

02:07:45 #12318 [Debug] > │     let v23 : float = v13 + v20                                              │

02:07:45 #12319 [Debug] > │     let v24 : float = v21 * v21                                              │

02:07:45 #12320 [Debug] > │     let v25 : float = v22 * v22                                              │

02:07:45 #12321 [Debug] > │     let v26 : float = v24 + v25                                              │

02:07:45 #12322 [Debug] > │     let v27 : float = v23 * v23                                              │

02:07:45 #12323 [Debug] > │     let v28 : float = v26 + v27                                              │

02:07:45 #12324 [Debug] > │     let v29 : float = sqrt v28                                               │

02:07:45 #12325 [Debug] > │     let v30 : bool = v29 >= 0.06                                             │

02:07:45 #12326 [Debug] > │     let v33 : float =                                                        │

02:07:45 #12327 [Debug] > │         if v30 then                                                          │

02:07:45 #12328 [Debug] > │             0.0                                                              │

02:07:45 #12329 [Debug] > │         else                                                                 │

02:07:45 #12330 [Debug] > │             let v31 : float = v29 - 0.06                                     │

02:07:45 #12331 [Debug] > │             let v32 : float = -30.0 * v31                                    │

02:07:45 #12332 [Debug] > │             v32                                                              │

02:07:45 #12333 [Debug] > │     let v34 : float = v33 * v21                                              │

02:07:45 #12334 [Debug] > │     let v35 : float = v33 * v22                                              │

02:07:45 #12335 [Debug] > │     let v36 : float = v33 * v23                                              │

02:07:45 #12336 [Debug] > │     let v37 : float = v34 / v29                                              │

02:07:45 #12337 [Debug] > │     let v38 : float = v35 / v29                                              │

02:07:45 #12338 [Debug] > │     let v39 : float = v36 / v29                                              │

02:07:45 #12339 [Debug] > │     struct (v37, v38, v39)                                                   │

02:07:45 #12340 [Debug] > │ and closure5 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:07:45 #12341 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:07:45 #12342 [Debug] > │ float * float) =                                                             │

02:07:45 #12343 [Debug] > │     struct (0.0, 0.0, 0.0)                                                   │

02:07:45 #12344 [Debug] > │ and method8 (v0 : UH0, v1 : UH3, v2 : UH1) : UH1 =                           │

02:07:45 #12345 [Debug] > │     match v1 with                                                            │

02:07:45 #12346 [Debug] > │     | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* Cons *)    │

02:07:45 #12347 [Debug] > │         let v14 : UH1 = method8(v0, v13, v2)                                 │

02:07:45 #12348 [Debug] > │         let v15 : bool = v3 = 0                                              │

02:07:45 #12349 [Debug] > │         let v134 : (struct (float * float * float * float * float * float *  │

02:07:45 #12350 [Debug] > │ float * float * float) -> struct (float * float * float)) =                  │

02:07:45 #12351 [Debug] > │             if v15 then                                                      │

02:07:45 #12352 [Debug] > │                 let v42 : US0 =                                              │

02:07:45 #12353 [Debug] > │                     match v0 with                                            │

02:07:45 #12354 [Debug] > │                     | UH0_0(v16, v17, v18, v19, v20, v21, v22, v23, v24,     │

02:07:45 #12355 [Debug] > │ v25) -> (* Cons *)                                                           │

02:07:45 #12356 [Debug] > │                         match v25 with                                       │

02:07:45 #12357 [Debug] > │                         | UH0_0(v26, v27, v28, v29, v30, v31, v32, v33, v34, │

02:07:45 #12358 [Debug] > │ v35) -> (* Cons *)                                                           │

02:07:45 #12359 [Debug] > │                             US0_1(v26, v27, v28, v29, v30, v31, v32, v33,    │

02:07:45 #12360 [Debug] > │ v34)                                                                         │

02:07:45 #12361 [Debug] > │                         | UH0_1 -> (* Nil *)                                 │

02:07:45 #12362 [Debug] > │                             US0_0                                            │

02:07:45 #12363 [Debug] > │                     | UH0_1 -> (* Nil *)                                     │

02:07:45 #12364 [Debug] > │                         US0_0                                                │

02:07:45 #12365 [Debug] > │                 let struct (v70 : float, v71 : float, v72 : float, v73 :     │

02:07:45 #12366 [Debug] > │ float, v74 : float, v75 : float, v76 : float, v77 : float, v78 : float) =    │

02:07:45 #12367 [Debug] > │                     match v42 with                                           │

02:07:45 #12368 [Debug] > │                     | US0_0 -> (* None *)                                    │

02:07:45 #12369 [Debug] > │                         failwith<struct (float * float * float * float *     │

02:07:45 #12370 [Debug] > │ float * float * float * float * float)> "Option does not have a value."      │

02:07:45 #12371 [Debug] > │                     | US0_1(v43, v44, v45, v46, v47, v48, v49, v50, v51) ->  │

02:07:45 #12372 [Debug] > │ (* Some *)                                                                   │

02:07:45 #12373 [Debug] > │                         struct (v43, v44, v45, v46, v47, v48, v49, v50, v51) │

02:07:45 #12374 [Debug] > │                 closure4(v70, v71, v72, v73, v74, v75, v76, v77, v78)        │

02:07:45 #12375 [Debug] > │             else                                                             │

02:07:45 #12376 [Debug] > │                 let v80 : bool = v3 = 1                                      │

02:07:45 #12377 [Debug] > │                 if v80 then                                                  │

02:07:45 #12378 [Debug] > │                     let v94 : US0 =                                          │

02:07:45 #12379 [Debug] > │                         match v0 with                                        │

02:07:45 #12380 [Debug] > │                         | UH0_0(v81, v82, v83, v84, v85, v86, v87, v88, v89, │

02:07:45 #12381 [Debug] > │ v90) -> (* Cons *)                                                           │

02:07:45 #12382 [Debug] > │                             US0_1(v81, v82, v83, v84, v85, v86, v87, v88,    │

02:07:45 #12383 [Debug] > │ v89)                                                                         │

02:07:45 #12384 [Debug] > │                         | UH0_1 -> (* Nil *)                                 │

02:07:45 #12385 [Debug] > │                             US0_0                                            │

02:07:45 #12386 [Debug] > │                     let struct (v122 : float, v123 : float, v124 : float,    │

02:07:45 #12387 [Debug] > │ v125 : float, v126 : float, v127 : float, v128 : float, v129 : float, v130 : │

02:07:45 #12388 [Debug] > │ float) =                                                                     │

02:07:45 #12389 [Debug] > │                         match v94 with                                       │

02:07:45 #12390 [Debug] > │                         | US0_0 -> (* None *)                                │

02:07:45 #12391 [Debug] > │                             failwith<struct (float * float * float * float * │

02:07:45 #12392 [Debug] > │ float * float * float * float * float)> "Option does not have a value."      │

02:07:45 #12393 [Debug] > │                         | US0_1(v95, v96, v97, v98, v99, v100, v101, v102,   │

02:07:45 #12394 [Debug] > │ v103) -> (* Some *)                                                          │

02:07:45 #12395 [Debug] > │                             struct (v95, v96, v97, v98, v99, v100, v101,     │

02:07:45 #12396 [Debug] > │ v102, v103)                                                                  │

02:07:45 #12397 [Debug] > │                     closure4(v122, v123, v124, v125, v126, v127, v128, v129, │

02:07:45 #12398 [Debug] > │ v130)                                                                        │

02:07:45 #12399 [Debug] > │                 else                                                         │

02:07:45 #12400 [Debug] > │                     closure5()                                               │

02:07:45 #12401 [Debug] > │         let struct (v135 : float, v136 : float, v137 : float) = v134 struct  │

02:07:45 #12402 [Debug] > │ (v4, v5, v6, v7, v8, v9, v10, v11, v12)                                      │

02:07:45 #12403 [Debug] > │         let v138 : float = v135 / v5                                         │

02:07:45 #12404 [Debug] > │         let v139 : float = v136 / v5                                         │

02:07:45 #12405 [Debug] > │         let v140 : float = v137 / v5                                         │

02:07:45 #12406 [Debug] > │         UH1_0(0.0, 0.0, v10, v11, v12, 1.0, v138, v139, v140, v14)           │

02:07:45 #12407 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:07:45 #12408 [Debug] > │         v2                                                                   │

02:07:45 #12409 [Debug] > │ and closure3 () (v0 : UH0) : UH1 =                                           │

02:07:45 #12410 [Debug] > │     let v1 : UH3 = UH3_1                                                     │

02:07:45 #12411 [Debug] > │     let v2 : int32 = 0                                                       │

02:07:45 #12412 [Debug] > │     let struct (v3 : UH3, v4 : int32) = method6(v0, v1, v2)                  │

02:07:45 #12413 [Debug] > │     let v5 : UH3 = UH3_1                                                     │

02:07:45 #12414 [Debug] > │     let v6 : UH3 = method7(v3, v5)                                           │

02:07:45 #12415 [Debug] > │     let v7 : UH1 = UH1_1                                                     │

02:07:45 #12416 [Debug] > │     let v8 : UH1 = method8(v0, v6, v7)                                       │

02:07:45 #12417 [Debug] > │     v8                                                                       │

02:07:45 #12418 [Debug] > │ and method10 (v0 : (UH0 -> UH0), v1 : UH0, v2 : int32) : UH0 =               │

02:07:45 #12419 [Debug] > │     let v3 : bool = v2 <= 0                                                  │

02:07:45 #12420 [Debug] > │     if v3 then                                                               │

02:07:45 #12421 [Debug] > │         v1                                                                   │

02:07:45 #12422 [Debug] > │     else                                                                     │

02:07:45 #12423 [Debug] > │         let v4 : UH0 = v0 v1                                                 │

02:07:45 #12424 [Debug] > │         let v5 : int32 = v2 - 1                                              │

02:07:45 #12425 [Debug] > │         method10(v0, v4, v5)                                                 │

02:07:45 #12426 [Debug] > │ and method11 (v0 : UH4, v1 : UH4) : UH4 =                                    │

02:07:45 #12427 [Debug] > │     match v0 with                                                            │

02:07:45 #12428 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:07:45 #12429 [Debug] > │         let v4 : UH4 = UH4_0(v2, v1)                                         │

02:07:45 #12430 [Debug] > │         method11(v3, v4)                                                     │

02:07:45 #12431 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:07:45 #12432 [Debug] > │         v1                                                                   │

02:07:45 #12433 [Debug] > │ and method9 (v0 : (UH0 -> UH0), v1 : UH4, v2 : int32) : UH4 =                │

02:07:45 #12434 [Debug] > │     let v3 : float = 0.0                                                     │

02:07:45 #12435 [Debug] > │     let v4 : float = 0.16                                                    │

02:07:45 #12436 [Debug] > │     let v5 : float = 0.0                                                     │

02:07:45 #12437 [Debug] > │     let v6 : float = 0.0                                                     │

02:07:45 #12438 [Debug] > │     let v7 : float = 0.0                                                     │

02:07:45 #12439 [Debug] > │     let v8 : float = 0.0                                                     │

02:07:45 #12440 [Debug] > │     let v9 : float = 0.2                                                     │

02:07:45 #12441 [Debug] > │     let v10 : float = 0.0                                                    │

02:07:45 #12442 [Debug] > │     let v11 : float = 0.0                                                    │

02:07:45 #12443 [Debug] > │     let v12 : float = 1.0                                                    │

02:07:45 #12444 [Debug] > │     let v13 : float = 0.02                                                   │

02:07:45 #12445 [Debug] > │     let v14 : float = 0.0                                                    │

02:07:45 #12446 [Debug] > │     let v15 : float = 0.0                                                    │

02:07:45 #12447 [Debug] > │     let v16 : float = 0.0                                                    │

02:07:45 #12448 [Debug] > │     let v17 : float = 0.0                                                    │

02:07:45 #12449 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:07:45 #12450 [Debug] > │     let v19 : UH0 = UH0_0(v3, v4, v12, v13, v14, v8, v15, v16, v17, v18)     │

02:07:45 #12451 [Debug] > │     let v20 : UH0 = UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v19)         │

02:07:45 #12452 [Debug] > │     let v21 : UH0 = method10(v0, v20, v2)                                    │

02:07:45 #12453 [Debug] > │     let v35 : US0 =                                                          │

02:07:45 #12454 [Debug] > │         match v21 with                                                       │

02:07:45 #12455 [Debug] > │         | UH0_0(v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) -> (* Cons │

02:07:45 #12456 [Debug] > │ *)                                                                           │

02:07:45 #12457 [Debug] > │             US0_1(v22, v23, v24, v25, v26, v27, v28, v29, v30)               │

02:07:45 #12458 [Debug] > │         | UH0_1 -> (* Nil *)                                                 │

02:07:45 #12459 [Debug] > │             US0_0                                                            │

02:07:45 #12460 [Debug] > │     let struct (v63 : float, v64 : float, v65 : float, v66 : float, v67 :    │

02:07:45 #12461 [Debug] > │ float, v68 : float, v69 : float, v70 : float, v71 : float) =                 │

02:07:45 #12462 [Debug] > │         match v35 with                                                       │

02:07:45 #12463 [Debug] > │         | US0_0 -> (* None *)                                                │

02:07:45 #12464 [Debug] > │             failwith<struct (float * float * float * float * float * float * │

02:07:45 #12465 [Debug] > │ float * float * float)> "Option does not have a value."                      │

02:07:45 #12466 [Debug] > │         | US0_1(v36, v37, v38, v39, v40, v41, v42, v43, v44) -> (* Some *)   │

02:07:45 #12467 [Debug] > │             struct (v36, v37, v38, v39, v40, v41, v42, v43, v44)             │

02:07:45 #12468 [Debug] > │     let v72 : bool = v68 <= 10.0                                             │

02:07:45 #12469 [Debug] > │     if v72 then                                                              │

02:07:45 #12470 [Debug] > │         let v73 : UH4 = UH4_0(v21, v1)                                       │

02:07:45 #12471 [Debug] > │         let v74 : int32 = v2 + 1                                             │

02:07:45 #12472 [Debug] > │         method9(v0, v73, v74)                                                │

02:07:45 #12473 [Debug] > │     else                                                                     │

02:07:45 #12474 [Debug] > │         let v76 : UH4 = UH4_1                                                │

02:07:45 #12475 [Debug] > │         method11(v1, v76)                                                    │

02:07:45 #12476 [Debug] > │ and method13 (v0 : UH0, v1 : UH6) : UH6 =                                    │

02:07:45 #12477 [Debug] > │     match v0 with                                                            │

02:07:45 #12478 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:45 #12479 [Debug] > │         let v12 : UH6 = method13(v11, v1)                                    │

02:07:45 #12480 [Debug] > │         let v13 : float = v8 * v8                                            │

02:07:45 #12481 [Debug] > │         let v14 : float = v9 * v9                                            │

02:07:45 #12482 [Debug] > │         let v15 : float = v13 + v14                                          │

02:07:45 #12483 [Debug] > │         let v16 : float = v10 * v10                                          │

02:07:45 #12484 [Debug] > │         let v17 : float = v15 + v16                                          │

02:07:45 #12485 [Debug] > │         let v18 : float = sqrt v17                                           │

02:07:45 #12486 [Debug] > │         let v19 : float = 0.5 * v3                                           │

02:07:45 #12487 [Debug] > │         let v20 : float = v18 ** 2.0                                         │

02:07:45 #12488 [Debug] > │         let v21 : float = v19 * v20                                          │

02:07:45 #12489 [Debug] > │         UH6_0(v21, v12)                                                      │

02:07:45 #12490 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:07:45 #12491 [Debug] > │         v1                                                                   │

02:07:45 #12492 [Debug] > │ and method14 (v0 : UH6, v1 : float) : float =                                │

02:07:45 #12493 [Debug] > │     match v0 with                                                            │

02:07:45 #12494 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:07:45 #12495 [Debug] > │         let v4 : float = v1 + v2                                             │

02:07:45 #12496 [Debug] > │         method14(v3, v4)                                                     │

02:07:45 #12497 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:07:45 #12498 [Debug] > │         v1                                                                   │

02:07:45 #12499 [Debug] > │ and method12 (v0 : UH4, v1 : UH5) : UH5 =                                    │

02:07:45 #12500 [Debug] > │     match v0 with                                                            │

02:07:45 #12501 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:07:45 #12502 [Debug] > │         let v4 : UH5 = method12(v3, v1)                                      │

02:07:45 #12503 [Debug] > │         let v18 : US0 =                                                      │

02:07:45 #12504 [Debug] > │             match v2 with                                                    │

02:07:45 #12505 [Debug] > │             | UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* Cons  │

02:07:45 #12506 [Debug] > │ *)                                                                           │

02:07:45 #12507 [Debug] > │                 US0_1(v5, v6, v7, v8, v9, v10, v11, v12, v13)                │

02:07:45 #12508 [Debug] > │             | UH0_1 -> (* Nil *)                                             │

02:07:45 #12509 [Debug] > │                 US0_0                                                        │

02:07:45 #12510 [Debug] > │         let struct (v46 : float, v47 : float, v48 : float, v49 : float, v50  │

02:07:45 #12511 [Debug] > │ : float, v51 : float, v52 : float, v53 : float, v54 : float) =               │

02:07:45 #12512 [Debug] > │             match v18 with                                                   │

02:07:45 #12513 [Debug] > │             | US0_0 -> (* None *)                                            │

02:07:45 #12514 [Debug] > │                 failwith<struct (float * float * float * float * float *     │

02:07:45 #12515 [Debug] > │ float * float * float * float)> "Option does not have a value."              │

02:07:45 #12516 [Debug] > │             | US0_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some  │

02:07:45 #12517 [Debug] > │ *)                                                                           │

02:07:45 #12518 [Debug] > │                 struct (v19, v20, v21, v22, v23, v24, v25, v26, v27)         │

02:07:45 #12519 [Debug] > │         let v55 : UH6 = UH6_1                                                │

02:07:45 #12520 [Debug] > │         let v56 : UH6 = method13(v2, v55)                                    │

02:07:45 #12521 [Debug] > │         let v57 : float = 0.0                                                │

02:07:45 #12522 [Debug] > │         let v58 : float = method14(v56, v57)                                 │

02:07:45 #12523 [Debug] > │         UH5_0(v51, v58, v4)                                                  │

02:07:45 #12524 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:07:45 #12525 [Debug] > │         v1                                                                   │

02:07:45 #12526 [Debug] > │ and method15 (v0 : UH5, v1 : UH6, v2 : UH6) : struct (UH6 * UH6) =           │

02:07:45 #12527 [Debug] > │     match v0 with                                                            │

02:07:45 #12528 [Debug] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

02:07:45 #12529 [Debug] > │         let v6 : UH6 = UH6_0(v3, v1)                                         │

02:07:45 #12530 [Debug] > │         let v7 : UH6 = UH6_0(v4, v2)                                         │

02:07:45 #12531 [Debug] > │         method15(v5, v6, v7)                                                 │

02:07:45 #12532 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:07:45 #12533 [Debug] > │         struct (v1, v2)                                                      │

02:07:45 #12534 [Debug] > │ and method16 (v0 : UH6, v1 : UH6) : UH6 =                                    │

02:07:45 #12535 [Debug] > │     match v0 with                                                            │

02:07:45 #12536 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:07:45 #12537 [Debug] > │         let v4 : UH6 = UH6_0(v2, v1)                                         │

02:07:45 #12538 [Debug] > │         method16(v3, v4)                                                     │

02:07:45 #12539 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:07:45 #12540 [Debug] > │         v1                                                                   │

02:07:45 #12541 [Debug] > │ and method18 (v0 : UH1, v1 : UH1) : UH1 =                                    │

02:07:45 #12542 [Debug] > │     match v0 with                                                            │

02:07:45 #12543 [Debug] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:07:45 #12544 [Debug] > │         let v12 : UH1 = UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:07:45 #12545 [Debug] > │         method18(v11, v12)                                                   │

02:07:45 #12546 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:07:45 #12547 [Debug] > │         v1                                                                   │

02:07:45 #12548 [Debug] > │ and method17 (v0 : UH1, v1 : UH1, v2 : UH1) : UH1 =                          │

02:07:45 #12549 [Debug] > │     match v1 with                                                            │

02:07:45 #12550 [Debug] > │     | UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

02:07:45 #12551 [Debug] > │         match v2 with                                                        │

02:07:45 #12552 [Debug] > │         | UH1_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (* Cons │

02:07:45 #12553 [Debug] > │ *)                                                                           │

02:07:45 #12554 [Debug] > │             let v23 : float = v3 + v13                                       │

02:07:45 #12555 [Debug] > │             let v24 : float = v4 + v14                                       │

02:07:45 #12556 [Debug] > │             let v25 : float = v8 + v18                                       │

02:07:45 #12557 [Debug] > │             let v26 : float = v5 + v15                                       │

02:07:45 #12558 [Debug] > │             let v27 : float = v6 + v16                                       │

02:07:45 #12559 [Debug] > │             let v28 : float = v7 + v17                                       │

02:07:45 #12560 [Debug] > │             let v29 : float = v9 + v19                                       │

02:07:45 #12561 [Debug] > │             let v30 : float = v10 + v20                                      │

02:07:45 #12562 [Debug] > │             let v31 : float = v11 + v21                                      │

02:07:45 #12563 [Debug] > │             let v32 : UH1 = UH1_0(v23, v24, v26, v27, v28, v25, v29, v30,    │

02:07:45 #12564 [Debug] > │ v31, v0)                                                                     │

02:07:45 #12565 [Debug] > │             method17(v32, v12, v22)                                          │

02:07:45 #12566 [Debug] > │         | _ ->                                                               │

02:07:45 #12567 [Debug] > │             let v34 : UH1 = UH1_1                                            │

02:07:45 #12568 [Debug] > │             method18(v0, v34)                                                │

02:07:45 #12569 [Debug] > │     | _ ->                                                                   │

02:07:45 #12570 [Debug] > │         let v37 : UH1 = UH1_1                                                │

02:07:45 #12571 [Debug] > │         method18(v0, v37)                                                    │

02:07:45 #12572 [Debug] > │ and closure8 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

02:07:45 #12573 [Debug] > │     let v3 : UH1 = v1 v2                                                     │

02:07:45 #12574 [Debug] > │     let v4 : float = v0 / 2.0                                                │

02:07:45 #12575 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:07:45 #12576 [Debug] > │     let v6 : UH0 = method1(v4, v5, v3, v2)                                   │

02:07:45 #12577 [Debug] > │     let v7 : UH1 = v1 v6                                                     │

02:07:45 #12578 [Debug] > │     let v8 : UH0 = UH0_1                                                     │

02:07:45 #12579 [Debug] > │     let v9 : UH0 = method1(v4, v8, v7, v2)                                   │

02:07:45 #12580 [Debug] > │     let v10 : UH1 = v1 v9                                                    │

02:07:45 #12581 [Debug] > │     let v11 : UH0 = UH0_1                                                    │

02:07:45 #12582 [Debug] > │     let v12 : UH0 = method1(v0, v11, v10, v2)                                │

02:07:45 #12583 [Debug] > │     let v13 : UH1 = v1 v12                                                   │

02:07:45 #12584 [Debug] > │     let v14 : float = v0 / 6.0                                               │

02:07:45 #12585 [Debug] > │     let v15 : UH1 = UH1_1                                                    │

02:07:45 #12586 [Debug] > │     let v16 : UH1 = method17(v15, v3, v7)                                    │

02:07:45 #12587 [Debug] > │     let v17 : UH1 = UH1_1                                                    │

02:07:45 #12588 [Debug] > │     let v18 : UH1 = method17(v17, v16, v7)                                   │

02:07:45 #12589 [Debug] > │     let v19 : UH1 = UH1_1                                                    │

02:07:45 #12590 [Debug] > │     let v20 : UH1 = method17(v19, v18, v10)                                  │

02:07:45 #12591 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:07:45 #12592 [Debug] > │     let v22 : UH1 = method17(v21, v20, v10)                                  │

02:07:45 #12593 [Debug] > │     let v23 : UH1 = UH1_1                                                    │

02:07:45 #12594 [Debug] > │     let v24 : UH1 = method17(v23, v22, v13)                                  │

02:07:45 #12595 [Debug] > │     let v25 : UH0 = UH0_1                                                    │

02:07:45 #12596 [Debug] > │     let v26 : UH0 = method1(v14, v25, v24, v2)                               │

02:07:45 #12597 [Debug] > │     v26                                                                      │

02:07:45 #12598 [Debug] > │ and closure7 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

02:07:45 #12599 [Debug] > │     closure8(v0, v1)                                                         │

02:07:45 #12600 [Debug] > │ and closure6 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

02:07:45 #12601 [Debug] > │     closure7(v0)                                                             │

02:07:45 #12602 [Debug] > │ and method19 (v0 : UH4, v1 : UH5) : UH5 =                                    │

02:07:45 #12603 [Debug] > │     match v0 with                                                            │

02:07:45 #12604 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:07:45 #12605 [Debug] > │         let v4 : UH5 = method19(v3, v1)                                      │

02:07:45 #12606 [Debug] > │         let v18 : US0 =                                                      │

02:07:45 #12607 [Debug] > │             match v2 with                                                    │

02:07:45 #12608 [Debug] > │             | UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* Cons  │

02:07:45 #12609 [Debug] > │ *)                                                                           │

02:07:45 #12610 [Debug] > │                 US0_1(v5, v6, v7, v8, v9, v10, v11, v12, v13)                │

02:07:45 #12611 [Debug] > │             | UH0_1 -> (* Nil *)                                             │

02:07:45 #12612 [Debug] > │                 US0_0                                                        │

02:07:45 #12613 [Debug] > │         let struct (v46 : float, v47 : float, v48 : float, v49 : float, v50  │

02:07:45 #12614 [Debug] > │ : float, v51 : float, v52 : float, v53 : float, v54 : float) =               │

02:07:45 #12615 [Debug] > │             match v18 with                                                   │

02:07:45 #12616 [Debug] > │             | US0_0 -> (* None *)                                            │

02:07:45 #12617 [Debug] > │                 failwith<struct (float * float * float * float * float *     │

02:07:45 #12618 [Debug] > │ float * float * float * float)> "Option does not have a value."              │

02:07:45 #12619 [Debug] > │             | US0_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some  │

02:07:45 #12620 [Debug] > │ *)                                                                           │

02:07:45 #12621 [Debug] > │                 struct (v19, v20, v21, v22, v23, v24, v25, v26, v27)         │

02:07:45 #12622 [Debug] > │         let v55 : UH6 = UH6_1                                                │

02:07:45 #12623 [Debug] > │         let v56 : UH6 = method13(v2, v55)                                    │

02:07:45 #12624 [Debug] > │         let v57 : float = 0.0                                                │

02:07:45 #12625 [Debug] > │         let v58 : float = method14(v56, v57)                                 │

02:07:45 #12626 [Debug] > │         UH5_0(v51, v58, v4)                                                  │

02:07:45 #12627 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:07:45 #12628 [Debug] > │         v1                                                                   │

02:07:45 #12629 [Debug] > │ and method21 (v0 : UH6, v1 : int32) : int32 =                                │

02:07:45 #12630 [Debug] > │     match v0 with                                                            │

02:07:45 #12631 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:07:45 #12632 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:07:45 #12633 [Debug] > │         method21(v3, v4)                                                     │

02:07:45 #12634 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:07:45 #12635 [Debug] > │         v1                                                                   │

02:07:45 #12636 [Debug] > │ and method22 (v0 : (float []), v1 : UH6, v2 : int32) : int32 =               │

02:07:45 #12637 [Debug] > │     match v1 with                                                            │

02:07:45 #12638 [Debug] > │     | UH6_0(v3, v4) -> (* Cons *)                                            │

02:07:45 #12639 [Debug] > │         v0.[int v2] <- v3                                                    │

02:07:45 #12640 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:07:45 #12641 [Debug] > │         method22(v0, v4, v5)                                                 │

02:07:45 #12642 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:07:45 #12643 [Debug] > │         v2                                                                   │

02:07:45 #12644 [Debug] > │ and method20 (v0 : UH6) : (float []) =                                       │

02:07:45 #12645 [Debug] > │     let v1 : int32 = 0                                                       │

02:07:45 #12646 [Debug] > │     let v2 : int32 = method21(v0, v1)                                        │

02:07:45 #12647 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:07:45 #12648 [Debug] > │     let v4 : int32 = 0                                                       │

02:07:45 #12649 [Debug] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

02:07:45 #12650 [Debug] > │     v3                                                                       │

02:07:45 #12651 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:07:45 #12652 [Debug] > │ []) * (float [])) [])) =                                                     │

02:07:45 #12653 [Debug] > │     let v0 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure0()          │

02:07:45 #12654 [Debug] > │     let v1 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v0 0.03                        │

02:07:45 #12655 [Debug] > │     let v2 : (UH0 -> UH1) = closure3()                                       │

02:07:45 #12656 [Debug] > │     let v3 : (UH0 -> UH0) = v1 v2                                            │

02:07:45 #12657 [Debug] > │     let v4 : UH4 = UH4_1                                                     │

02:07:45 #12658 [Debug] > │     let v5 : int32 = 0                                                       │

02:07:45 #12659 [Debug] > │     let v6 : UH4 = method9(v3, v4, v5)                                       │

02:07:45 #12660 [Debug] > │     let v7 : UH5 = UH5_1                                                     │

02:07:45 #12661 [Debug] > │     let v8 : UH5 = method12(v6, v7)                                          │

02:07:45 #12662 [Debug] > │     let v9 : UH6 = UH6_1                                                     │

02:07:45 #12663 [Debug] > │     let v10 : UH6 = UH6_1                                                    │

02:07:45 #12664 [Debug] > │     let struct (v11 : UH6, v12 : UH6) = method15(v8, v9, v10)                │

02:07:45 #12665 [Debug] > │     let v13 : UH6 = UH6_1                                                    │

02:07:45 #12666 [Debug] > │     let v14 : UH6 = method16(v11, v13)                                       │

02:07:45 #12667 [Debug] > │     let v15 : UH6 = UH6_1                                                    │

02:07:45 #12668 [Debug] > │     let v16 : UH6 = method16(v12, v15)                                       │

02:07:45 #12669 [Debug] > │     let v17 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure6()         │

02:07:45 #12670 [Debug] > │     let v18 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v17 0.03                      │

02:07:45 #12671 [Debug] > │     let v19 : (UH0 -> UH0) = v18 v2                                          │

02:07:45 #12672 [Debug] > │     let v20 : UH4 = UH4_1                                                    │

02:07:45 #12673 [Debug] > │     let v21 : int32 = 0                                                      │

02:07:45 #12674 [Debug] > │     let v22 : UH4 = method9(v19, v20, v21)                                   │

02:07:45 #12675 [Debug] > │     let v23 : UH5 = UH5_1                                                    │

02:07:45 #12676 [Debug] > │     let v24 : UH5 = method19(v22, v23)                                       │

02:07:45 #12677 [Debug] > │     let v25 : UH6 = UH6_1                                                    │

02:07:45 #12678 [Debug] > │     let v26 : UH6 = UH6_1                                                    │

02:07:45 #12679 [Debug] > │     let struct (v27 : UH6, v28 : UH6) = method15(v24, v25, v26)              │

02:07:45 #12680 [Debug] > │     let v29 : UH6 = UH6_1                                                    │

02:07:45 #12681 [Debug] > │     let v30 : UH6 = method16(v27, v29)                                       │

02:07:45 #12682 [Debug] > │     let v31 : UH6 = UH6_1                                                    │

02:07:45 #12683 [Debug] > │     let v32 : UH6 = method16(v28, v31)                                       │

02:07:45 #12684 [Debug] > │     let v33 : (float []) = method20(v14)                                     │

02:07:45 #12685 [Debug] > │     let v34 : (float []) = method20(v16)                                     │

02:07:45 #12686 [Debug] > │     let v35 : (float []) = method20(v30)                                     │

02:07:45 #12687 [Debug] > │     let v36 : (float []) = method20(v32)                                     │

02:07:45 #12688 [Debug] > │     let v37 : string = "euler-cromer"                                        │

02:07:45 #12689 [Debug] > │     let v38 : string = "runge-kutta 4"                                       │

02:07:45 #12690 [Debug] > │     let v39 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:07:45 #12691 [Debug] > │ (v37, v33, v34); struct (v38, v35, v36)|]                                    │

02:07:45 #12692 [Debug] > │     let v40 : string = "system kinetic energy versus time"                   │

02:07:45 #12693 [Debug] > │     let v41 : string = "time (s)"                                            │

02:07:45 #12694 [Debug] > │     let v42 : string = "system kinetic energy (j)"                           │

02:07:45 #12695 [Debug] > │     struct (v40, v41, v42, v39)                                              │

02:07:45 #12696 [Debug] > │ method0()                                                                    │

02:07:45 #12697 [Debug] > │                                                                              │

02:07:45 #12698 [Debug] > │                                                                              │

02:07:45 #12699 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:45 #12700 [Debug] >

02:07:45 #12701 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:07:45 #12702 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:07:45 #12703 [Debug] > │ ### wave 1                                                                   │

02:07:45 #12704 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:07:45 #12705 [Debug] >

02:07:45 #12706 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:07:45 #12707 [Debug] > // // test

02:07:45 #12708 [Debug] >

02:07:45 #12709 [Debug] > inl linear_spring k re (particle_state st1) (particle_state st2) =

02:07:45 #12710 [Debug] >     inl r1 = st1.pos_vec

02:07:45 #12711 [Debug] >     inl r2 = st2.pos_vec

02:07:45 #12712 [Debug] >     inl r21 = r2 ^-^ r1

02:07:45 #12713 [Debug] >     inl r21mag = magnitude r21

02:07:45 #12714 [Debug] >     -k * (r21mag - re) *^ r21 ^/ r21mag

02:07:45 #12715 [Debug] >

02:07:45 #12716 [Debug] > inl fixed_linear_spring k re r1 =

02:07:45 #12717 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:07:45 #12718 [Debug] >     linear_spring k re (particle_state { default_particle_state' with pos_vec =

02:07:45 #12719 [Debug] > r1 })

02:07:45 #12720 [Debug] >

02:07:45 #12721 [Debug] > inl forces_string () =

02:07:45 #12722 [Debug] >     [[

02:07:45 #12723 [Debug] >         ExternalForce (0, fixed_linear_spring 5384 0 (zero_vec ()))

02:07:45 #12724 [Debug] >         ExternalForce (63, fixed_linear_spring 5384 0 (0.65 *^ i_hat ()))

02:07:45 #12725 [Debug] >     ]] /@ (

02:07:45 #12726 [Debug] >         listm'.init_series 0 59 1

02:07:45 #12727 [Debug] >         |> listm.map (fun n => InternalForce (n, n + 1, linear_spring 5384 0))

02:07:45 #12728 [Debug] >     )

02:07:45 #12729 [Debug] >

02:07:45 #12730 [Debug] > inl string_update dt =

02:07:45 #12731 [Debug] >     update_mps (runge_kutta_4 dt) (forces_string ())

02:07:45 #12732 [Debug] >

02:07:45 #12733 [Debug] > inl string_initial_overtone n =

02:07:45 #12734 [Debug] >     inl ball_mass = 0.0008293 * 0.65 / 64

02:07:45 #12735 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:07:45 #12736 [Debug] >     listm'.init_series 0.01 0.64 0.01

02:07:45 #12737 [Debug] >     |> listm.map (fun x =>

02:07:45 #12738 [Debug] >         inl y = 0.005 * sin (conv n * pi * x / 0.65)

02:07:45 #12739 [Debug] >         particle_state {

02:07:45 #12740 [Debug] >             default_particle_state' with

02:07:45 #12741 [Debug] >                 mass = ball_mass

02:07:45 #12742 [Debug] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

02:07:45 #12743 [Debug] >                 velocity = zero_vec ()

02:07:45 #12744 [Debug] >         }

02:07:45 #12745 [Debug] >     )

02:07:45 #12746 [Debug] >     |> multi_particle_state

02:07:45 #12747 [Debug] >

02:07:45 #12748 [Debug] > inl string_initial_pluck () =

02:07:45 #12749 [Debug] >     inl ball_mass = 0.0008293 * 0.65 / 64

02:07:45 #12750 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:07:45 #12751 [Debug] >     listm'.init_series 0.01 0.64 0.01

02:07:45 #12752 [Debug] >     |> listm.map (fun x =>

02:07:45 #12753 [Debug] >         inl y =

02:07:45 #12754 [Debug] >             inl n = if x <= 0.51 then 0 else 0.65

02:07:45 #12755 [Debug] >             0.005 / (0.51 - n) * (x - n)

02:07:45 #12756 [Debug] >         particle_state {

02:07:45 #12757 [Debug] >             default_particle_state' with

02:07:45 #12758 [Debug] >                 mass = ball_mass

02:07:45 #12759 [Debug] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

02:07:45 #12760 [Debug] >                 velocity = zero_vec ()

02:07:45 #12761 [Debug] >         }

02:07:45 #12762 [Debug] >     )

02:07:45 #12763 [Debug] >     |> multi_particle_state

02:07:45 #12764 [Debug] >

02:07:45 #12765 [Debug] > let main () =

02:07:45 #12766 [Debug] >     inl ~frames = listm'.init_series 0 9 1f64

02:07:45 #12767 [Debug] >     inl initial_state = string_initial_overtone 3i32

02:07:45 #12768 [Debug] >     inl frames =

02:07:45 #12769 [Debug] >         frames

02:07:45 #12770 [Debug] >         |> listm.map (fun n =>

02:07:45 #12771 [Debug] >             inl (multi_particle_state sts) =

02:07:45 #12772 [Debug] >                 seq.iterate' (string_update 0.000025) initial_state |> fun f =>

02:07:45 #12773 [Debug] > f 0f64

02:07:45 #12774 [Debug] >             inl rs =

02:07:45 #12775 [Debug] >                 [[ zero_vec () ]]

02:07:45 #12776 [Debug] >                 /@ (sts |> listm.map (fun (particle_state st) => st.pos_vec))

02:07:45 #12777 [Debug] >                 /@ [[ 0.65 *^ i_hat () ]]

02:07:45 #12778 [Debug] >             inl x, y =

02:07:45 #12779 [Debug] >                 rs

02:07:45 #12780 [Debug] >                 |> listm.map (fun r => r.x, r.y)

02:07:45 #12781 [Debug] >                 |> listm'.unzip

02:07:45 #12782 [Debug] >             inl x : a i32 _ = x |> listm.toArray

02:07:45 #12783 [Debug] >             inl y : a i32 _ = y |> listm.toArray

02:07:45 #12784 [Debug] >             x, y

02:07:45 #12785 [Debug] >         )

02:07:45 #12786 [Debug] >         |> listm.toArray : a i32 _

02:07:45 #12787 [Debug] >

02:07:45 #12788 [Debug] >     inl n = 0i32

02:07:45 #12789 [Debug] >

02:07:45 #12790 [Debug] >     inl x, y = index frames n

02:07:45 #12791 [Debug] >

02:07:45 #12792 [Debug] >     "wave",

02:07:45 #12793 [Debug] >     "position (m)",

02:07:45 #12794 [Debug] >     "displacement (m)",

02:07:45 #12795 [Debug] >     ;[[

02:07:45 #12796 [Debug] >         ($"$\"{!n}\"" : string), x, y

02:07:45 #12797 [Debug] >     ]]

02:07:46 #12798 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4598-9839-9ea862ccb375\main.spi

02:07:46 #12799 [Debug] > Stack overflow.

02:07:46 #12800 [Debug] > Repeat 4 times:

02:07:46 #12801 [Debug] > --------------------------------

02:07:46 #12802 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12803 [Debug] > --------------------------------

02:07:46 #12804 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12805 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12806 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12807 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12808 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12809 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12810 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12811 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12812 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12813 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12814 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12815 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12816 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12817 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12818 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12819 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12820 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12821 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12822 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12823 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12824 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12825 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12826 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12827 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12828 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12829 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12830 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12831 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12832 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12833 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12834 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12835 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12836 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12837 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12838 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12839 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12840 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12841 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12842 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12843 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12844 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12845 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12846 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12847 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12848 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12849 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12850 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12851 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12852 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12853 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12854 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12855 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12856 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12857 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12858 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12859 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12860 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12861 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12862 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12863 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12864 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12865 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12866 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12867 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12868 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12869 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12870 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12871 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12872 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12873 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12874 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12875 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12876 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12877 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12878 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12879 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12880 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12881 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12882 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12883 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12884 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12885 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12886 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12887 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12888 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12889 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12890 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12891 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12892 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12893 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12894 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12895 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12896 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12897 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12898 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12899 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12900 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12901 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12902 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12903 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12904 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12905 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12906 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12907 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12908 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12909 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12910 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12911 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12912 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12913 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12914 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12915 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12916 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12917 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12918 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12919 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12920 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12921 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12922 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12923 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12924 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12925 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12926 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12927 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12928 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12929 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12930 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12931 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12932 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12933 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12934 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12935 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12936 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12937 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12938 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12939 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12940 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12941 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12942 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12943 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12944 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12945 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12946 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12947 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12948 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12949 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12950 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12951 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12952 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12953 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12954 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12955 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12956 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12957 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12958 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12959 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12960 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12961 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12962 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12963 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12964 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12965 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12966 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12967 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12968 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12969 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12970 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12971 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12972 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12973 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12974 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12975 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12976 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12977 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12978 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12979 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12980 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12981 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12982 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12983 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12984 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12985 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12986 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12987 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12988 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12989 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12990 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12991 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12992 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12993 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12994 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12995 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12996 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #12997 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12998 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #12999 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13000 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13001 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13002 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13003 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13004 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13005 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13006 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13007 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13008 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13009 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13010 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13011 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13012 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13013 [Debug] >    at Spiral.PartEval.Main.body@1060-29(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, Microsoft.FSharp.Core.FSharpFunc`2<Boolean,Microsoft.FSharp.Core.FSharpFunc`2<LangEnv,Microsoft.FSharp.Core.FSharpFunc`2<Data,Data>>>, E, E, System.String, Int32, LangEnv, L`2<Int32,Ty>, H`1<<>f__AnonymousType3599534058`5<Microsoft.FSharp.Collections.FSharpMap`2<System.String,Ty>,Boolean,UnionLayout,System.Tuple`2<System.String,Ty>[],System.Collections.Generic.Dictionary`2<System.String,Int32>>>, Microsoft.FSharp.Collections.FSharpSet`1<System.String>)

02:07:46 #13014 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13015 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13016 [Debug] >    at Spiral.PartEval.Main.term_scope''@574(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13017 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13018 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13019 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13020 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13021 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13022 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13023 [Debug] >    at Spiral.PartEval.Main.term_scope''@574(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13024 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13025 [Debug] >    at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)

02:07:46 #13026 [Debug] >    at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)

02:07:46 #13027 [Debug] >    at Spiral.PartEval.Main.peval(TopEnv, E)

02:07:46 #13028 [Debug] >    at Spiral.Supervisor.file_build$cont@383(System.String, SupervisorState, PrepassTopEnv, Microsoft.FSharp.Core.FSharpOption`1<E>, Microsoft.FSharp.Core.Unit)

02:07:46 #13029 [Debug] >    at Spiral.Supervisor.x2yJ@1-28(SupervisorErrorSources, System.String, System.String, SupervisorState, PrepassTopEnv)

02:07:46 #13030 [Debug] >    at Spiral.Supervisor+x2yJ@380-41.Do(PrepassTopEnv)

02:07:46 #13031 [Debug] >    at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13032 [Debug] >    at Hopac.Job+result@1000-1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13033 [Debug] >    at Hopac.Job+result@1000-1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13034 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13035 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13036 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13037 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13038 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13039 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13040 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13041 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13042 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13043 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13044 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13045 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13046 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13047 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13048 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13049 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13050 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13051 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13052 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13053 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13054 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13055 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13056 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13057 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13058 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13059 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13060 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13061 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13062 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13063 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13064 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13065 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13066 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13067 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13068 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13069 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13070 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13071 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13072 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13073 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13074 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13075 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13076 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13077 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13078 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13079 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13080 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13081 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13082 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13083 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13084 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13085 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13086 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13087 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13088 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13089 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13090 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13091 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13092 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13093 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13094 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13095 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13096 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13097 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13098 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13099 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13100 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13101 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13102 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13103 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13104 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13105 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13106 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13107 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13108 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13109 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13110 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13111 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13112 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13113 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13114 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13115 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13116 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13117 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13118 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13119 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13120 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13121 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13122 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13123 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13124 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13125 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13126 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13127 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13128 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13129 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13130 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13131 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13132 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13133 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13134 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13135 [Debug] >    at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)

02:07:46 #13136 [Debug] >    at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13137 [Debug] >    at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13138 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13139 [Debug] >    at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)

02:07:46 #13140 [Debug] >    at Hopac.Core.Worker.Run(Hopac.Scheduler, Int32)

02:07:46 #13141 [Debug] >    at Hopac.Platform.Scheduler+thread@30.Invoke()

02:07:46 #13142 [Debug] >    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)

02:07:52 #13143 [Debug] executeAsync / exitCode: -1073741571 / proc.Id: 10584 / output.Length: 184552

02:07:52 #13144 [Debug] awaitCompiler / exitCode: -1073741571 / result: pwd: C:\home\git\polyglot\lib\spiral

dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

Server bound to: http://localhost:13805

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-1947-4730-4757df09cfb8\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2186-8680-8a79ba268447\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2204-0448-0abf025785bf\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2293-9359-9e592bdd3215\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2347-4756-4690cc45e62a\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2406-0684-0dd924df857b\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2424-2430-20791a15cac6\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2443-4392-454bd3e28c06\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2496-9667-9441665fb820\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2517-1768-16c2588dd6ff\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2540-4030-40440b4f1c30\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2558-5840-5b8101551708\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2578-7814-72d110024ac9\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2598-9861-95eedf07185d\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2620-2095-29b77199ca01\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2639-3923-393162fb2a90\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2678-7874-75930b29f5bf\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2698-9839-920b5bee5bc6\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2715-1590-1b6e748da16b\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2736-3612-3a0f37781e91\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2786-8654-8b53d4534034\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2878-7827-7926ccf4f5fd\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2896-9625-996165b7e077\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-2912-1292-1b8aa1120f8f\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3031-3142-3727328fa933\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3049-4952-4671b6afaeec\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3132-3274-3b6d9ff2f5b1\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3151-5144-5074a7060643\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3217-1711-1782d98acf2a\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3287-8759-844f15686818\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3311-1158-18d4064711b5\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3368-6850-6b63431c0168\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3392-9232-9d60379ac31c\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3412-1212-13551401802d\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3432-3217-34d30349ad6b\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3451-5146-506f838d545c\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3470-7009-7f90852e57a6\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3487-8770-88c30357ce1c\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3505-0576-077fb6dcb634\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3520-2097-25ebb985c8a5\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3540-4020-40e1455fe55b\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3557-5791-52485d91ef1b\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3574-7421-76c4f8508280\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3594-9405-9b6b4249a12b\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3615-1504-1957ad38a292\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3636-3636-3866cfd96b24\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3659-5909-5ef4673325ef\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3681-8121-8b2ce58fc00e\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3701-0104-0c3feadb3ca6\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3722-2251-283b073eee8e\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3757-5779-54e077b3dbfc\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3775-7529-7b5a0ed4ac2e\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3793-9358-99c5205f6656\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3813-1303-13839b0e12c7\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3829-2982-2b7f18e5c733\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3846-4605-43f383310a49\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3864-6448-682d9f76033f\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3885-8543-89852c8770d3\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3905-0517-07578db43606\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3923-2370-2d463b6eae73\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3941-4104-43ab18b54364\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-3959-5973-5138f06d55a1\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4080-8064-88ec0699261d\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4140-4064-486adc0a9a5d\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4159-5940-597cc66cf2f0\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4250-5058-5a39b7564d38\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4272-7239-75a2e7b477f9\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4378-7812-7a6f9fe9a422\main.spi

Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0207-4598-9839-9ea862ccb375\main.spi

[Stack overflow.]

[Repeat 4 times:]

[--------------------------------]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[--------------------------------]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.body@1060-29(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, Microsoft.FSharp.Core.FSharpFunc`2<Boolean,Microsoft.FSharp.Core.FSharpFunc`2<LangEnv,Microsoft.FSharp.Core.FSharpFunc`2<Data,Data>>>, E, E, System.String, Int32, LangEnv, L`2<Int32,Ty>, H`1<<>f__AnonymousType3599534058`5<Microsoft.FSharp.Collections.FSharpMap`2<System.String,Ty>,Boolean,UnionLayout,System.Tuple`2<System.String,Ty>[],System.Collections.Generic.Dictionary`2<System.String,Int32>>>, Microsoft.FSharp.Collections.FSharpSet`1<System.String>)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term_scope''@574(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term_scope''@574(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(IntPtr, Void (IntPtr, Byte ByRef, System.Runtime.CompilerServices.PortableTailCallFrame*), Byte ByRef)]

[   at Spiral.PartEval.Main.term@684-65(TopEnv, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`2<RData[],Ty[]>>,System.Tuple`3<Microsoft.FSharp.Core.FSharpOption`1<TypedBind[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>,Microsoft.FSharp.Core.FSharpOption`1<System.String>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<E,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<System.Tuple`4<RData[],Ty[],Ty,Ty>>,Microsoft.FSharp.Core.FSharpOption`1<System.Tuple`2<Data,TypedBind[]>>>,HashConsTable>>, System.Collections.Generic.Dictionary`2<T,System.Tuple`2<System.Collections.Generic.Dictionary`2<ConsedNode`1<Ty[]>,Microsoft.FSharp.Core.FSharpOption`1<Ty>>,HashConsTable>>, Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2<Microsoft.FSharp.Core.Unit,Microsoft.FSharp.Core.Unit>>, LangEnv, E)]

[   at Spiral.PartEval.Main.peval(TopEnv, E)]

[   at Spiral.Supervisor.file_build$cont@383(System.String, SupervisorState, PrepassTopEnv, Microsoft.FSharp.Core.FSharpOption`1<E>, Microsoft.FSharp.Core.Unit)]

[   at Spiral.Supervisor.x2yJ@1-28(SupervisorErrorSources, System.String, System.String, SupervisorState, PrepassTopEnv)]

[   at Spiral.Supervisor+x2yJ@380-41.Do(PrepassTopEnv)]

[   at Hopac.Core.ContBind`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Job+result@1000-1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Job+result@1000-1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.ContMap`2[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoCont(Hopac.Core.Worker ByRef, System.__Canon)]

[   at Hopac.Core.JobThunk`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Job.Do[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]](Hopac.Job`1<System.__Canon>, Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Promise`1[[System.__Canon, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].DoJob(Hopac.Core.Worker ByRef, Hopac.Core.Cont`1<System.__Canon>)]

[   at Hopac.Core.Worker.Run(Hopac.Scheduler, Int32)]

[   at Hopac.Platform.Scheduler+thread@30.Invoke()]

[   at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)]

02:07:52 #13145 [Warning] executeAsync / WaitForExitAsync / ex: System.Threading.Tasks.TaskCanceledException: A task was canceled.

02:07:52 #13146 [Debug] executeAsync / exitCode: -2147483648 / proc.Id: 61068 / output.Length: 946338

02:07:52 #13147 [Debug] main / executeCommand / exitCode: -2147483648


# Invoke-Block / $Retries: 5 / $OnError: Stop / $exitcode: -2147483648 / $EnvVars: null / $Error: '' / $ScriptBlock:
'. ../../apps/spiral/dist/Supervisor$(GetExecutableSuffix) --executecommand "pwsh -c `"../../scripts/invoke-dib.ps1 physics.dib`""'


02:08:27 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:08:27 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:08:27 #3 [Debug] > pwd: C:\home\git\polyglot\lib\spiral

02:08:27 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:08:28 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:08:28 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:08:28 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:08:28 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:08:28 #9 [Debug] > Server bound to: http://localhost:13805

02:08:28 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 physics.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:08:30 #11 [Debug] >

02:08:31 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:31 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:31 #14 [Debug] > │ # physics                                                                    │

02:08:31 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:31 #16 [Debug] >

02:08:31 #17 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:08:31 #18 [Debug] > #!import ../nbs/Plotting.dib

02:08:31 #19 [Debug] >

02:08:31 #20 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:31 #21 [Debug] > #r

02:08:31 #22 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

02:08:31 #23 [Debug] > spNetCore.Html.Abstractions.dll"

02:08:31 #24 [Debug] > #r

02:08:31 #25 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:08:31 #26 [Debug] > otNet.Interactive.dll"

02:08:31 #27 [Debug] > #r

02:08:31 #28 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:08:31 #29 [Debug] > otNet.Interactive.FSharp.dll"

02:08:31 #30 [Debug] > #r

02:08:31 #31 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:08:31 #32 [Debug] > otNet.Interactive.Formatting.dll"

02:08:31 #33 [Debug] > open System

02:08:31 #34 [Debug] > open System.IO

02:08:31 #35 [Debug] > open System.Text

02:08:31 #36 [Debug] > open Microsoft.DotNet.Interactive.Formatting

02:08:34 #37 [Debug] >

02:08:34 #38 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:34 #39 [Debug] > #r

02:08:34 #40 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:08:34 #41 [Debug] > otNet.Interactive.FSharp.dll"

02:08:34 #42 [Debug] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

02:08:34 #43 [Debug] > #r

02:08:34 #44 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:08:34 #45 [Debug] > otNet.Interactive.dll"

02:08:34 #46 [Debug] > open type Microsoft.DotNet.Interactive.Kernel

02:08:34 #47 [Debug] >

02:08:34 #48 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:34 #49 [Debug] > //// test

02:08:34 #50 [Debug] >

02:08:34 #51 [Debug] > Formatter.ListExpansionLimit <- 100

02:08:35 #52 [Debug] >

02:08:35 #53 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:35 #54 [Debug] > #r

02:08:35 #55 [Debug] > @"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

02:08:35 #56 [Debug] > dard2.1/FSharp.Control.AsyncSeq.dll"

02:08:35 #57 [Debug] > #r

02:08:35 #58 [Debug] > @"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

02:08:35 #59 [Debug] > 0/System.Reactive.dll"

02:08:35 #60 [Debug] > #r

02:08:35 #61 [Debug] > @"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib

02:08:35 #62 [Debug] > netstandard2.0/System.Reactive.Linq.dll"

02:08:35 #63 [Debug] > #r

02:08:35 #64 [Debug] > @"../../../../../../../.nuget/packages/argu/6.1.1/lib/netstandard2.0/Argu.dll"

02:08:35 #65 [Debug] > #r

02:08:35 #66 [Debug] > @"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

02:08:35 #67 [Debug] > b/net6.0/System.CommandLine.dll"

02:08:35 #68 [Debug] > #r

02:08:35 #69 [Debug] > @"../../../../../../../.nuget/packages/fsharp.json/0.4.1/lib/netstandard2.0/FSha

02:08:35 #70 [Debug] > rp.Json.dll"

02:08:35 #71 [Debug] >

02:08:35 #72 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:35 #73 [Debug] > #if !INTERACTIVE

02:08:35 #74 [Debug] > namespace Polyglot

02:08:35 #75 [Debug] > #endif

02:08:35 #76 [Debug] >

02:08:35 #77 [Debug] > module Common =

02:08:35 #78 [Debug] >

02:08:35 #79 [Debug] >     let nl = System.Environment.NewLine

02:08:35 #80 [Debug] >     let q = @""""

02:08:35 #81 [Debug] >

02:08:35 #82 [Debug] >     let inline cons head tail = head :: tail

02:08:35 #83 [Debug] >

02:08:35 #84 [Debug] >     module String =

02:08:35 #85 [Debug] >         let inline contains (value : string) (input : string) =

02:08:35 #86 [Debug] >             input.Contains value

02:08:35 #87 [Debug] >

02:08:35 #88 [Debug] >         let inline endsWith (value : string) (input : string) =

02:08:35 #89 [Debug] >             input.EndsWith value

02:08:35 #90 [Debug] >

02:08:35 #91 [Debug] >         let inline padLeft totalWidth paddingChar (input : string) =

02:08:35 #92 [Debug] >             input.PadLeft (totalWidth, paddingChar)

02:08:35 #93 [Debug] >

02:08:35 #94 [Debug] >         let inline replace (oldValue : string) (newValue : string) (input :

02:08:35 #95 [Debug] > string) =

02:08:35 #96 [Debug] >             input.Replace (oldValue, newValue)

02:08:35 #97 [Debug] >

02:08:35 #98 [Debug] >         let inline split separator (input : string) =

02:08:35 #99 [Debug] >             input.Split separator

02:08:35 #100 [Debug] >

02:08:35 #101 [Debug] >         let inline spli...

02:08:36 #102 [Debug] >

02:08:36 #103 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:36 #104 [Debug] > #if !INTERACTIVE

02:08:36 #105 [Debug] > namespace Polyglot

02:08:36 #106 [Debug] > #endif

02:08:36 #107 [Debug] >

02:08:36 #108 [Debug] > module CommonFSharp =

02:08:36 #109 [Debug] >

02:08:36 #110 [Debug] >     open Common

02:08:36 #111 [Debug] >

02:08:36 #112 [Debug] >     /// ## getUnionCaseName

02:08:36 #113 [Debug] >

02:08:36 #114 [Debug] >     let inline getUnionCaseName<'T> (x: 'T) =

02:08:36 #115 [Debug] >         match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

02:08:36 #116 [Debug] >         | case, _ -> case.Name

02:08:36 #117 [Debug] >

02:08:36 #118 [Debug] >

02:08:36 #119 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:36 #120 [Debug] > #if !INTERACTIVE

02:08:36 #121 [Debug] > namespace Polyglot

02:08:36 #122 [Debug] > #endif

02:08:36 #123 [Debug] >

02:08:36 #124 [Debug] > module Crypto =

02:08:36 #125 [Debug] >

02:08:36 #126 [Debug] >     open Common

02:08:36 #127 [Debug] >

02:08:36 #128 [Debug] >     /// ## hashText

02:08:36 #129 [Debug] >

02:08:36 #130 [Debug] >     let hashText (input : string) =

02:08:36 #131 [Debug] >         use sha256 = System.Security.Cryptography.SHA256.Create ()

02:08:36 #132 [Debug] >         input

02:08:36 #133 [Debug] >         |> System.Text.Encoding.UTF8.GetBytes

02:08:36 #134 [Debug] >         |> sha256.ComputeHash

02:08:36 #135 [Debug] >         |> Array.map (fun b -> b.ToString "x2")

02:08:36 #136 [Debug] >         |> String.concat ""

02:08:36 #137 [Debug] >

02:08:36 #138 [Debug] >

02:08:36 #139 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:36 #140 [Debug] > #if !INTERACTIVE

02:08:36 #141 [Debug] > namespace Polyglot

02:08:36 #142 [Debug] > #endif

02:08:36 #143 [Debug] >

02:08:36 #144 [Debug] > module Async =

02:08:36 #145 [Debug] >

02:08:36 #146 [Debug] >     open Common

02:08:36 #147 [Debug] >

02:08:36 #148 [Debug] >     /// ## choice

02:08:36 #149 [Debug] >

02:08:36 #150 [Debug] >     let inline choice asyncs = async {

02:08:36 #151 [Debug] >         let e = Event<_> ()

02:08:36 #152 [Debug] >         use cts = new System.Threading.CancellationTokenSource ()

02:08:36 #153 [Debug] >         let fn =

02:08:36 #154 [Debug] >             asyncs

02:08:36 #155 [Debug] >             |> Seq.map (fun a -> async {

02:08:36 #156 [Debug] >                 let! x = a

02:08:36 #157 [Debug] >                 e.Trigger x

02:08:36 #158 [Debug] >             })

02:08:36 #159 [Debug] >             |> Async.Parallel

02:08:36 #160 [Debug] >             |> Async.Ignore

02:08:36 #161 [Debug] >         Async.Start (fn, cts.Token)

02:08:36 #162 [Debug] >         let! result = Async.AwaitEvent e.Publish

02:08:36 #163 [Debug] >         cts.Cancel ()

02:08:36 #164 [Debug] >         return result

02:08:36 #165 [Debug] >     }

02:08:36 #166 [Debug] >

02:08:36 #167 [Debug] >     /// ## map

02:08:36 #168 [Debug] >

02:08:36 #169 [Debug] >     let inline map fn a = async {

02:08:36 #170 [Debug] >         let! x = a

02:08:36 #171 [Debug] >         return fn x

02:08:36 #172 [Debug] >     }

02:08:36 #173 [Debug] >

02:08:36 #174 [Debug] >     /// ## catch

02:08:36 #175 [Debug] >

02:08:36 #176 [Debug] >     let inline catch a =

02:08:36 #177 [Debug] >         a

02:08:36 #178 [Debug] >         |> Async.Catch

02:08:36 #179 [Debug] >         ...

02:08:37 #180 [Debug] >

02:08:37 #181 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:37 #182 [Debug] > #if !INTERACTIVE

02:08:37 #183 [Debug] > namespace Polyglot

02:08:37 #184 [Debug] > #endif

02:08:37 #185 [Debug] >

02:08:37 #186 [Debug] > module AsyncSeq =

02:08:37 #187 [Debug] >

02:08:37 #188 [Debug] >     open Common

02:08:37 #189 [Debug] >

02:08:37 #190 [Debug] >     /// ## subscribeEvent

02:08:37 #191 [Debug] >

02:08:37 #192 [Debug] >     let inline subscribeEvent (event: IEvent<'H, 'A>) map =

02:08:37 #193 [Debug] >         let observable = System.Reactive.Linq.Observable.FromEventPattern<'H,

02:08:37 #194 [Debug] > 'A>(event.AddHandler, event.RemoveHandler)

02:08:37 #195 [Debug] >         System.Reactive.Linq.Observable.Select (observable, fun event -> map

02:08:37 #196 [Debug] > event.EventArgs)

02:08:37 #197 [Debug] >         |> FSharp.Control.AsyncSeq.ofObservableBuffered

02:08:37 #198 [Debug] >

02:08:37 #199 [Debug] >     let subscribeToken (token : System.Threading.CancellationToken) =

02:08:37 #200 [Debug] >         let tcs = new System.Threading.Tasks.TaskCompletionSource ()

02:08:37 #201 [Debug] >         System.Action tcs.SetResult |> token.Register |> ignore

02:08:37 #202 [Debug] >         let start = System.DateTime.Now.Ticks

02:08:37 #203 [Debug] >         FSharp.Control.AsyncSeq.unfoldAsync

02:08:37 #204 [Debug] >             (fun (...

02:08:37 #205 [Debug] >

02:08:37 #206 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:37 #207 [Debug] > #if !INTERACTIVE

02:08:37 #208 [Debug] > namespace Polyglot

02:08:37 #209 [Debug] > #endif

02:08:37 #210 [Debug] >

02:08:37 #211 [Debug] > module Networking =

02:08:37 #212 [Debug] >

02:08:37 #213 [Debug] >     open Common

02:08:37 #214 [Debug] >

02:08:37 #215 [Debug] >     /// ## testPortOpen

02:08:37 #216 [Debug] >

02:08:37 #217 [Debug] >     let inline testPortOpen port = async {

02:08:37 #218 [Debug] >         let! ct = Async.CancellationToken

02:08:37 #219 [Debug] >         use client = new System.Net.Sockets.TcpClient ()

02:08:37 #220 [Debug] >         try

02:08:37 #221 [Debug] >             do! client.ConnectAsync ("127.0.0.1", port, ct) |>

02:08:37 #222 [Debug] > Async.awaitValueTaskUnit

02:08:37 #223 [Debug] >             return true

02:08:37 #224 [Debug] >         with ex ->

02:08:37 #225 [Debug] >             trace Verbose (fun () -> $"testPortOpen / ex: {ex |>

02:08:37 #226 [Debug] > printException}") getLocals

02:08:37 #227 [Debug] >             return false

02:08:37 #228 [Debug] >     }

02:08:37 #229 [Debug] >

02:08:37 #230 [Debug] >     let inline testPortOpenTimeout timeout port = async {

02:08:37 #231 [Debug] >         let! result =

02:08:37 #232 [Debug] >             testPortOpen port

02:08:37 #233 [Debug] >             |> Async.runWithTimeoutAsync timeout

02:08:37 #234 [Debug] >         return

02:08:37 #235 [Debug] >             match result with

02:08:37 #236 [Debug] >             | None -> false

02:08:37 #237 [Debug] >  ...

02:08:38 #238 [Debug] >

02:08:38 #239 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:38 #240 [Debug] > #if !INTERACTIVE

02:08:38 #241 [Debug] > namespace Polyglot

02:08:38 #242 [Debug] > #endif

02:08:38 #243 [Debug] >

02:08:38 #244 [Debug] > module Runtime =

02:08:38 #245 [Debug] >

02:08:38 #246 [Debug] >     open Common

02:08:38 #247 [Debug] >

02:08:38 #248 [Debug] >     /// ## isWindows

02:08:38 #249 [Debug] >

02:08:38 #250 [Debug] >     let isWindows =

02:08:38 #251 [Debug] >         fun () ->

02:08:38 #252 [Debug] >             System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

02:08:38 #253 [Debug] >                 System.Runtime.InteropServices.OSPlatform.Windows

02:08:38 #254 [Debug] >         |> memoize

02:08:38 #255 [Debug] >

02:08:38 #256 [Debug] >     /// ## getExecutableSuffix

02:08:38 #257 [Debug] >

02:08:38 #258 [Debug] >     let inline getExecutableSuffix () =

02:08:38 #259 [Debug] >         if isWindows ()

02:08:38 #260 [Debug] >         then ".exe"

02:08:38 #261 [Debug] >         else ""

02:08:38 #262 [Debug] >

02:08:38 #263 [Debug] >     /// ## splitCommand

02:08:38 #264 [Debug] >

02:08:38 #265 [Debug] >     type private CommandParseStep =

02:08:38 #266 [Debug] >         | Start

02:08:38 #267 [Debug] >         | Path of quoted: bool

02:08:38 #268 [Debug] >         | Arguments

02:08:38 #269 [Debug] >

02:08:38 #270 [Debug] >     let splitCommand (command: string) =

02:08:38 #271 [Debug] >         let rec loop (path, args) chars step =

02:08:38 #272 [Debug] >             match chars, step with

02:08:38 #273 [Debug] >             | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...

02:08:39 #274 [Debug] >

02:08:39 #275 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:39 #276 [Debug] > #if !INTERACTIVE

02:08:39 #277 [Debug] > namespace Polyglot

02:08:39 #278 [Debug] > #endif

02:08:39 #279 [Debug] >

02:08:39 #280 [Debug] > module FileSystem =

02:08:39 #281 [Debug] >

02:08:39 #282 [Debug] >     open Common

02:08:39 #283 [Debug] >

02:08:39 #284 [Debug] >     /// ## Operators

02:08:39 #285 [Debug] >

02:08:39 #286 [Debug] >     module Operators =

02:08:39 #287 [Debug] >         let inline (</>) a b =

02:08:39 #288 [Debug] >             System.IO.Path.Combine (a, b)

02:08:39 #289 [Debug] >

02:08:39 #290 [Debug] >     open Operators

02:08:39 #291 [Debug] >

02:08:39 #292 [Debug] >     /// ## createTempDirectoryName

02:08:39 #293 [Debug] >

02:08:39 #294 [Debug] >     let inline createTempDirectoryName () =

02:08:39 #295 [Debug] >         let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name

02:08:39 #296 [Debug] >

02:08:39 #297 [Debug] >         System.IO.Path.GetTempPath ()

02:08:39 #298 [Debug] >         </> $"!{root}"

02:08:39 #299 [Debug] >         </> string (newGuidFromDateTime System.DateTime.Now)

02:08:39 #300 [Debug] >

02:08:39 #301 [Debug] >     /// ## createTempDirectory

02:08:39 #302 [Debug] >

02:08:39 #303 [Debug] >     let inline createTempDirectory () =

02:08:39 #304 [Debug] >         let tempFolder = createTempDirectoryName ()

02:08:39 #305 [Debug] >         let result = System.IO.Directory.CreateDirectory tempFolder

02:08:39 #306 [Debug] >

02:08:39 #307 [Debug] >         let getLocals () =

02:08:39 #308 [Debug] >             $"tempFolder:...

02:08:41 #309 [Debug] >

02:08:41 #310 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:41 #311 [Debug] > open Common

02:08:41 #312 [Debug] > open FileSystem.Operators

02:08:41 #313 [Debug] >

02:08:41 #314 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:08:41 #315 [Debug] > let tmpSpiralPath = Path.GetTempPath () </> "!dotnet-interactive-spiral"

02:08:41 #316 [Debug] > let linePlotsDataPath = tmpSpiralPath </> "line-plots-data"

02:08:41 #317 [Debug] > let linePlotsSvgPath = tmpSpiralPath </> "line-plots-svg"

02:08:41 #318 [Debug] >

02:08:41 #319 [Debug] > [[ tmpSpiralPath; linePlotsDataPath; linePlotsSvgPath ]]

02:08:41 #320 [Debug] > |> List.iter (fun dir -> if Directory.Exists dir |> not then

02:08:41 #321 [Debug] > Directory.CreateDirectory dir |> ignore)

02:08:41 #322 [Debug] >

02:08:41 #323 [Debug] > Formatter.Register<struct (string * string * string * struct (string * float

02:08:41 #324 [Debug] > array * float array) array)> (

02:08:41 #325 [Debug] >     (fun struct (caption, x_desc, y_desc, ys) ->

02:08:41 #326 [Debug] >         let json = (caption, x_desc, y_desc, ys) |> FSharp.Json.Json.serialize

02:08:41 #327 [Debug] >         async {

02:08:41 #328 [Debug] >             let hashHex = json |> Crypto.hashText

02:08:41 #329 [Debug] >             let svgPath = linePlotsSvgPath </> $"{hashHex}.svg"

02:08:41 #330 [Debug] >

02:08:41 #331 [Debug] >             if System.IO.File.Exi...

02:08:42 #332 [Debug] >

02:08:42 #333 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:42 #334 [Debug] > // // test

02:08:42 #335 [Debug] >

02:08:42 #336 [Debug] > open testing

02:08:43 #337 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4271-7108-7aafb860d3c2\main.spi

02:08:44 #338 [Debug] >

02:08:44 #339 [Debug] > ╭─[ 2.66s - stdout ]───────────────────────────────────────────────────────────╮

02:08:44 #340 [Debug] > │ ()                                                                           │

02:08:44 #341 [Debug] > │                                                                              │

02:08:44 #342 [Debug] > │                                                                              │

02:08:44 #343 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:44 #344 [Debug] >

02:08:44 #345 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:44 #346 [Debug] > inl (/@) x = listm'.(/@) x

02:08:44 #347 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4472-7216-714a4f0c275e\main.spi

02:08:44 #348 [Debug] >

02:08:44 #349 [Debug] > ╭─[ 201.73ms - stdout ]────────────────────────────────────────────────────────╮

02:08:44 #350 [Debug] > │ ()                                                                           │

02:08:44 #351 [Debug] > │                                                                              │

02:08:44 #352 [Debug] > │                                                                              │

02:08:44 #353 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:44 #354 [Debug] >

02:08:44 #355 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:44 #356 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:44 #357 [Debug] > │ ## init_series                                                               │

02:08:44 #358 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:44 #359 [Debug] >

02:08:44 #360 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:44 #361 [Debug] > // // test

02:08:44 #362 [Debug] >

02:08:44 #363 [Debug] > inl x : a _ f64 = am'.init_series -3 3 0.01

02:08:44 #364 [Debug] > inl y = x |> am.map math.square

02:08:44 #365 [Debug] > "square", "x", "y", ;[[ "square", x, y ]]

02:08:45 #366 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4492-9257-9e44c1ee9507\main.spi

02:08:45 #367 [Debug] >

02:08:45 #368 [Debug] > ╭─[ 389.73ms - return value ]──────────────────────────────────────────────────╮

02:08:45 #369 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:45 #370 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:45 #371 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:45 #372 [Debug] > │ stroke="none"/>                                                              │

02:08:45 #373 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:45 #374 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #375 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #376 [Debug] > │ square                                                                       │

02:08:45 #377 [Debug] > │ </text>                                                                      │

02:08:45 #378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:08:45 #379 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:45 #381 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:08:45 #383 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:08:45 #385 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:08:45 #387 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:08:45 #389 [Debug] > │ x2="103" y2="75"/>                                                           │

02:08:45 #390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:08:45 #391 [Debug] > │ x2="111" y2="75"/>                                                           │

02:08:45 #392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:45 #393 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:45 #394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:08:45 #395 [Debug] > │ x2="128" y2="75"/>                                                           │

02:08:45 #396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:08:45 #397 [Debug] > │ x2="136" y2="75"/>                                                           │

02:08:45 #398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:08:45 #399 [Debug] > │ x2="144" y2="75"/>                                                           │

02:08:45 #400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:08:45 #401 [Debug] > │ x2="153" y2="75"/>                                                           │

02:08:45 #402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:08:45 #403 [Debug] > │ x2="161" y2="75"/>                                                           │

02:08:45 #404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:45 #405 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:45 #406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:08:45 #407 [Debug] > │ x2="178" y2="75"/>                                                           │

02:08:45 #408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:08:45 #409 [Debug] > │ x2="186" y2="75"/>                                                           │

02:08:45 #410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:08:45 #411 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:45 #412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:08:45 #413 [Debug] > │ x2="203" y2="75"/>                                                           │

02:08:45 #414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:08:45 #415 [Debug] > │ x2="211" y2="75"/>                                                           │

02:08:45 #416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:45 #417 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:45 #418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:08:45 #419 [Debug] > │ x2="228" y2="75"/>                                                           │

02:08:45 #420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:08:45 #421 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:45 #422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:08:45 #423 [Debug] > │ x2="244" y2="75"/>                                                           │

02:08:45 #424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:08:45 #425 [Debug] > │ x2="252" y2="75"/>                                                           │

02:08:45 #426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:08:45 #427 [Debug] > │ x2="261" y2="75"/>                                                           │

02:08:45 #428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:45 #429 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:45 #430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:08:45 #431 [Debug] > │ x2="277" y2="75"/>                                                           │

02:08:45 #432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:08:45 #433 [Debug] > │ x2="286" y2="75"/>                                                           │

02:08:45 #434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:08:45 #435 [Debug] > │ x2="294" y2="75"/>                                                           │

02:08:45 #436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:08:45 #437 [Debug] > │ x2="302" y2="75"/>                                                           │

02:08:45 #438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:08:45 #439 [Debug] > │ x2="311" y2="75"/>                                                           │

02:08:45 #440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:45 #441 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:45 #442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:08:45 #443 [Debug] > │ x2="327" y2="75"/>                                                           │

02:08:45 #444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:08:45 #445 [Debug] > │ x2="336" y2="75"/>                                                           │

02:08:45 #446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:08:45 #447 [Debug] > │ x2="344" y2="75"/>                                                           │

02:08:45 #448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:08:45 #449 [Debug] > │ x2="352" y2="75"/>                                                           │

02:08:45 #450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:08:45 #451 [Debug] > │ x2="361" y2="75"/>                                                           │

02:08:45 #452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:45 #453 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:45 #454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:08:45 #455 [Debug] > │ x2="377" y2="75"/>                                                           │

02:08:45 #456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:08:45 #457 [Debug] > │ x2="386" y2="75"/>                                                           │

02:08:45 #458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:08:45 #459 [Debug] > │ x2="394" y2="75"/>                                                           │

02:08:45 #460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:08:45 #461 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:45 #462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:08:45 #463 [Debug] > │ x2="410" y2="75"/>                                                           │

02:08:45 #464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:45 #465 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:45 #466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:08:45 #467 [Debug] > │ x2="427" y2="75"/>                                                           │

02:08:45 #468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:08:45 #469 [Debug] > │ x2="435" y2="75"/>                                                           │

02:08:45 #470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:08:45 #471 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:45 #472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:08:45 #473 [Debug] > │ x2="452" y2="75"/>                                                           │

02:08:45 #474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:08:45 #475 [Debug] > │ x2="460" y2="75"/>                                                           │

02:08:45 #476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:45 #477 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:45 #478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:08:45 #479 [Debug] > │ x2="477" y2="75"/>                                                           │

02:08:45 #480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:08:45 #481 [Debug] > │ x2="485" y2="75"/>                                                           │

02:08:45 #482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:08:45 #483 [Debug] > │ x2="494" y2="75"/>                                                           │

02:08:45 #484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:08:45 #485 [Debug] > │ x2="502" y2="75"/>                                                           │

02:08:45 #486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:08:45 #487 [Debug] > │ x2="510" y2="75"/>                                                           │

02:08:45 #488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:45 #489 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:45 #490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:08:45 #491 [Debug] > │ x2="527" y2="75"/>                                                           │

02:08:45 #492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:08:45 #493 [Debug] > │ x2="535" y2="75"/>                                                           │

02:08:45 #494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:08:45 #495 [Debug] > │ x2="544" y2="75"/>                                                           │

02:08:45 #496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:08:45 #497 [Debug] > │ x2="552" y2="75"/>                                                           │

02:08:45 #498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:08:45 #499 [Debug] > │ x2="560" y2="75"/>                                                           │

02:08:45 #500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:45 #501 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:45 #502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:08:45 #503 [Debug] > │ x2="577" y2="75"/>                                                           │

02:08:45 #504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:45 #505 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:45 #506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="396"         │

02:08:45 #507 [Debug] > │ x2="584" y2="396"/>                                                          │

02:08:45 #508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="378"         │

02:08:45 #509 [Debug] > │ x2="584" y2="378"/>                                                          │

02:08:45 #510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="360"         │

02:08:45 #511 [Debug] > │ x2="584" y2="360"/>                                                          │

02:08:45 #512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="341"         │

02:08:45 #513 [Debug] > │ x2="584" y2="341"/>                                                          │

02:08:45 #514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="323"         │

02:08:45 #515 [Debug] > │ x2="584" y2="323"/>                                                          │

02:08:45 #516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:08:45 #517 [Debug] > │ x2="584" y2="305"/>                                                          │

02:08:45 #518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:08:45 #519 [Debug] > │ x2="584" y2="287"/>                                                          │

02:08:45 #520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:08:45 #521 [Debug] > │ x2="584" y2="268"/>                                                          │

02:08:45 #522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:08:45 #523 [Debug] > │ x2="584" y2="250"/>                                                          │

02:08:45 #524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:08:45 #525 [Debug] > │ x2="584" y2="232"/>                                                          │

02:08:45 #526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:08:45 #527 [Debug] > │ x2="584" y2="213"/>                                                          │

02:08:45 #528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:08:45 #529 [Debug] > │ x2="584" y2="195"/>                                                          │

02:08:45 #530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:08:45 #531 [Debug] > │ x2="584" y2="177"/>                                                          │

02:08:45 #532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:08:45 #533 [Debug] > │ x2="584" y2="159"/>                                                          │

02:08:45 #534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:08:45 #535 [Debug] > │ x2="584" y2="140"/>                                                          │

02:08:45 #536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="122"         │

02:08:45 #537 [Debug] > │ x2="584" y2="122"/>                                                          │

02:08:45 #538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:08:45 #539 [Debug] > │ x2="584" y2="104"/>                                                          │

02:08:45 #540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:45 #541 [Debug] > │ y2="85"/>                                                                    │

02:08:45 #542 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:45 #543 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #544 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #545 [Debug] > │ x                                                                            │

02:08:45 #546 [Debug] > │ </text>                                                                      │

02:08:45 #547 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:45 #548 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #549 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:45 #550 [Debug] > │ y                                                                            │

02:08:45 #551 [Debug] > │ </text>                                                                      │

02:08:45 #552 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:45 #553 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #554 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #555 [Debug] > │ x                                                                            │

02:08:45 #556 [Debug] > │ </text>                                                                      │

02:08:45 #557 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:45 #558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #559 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:45 #560 [Debug] > │ y                                                                            │

02:08:45 #561 [Debug] > │ </text>                                                                      │

02:08:45 #562 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:45 #563 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #564 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="111" y1="424"        │

02:08:45 #565 [Debug] > │ x2="111" y2="75"/>                                                           │

02:08:45 #566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="153" y1="424"        │

02:08:45 #567 [Debug] > │ x2="153" y2="75"/>                                                           │

02:08:45 #568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="194" y1="424"        │

02:08:45 #569 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:45 #570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:08:45 #571 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:45 #572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="277" y1="424"        │

02:08:45 #573 [Debug] > │ x2="277" y2="75"/>                                                           │

02:08:45 #574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:45 #575 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:45 #576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="361" y1="424"        │

02:08:45 #577 [Debug] > │ x2="361" y2="75"/>                                                           │

02:08:45 #578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:08:45 #579 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:45 #580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="444" y1="424"        │

02:08:45 #581 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:45 #582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:08:45 #583 [Debug] > │ x2="485" y2="75"/>                                                           │

02:08:45 #584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:08:45 #585 [Debug] > │ x2="527" y2="75"/>                                                           │

02:08:45 #586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:45 #587 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:45 #588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:45 #589 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:45 #590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="378"         │

02:08:45 #591 [Debug] > │ x2="584" y2="378"/>                                                          │

02:08:45 #592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="341"         │

02:08:45 #593 [Debug] > │ x2="584" y2="341"/>                                                          │

02:08:45 #594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="305"         │

02:08:45 #595 [Debug] > │ x2="584" y2="305"/>                                                          │

02:08:45 #596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="268"         │

02:08:45 #597 [Debug] > │ x2="584" y2="268"/>                                                          │

02:08:45 #598 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="232"         │

02:08:45 #599 [Debug] > │ x2="584" y2="232"/>                                                          │

02:08:45 #600 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="195"         │

02:08:45 #601 [Debug] > │ x2="584" y2="195"/>                                                          │

02:08:45 #602 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="159"         │

02:08:45 #603 [Debug] > │ x2="584" y2="159"/>                                                          │

02:08:45 #604 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="122"         │

02:08:45 #605 [Debug] > │ x2="584" y2="122"/>                                                          │

02:08:45 #606 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:45 #607 [Debug] > │ y2="85"/>                                                                    │

02:08:45 #608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #609 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:45 #610 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:45 #611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #612 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #613 [Debug] > │ -3.0                                                                         │

02:08:45 #614 [Debug] > │ </text>                                                                      │

02:08:45 #615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #616 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:45 #617 [Debug] > │ <text x="111" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #619 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #620 [Debug] > │ -2.5                                                                         │

02:08:45 #621 [Debug] > │ </text>                                                                      │

02:08:45 #622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #623 [Debug] > │ points="111,69 111,74 "/>                                                    │

02:08:45 #624 [Debug] > │ <text x="153" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #626 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #627 [Debug] > │ -2.0                                                                         │

02:08:45 #628 [Debug] > │ </text>                                                                      │

02:08:45 #629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #630 [Debug] > │ points="153,69 153,74 "/>                                                    │

02:08:45 #631 [Debug] > │ <text x="194" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #633 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #634 [Debug] > │ -1.5                                                                         │

02:08:45 #635 [Debug] > │ </text>                                                                      │

02:08:45 #636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #637 [Debug] > │ points="194,69 194,74 "/>                                                    │

02:08:45 #638 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #640 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #641 [Debug] > │ -1.0                                                                         │

02:08:45 #642 [Debug] > │ </text>                                                                      │

02:08:45 #643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #644 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:08:45 #645 [Debug] > │ <text x="277" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #647 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #648 [Debug] > │ -0.5                                                                         │

02:08:45 #649 [Debug] > │ </text>                                                                      │

02:08:45 #650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #651 [Debug] > │ points="277,69 277,74 "/>                                                    │

02:08:45 #652 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #654 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #655 [Debug] > │ 0.0                                                                          │

02:08:45 #656 [Debug] > │ </text>                                                                      │

02:08:45 #657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #658 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:45 #659 [Debug] > │ <text x="361" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #661 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #662 [Debug] > │ 0.5                                                                          │

02:08:45 #663 [Debug] > │ </text>                                                                      │

02:08:45 #664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #665 [Debug] > │ points="361,69 361,74 "/>                                                    │

02:08:45 #666 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #668 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #669 [Debug] > │ 1.0                                                                          │

02:08:45 #670 [Debug] > │ </text>                                                                      │

02:08:45 #671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #672 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:08:45 #673 [Debug] > │ <text x="444" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #675 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #676 [Debug] > │ 1.5                                                                          │

02:08:45 #677 [Debug] > │ </text>                                                                      │

02:08:45 #678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #679 [Debug] > │ points="444,69 444,74 "/>                                                    │

02:08:45 #680 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #682 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #683 [Debug] > │ 2.0                                                                          │

02:08:45 #684 [Debug] > │ </text>                                                                      │

02:08:45 #685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #686 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:08:45 #687 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #689 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #690 [Debug] > │ 2.5                                                                          │

02:08:45 #691 [Debug] > │ </text>                                                                      │

02:08:45 #692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #693 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:08:45 #694 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:45 #695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #696 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #697 [Debug] > │ 3.0                                                                          │

02:08:45 #698 [Debug] > │ </text>                                                                      │

02:08:45 #699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #700 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:45 #701 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #702 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:45 #703 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #704 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #705 [Debug] > │ 0.0                                                                          │

02:08:45 #706 [Debug] > │ </text>                                                                      │

02:08:45 #707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #708 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:45 #709 [Debug] > │ <text x="45" y="378" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #710 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #711 [Debug] > │ 1.0                                                                          │

02:08:45 #712 [Debug] > │ </text>                                                                      │

02:08:45 #713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #714 [Debug] > │ points="49,378 54,378 "/>                                                    │

02:08:45 #715 [Debug] > │ <text x="45" y="341" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #716 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #717 [Debug] > │ 2.0                                                                          │

02:08:45 #718 [Debug] > │ </text>                                                                      │

02:08:45 #719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #720 [Debug] > │ points="49,341 54,341 "/>                                                    │

02:08:45 #721 [Debug] > │ <text x="45" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #722 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #723 [Debug] > │ 3.0                                                                          │

02:08:45 #724 [Debug] > │ </text>                                                                      │

02:08:45 #725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #726 [Debug] > │ points="49,305 54,305 "/>                                                    │

02:08:45 #727 [Debug] > │ <text x="45" y="268" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #728 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #729 [Debug] > │ 4.0                                                                          │

02:08:45 #730 [Debug] > │ </text>                                                                      │

02:08:45 #731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #732 [Debug] > │ points="49,268 54,268 "/>                                                    │

02:08:45 #733 [Debug] > │ <text x="45" y="232" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #734 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #735 [Debug] > │ 5.0                                                                          │

02:08:45 #736 [Debug] > │ </text>                                                                      │

02:08:45 #737 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #738 [Debug] > │ points="49,232 54,232 "/>                                                    │

02:08:45 #739 [Debug] > │ <text x="45" y="195" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #740 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #741 [Debug] > │ 6.0                                                                          │

02:08:45 #742 [Debug] > │ </text>                                                                      │

02:08:45 #743 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #744 [Debug] > │ points="49,195 54,195 "/>                                                    │

02:08:45 #745 [Debug] > │ <text x="45" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #746 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #747 [Debug] > │ 7.0                                                                          │

02:08:45 #748 [Debug] > │ </text>                                                                      │

02:08:45 #749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #750 [Debug] > │ points="49,159 54,159 "/>                                                    │

02:08:45 #751 [Debug] > │ <text x="45" y="122" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:45 #752 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #753 [Debug] > │ 8.0                                                                          │

02:08:45 #754 [Debug] > │ </text>                                                                      │

02:08:45 #755 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #756 [Debug] > │ points="49,122 54,122 "/>                                                    │

02:08:45 #757 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:45 #758 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #759 [Debug] > │ 9.0                                                                          │

02:08:45 #760 [Debug] > │ </text>                                                                      │

02:08:45 #761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #762 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:08:45 #763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #764 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:45 #765 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:45 #766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #767 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #768 [Debug] > │ -3.0                                                                         │

02:08:45 #769 [Debug] > │ </text>                                                                      │

02:08:45 #770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #771 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:45 #772 [Debug] > │ <text x="111" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #774 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #775 [Debug] > │ -2.5                                                                         │

02:08:45 #776 [Debug] > │ </text>                                                                      │

02:08:45 #777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #778 [Debug] > │ points="111,425 111,430 "/>                                                  │

02:08:45 #779 [Debug] > │ <text x="153" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #781 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #782 [Debug] > │ -2.0                                                                         │

02:08:45 #783 [Debug] > │ </text>                                                                      │

02:08:45 #784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #785 [Debug] > │ points="153,425 153,430 "/>                                                  │

02:08:45 #786 [Debug] > │ <text x="194" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #788 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #789 [Debug] > │ -1.5                                                                         │

02:08:45 #790 [Debug] > │ </text>                                                                      │

02:08:45 #791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #792 [Debug] > │ points="194,425 194,430 "/>                                                  │

02:08:45 #793 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #795 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #796 [Debug] > │ -1.0                                                                         │

02:08:45 #797 [Debug] > │ </text>                                                                      │

02:08:45 #798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #799 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:08:45 #800 [Debug] > │ <text x="277" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #802 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #803 [Debug] > │ -0.5                                                                         │

02:08:45 #804 [Debug] > │ </text>                                                                      │

02:08:45 #805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #806 [Debug] > │ points="277,425 277,430 "/>                                                  │

02:08:45 #807 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #809 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #810 [Debug] > │ 0.0                                                                          │

02:08:45 #811 [Debug] > │ </text>                                                                      │

02:08:45 #812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #813 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:45 #814 [Debug] > │ <text x="361" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #816 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #817 [Debug] > │ 0.5                                                                          │

02:08:45 #818 [Debug] > │ </text>                                                                      │

02:08:45 #819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #820 [Debug] > │ points="361,425 361,430 "/>                                                  │

02:08:45 #821 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #823 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #824 [Debug] > │ 1.0                                                                          │

02:08:45 #825 [Debug] > │ </text>                                                                      │

02:08:45 #826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #827 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:08:45 #828 [Debug] > │ <text x="444" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #829 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #830 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #831 [Debug] > │ 1.5                                                                          │

02:08:45 #832 [Debug] > │ </text>                                                                      │

02:08:45 #833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #834 [Debug] > │ points="444,425 444,430 "/>                                                  │

02:08:45 #835 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #837 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #838 [Debug] > │ 2.0                                                                          │

02:08:45 #839 [Debug] > │ </text>                                                                      │

02:08:45 #840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #841 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:08:45 #842 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #843 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #844 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #845 [Debug] > │ 2.5                                                                          │

02:08:45 #846 [Debug] > │ </text>                                                                      │

02:08:45 #847 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #848 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:08:45 #849 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:45 #850 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #851 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #852 [Debug] > │ 3.0                                                                          │

02:08:45 #853 [Debug] > │ </text>                                                                      │

02:08:45 #854 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #855 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:45 #856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #857 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:45 #858 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:08:45 #859 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #860 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #861 [Debug] > │ 0.0                                                                          │

02:08:45 #862 [Debug] > │ </text>                                                                      │

02:08:45 #863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #864 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:45 #865 [Debug] > │ <text x="595" y="378" dy="0.5ex" text-anchor="start"                         │

02:08:45 #866 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #867 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #868 [Debug] > │ 1.0                                                                          │

02:08:45 #869 [Debug] > │ </text>                                                                      │

02:08:45 #870 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #871 [Debug] > │ points="585,378 590,378 "/>                                                  │

02:08:45 #872 [Debug] > │ <text x="595" y="341" dy="0.5ex" text-anchor="start"                         │

02:08:45 #873 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #874 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #875 [Debug] > │ 2.0                                                                          │

02:08:45 #876 [Debug] > │ </text>                                                                      │

02:08:45 #877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #878 [Debug] > │ points="585,341 590,341 "/>                                                  │

02:08:45 #879 [Debug] > │ <text x="595" y="305" dy="0.5ex" text-anchor="start"                         │

02:08:45 #880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #881 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #882 [Debug] > │ 3.0                                                                          │

02:08:45 #883 [Debug] > │ </text>                                                                      │

02:08:45 #884 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #885 [Debug] > │ points="585,305 590,305 "/>                                                  │

02:08:45 #886 [Debug] > │ <text x="595" y="268" dy="0.5ex" text-anchor="start"                         │

02:08:45 #887 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #888 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #889 [Debug] > │ 4.0                                                                          │

02:08:45 #890 [Debug] > │ </text>                                                                      │

02:08:45 #891 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #892 [Debug] > │ points="585,268 590,268 "/>                                                  │

02:08:45 #893 [Debug] > │ <text x="595" y="232" dy="0.5ex" text-anchor="start"                         │

02:08:45 #894 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #895 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #896 [Debug] > │ 5.0                                                                          │

02:08:45 #897 [Debug] > │ </text>                                                                      │

02:08:45 #898 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #899 [Debug] > │ points="585,232 590,232 "/>                                                  │

02:08:45 #900 [Debug] > │ <text x="595" y="195" dy="0.5ex" text-anchor="start"                         │

02:08:45 #901 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #902 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #903 [Debug] > │ 6.0                                                                          │

02:08:45 #904 [Debug] > │ </text>                                                                      │

02:08:45 #905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #906 [Debug] > │ points="585,195 590,195 "/>                                                  │

02:08:45 #907 [Debug] > │ <text x="595" y="159" dy="0.5ex" text-anchor="start"                         │

02:08:45 #908 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #909 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #910 [Debug] > │ 7.0                                                                          │

02:08:45 #911 [Debug] > │ </text>                                                                      │

02:08:45 #912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #913 [Debug] > │ points="585,159 590,159 "/>                                                  │

02:08:45 #914 [Debug] > │ <text x="595" y="122" dy="0.5ex" text-anchor="start"                         │

02:08:45 #915 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #916 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #917 [Debug] > │ 8.0                                                                          │

02:08:45 #918 [Debug] > │ </text>                                                                      │

02:08:45 #919 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #920 [Debug] > │ points="585,122 590,122 "/>                                                  │

02:08:45 #921 [Debug] > │ <text x="595" y="85" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:08:45 #922 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:45 #923 [Debug] > │ 9.0                                                                          │

02:08:45 #924 [Debug] > │ </text>                                                                      │

02:08:45 #925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #926 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:08:45 #927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:45 #928 [Debug] > │ points="69,85 70,88 71,90 72,92 73,94 74,96 74,98 75,101 76,103 77,105       │

02:08:45 #929 [Debug] > │ 78,107 79,109 79,111 80,113 81,115 82,117 83,120 84,122 84,124 85,126 86,128 │

02:08:45 #930 [Debug] > │ 87,130 88,132 89,134 89,136 90,138 91,140 92,142 93,144 94,146 94,148 95,150 │

02:08:45 #931 [Debug] > │ 96,152 97,154 98,156 99,158 99,160 100,162 101,164 102,165 103,167 104,169   │

02:08:45 #932 [Debug] > │ 104,171 105,173 106,175 107,177 108,179 109,180 109,182 110,184 111,186      │

02:08:45 #933 [Debug] > │ 112,188 113,190 114,191 114,193 115,195 116,197 117,199 118,200 119,202      │

02:08:45 #934 [Debug] > │ 119,204 120,206 121,207 122,209 123,211 124,213 124,214 125,216 126,218      │

02:08:45 #935 [Debug] > │ 127,219 128,221 129,223 129,224 130,226 131,228 132,229 133,231 134,233      │

02:08:45 #936 [Debug] > │ 134,234 135,236 136,238 137,239 138,241 139,242 139,244 140,246 141,247      │

02:08:45 #937 [Debug] > │ 142,249 143,250 143,252 144,253 145,255 146,256 147,258 148,259 148,261      │

02:08:45 #938 [Debug] > │ 149,262 150,264 151,265 152,267 153,268 153,270 154,271 155,273 156,274      │

02:08:45 #939 [Debug] > │ 157,276 158,277 158,278 159,280 160,281 161,283 162,284 163,285 163,287      │

02:08:45 #940 [Debug] > │ 164,288 165,289 166,291 167,292 168,293 168,295 169,296 170,297 171,299      │

02:08:45 #941 [Debug] > │ 172,300 173,301 173,303 174,304 175,305 176,306 177,308 178,309 178,310      │

02:08:45 #942 [Debug] > │ 179,311 180,313 181,314 182,315 183,316 183,317 184,319 185,320 186,321      │

02:08:45 #943 [Debug] > │ 187,322 188,323 188,324 189,326 190,327 191,328 192,329 193,330 193,331      │

02:08:45 #944 [Debug] > │ 194,332 195,333 196,334 197,336 198,337 198,338 199,339 200,340 201,341      │

02:08:45 #945 [Debug] > │ 202,342 203,343 203,344 204,345 205,346 206,347 207,348 208,349 208,350      │

02:08:45 #946 [Debug] > │ 209,351 210,352 211,353 212,354 213,355 213,356 214,357 215,357 216,358      │

02:08:45 #947 [Debug] > │ 217,359 218,360 218,361 219,362 220,363 221,364 222,365 223,365 223,366      │

02:08:45 #948 [Debug] > │ 224,367 225,368 226,369 227,370 228,370 228,371 229,372 230,373 231,374      │

02:08:45 #949 [Debug] > │ 232,374 232,375 233,376 234,377 235,377 236,378 237,379 237,379 238,380      │

02:08:45 #950 [Debug] > │ 239,381 240,382 241,382 242,383 242,384 243,384 244,385 245,386 246,386      │

02:08:45 #951 [Debug] > │ 247,387 247,388 248,388 249,389 250,389 251,390 252,391 252,391 253,392      │

02:08:45 #952 [Debug] > │ 254,392 255,393 256,393 257,394 257,395 258,395 259,396 260,396 261,397      │

02:08:45 #953 [Debug] > │ 262,397 262,398 263,398 264,399 265,399 266,400 267,400 267,401 268,401      │

02:08:45 #954 [Debug] > │ 269,401 270,402 271,402 272,403 272,403 273,404 274,404 275,404 276,405      │

02:08:45 #955 [Debug] > │ 277,405 277,405 278,406 279,406 280,407 281,407 282,407 282,408 283,408      │

02:08:45 #956 [Debug] > │ 284,408 285,408 286,409 287,409 287,409 288,410 289,410 290,410 291,410      │

02:08:45 #957 [Debug] > │ 292,411 292,411 293,411 294,411 295,412 296,412 297,412 297,412 298,412      │

02:08:45 #958 [Debug] > │ 299,413 300,413 301,413 302,413 302,413 303,413 304,413 305,414 306,414      │

02:08:45 #959 [Debug] > │ 307,414 307,414 308,414 309,414 310,414 311,414 312,414 312,414 313,414      │

02:08:45 #960 [Debug] > │ 314,414 315,415 316,415 317,415 317,415 318,415 319,415 320,415 321,415      │

02:08:45 #961 [Debug] > │ 321,415 322,415 323,415 324,414 325,414 326,414 326,414 327,414 328,414      │

02:08:45 #962 [Debug] > │ 329,414 330,414 331,414 331,414 332,414 333,414 334,413 335,413 336,413      │

02:08:45 #963 [Debug] > │ 336,413 337,413 338,413 339,413 340,412 341,412 341,412 342,412 343,412      │

02:08:45 #964 [Debug] > │ 344,411 345,411 346,411 346,411 347,410 348,410 349,410 350,410 351,409      │

02:08:45 #965 [Debug] > │ 351,409 352,409 353,408 354,408 355,408 356,408 356,407 357,407 358,407      │

02:08:45 #966 [Debug] > │ 359,406 360,406 361,405 361,405 362,405 363,404 364,404 365,404 366,403      │

02:08:45 #967 [Debug] > │ 366,403 367,402 368,402 369,401 370,401 371,401 371,400 372,400 373,399      │

02:08:45 #968 [Debug] > │ 374,399 375,398 376,398 376,397 377,397 378,396 379,396 380,395 381,395      │

02:08:45 #969 [Debug] > │ 381,394 382,393 383,393 384,392 385,392 386,391 386,391 387,390 388,389      │

02:08:45 #970 [Debug] > │ 389,389 390,388 391,388 391,387 392,386 393,386 394,385 395,384 396,384      │

02:08:45 #971 [Debug] > │ 396,383 397,382 398,382 399,381 400,380 401,379 401,379 402,378 403,377      │

02:08:45 #972 [Debug] > │ 404,377 405,376 406,375 406,374 407,374 408,373 409,372 410,371 410,370      │

02:08:45 #973 [Debug] > │ 411,370 412,369 413,368 414,367 415,366 415,365 416,365 417,364 418,363      │

02:08:45 #974 [Debug] > │ 419,362 420,361 420,360 421,359 422,358 423,357 424,357 425,356 425,355      │

02:08:45 #975 [Debug] > │ 426,354 427,353 428,352 429,351 430,350 430,349 431,348 432,347 433,346      │

02:08:45 #976 [Debug] > │ 434,345 435,344 435,343 436,342 437,341 438,340 439,339 440,338 440,337      │

02:08:45 #977 [Debug] > │ 441,336 442,334 443,333 444,332 445,331 445,330 446,329 447,328 448,327      │

02:08:45 #978 [Debug] > │ 449,326 450,324 450,323 451,322 452,321 453,320 454,319 455,317 455,316      │

02:08:45 #979 [Debug] > │ 456,315 457,314 458,313 459,311 460,310 460,309 461,308 462,306 463,305      │

02:08:45 #980 [Debug] > │ 464,304 465,303 465,301 466,300 467,299 468,297 469,296 470,295 470,293      │

02:08:45 #981 [Debug] > │ 471,292 472,291 473,289 474,288 475,287 475,285 476,284 477,283 478,281      │

02:08:45 #982 [Debug] > │ 479,280 480,278 480,277 481,276 482,274 483,273 484,271 485,270 485,268      │

02:08:45 #983 [Debug] > │ 486,267 487,265 488,264 489,262 490,261 490,259 491,258 492,256 493,255      │

02:08:45 #984 [Debug] > │ 494,253 495,252 495,250 496,249 497,247 498,246 499,244 499,242 500,241      │

02:08:45 #985 [Debug] > │ 501,239 502,238 503,236 504,234 504,233 505,231 506,229 507,228 508,226      │

02:08:45 #986 [Debug] > │ 509,224 509,223 510,221 511,219 512,218 513,216 514,214 514,213 515,211      │

02:08:45 #987 [Debug] > │ 516,209 517,207 518,206 519,204 519,202 520,200 521,199 522,197 523,195      │

02:08:45 #988 [Debug] > │ 524,193 524,191 525,190 526,188 527,186 528,184 529,182 529,180 530,179      │

02:08:45 #989 [Debug] > │ 531,177 532,175 533,173 534,171 534,169 535,167 536,165 537,164 538,162      │

02:08:45 #990 [Debug] > │ 539,160 539,158 540,156 541,154 542,152 543,150 544,148 544,146 545,144      │

02:08:45 #991 [Debug] > │ 546,142 547,140 548,138 549,136 549,134 550,132 551,130 552,128 553,126      │

02:08:45 #992 [Debug] > │ 554,124 554,122 555,120 556,117 557,115 558,113 559,111 559,109 560,107      │

02:08:45 #993 [Debug] > │ 561,105 562,103 563,101 564,98 564,96 565,94 566,92 567,90 568,88 569,85 "/> │

02:08:45 #994 [Debug] > │ <rect x="497" y="235" width="83" height="30" opacity="1" fill="none"         │

02:08:45 #995 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:45 #996 [Debug] > │ <text x="537" y="245" dy="0.76em" text-anchor="start"                        │

02:08:45 #997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #998 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #999 [Debug] > │ square                                                                       │

02:08:45 #1000 [Debug] > │ </text>                                                                      │

02:08:45 #1001 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:45 #1002 [Debug] > │ points="507,250 527,250 "/>                                                  │

02:08:45 #1003 [Debug] > │ </svg>                                                                       │

02:08:45 #1004 [Debug] > │                                                                              │

02:08:45 #1005 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:45 #1006 [Debug] >

02:08:45 #1007 [Debug] > ╭─[ 724.02ms - stdout ]────────────────────────────────────────────────────────╮

02:08:45 #1008 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:45 #1009 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:45 #1010 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:45 #1011 [Debug] > │     let v2 : bool = v1 < 601                                                 │

02:08:45 #1012 [Debug] > │     v2                                                                       │

02:08:45 #1013 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:45 #1014 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:45 #1015 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:45 #1016 [Debug] > │     v3                                                                       │

02:08:45 #1017 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:45 #1018 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:45 #1019 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (601)                      │

02:08:45 #1020 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:45 #1021 [Debug] > │     while method1(v1) do                                                     │

02:08:45 #1022 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:45 #1023 [Debug] > │         let v4 : float = float v3                                            │

02:08:45 #1024 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:08:45 #1025 [Debug] > │         let v6 : float = -3.0 + v5                                           │

02:08:45 #1026 [Debug] > │         v0.[int v3] <- v6                                                    │

02:08:45 #1027 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:08:45 #1028 [Debug] > │         v1.l0 <- v7                                                          │

02:08:45 #1029 [Debug] > │         ()                                                                   │

02:08:45 #1030 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:08:45 #1031 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:08:45 #1032 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:08:45 #1033 [Debug] > │     while method2(v8, v10) do                                                │

02:08:45 #1034 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:08:45 #1035 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:08:45 #1036 [Debug] > │         let v14 : float = v13 ** 2.0                                         │

02:08:45 #1037 [Debug] > │         v9.[int v12] <- v14                                                  │

02:08:45 #1038 [Debug] > │         let v15 : int32 = v12 + 1                                            │

02:08:45 #1039 [Debug] > │         v10.l0 <- v15                                                        │

02:08:45 #1040 [Debug] > │         ()                                                                   │

02:08:45 #1041 [Debug] > │     let v16 : string = "square"                                              │

02:08:45 #1042 [Debug] > │     let v17 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:45 #1043 [Debug] > │ (v16, v0, v9)|]                                                              │

02:08:45 #1044 [Debug] > │     let v18 : string = "x"                                                   │

02:08:45 #1045 [Debug] > │     let v19 : string = "y"                                                   │

02:08:45 #1046 [Debug] > │     struct (v16, v18, v19, v17)                                              │

02:08:45 #1047 [Debug] > │ method0()                                                                    │

02:08:45 #1048 [Debug] > │                                                                              │

02:08:45 #1049 [Debug] > │                                                                              │

02:08:45 #1050 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:45 #1051 [Debug] >

02:08:45 #1052 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:45 #1053 [Debug] > // // test

02:08:45 #1054 [Debug] >

02:08:45 #1055 [Debug] > inl x : a _ f64 = am'.init_series -10 10 0.1

02:08:45 #1056 [Debug] > inl y_sin = x |> am.map sin

02:08:45 #1057 [Debug] > inl y_cos = x |> am.map cos

02:08:45 #1058 [Debug] > "sin cos", "x", "y", ;[[ "sin", x, y_sin; "cos", x, y_cos ]]

02:08:45 #1059 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4567-6721-6af0a88258e2\main.spi

02:08:45 #1060 [Debug] >

02:08:45 #1061 [Debug] > ╭─[ 234.58ms - return value ]──────────────────────────────────────────────────╮

02:08:45 #1062 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:45 #1063 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:45 #1064 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:45 #1065 [Debug] > │ stroke="none"/>                                                              │

02:08:45 #1066 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:45 #1067 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #1068 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #1069 [Debug] > │ sin cos                                                                      │

02:08:45 #1070 [Debug] > │ </text>                                                                      │

02:08:45 #1071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="57" y1="424" x2="57" │

02:08:45 #1072 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #1073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:45 #1074 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #1075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="82" y1="424" x2="82" │

02:08:45 #1076 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #1077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:08:45 #1078 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #1079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:08:45 #1080 [Debug] > │ x2="107" y2="75"/>                                                           │

02:08:45 #1081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:45 #1082 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:45 #1083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="132" y1="424"        │

02:08:45 #1084 [Debug] > │ x2="132" y2="75"/>                                                           │

02:08:45 #1085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:08:45 #1086 [Debug] > │ x2="144" y2="75"/>                                                           │

02:08:45 #1087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="157" y1="424"        │

02:08:45 #1088 [Debug] > │ x2="157" y2="75"/>                                                           │

02:08:45 #1089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:45 #1090 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:45 #1091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="182" y1="424"        │

02:08:45 #1092 [Debug] > │ x2="182" y2="75"/>                                                           │

02:08:45 #1093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:08:45 #1094 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:45 #1095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:08:45 #1096 [Debug] > │ x2="207" y2="75"/>                                                           │

02:08:45 #1097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:45 #1098 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:45 #1099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="232" y1="424"        │

02:08:45 #1100 [Debug] > │ x2="232" y2="75"/>                                                           │

02:08:45 #1101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:08:45 #1102 [Debug] > │ x2="244" y2="75"/>                                                           │

02:08:45 #1103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="257" y1="424"        │

02:08:45 #1104 [Debug] > │ x2="257" y2="75"/>                                                           │

02:08:45 #1105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:45 #1106 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:45 #1107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:08:45 #1108 [Debug] > │ x2="282" y2="75"/>                                                           │

02:08:45 #1109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:08:45 #1110 [Debug] > │ x2="294" y2="75"/>                                                           │

02:08:45 #1111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:08:45 #1112 [Debug] > │ x2="307" y2="75"/>                                                           │

02:08:45 #1113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:45 #1114 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:45 #1115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:08:45 #1116 [Debug] > │ x2="331" y2="75"/>                                                           │

02:08:45 #1117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:08:45 #1118 [Debug] > │ x2="344" y2="75"/>                                                           │

02:08:45 #1119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="356" y1="424"        │

02:08:45 #1120 [Debug] > │ x2="356" y2="75"/>                                                           │

02:08:45 #1121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:45 #1122 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:45 #1123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:08:45 #1124 [Debug] > │ x2="381" y2="75"/>                                                           │

02:08:45 #1125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:08:45 #1126 [Debug] > │ x2="394" y2="75"/>                                                           │

02:08:45 #1127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:08:45 #1128 [Debug] > │ x2="406" y2="75"/>                                                           │

02:08:45 #1129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:45 #1130 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:45 #1131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="431" y1="424"        │

02:08:45 #1132 [Debug] > │ x2="431" y2="75"/>                                                           │

02:08:45 #1133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:08:45 #1134 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:45 #1135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:08:45 #1136 [Debug] > │ x2="456" y2="75"/>                                                           │

02:08:45 #1137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:45 #1138 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:45 #1139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:08:45 #1140 [Debug] > │ x2="481" y2="75"/>                                                           │

02:08:45 #1141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:08:45 #1142 [Debug] > │ x2="494" y2="75"/>                                                           │

02:08:45 #1143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:08:45 #1144 [Debug] > │ x2="506" y2="75"/>                                                           │

02:08:45 #1145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:45 #1146 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:45 #1147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:08:45 #1148 [Debug] > │ x2="531" y2="75"/>                                                           │

02:08:45 #1149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:08:45 #1150 [Debug] > │ x2="544" y2="75"/>                                                           │

02:08:45 #1151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="556" y1="424"        │

02:08:45 #1152 [Debug] > │ x2="556" y2="75"/>                                                           │

02:08:45 #1153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:45 #1154 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:45 #1155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="581" y1="424"        │

02:08:45 #1156 [Debug] > │ x2="581" y2="75"/>                                                           │

02:08:45 #1157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:45 #1158 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:45 #1159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:08:45 #1160 [Debug] > │ x2="584" y2="398"/>                                                          │

02:08:45 #1161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:08:45 #1162 [Debug] > │ x2="584" y2="382"/>                                                          │

02:08:45 #1163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:08:45 #1164 [Debug] > │ x2="584" y2="365"/>                                                          │

02:08:45 #1165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:08:45 #1166 [Debug] > │ x2="584" y2="349"/>                                                          │

02:08:45 #1167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:08:45 #1168 [Debug] > │ x2="584" y2="332"/>                                                          │

02:08:45 #1169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:08:45 #1170 [Debug] > │ x2="584" y2="316"/>                                                          │

02:08:45 #1171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:08:45 #1172 [Debug] > │ x2="584" y2="299"/>                                                          │

02:08:45 #1173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:08:45 #1174 [Debug] > │ x2="584" y2="283"/>                                                          │

02:08:45 #1175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:08:45 #1176 [Debug] > │ x2="584" y2="266"/>                                                          │

02:08:45 #1177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:08:45 #1178 [Debug] > │ x2="584" y2="250"/>                                                          │

02:08:45 #1179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:08:45 #1180 [Debug] > │ x2="584" y2="234"/>                                                          │

02:08:45 #1181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:08:45 #1182 [Debug] > │ x2="584" y2="217"/>                                                          │

02:08:45 #1183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:08:45 #1184 [Debug] > │ x2="584" y2="201"/>                                                          │

02:08:45 #1185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:08:45 #1186 [Debug] > │ x2="584" y2="184"/>                                                          │

02:08:45 #1187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:08:45 #1188 [Debug] > │ x2="584" y2="168"/>                                                          │

02:08:45 #1189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:08:45 #1190 [Debug] > │ x2="584" y2="151"/>                                                          │

02:08:45 #1191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:08:45 #1192 [Debug] > │ x2="584" y2="135"/>                                                          │

02:08:45 #1193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:08:45 #1194 [Debug] > │ x2="584" y2="118"/>                                                          │

02:08:45 #1195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:08:45 #1196 [Debug] > │ x2="584" y2="102"/>                                                          │

02:08:45 #1197 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:45 #1198 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #1199 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #1200 [Debug] > │ x                                                                            │

02:08:45 #1201 [Debug] > │ </text>                                                                      │

02:08:45 #1202 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:45 #1203 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #1204 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:45 #1205 [Debug] > │ y                                                                            │

02:08:45 #1206 [Debug] > │ </text>                                                                      │

02:08:45 #1207 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:45 #1208 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #1209 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #1210 [Debug] > │ x                                                                            │

02:08:45 #1211 [Debug] > │ </text>                                                                      │

02:08:45 #1212 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:45 #1213 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #1214 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:45 #1215 [Debug] > │ y                                                                            │

02:08:45 #1216 [Debug] > │ </text>                                                                      │

02:08:45 #1217 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:45 #1218 [Debug] > │ y2="75"/>                                                                    │

02:08:45 #1219 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:08:45 #1220 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:45 #1221 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:45 #1222 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:45 #1223 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:08:45 #1224 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:45 #1225 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:45 #1226 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:45 #1227 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:45 #1228 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:45 #1229 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:45 #1230 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:45 #1231 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:08:45 #1232 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:45 #1233 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:45 #1234 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:45 #1235 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:08:45 #1236 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:45 #1237 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:45 #1238 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:45 #1239 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:45 #1240 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:45 #1241 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:08:45 #1242 [Debug] > │ x2="584" y2="332"/>                                                          │

02:08:45 #1243 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:08:45 #1244 [Debug] > │ x2="584" y2="250"/>                                                          │

02:08:45 #1245 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="168"         │

02:08:45 #1246 [Debug] > │ x2="584" y2="168"/>                                                          │

02:08:45 #1247 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:45 #1248 [Debug] > │ y2="85"/>                                                                    │

02:08:45 #1249 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:45 #1250 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:45 #1251 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:45 #1252 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:45 #1253 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:45 #1254 [Debug] > │ -10.0                                                                        │

02:08:46 #1255 [Debug] > │ </text>                                                                      │

02:08:46 #1256 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1257 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:46 #1258 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1259 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1260 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1261 [Debug] > │ -8.0                                                                         │

02:08:46 #1262 [Debug] > │ </text>                                                                      │

02:08:46 #1263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1264 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:08:46 #1265 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1267 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1268 [Debug] > │ -6.0                                                                         │

02:08:46 #1269 [Debug] > │ </text>                                                                      │

02:08:46 #1270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1271 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:46 #1272 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1274 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1275 [Debug] > │ -4.0                                                                         │

02:08:46 #1276 [Debug] > │ </text>                                                                      │

02:08:46 #1277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1278 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:08:46 #1279 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1280 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1281 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1282 [Debug] > │ -2.0                                                                         │

02:08:46 #1283 [Debug] > │ </text>                                                                      │

02:08:46 #1284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1285 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:46 #1286 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1287 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1288 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1289 [Debug] > │ 0.0                                                                          │

02:08:46 #1290 [Debug] > │ </text>                                                                      │

02:08:46 #1291 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1292 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:46 #1293 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1294 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1295 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1296 [Debug] > │ 2.0                                                                          │

02:08:46 #1297 [Debug] > │ </text>                                                                      │

02:08:46 #1298 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1299 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:46 #1300 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1301 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1302 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1303 [Debug] > │ 4.0                                                                          │

02:08:46 #1304 [Debug] > │ </text>                                                                      │

02:08:46 #1305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1306 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:08:46 #1307 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1308 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1309 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1310 [Debug] > │ 6.0                                                                          │

02:08:46 #1311 [Debug] > │ </text>                                                                      │

02:08:46 #1312 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1313 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:46 #1314 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1316 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1317 [Debug] > │ 8.0                                                                          │

02:08:46 #1318 [Debug] > │ </text>                                                                      │

02:08:46 #1319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1320 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:08:46 #1321 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1323 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1324 [Debug] > │ 10.0                                                                         │

02:08:46 #1325 [Debug] > │ </text>                                                                      │

02:08:46 #1326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1327 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:46 #1328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1329 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:46 #1330 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1331 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1332 [Debug] > │ -1.0                                                                         │

02:08:46 #1333 [Debug] > │ </text>                                                                      │

02:08:46 #1334 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1335 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:46 #1336 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1337 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1338 [Debug] > │ -0.5                                                                         │

02:08:46 #1339 [Debug] > │ </text>                                                                      │

02:08:46 #1340 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1341 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:08:46 #1342 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1343 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1344 [Debug] > │ 0.0                                                                          │

02:08:46 #1345 [Debug] > │ </text>                                                                      │

02:08:46 #1346 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1347 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:08:46 #1348 [Debug] > │ <text x="45" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1349 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1350 [Debug] > │ 0.5                                                                          │

02:08:46 #1351 [Debug] > │ </text>                                                                      │

02:08:46 #1352 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1353 [Debug] > │ points="49,168 54,168 "/>                                                    │

02:08:46 #1354 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:46 #1355 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1356 [Debug] > │ 1.0                                                                          │

02:08:46 #1357 [Debug] > │ </text>                                                                      │

02:08:46 #1358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1359 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:08:46 #1360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1361 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:46 #1362 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:46 #1363 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1364 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1365 [Debug] > │ -10.0                                                                        │

02:08:46 #1366 [Debug] > │ </text>                                                                      │

02:08:46 #1367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1368 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:46 #1369 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1371 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1372 [Debug] > │ -8.0                                                                         │

02:08:46 #1373 [Debug] > │ </text>                                                                      │

02:08:46 #1374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1375 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:08:46 #1376 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1378 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1379 [Debug] > │ -6.0                                                                         │

02:08:46 #1380 [Debug] > │ </text>                                                                      │

02:08:46 #1381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1382 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:46 #1383 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1384 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1385 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1386 [Debug] > │ -4.0                                                                         │

02:08:46 #1387 [Debug] > │ </text>                                                                      │

02:08:46 #1388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1389 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:08:46 #1390 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1392 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1393 [Debug] > │ -2.0                                                                         │

02:08:46 #1394 [Debug] > │ </text>                                                                      │

02:08:46 #1395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1396 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:46 #1397 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1399 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1400 [Debug] > │ 0.0                                                                          │

02:08:46 #1401 [Debug] > │ </text>                                                                      │

02:08:46 #1402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1403 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:46 #1404 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1406 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1407 [Debug] > │ 2.0                                                                          │

02:08:46 #1408 [Debug] > │ </text>                                                                      │

02:08:46 #1409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1410 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:46 #1411 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1413 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1414 [Debug] > │ 4.0                                                                          │

02:08:46 #1415 [Debug] > │ </text>                                                                      │

02:08:46 #1416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1417 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:08:46 #1418 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1420 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1421 [Debug] > │ 6.0                                                                          │

02:08:46 #1422 [Debug] > │ </text>                                                                      │

02:08:46 #1423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1424 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:46 #1425 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1427 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1428 [Debug] > │ 8.0                                                                          │

02:08:46 #1429 [Debug] > │ </text>                                                                      │

02:08:46 #1430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1431 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:08:46 #1432 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1434 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1435 [Debug] > │ 10.0                                                                         │

02:08:46 #1436 [Debug] > │ </text>                                                                      │

02:08:46 #1437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1438 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:46 #1439 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1440 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:46 #1441 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:08:46 #1442 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1443 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1444 [Debug] > │ -1.0                                                                         │

02:08:46 #1445 [Debug] > │ </text>                                                                      │

02:08:46 #1446 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1447 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:46 #1448 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:08:46 #1449 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1450 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1451 [Debug] > │ -0.5                                                                         │

02:08:46 #1452 [Debug] > │ </text>                                                                      │

02:08:46 #1453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1454 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:08:46 #1455 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #1456 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1457 [Debug] > │ 0.0                                                                          │

02:08:46 #1458 [Debug] > │ </text>                                                                      │

02:08:46 #1459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1460 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:08:46 #1461 [Debug] > │ <text x="617" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #1462 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1463 [Debug] > │ 0.5                                                                          │

02:08:46 #1464 [Debug] > │ </text>                                                                      │

02:08:46 #1465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1466 [Debug] > │ points="585,168 590,168 "/>                                                  │

02:08:46 #1467 [Debug] > │ <text x="617" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1468 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1469 [Debug] > │ 1.0                                                                          │

02:08:46 #1470 [Debug] > │ </text>                                                                      │

02:08:46 #1471 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1472 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:08:46 #1473 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:46 #1474 [Debug] > │ points="69,160 72,175 74,190 77,205 79,221 82,238 84,254 87,270 89,287       │

02:08:46 #1475 [Debug] > │ 92,303 94,318 97,332 99,346 102,359 104,371 107,381 109,391 112,399 114,405  │

02:08:46 #1476 [Debug] > │ 117,410 119,413 122,414 124,414 127,413 129,409 132,404 134,398 137,390      │

02:08:46 #1477 [Debug] > │ 139,381 142,370 144,358 147,345 149,331 152,317 154,301 157,285 159,269      │

02:08:46 #1478 [Debug] > │ 162,253 164,236 167,220 169,204 172,188 174,174 177,159 179,146 182,134      │

02:08:46 #1479 [Debug] > │ 184,123 187,113 189,105 192,98 194,92 197,88 199,86 202,85 204,86 207,89     │

02:08:46 #1480 [Debug] > │ 209,93 212,99 214,107 217,115 219,125 222,137 224,149 227,163 229,177        │

02:08:46 #1481 [Debug] > │ 232,192 234,208 237,224 239,240 242,257 244,273 247,289 249,305 252,320      │

02:08:46 #1482 [Debug] > │ 254,335 257,349 259,361 262,373 264,383 267,392 269,400 272,406 274,410      │

02:08:46 #1483 [Debug] > │ 277,413 279,415 282,414 284,412 287,409 289,403 292,397 294,389 297,379      │

02:08:46 #1484 [Debug] > │ 299,368 302,356 304,343 307,329 309,314 312,299 314,283 317,266 319,250      │

02:08:46 #1485 [Debug] > │ 321,234 324,217 326,201 329,186 331,171 334,157 336,144 339,132 341,121      │

02:08:46 #1486 [Debug] > │ 344,111 346,103 349,97 351,91 354,88 356,86 359,85 361,87 364,90 366,94      │

02:08:46 #1487 [Debug] > │ 369,100 371,108 374,117 376,127 379,139 381,151 384,165 386,180 389,195      │

02:08:46 #1488 [Debug] > │ 391,211 394,227 396,243 399,260 401,276 404,292 406,308 409,323 411,337      │

02:08:46 #1489 [Debug] > │ 414,351 416,363 419,375 421,385 424,393 426,401 429,407 431,411 434,414      │

02:08:46 #1490 [Debug] > │ 436,415 439,414 441,412 444,408 446,402 449,395 451,387 454,377 456,366      │

02:08:46 #1491 [Debug] > │ 459,354 461,341 464,326 466,312 469,296 471,280 474,264 476,247 479,231      │

02:08:46 #1492 [Debug] > │ 481,215 484,199 486,183 489,169 491,155 494,142 496,130 499,119 501,110      │

02:08:46 #1493 [Debug] > │ 504,102 506,96 509,91 511,87 514,86 516,86 519,87 521,90 524,95 526,101      │

02:08:46 #1494 [Debug] > │ 529,109 531,119 534,129 536,141 539,154 541,168 544,182 546,197 549,213      │

02:08:46 #1495 [Debug] > │ 551,230 554,246 556,262 559,279 561,295 564,310 566,325 569,340 "/>          │

02:08:46 #1496 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:08:46 #1497 [Debug] > │ points="69,388 72,396 74,403 77,408 79,412 82,414 84,415 87,413 89,410       │

02:08:46 #1498 [Debug] > │ 92,406 94,400 97,392 99,384 102,373 104,362 107,349 109,335 112,321 114,306  │

02:08:46 #1499 [Debug] > │ 117,290 119,274 122,258 124,241 127,225 129,209 132,193 134,178 137,163      │

02:08:46 #1500 [Debug] > │ 139,150 142,137 144,126 147,116 149,107 152,99 154,94 157,89 159,86 162,85   │

02:08:46 #1501 [Debug] > │ 164,86 167,88 169,92 172,97 174,104 177,113 179,122 182,133 184,146 187,159  │

02:08:46 #1502 [Debug] > │ 189,173 192,188 194,203 197,219 199,236 202,252 204,268 207,285 209,301      │

02:08:46 #1503 [Debug] > │ 212,316 214,331 217,345 219,358 222,370 224,380 227,390 229,398 232,404      │

02:08:46 #1504 [Debug] > │ 234,409 237,413 239,414 242,414 244,413 247,410 249,405 252,399 254,391      │

02:08:46 #1505 [Debug] > │ 257,382 259,371 262,360 264,347 267,333 269,319 272,303 274,287 277,271      │

02:08:46 #1506 [Debug] > │ 279,255 282,238 284,222 287,206 289,190 292,175 294,161 297,148 299,135      │

02:08:46 #1507 [Debug] > │ 302,124 304,114 307,106 309,98 312,93 314,89 317,86 319,85 321,86 324,89     │

02:08:46 #1508 [Debug] > │ 326,93 329,98 331,106 334,114 336,124 339,135 341,148 344,161 346,175        │

02:08:46 #1509 [Debug] > │ 349,190 351,206 354,222 356,238 359,255 361,271 364,287 366,303 369,319      │

02:08:46 #1510 [Debug] > │ 371,333 374,347 376,360 379,371 381,382 384,391 386,399 389,405 391,410      │

02:08:46 #1511 [Debug] > │ 394,413 396,414 399,414 401,413 404,409 406,404 409,398 411,390 414,380      │

02:08:46 #1512 [Debug] > │ 416,370 419,358 421,345 424,331 426,316 429,301 431,285 434,268 436,252      │

02:08:46 #1513 [Debug] > │ 439,236 441,219 444,203 446,188 449,173 451,159 454,146 456,133 459,122      │

02:08:46 #1514 [Debug] > │ 461,113 464,104 466,97 469,92 471,88 474,86 476,85 479,86 481,89 484,94      │

02:08:46 #1515 [Debug] > │ 486,99 489,107 491,116 494,126 496,137 499,150 501,163 504,178 506,193       │

02:08:46 #1516 [Debug] > │ 509,209 511,225 514,241 516,258 519,274 521,290 524,306 526,321 529,335      │

02:08:46 #1517 [Debug] > │ 531,349 534,362 536,373 539,384 541,392 544,400 546,406 549,410 551,413      │

02:08:46 #1518 [Debug] > │ 554,415 556,414 559,412 561,408 564,403 566,396 569,388 "/>                  │

02:08:46 #1519 [Debug] > │ <rect x="514" y="227" width="66" height="45" opacity="1" fill="none"         │

02:08:46 #1520 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:46 #1521 [Debug] > │ <text x="554" y="237" dy="0.76em" text-anchor="start"                        │

02:08:46 #1522 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1523 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1524 [Debug] > │ sin                                                                          │

02:08:46 #1525 [Debug] > │ </text>                                                                      │

02:08:46 #1526 [Debug] > │ <text x="554" y="252" dy="0.76em" text-anchor="start"                        │

02:08:46 #1527 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1528 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1529 [Debug] > │ cos                                                                          │

02:08:46 #1530 [Debug] > │ </text>                                                                      │

02:08:46 #1531 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:46 #1532 [Debug] > │ points="524,242 544,242 "/>                                                  │

02:08:46 #1533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:08:46 #1534 [Debug] > │ points="524,257 544,257 "/>                                                  │

02:08:46 #1535 [Debug] > │ </svg>                                                                       │

02:08:46 #1536 [Debug] > │                                                                              │

02:08:46 #1537 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:46 #1538 [Debug] >

02:08:46 #1539 [Debug] > ╭─[ 456.00ms - stdout ]────────────────────────────────────────────────────────╮

02:08:46 #1540 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:46 #1541 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:46 #1542 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:46 #1543 [Debug] > │     let v2 : bool = v1 < 201                                                 │

02:08:46 #1544 [Debug] > │     v2                                                                       │

02:08:46 #1545 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:46 #1546 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:46 #1547 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:46 #1548 [Debug] > │     v3                                                                       │

02:08:46 #1549 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:46 #1550 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:46 #1551 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (201)                      │

02:08:46 #1552 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:46 #1553 [Debug] > │     while method1(v1) do                                                     │

02:08:46 #1554 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:46 #1555 [Debug] > │         let v4 : float = float v3                                            │

02:08:46 #1556 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:08:46 #1557 [Debug] > │         let v6 : float = -10.0 + v5                                          │

02:08:46 #1558 [Debug] > │         v0.[int v3] <- v6                                                    │

02:08:46 #1559 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:08:46 #1560 [Debug] > │         v1.l0 <- v7                                                          │

02:08:46 #1561 [Debug] > │         ()                                                                   │

02:08:46 #1562 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:08:46 #1563 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:08:46 #1564 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:08:46 #1565 [Debug] > │     while method2(v8, v10) do                                                │

02:08:46 #1566 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:08:46 #1567 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:08:46 #1568 [Debug] > │         let v14 : float = sin v13                                            │

02:08:46 #1569 [Debug] > │         v9.[int v12] <- v14                                                  │

02:08:46 #1570 [Debug] > │         let v15 : int32 = v12 + 1                                            │

02:08:46 #1571 [Debug] > │         v10.l0 <- v15                                                        │

02:08:46 #1572 [Debug] > │         ()                                                                   │

02:08:46 #1573 [Debug] > │     let v16 : (float []) = Array.zeroCreate<float> (v8)                      │

02:08:46 #1574 [Debug] > │     let v17 : Mut0 = {l0 = 0} : Mut0                                         │

02:08:46 #1575 [Debug] > │     while method2(v8, v17) do                                                │

02:08:46 #1576 [Debug] > │         let v19 : int32 = v17.l0                                             │

02:08:46 #1577 [Debug] > │         let v20 : float = v0.[int v19]                                       │

02:08:46 #1578 [Debug] > │         let v21 : float = cos v20                                            │

02:08:46 #1579 [Debug] > │         v16.[int v19] <- v21                                                 │

02:08:46 #1580 [Debug] > │         let v22 : int32 = v19 + 1                                            │

02:08:46 #1581 [Debug] > │         v17.l0 <- v22                                                        │

02:08:46 #1582 [Debug] > │         ()                                                                   │

02:08:46 #1583 [Debug] > │     let v23 : string = "sin"                                                 │

02:08:46 #1584 [Debug] > │     let v24 : string = "cos"                                                 │

02:08:46 #1585 [Debug] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:46 #1586 [Debug] > │ (v23, v0, v9); struct (v24, v0, v16)|]                                       │

02:08:46 #1587 [Debug] > │     let v26 : string = "sin cos"                                             │

02:08:46 #1588 [Debug] > │     let v27 : string = "x"                                                   │

02:08:46 #1589 [Debug] > │     let v28 : string = "y"                                                   │

02:08:46 #1590 [Debug] > │     struct (v26, v27, v28, v25)                                              │

02:08:46 #1591 [Debug] > │ method0()                                                                    │

02:08:46 #1592 [Debug] > │                                                                              │

02:08:46 #1593 [Debug] > │                                                                              │

02:08:46 #1594 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:46 #1595 [Debug] >

02:08:46 #1596 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:46 #1597 [Debug] > // // test

02:08:46 #1598 [Debug] >

02:08:46 #1599 [Debug] > inl y_pos y0 vy0 ay t =

02:08:46 #1600 [Debug] >     y0 + vy0 * t + ay * (t |> math.square) / 2

02:08:46 #1601 [Debug] >

02:08:46 #1602 [Debug] > inl x : a _ f64 = am'.init_series 0 5 0.01

02:08:46 #1603 [Debug] > inl y = x |> am.map (y_pos 0 20 -9.8)

02:08:46 #1604 [Debug] > "projectile motion", "time (s)", "", ;[[ "height of projectile (m)", x, y ]]

02:08:46 #1605 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4616-1617-10d8572ce8ff\main.spi

02:08:46 #1606 [Debug] >

02:08:46 #1607 [Debug] > ╭─[ 233.88ms - return value ]──────────────────────────────────────────────────╮

02:08:46 #1608 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:46 #1609 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:46 #1610 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:46 #1611 [Debug] > │ stroke="none"/>                                                              │

02:08:46 #1612 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:46 #1613 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1614 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1615 [Debug] > │ projectile motion                                                            │

02:08:46 #1616 [Debug] > │ </text>                                                                      │

02:08:46 #1617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:08:46 #1618 [Debug] > │ y2="75"/>                                                                    │

02:08:46 #1619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:46 #1620 [Debug] > │ y2="75"/>                                                                    │

02:08:46 #1621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:08:46 #1622 [Debug] > │ y2="75"/>                                                                    │

02:08:46 #1623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:08:46 #1624 [Debug] > │ y2="75"/>                                                                    │

02:08:46 #1625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:08:46 #1626 [Debug] > │ y2="75"/>                                                                    │

02:08:46 #1627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:08:46 #1628 [Debug] > │ x2="109" y2="75"/>                                                           │

02:08:46 #1629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:46 #1630 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:46 #1631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:08:46 #1632 [Debug] > │ x2="129" y2="75"/>                                                           │

02:08:46 #1633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:08:46 #1634 [Debug] > │ x2="139" y2="75"/>                                                           │

02:08:46 #1635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:08:46 #1636 [Debug] > │ x2="149" y2="75"/>                                                           │

02:08:46 #1637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:08:46 #1638 [Debug] > │ x2="159" y2="75"/>                                                           │

02:08:46 #1639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:46 #1640 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:46 #1641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:08:46 #1642 [Debug] > │ x2="179" y2="75"/>                                                           │

02:08:46 #1643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:08:46 #1644 [Debug] > │ x2="189" y2="75"/>                                                           │

02:08:46 #1645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:08:46 #1646 [Debug] > │ x2="199" y2="75"/>                                                           │

02:08:46 #1647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:08:46 #1648 [Debug] > │ x2="209" y2="75"/>                                                           │

02:08:46 #1649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:46 #1650 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:46 #1651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:08:46 #1652 [Debug] > │ x2="229" y2="75"/>                                                           │

02:08:46 #1653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:08:46 #1654 [Debug] > │ x2="239" y2="75"/>                                                           │

02:08:46 #1655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:08:46 #1656 [Debug] > │ x2="249" y2="75"/>                                                           │

02:08:46 #1657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:08:46 #1658 [Debug] > │ x2="259" y2="75"/>                                                           │

02:08:46 #1659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:46 #1660 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:46 #1661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:08:46 #1662 [Debug] > │ x2="279" y2="75"/>                                                           │

02:08:46 #1663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:08:46 #1664 [Debug] > │ x2="289" y2="75"/>                                                           │

02:08:46 #1665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:08:46 #1666 [Debug] > │ x2="299" y2="75"/>                                                           │

02:08:46 #1667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:08:46 #1668 [Debug] > │ x2="309" y2="75"/>                                                           │

02:08:46 #1669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:46 #1670 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:46 #1671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:08:46 #1672 [Debug] > │ x2="329" y2="75"/>                                                           │

02:08:46 #1673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:08:46 #1674 [Debug] > │ x2="339" y2="75"/>                                                           │

02:08:46 #1675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:08:46 #1676 [Debug] > │ x2="349" y2="75"/>                                                           │

02:08:46 #1677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:08:46 #1678 [Debug] > │ x2="359" y2="75"/>                                                           │

02:08:46 #1679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:46 #1680 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:46 #1681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:08:46 #1682 [Debug] > │ x2="379" y2="75"/>                                                           │

02:08:46 #1683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:08:46 #1684 [Debug] > │ x2="389" y2="75"/>                                                           │

02:08:46 #1685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:08:46 #1686 [Debug] > │ x2="399" y2="75"/>                                                           │

02:08:46 #1687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:08:46 #1688 [Debug] > │ x2="409" y2="75"/>                                                           │

02:08:46 #1689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:46 #1690 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:46 #1691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:08:46 #1692 [Debug] > │ x2="429" y2="75"/>                                                           │

02:08:46 #1693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:08:46 #1694 [Debug] > │ x2="439" y2="75"/>                                                           │

02:08:46 #1695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:08:46 #1696 [Debug] > │ x2="449" y2="75"/>                                                           │

02:08:46 #1697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:08:46 #1698 [Debug] > │ x2="459" y2="75"/>                                                           │

02:08:46 #1699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:46 #1700 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:46 #1701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:08:46 #1702 [Debug] > │ x2="479" y2="75"/>                                                           │

02:08:46 #1703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:08:46 #1704 [Debug] > │ x2="489" y2="75"/>                                                           │

02:08:46 #1705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:08:46 #1706 [Debug] > │ x2="499" y2="75"/>                                                           │

02:08:46 #1707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:08:46 #1708 [Debug] > │ x2="509" y2="75"/>                                                           │

02:08:46 #1709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:46 #1710 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:46 #1711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:08:46 #1712 [Debug] > │ x2="529" y2="75"/>                                                           │

02:08:46 #1713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:08:46 #1714 [Debug] > │ x2="539" y2="75"/>                                                           │

02:08:46 #1715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:08:46 #1716 [Debug] > │ x2="549" y2="75"/>                                                           │

02:08:46 #1717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:08:46 #1718 [Debug] > │ x2="559" y2="75"/>                                                           │

02:08:46 #1719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:46 #1720 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:46 #1721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:08:46 #1722 [Debug] > │ x2="579" y2="75"/>                                                           │

02:08:46 #1723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="411"         │

02:08:46 #1724 [Debug] > │ x2="584" y2="411"/>                                                          │

02:08:46 #1725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:08:46 #1726 [Debug] > │ x2="584" y2="395"/>                                                          │

02:08:46 #1727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:08:46 #1728 [Debug] > │ x2="584" y2="380"/>                                                          │

02:08:46 #1729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:08:46 #1730 [Debug] > │ x2="584" y2="365"/>                                                          │

02:08:46 #1731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:08:46 #1732 [Debug] > │ x2="584" y2="349"/>                                                          │

02:08:46 #1733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:08:46 #1734 [Debug] > │ x2="584" y2="334"/>                                                          │

02:08:46 #1735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:08:46 #1736 [Debug] > │ x2="584" y2="319"/>                                                          │

02:08:46 #1737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:08:46 #1738 [Debug] > │ x2="584" y2="303"/>                                                          │

02:08:46 #1739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:08:46 #1740 [Debug] > │ x2="584" y2="288"/>                                                          │

02:08:46 #1741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:08:46 #1742 [Debug] > │ x2="584" y2="273"/>                                                          │

02:08:46 #1743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:08:46 #1744 [Debug] > │ x2="584" y2="257"/>                                                          │

02:08:46 #1745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="242"         │

02:08:46 #1746 [Debug] > │ x2="584" y2="242"/>                                                          │

02:08:46 #1747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:08:46 #1748 [Debug] > │ x2="584" y2="227"/>                                                          │

02:08:46 #1749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:08:46 #1750 [Debug] > │ x2="584" y2="211"/>                                                          │

02:08:46 #1751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="196"         │

02:08:46 #1752 [Debug] > │ x2="584" y2="196"/>                                                          │

02:08:46 #1753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="181"         │

02:08:46 #1754 [Debug] > │ x2="584" y2="181"/>                                                          │

02:08:46 #1755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:08:46 #1756 [Debug] > │ x2="584" y2="165"/>                                                          │

02:08:46 #1757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:08:46 #1758 [Debug] > │ x2="584" y2="150"/>                                                          │

02:08:46 #1759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:08:46 #1760 [Debug] > │ x2="584" y2="135"/>                                                          │

02:08:46 #1761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:08:46 #1762 [Debug] > │ x2="584" y2="119"/>                                                          │

02:08:46 #1763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:08:46 #1764 [Debug] > │ x2="584" y2="104"/>                                                          │

02:08:46 #1765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:08:46 #1766 [Debug] > │ y2="89"/>                                                                    │

02:08:46 #1767 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:46 #1768 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1769 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1770 [Debug] > │ time (s)                                                                     │

02:08:46 #1771 [Debug] > │ </text>                                                                      │

02:08:46 #1772 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:46 #1773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1774 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:46 #1775 [Debug] > │                                                                              │

02:08:46 #1776 [Debug] > │ </text>                                                                      │

02:08:46 #1777 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:46 #1778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1779 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1780 [Debug] > │ time (s)                                                                     │

02:08:46 #1781 [Debug] > │ </text>                                                                      │

02:08:46 #1782 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1783 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1784 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:46 #1785 [Debug] > │                                                                              │

02:08:46 #1786 [Debug] > │ </text>                                                                      │

02:08:46 #1787 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:46 #1788 [Debug] > │ y2="75"/>                                                                    │

02:08:46 #1789 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:08:46 #1790 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:46 #1791 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:46 #1792 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:46 #1793 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:08:46 #1794 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:46 #1795 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:46 #1796 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:46 #1797 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:46 #1798 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:46 #1799 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:46 #1800 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:46 #1801 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:08:46 #1802 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:46 #1803 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:46 #1804 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:46 #1805 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:08:46 #1806 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:46 #1807 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:46 #1808 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:46 #1809 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="395"         │

02:08:46 #1810 [Debug] > │ x2="584" y2="395"/>                                                          │

02:08:46 #1811 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="357"         │

02:08:46 #1812 [Debug] > │ x2="584" y2="357"/>                                                          │

02:08:46 #1813 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:08:46 #1814 [Debug] > │ x2="584" y2="319"/>                                                          │

02:08:46 #1815 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="280"         │

02:08:46 #1816 [Debug] > │ x2="584" y2="280"/>                                                          │

02:08:46 #1817 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="242"         │

02:08:46 #1818 [Debug] > │ x2="584" y2="242"/>                                                          │

02:08:46 #1819 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="204"         │

02:08:46 #1820 [Debug] > │ x2="584" y2="204"/>                                                          │

02:08:46 #1821 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="165"         │

02:08:46 #1822 [Debug] > │ x2="584" y2="165"/>                                                          │

02:08:46 #1823 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="127"         │

02:08:46 #1824 [Debug] > │ x2="584" y2="127"/>                                                          │

02:08:46 #1825 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="89" x2="584" │

02:08:46 #1826 [Debug] > │ y2="89"/>                                                                    │

02:08:46 #1827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1828 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:46 #1829 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:46 #1830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1831 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1832 [Debug] > │ 0.0                                                                          │

02:08:46 #1833 [Debug] > │ </text>                                                                      │

02:08:46 #1834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1835 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:46 #1836 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1838 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1839 [Debug] > │ 0.5                                                                          │

02:08:46 #1840 [Debug] > │ </text>                                                                      │

02:08:46 #1841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1842 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:08:46 #1843 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1845 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1846 [Debug] > │ 1.0                                                                          │

02:08:46 #1847 [Debug] > │ </text>                                                                      │

02:08:46 #1848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1849 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:46 #1850 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1852 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1853 [Debug] > │ 1.5                                                                          │

02:08:46 #1854 [Debug] > │ </text>                                                                      │

02:08:46 #1855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1856 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:08:46 #1857 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1859 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1860 [Debug] > │ 2.0                                                                          │

02:08:46 #1861 [Debug] > │ </text>                                                                      │

02:08:46 #1862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1863 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:46 #1864 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1866 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1867 [Debug] > │ 2.5                                                                          │

02:08:46 #1868 [Debug] > │ </text>                                                                      │

02:08:46 #1869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1870 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:46 #1871 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1872 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1873 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1874 [Debug] > │ 3.0                                                                          │

02:08:46 #1875 [Debug] > │ </text>                                                                      │

02:08:46 #1876 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1877 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:46 #1878 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1880 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1881 [Debug] > │ 3.5                                                                          │

02:08:46 #1882 [Debug] > │ </text>                                                                      │

02:08:46 #1883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1884 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:08:46 #1885 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1886 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1887 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1888 [Debug] > │ 4.0                                                                          │

02:08:46 #1889 [Debug] > │ </text>                                                                      │

02:08:46 #1890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1891 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:46 #1892 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1893 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1894 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1895 [Debug] > │ 4.5                                                                          │

02:08:46 #1896 [Debug] > │ </text>                                                                      │

02:08:46 #1897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1898 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:08:46 #1899 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:46 #1900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1901 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1902 [Debug] > │ 5.0                                                                          │

02:08:46 #1903 [Debug] > │ </text>                                                                      │

02:08:46 #1904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1905 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:46 #1906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1907 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:46 #1908 [Debug] > │ <text x="45" y="395" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1909 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1910 [Debug] > │ -20.0                                                                        │

02:08:46 #1911 [Debug] > │ </text>                                                                      │

02:08:46 #1912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1913 [Debug] > │ points="49,395 54,395 "/>                                                    │

02:08:46 #1914 [Debug] > │ <text x="45" y="357" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1915 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1916 [Debug] > │ -15.0                                                                        │

02:08:46 #1917 [Debug] > │ </text>                                                                      │

02:08:46 #1918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1919 [Debug] > │ points="49,357 54,357 "/>                                                    │

02:08:46 #1920 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1921 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1922 [Debug] > │ -10.0                                                                        │

02:08:46 #1923 [Debug] > │ </text>                                                                      │

02:08:46 #1924 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1925 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:08:46 #1926 [Debug] > │ <text x="45" y="280" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1927 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1928 [Debug] > │ -5.0                                                                         │

02:08:46 #1929 [Debug] > │ </text>                                                                      │

02:08:46 #1930 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1931 [Debug] > │ points="49,280 54,280 "/>                                                    │

02:08:46 #1932 [Debug] > │ <text x="45" y="242" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1933 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1934 [Debug] > │ 0.0                                                                          │

02:08:46 #1935 [Debug] > │ </text>                                                                      │

02:08:46 #1936 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1937 [Debug] > │ points="49,242 54,242 "/>                                                    │

02:08:46 #1938 [Debug] > │ <text x="45" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1939 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1940 [Debug] > │ 5.0                                                                          │

02:08:46 #1941 [Debug] > │ </text>                                                                      │

02:08:46 #1942 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1943 [Debug] > │ points="49,204 54,204 "/>                                                    │

02:08:46 #1944 [Debug] > │ <text x="45" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1945 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1946 [Debug] > │ 10.0                                                                         │

02:08:46 #1947 [Debug] > │ </text>                                                                      │

02:08:46 #1948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1949 [Debug] > │ points="49,165 54,165 "/>                                                    │

02:08:46 #1950 [Debug] > │ <text x="45" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #1951 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1952 [Debug] > │ 15.0                                                                         │

02:08:46 #1953 [Debug] > │ </text>                                                                      │

02:08:46 #1954 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1955 [Debug] > │ points="49,127 54,127 "/>                                                    │

02:08:46 #1956 [Debug] > │ <text x="45" y="89" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:46 #1957 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #1958 [Debug] > │ 20.0                                                                         │

02:08:46 #1959 [Debug] > │ </text>                                                                      │

02:08:46 #1960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1961 [Debug] > │ points="49,89 54,89 "/>                                                      │

02:08:46 #1962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1963 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:46 #1964 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:46 #1965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1966 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1967 [Debug] > │ 0.0                                                                          │

02:08:46 #1968 [Debug] > │ </text>                                                                      │

02:08:46 #1969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1970 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:46 #1971 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1973 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1974 [Debug] > │ 0.5                                                                          │

02:08:46 #1975 [Debug] > │ </text>                                                                      │

02:08:46 #1976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1977 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:08:46 #1978 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1980 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1981 [Debug] > │ 1.0                                                                          │

02:08:46 #1982 [Debug] > │ </text>                                                                      │

02:08:46 #1983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1984 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:46 #1985 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1987 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1988 [Debug] > │ 1.5                                                                          │

02:08:46 #1989 [Debug] > │ </text>                                                                      │

02:08:46 #1990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1991 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:08:46 #1992 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #1993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #1994 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #1995 [Debug] > │ 2.0                                                                          │

02:08:46 #1996 [Debug] > │ </text>                                                                      │

02:08:46 #1997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #1998 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:46 #1999 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #2000 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2001 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2002 [Debug] > │ 2.5                                                                          │

02:08:46 #2003 [Debug] > │ </text>                                                                      │

02:08:46 #2004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2005 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:46 #2006 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #2007 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2008 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2009 [Debug] > │ 3.0                                                                          │

02:08:46 #2010 [Debug] > │ </text>                                                                      │

02:08:46 #2011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2012 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:46 #2013 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #2014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2015 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2016 [Debug] > │ 3.5                                                                          │

02:08:46 #2017 [Debug] > │ </text>                                                                      │

02:08:46 #2018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2019 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:08:46 #2020 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #2021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2022 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2023 [Debug] > │ 4.0                                                                          │

02:08:46 #2024 [Debug] > │ </text>                                                                      │

02:08:46 #2025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2026 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:46 #2027 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #2028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2029 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2030 [Debug] > │ 4.5                                                                          │

02:08:46 #2031 [Debug] > │ </text>                                                                      │

02:08:46 #2032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2033 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:08:46 #2034 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:46 #2035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2036 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2037 [Debug] > │ 5.0                                                                          │

02:08:46 #2038 [Debug] > │ </text>                                                                      │

02:08:46 #2039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2040 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:46 #2041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2042 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:46 #2043 [Debug] > │ <text x="595" y="395" dy="0.5ex" text-anchor="start"                         │

02:08:46 #2044 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2045 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2046 [Debug] > │ -20.0                                                                        │

02:08:46 #2047 [Debug] > │ </text>                                                                      │

02:08:46 #2048 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2049 [Debug] > │ points="585,395 590,395 "/>                                                  │

02:08:46 #2050 [Debug] > │ <text x="595" y="357" dy="0.5ex" text-anchor="start"                         │

02:08:46 #2051 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2052 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2053 [Debug] > │ -15.0                                                                        │

02:08:46 #2054 [Debug] > │ </text>                                                                      │

02:08:46 #2055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2056 [Debug] > │ points="585,357 590,357 "/>                                                  │

02:08:46 #2057 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:08:46 #2058 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2059 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2060 [Debug] > │ -10.0                                                                        │

02:08:46 #2061 [Debug] > │ </text>                                                                      │

02:08:46 #2062 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2063 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:08:46 #2064 [Debug] > │ <text x="622" y="280" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #2065 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #2066 [Debug] > │ -5.0                                                                         │

02:08:46 #2067 [Debug] > │ </text>                                                                      │

02:08:46 #2068 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2069 [Debug] > │ points="585,280 590,280 "/>                                                  │

02:08:46 #2070 [Debug] > │ <text x="622" y="242" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #2071 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #2072 [Debug] > │ 0.0                                                                          │

02:08:46 #2073 [Debug] > │ </text>                                                                      │

02:08:46 #2074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2075 [Debug] > │ points="585,242 590,242 "/>                                                  │

02:08:46 #2076 [Debug] > │ <text x="622" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #2077 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #2078 [Debug] > │ 5.0                                                                          │

02:08:46 #2079 [Debug] > │ </text>                                                                      │

02:08:46 #2080 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2081 [Debug] > │ points="585,204 590,204 "/>                                                  │

02:08:46 #2082 [Debug] > │ <text x="622" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #2083 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #2084 [Debug] > │ 10.0                                                                         │

02:08:46 #2085 [Debug] > │ </text>                                                                      │

02:08:46 #2086 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2087 [Debug] > │ points="585,165 590,165 "/>                                                  │

02:08:46 #2088 [Debug] > │ <text x="622" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:46 #2089 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #2090 [Debug] > │ 15.0                                                                         │

02:08:46 #2091 [Debug] > │ </text>                                                                      │

02:08:46 #2092 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2093 [Debug] > │ points="585,127 590,127 "/>                                                  │

02:08:46 #2094 [Debug] > │ <text x="622" y="89" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:46 #2095 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:46 #2096 [Debug] > │ 20.0                                                                         │

02:08:46 #2097 [Debug] > │ </text>                                                                      │

02:08:46 #2098 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:46 #2099 [Debug] > │ points="585,89 590,89 "/>                                                    │

02:08:46 #2100 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:46 #2101 [Debug] > │ points="69,242 70,240 71,239 72,237 73,236 74,234 75,233 76,231 77,230       │

02:08:46 #2102 [Debug] > │ 78,228 79,227 80,226 81,224 82,223 83,221 84,220 85,218 86,217 87,216 88,214 │

02:08:46 #2103 [Debug] > │ 89,213 90,211 91,210 92,209 93,207 94,206 95,205 96,203 97,202 98,201 99,199 │

02:08:46 #2104 [Debug] > │ 100,198 101,197 102,195 103,194 104,193 105,192 106,190 107,189 108,188      │

02:08:46 #2105 [Debug] > │ 109,187 110,185 111,184 112,183 113,182 114,181 115,179 116,178 117,177      │

02:08:46 #2106 [Debug] > │ 118,176 119,175 120,173 121,172 122,171 123,170 124,169 125,168 126,167      │

02:08:46 #2107 [Debug] > │ 127,166 128,165 129,163 130,162 131,161 132,160 133,159 134,158 135,157      │

02:08:46 #2108 [Debug] > │ 136,156 137,155 138,154 139,153 140,152 141,151 142,150 143,149 144,148      │

02:08:46 #2109 [Debug] > │ 145,147 146,146 147,145 148,144 149,143 150,142 151,141 152,140 153,140      │

02:08:46 #2110 [Debug] > │ 154,139 155,138 156,137 157,136 158,135 159,134 160,133 161,133 162,132      │

02:08:46 #2111 [Debug] > │ 163,131 164,130 165,129 166,128 167,128 168,127 169,126 170,125 171,125      │

02:08:46 #2112 [Debug] > │ 172,124 173,123 174,122 175,122 176,121 177,120 178,119 179,119 180,118      │

02:08:46 #2113 [Debug] > │ 181,117 182,117 183,116 184,115 185,115 186,114 187,113 188,113 189,112      │

02:08:46 #2114 [Debug] > │ 190,111 191,111 192,110 193,109 194,109 195,108 196,108 197,107 198,107      │

02:08:46 #2115 [Debug] > │ 199,106 200,105 201,105 202,104 203,104 204,103 205,103 206,102 207,102      │

02:08:46 #2116 [Debug] > │ 208,101 209,101 210,100 211,100 212,99 213,99 214,99 215,98 216,98 217,97    │

02:08:46 #2117 [Debug] > │ 218,97 219,96 220,96 221,96 222,95 223,95 224,94 225,94 226,94 227,93 228,93 │

02:08:46 #2118 [Debug] > │ 229,93 230,92 231,92 232,92 233,91 234,91 235,91 236,91 237,90 238,90 239,90 │

02:08:46 #2119 [Debug] > │ 240,89 241,89 242,89 243,89 244,89 245,88 246,88 247,88 248,88 249,88 250,87 │

02:08:46 #2120 [Debug] > │ 251,87 252,87 253,87 254,87 255,87 256,86 257,86 258,86 259,86 260,86 261,86 │

02:08:46 #2121 [Debug] > │ 262,86 263,86 264,86 265,86 266,86 267,86 268,85 269,85 270,85 271,85 272,85 │

02:08:46 #2122 [Debug] > │ 273,85 274,85 275,85 276,85 277,85 278,85 279,86 280,86 281,86 282,86 283,86 │

02:08:46 #2123 [Debug] > │ 284,86 285,86 286,86 287,86 288,86 289,86 290,86 291,87 292,87 293,87 294,87 │

02:08:46 #2124 [Debug] > │ 295,87 296,87 297,88 298,88 299,88 300,88 301,88 302,89 303,89 304,89 305,89 │

02:08:46 #2125 [Debug] > │ 306,89 307,90 308,90 309,90 310,91 311,91 312,91 313,91 314,92 315,92 316,92 │

02:08:46 #2126 [Debug] > │ 317,93 318,93 319,93 320,94 321,94 322,94 323,95 324,95 325,96 326,96 327,96 │

02:08:46 #2127 [Debug] > │ 328,97 329,97 330,98 331,98 332,98 333,99 334,99 335,100 336,100 337,101     │

02:08:46 #2128 [Debug] > │ 338,101 339,102 340,102 341,103 342,103 343,104 344,104 345,105 346,105      │

02:08:46 #2129 [Debug] > │ 347,106 348,106 349,107 350,108 351,108 352,109 353,109 354,110 355,111      │

02:08:46 #2130 [Debug] > │ 356,111 357,112 358,112 359,113 360,114 361,114 362,115 363,116 364,116      │

02:08:46 #2131 [Debug] > │ 365,117 366,118 367,119 368,119 369,120 370,121 371,121 372,122 373,123      │

02:08:46 #2132 [Debug] > │ 374,124 375,124 376,125 377,126 378,127 379,128 380,128 381,129 382,130      │

02:08:46 #2133 [Debug] > │ 383,131 384,132 385,132 386,133 387,134 388,135 389,136 390,137 391,138      │

02:08:46 #2134 [Debug] > │ 392,139 393,139 394,140 395,141 396,142 397,143 398,144 399,145 400,146      │

02:08:46 #2135 [Debug] > │ 401,147 402,148 403,149 404,150 405,151 406,152 407,153 408,154 409,155      │

02:08:46 #2136 [Debug] > │ 410,156 411,157 412,158 413,159 414,160 415,161 416,162 417,163 418,164      │

02:08:46 #2137 [Debug] > │ 419,165 420,167 421,168 422,169 423,170 424,171 425,172 426,173 427,174      │

02:08:46 #2138 [Debug] > │ 428,176 429,177 430,178 431,179 432,180 433,182 434,183 435,184 436,185      │

02:08:46 #2139 [Debug] > │ 437,186 438,188 439,189 440,190 441,191 442,193 443,194 444,195 445,197      │

02:08:46 #2140 [Debug] > │ 446,198 447,199 448,200 449,202 450,203 451,204 452,206 453,207 454,208      │

02:08:46 #2141 [Debug] > │ 455,210 456,211 457,213 458,214 459,215 460,217 461,218 462,220 463,221      │

02:08:46 #2142 [Debug] > │ 464,222 465,224 466,225 467,227 468,228 469,230 470,231 471,233 472,234      │

02:08:46 #2143 [Debug] > │ 473,236 474,237 475,239 476,240 477,242 478,243 479,245 480,246 481,248      │

02:08:46 #2144 [Debug] > │ 482,249 483,251 484,253 485,254 486,256 487,257 488,259 489,261 490,262      │

02:08:46 #2145 [Debug] > │ 491,264 492,266 493,267 494,269 495,271 496,272 497,274 498,276 499,277      │

02:08:46 #2146 [Debug] > │ 500,279 501,281 502,282 503,284 504,286 505,288 506,289 507,291 508,293      │

02:08:46 #2147 [Debug] > │ 509,295 510,296 511,298 512,300 513,302 514,304 515,305 516,307 517,309      │

02:08:46 #2148 [Debug] > │ 518,311 519,313 520,315 521,316 522,318 523,320 524,322 525,324 526,326      │

02:08:46 #2149 [Debug] > │ 527,328 528,330 529,332 530,334 531,335 532,337 533,339 534,341 535,343      │

02:08:46 #2150 [Debug] > │ 536,345 537,347 538,349 539,351 540,353 541,355 542,357 543,359 544,361      │

02:08:46 #2151 [Debug] > │ 545,363 546,365 547,367 548,370 549,372 550,374 551,376 552,378 553,380      │

02:08:46 #2152 [Debug] > │ 554,382 555,384 556,386 557,388 558,391 559,393 560,395 561,397 562,399      │

02:08:46 #2153 [Debug] > │ 563,401 564,404 565,406 566,408 567,410 568,412 569,415 "/>                  │

02:08:46 #2154 [Debug] > │ <rect x="399" y="235" width="181" height="30" opacity="1" fill="none"        │

02:08:46 #2155 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:46 #2156 [Debug] > │ <text x="439" y="245" dy="0.76em" text-anchor="start"                        │

02:08:46 #2157 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:46 #2158 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:46 #2159 [Debug] > │ height of projectile (m)                                                     │

02:08:46 #2160 [Debug] > │ </text>                                                                      │

02:08:46 #2161 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:46 #2162 [Debug] > │ points="409,250 429,250 "/>                                                  │

02:08:46 #2163 [Debug] > │ </svg>                                                                       │

02:08:46 #2164 [Debug] > │                                                                              │

02:08:46 #2165 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:46 #2166 [Debug] >

02:08:46 #2167 [Debug] > ╭─[ 525.84ms - stdout ]────────────────────────────────────────────────────────╮

02:08:46 #2168 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:46 #2169 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:46 #2170 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:46 #2171 [Debug] > │     let v2 : bool = v1 < 501                                                 │

02:08:46 #2172 [Debug] > │     v2                                                                       │

02:08:46 #2173 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:46 #2174 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:46 #2175 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:46 #2176 [Debug] > │     v3                                                                       │

02:08:46 #2177 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:46 #2178 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:46 #2179 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (501)                      │

02:08:46 #2180 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:46 #2181 [Debug] > │     while method1(v1) do                                                     │

02:08:46 #2182 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:46 #2183 [Debug] > │         let v4 : float = float v3                                            │

02:08:46 #2184 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:08:46 #2185 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:46 #2186 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:46 #2187 [Debug] > │         v1.l0 <- v6                                                          │

02:08:46 #2188 [Debug] > │         ()                                                                   │

02:08:46 #2189 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:08:46 #2190 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:08:46 #2191 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:46 #2192 [Debug] > │     while method2(v7, v9) do                                                 │

02:08:46 #2193 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:08:46 #2194 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:08:46 #2195 [Debug] > │         let v13 : float = 20.0 * v12                                         │

02:08:46 #2196 [Debug] > │         let v14 : float = v12 ** 2.0                                         │

02:08:46 #2197 [Debug] > │         let v15 : float = -9.8 * v14                                         │

02:08:46 #2198 [Debug] > │         let v16 : float = v15 / 2.0                                          │

02:08:46 #2199 [Debug] > │         let v17 : float = v13 + v16                                          │

02:08:46 #2200 [Debug] > │         v8.[int v11] <- v17                                                  │

02:08:46 #2201 [Debug] > │         let v18 : int32 = v11 + 1                                            │

02:08:46 #2202 [Debug] > │         v9.l0 <- v18                                                         │

02:08:46 #2203 [Debug] > │         ()                                                                   │

02:08:46 #2204 [Debug] > │     let v19 : string = "height of projectile (m)"                            │

02:08:46 #2205 [Debug] > │     let v20 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:46 #2206 [Debug] > │ (v19, v0, v8)|]                                                              │

02:08:46 #2207 [Debug] > │     let v21 : string = "projectile motion"                                   │

02:08:46 #2208 [Debug] > │     let v22 : string = "time (s)"                                            │

02:08:46 #2209 [Debug] > │     let v23 : string = ""                                                    │

02:08:46 #2210 [Debug] > │     struct (v21, v22, v23, v20)                                              │

02:08:46 #2211 [Debug] > │ method0()                                                                    │

02:08:46 #2212 [Debug] > │                                                                              │

02:08:46 #2213 [Debug] > │                                                                              │

02:08:46 #2214 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:46 #2215 [Debug] >

02:08:46 #2216 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:46 #2217 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:46 #2218 [Debug] > │ ## velocity_cf                                                               │

02:08:46 #2219 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:46 #2220 [Debug] >

02:08:46 #2221 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:46 #2222 [Debug] > type mass = f64

02:08:46 #2223 [Debug] > type time = f64

02:08:46 #2224 [Debug] > type position = f64

02:08:46 #2225 [Debug] > type velocity = f64

02:08:46 #2226 [Debug] > type force = f64

02:08:46 #2227 [Debug] >

02:08:46 #2228 [Debug] > type velocity_cf = mass -> velocity -> list force -> (time -> velocity)

02:08:46 #2229 [Debug] >

02:08:46 #2230 [Debug] > inl velocity_cf m v0 fs =

02:08:46 #2231 [Debug] >     inl f_net = fs |> listm'.sum

02:08:46 #2232 [Debug] >     inl a0 = f_net / m

02:08:46 #2233 [Debug] >     inl v t = v0 + a0 * t

02:08:46 #2234 [Debug] >     v

02:08:46 #2235 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4671-7138-7eaf833a1c48\main.spi

02:08:46 #2236 [Debug] >

02:08:46 #2237 [Debug] > ╭─[ 185.44ms - stdout ]────────────────────────────────────────────────────────╮

02:08:46 #2238 [Debug] > │ ()                                                                           │

02:08:46 #2239 [Debug] > │                                                                              │

02:08:46 #2240 [Debug] > │                                                                              │

02:08:46 #2241 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:46 #2242 [Debug] >

02:08:46 #2243 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:46 #2244 [Debug] > // // test

02:08:46 #2245 [Debug] >

02:08:46 #2246 [Debug] > velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]] 0

02:08:46 #2247 [Debug] > |> _equal 0.6

02:08:46 #2248 [Debug] >

02:08:46 #2249 [Debug] > velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]] 1

02:08:46 #2250 [Debug] > |> _equal 0.2

02:08:47 #2251 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4689-8998-8a89c2c40e86\main.spi

02:08:47 #2252 [Debug] >

02:08:47 #2253 [Debug] > ╭─[ 198.32ms - stdout ]────────────────────────────────────────────────────────╮

02:08:47 #2254 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:47 #2255 [Debug] > │     let v0 : string = $"_equal / actual: %A{0.6} / expected: %A{0.6}"        │

02:08:47 #2256 [Debug] > │     let v1 : string = $"_equal / actual: %A{0.2} / expected: %A{0.2}"        │

02:08:47 #2257 [Debug] > │     ()                                                                       │

02:08:47 #2258 [Debug] > │ method0()                                                                    │

02:08:47 #2259 [Debug] > │                                                                              │

02:08:47 #2260 [Debug] > │                                                                              │

02:08:47 #2261 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2262 [Debug] >

02:08:47 #2263 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:47 #2264 [Debug] > // // test

02:08:47 #2265 [Debug] >

02:08:47 #2266 [Debug] > inl x = am'.init_series 0 4 0.1

02:08:47 #2267 [Debug] > inl y = x |> am.map (velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]])

02:08:47 #2268 [Debug] > "car on an air track", "time (s)", "", ;[[ "velocity of car (m/s)", x, y ]]

02:08:47 #2269 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4710-1018-1e98695ba607\main.spi

02:08:47 #2270 [Debug] >

02:08:47 #2271 [Debug] > ╭─[ 252.04ms - return value ]──────────────────────────────────────────────────╮

02:08:47 #2272 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:47 #2273 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:47 #2274 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:47 #2275 [Debug] > │ stroke="none"/>                                                              │

02:08:47 #2276 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:47 #2277 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2278 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2279 [Debug] > │ car on an air track                                                          │

02:08:47 #2280 [Debug] > │ </text>                                                                      │

02:08:47 #2281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="57" y1="424" x2="57" │

02:08:47 #2282 [Debug] > │ y2="75"/>                                                                    │

02:08:47 #2283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:47 #2284 [Debug] > │ y2="75"/>                                                                    │

02:08:47 #2285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="82" y1="424" x2="82" │

02:08:47 #2286 [Debug] > │ y2="75"/>                                                                    │

02:08:47 #2287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:08:47 #2288 [Debug] > │ y2="75"/>                                                                    │

02:08:47 #2289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:08:47 #2290 [Debug] > │ x2="107" y2="75"/>                                                           │

02:08:47 #2291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:47 #2292 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:47 #2293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="132" y1="424"        │

02:08:47 #2294 [Debug] > │ x2="132" y2="75"/>                                                           │

02:08:47 #2295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:08:47 #2296 [Debug] > │ x2="144" y2="75"/>                                                           │

02:08:47 #2297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="157" y1="424"        │

02:08:47 #2298 [Debug] > │ x2="157" y2="75"/>                                                           │

02:08:47 #2299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:47 #2300 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:47 #2301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="182" y1="424"        │

02:08:47 #2302 [Debug] > │ x2="182" y2="75"/>                                                           │

02:08:47 #2303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:08:47 #2304 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:47 #2305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:08:47 #2306 [Debug] > │ x2="207" y2="75"/>                                                           │

02:08:47 #2307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:47 #2308 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:47 #2309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="232" y1="424"        │

02:08:47 #2310 [Debug] > │ x2="232" y2="75"/>                                                           │

02:08:47 #2311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:08:47 #2312 [Debug] > │ x2="244" y2="75"/>                                                           │

02:08:47 #2313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="257" y1="424"        │

02:08:47 #2314 [Debug] > │ x2="257" y2="75"/>                                                           │

02:08:47 #2315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:47 #2316 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:47 #2317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:08:47 #2318 [Debug] > │ x2="282" y2="75"/>                                                           │

02:08:47 #2319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:08:47 #2320 [Debug] > │ x2="294" y2="75"/>                                                           │

02:08:47 #2321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:08:47 #2322 [Debug] > │ x2="307" y2="75"/>                                                           │

02:08:47 #2323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:47 #2324 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:47 #2325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:08:47 #2326 [Debug] > │ x2="331" y2="75"/>                                                           │

02:08:47 #2327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:08:47 #2328 [Debug] > │ x2="344" y2="75"/>                                                           │

02:08:47 #2329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="356" y1="424"        │

02:08:47 #2330 [Debug] > │ x2="356" y2="75"/>                                                           │

02:08:47 #2331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:47 #2332 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:47 #2333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:08:47 #2334 [Debug] > │ x2="381" y2="75"/>                                                           │

02:08:47 #2335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:08:47 #2336 [Debug] > │ x2="394" y2="75"/>                                                           │

02:08:47 #2337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:08:47 #2338 [Debug] > │ x2="406" y2="75"/>                                                           │

02:08:47 #2339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:47 #2340 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:47 #2341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="431" y1="424"        │

02:08:47 #2342 [Debug] > │ x2="431" y2="75"/>                                                           │

02:08:47 #2343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:08:47 #2344 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:47 #2345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:08:47 #2346 [Debug] > │ x2="456" y2="75"/>                                                           │

02:08:47 #2347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:47 #2348 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:47 #2349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:08:47 #2350 [Debug] > │ x2="481" y2="75"/>                                                           │

02:08:47 #2351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:08:47 #2352 [Debug] > │ x2="494" y2="75"/>                                                           │

02:08:47 #2353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:08:47 #2354 [Debug] > │ x2="506" y2="75"/>                                                           │

02:08:47 #2355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:47 #2356 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:47 #2357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:08:47 #2358 [Debug] > │ x2="531" y2="75"/>                                                           │

02:08:47 #2359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:08:47 #2360 [Debug] > │ x2="544" y2="75"/>                                                           │

02:08:47 #2361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="556" y1="424"        │

02:08:47 #2362 [Debug] > │ x2="556" y2="75"/>                                                           │

02:08:47 #2363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:47 #2364 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:47 #2365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:47 #2366 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:47 #2367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:08:47 #2368 [Debug] > │ x2="584" y2="404"/>                                                          │

02:08:47 #2369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="394"         │

02:08:47 #2370 [Debug] > │ x2="584" y2="394"/>                                                          │

02:08:47 #2371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:08:47 #2372 [Debug] > │ x2="584" y2="384"/>                                                          │

02:08:47 #2373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="373"         │

02:08:47 #2374 [Debug] > │ x2="584" y2="373"/>                                                          │

02:08:47 #2375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:08:47 #2376 [Debug] > │ x2="584" y2="363"/>                                                          │

02:08:47 #2377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:08:47 #2378 [Debug] > │ x2="584" y2="353"/>                                                          │

02:08:47 #2379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="343"         │

02:08:47 #2380 [Debug] > │ x2="584" y2="343"/>                                                          │

02:08:47 #2381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:08:47 #2382 [Debug] > │ x2="584" y2="332"/>                                                          │

02:08:47 #2383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="322"         │

02:08:47 #2384 [Debug] > │ x2="584" y2="322"/>                                                          │

02:08:47 #2385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="312"         │

02:08:47 #2386 [Debug] > │ x2="584" y2="312"/>                                                          │

02:08:47 #2387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:08:47 #2388 [Debug] > │ x2="584" y2="301"/>                                                          │

02:08:47 #2389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="291"         │

02:08:47 #2390 [Debug] > │ x2="584" y2="291"/>                                                          │

02:08:47 #2391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="281"         │

02:08:47 #2392 [Debug] > │ x2="584" y2="281"/>                                                          │

02:08:47 #2393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="271"         │

02:08:47 #2394 [Debug] > │ x2="584" y2="271"/>                                                          │

02:08:47 #2395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:08:47 #2396 [Debug] > │ x2="584" y2="260"/>                                                          │

02:08:47 #2397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:08:47 #2398 [Debug] > │ x2="584" y2="250"/>                                                          │

02:08:47 #2399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="240"         │

02:08:47 #2400 [Debug] > │ x2="584" y2="240"/>                                                          │

02:08:47 #2401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:08:47 #2402 [Debug] > │ x2="584" y2="229"/>                                                          │

02:08:47 #2403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="219"         │

02:08:47 #2404 [Debug] > │ x2="584" y2="219"/>                                                          │

02:08:47 #2405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="209"         │

02:08:47 #2406 [Debug] > │ x2="584" y2="209"/>                                                          │

02:08:47 #2407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:08:47 #2408 [Debug] > │ x2="584" y2="199"/>                                                          │

02:08:47 #2409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:08:47 #2410 [Debug] > │ x2="584" y2="188"/>                                                          │

02:08:47 #2411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:08:47 #2412 [Debug] > │ x2="584" y2="178"/>                                                          │

02:08:47 #2413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:08:47 #2414 [Debug] > │ x2="584" y2="168"/>                                                          │

02:08:47 #2415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:08:47 #2416 [Debug] > │ x2="584" y2="157"/>                                                          │

02:08:47 #2417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:08:47 #2418 [Debug] > │ x2="584" y2="147"/>                                                          │

02:08:47 #2419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:08:47 #2420 [Debug] > │ x2="584" y2="137"/>                                                          │

02:08:47 #2421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="127"         │

02:08:47 #2422 [Debug] > │ x2="584" y2="127"/>                                                          │

02:08:47 #2423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:08:47 #2424 [Debug] > │ x2="584" y2="116"/>                                                          │

02:08:47 #2425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:08:47 #2426 [Debug] > │ x2="584" y2="106"/>                                                          │

02:08:47 #2427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="96" x2="584" │

02:08:47 #2428 [Debug] > │ y2="96"/>                                                                    │

02:08:47 #2429 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:47 #2430 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2431 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2432 [Debug] > │ time (s)                                                                     │

02:08:47 #2433 [Debug] > │ </text>                                                                      │

02:08:47 #2434 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:47 #2435 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2436 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:47 #2437 [Debug] > │                                                                              │

02:08:47 #2438 [Debug] > │ </text>                                                                      │

02:08:47 #2439 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:47 #2440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2441 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2442 [Debug] > │ time (s)                                                                     │

02:08:47 #2443 [Debug] > │ </text>                                                                      │

02:08:47 #2444 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2445 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2446 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:47 #2447 [Debug] > │                                                                              │

02:08:47 #2448 [Debug] > │ </text>                                                                      │

02:08:47 #2449 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:47 #2450 [Debug] > │ y2="75"/>                                                                    │

02:08:47 #2451 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="132" y1="424"        │

02:08:47 #2452 [Debug] > │ x2="132" y2="75"/>                                                           │

02:08:47 #2453 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="194" y1="424"        │

02:08:47 #2454 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:47 #2455 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="257" y1="424"        │

02:08:47 #2456 [Debug] > │ x2="257" y2="75"/>                                                           │

02:08:47 #2457 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:47 #2458 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:47 #2459 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="381" y1="424"        │

02:08:47 #2460 [Debug] > │ x2="381" y2="75"/>                                                           │

02:08:47 #2461 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="444" y1="424"        │

02:08:47 #2462 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:47 #2463 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="506" y1="424"        │

02:08:47 #2464 [Debug] > │ x2="506" y2="75"/>                                                           │

02:08:47 #2465 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:47 #2466 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:47 #2467 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:47 #2468 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:47 #2469 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="373"         │

02:08:47 #2470 [Debug] > │ x2="584" y2="373"/>                                                          │

02:08:47 #2471 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:08:47 #2472 [Debug] > │ x2="584" y2="332"/>                                                          │

02:08:47 #2473 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="291"         │

02:08:47 #2474 [Debug] > │ x2="584" y2="291"/>                                                          │

02:08:47 #2475 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:08:47 #2476 [Debug] > │ x2="584" y2="250"/>                                                          │

02:08:47 #2477 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="209"         │

02:08:47 #2478 [Debug] > │ x2="584" y2="209"/>                                                          │

02:08:47 #2479 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="168"         │

02:08:47 #2480 [Debug] > │ x2="584" y2="168"/>                                                          │

02:08:47 #2481 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="127"         │

02:08:47 #2482 [Debug] > │ x2="584" y2="127"/>                                                          │

02:08:47 #2483 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:47 #2484 [Debug] > │ y2="85"/>                                                                    │

02:08:47 #2485 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2486 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:47 #2487 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:47 #2488 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2489 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2490 [Debug] > │ 0.0                                                                          │

02:08:47 #2491 [Debug] > │ </text>                                                                      │

02:08:47 #2492 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2493 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:47 #2494 [Debug] > │ <text x="132" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2495 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2496 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2497 [Debug] > │ 0.5                                                                          │

02:08:47 #2498 [Debug] > │ </text>                                                                      │

02:08:47 #2499 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2500 [Debug] > │ points="132,69 132,74 "/>                                                    │

02:08:47 #2501 [Debug] > │ <text x="194" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2502 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2503 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2504 [Debug] > │ 1.0                                                                          │

02:08:47 #2505 [Debug] > │ </text>                                                                      │

02:08:47 #2506 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2507 [Debug] > │ points="194,69 194,74 "/>                                                    │

02:08:47 #2508 [Debug] > │ <text x="257" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2509 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2510 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2511 [Debug] > │ 1.5                                                                          │

02:08:47 #2512 [Debug] > │ </text>                                                                      │

02:08:47 #2513 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2514 [Debug] > │ points="257,69 257,74 "/>                                                    │

02:08:47 #2515 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2516 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2517 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2518 [Debug] > │ 2.0                                                                          │

02:08:47 #2519 [Debug] > │ </text>                                                                      │

02:08:47 #2520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2521 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:47 #2522 [Debug] > │ <text x="381" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2523 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2524 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2525 [Debug] > │ 2.5                                                                          │

02:08:47 #2526 [Debug] > │ </text>                                                                      │

02:08:47 #2527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2528 [Debug] > │ points="381,69 381,74 "/>                                                    │

02:08:47 #2529 [Debug] > │ <text x="444" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2530 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2531 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2532 [Debug] > │ 3.0                                                                          │

02:08:47 #2533 [Debug] > │ </text>                                                                      │

02:08:47 #2534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2535 [Debug] > │ points="444,69 444,74 "/>                                                    │

02:08:47 #2536 [Debug] > │ <text x="506" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2537 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2538 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2539 [Debug] > │ 3.5                                                                          │

02:08:47 #2540 [Debug] > │ </text>                                                                      │

02:08:47 #2541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2542 [Debug] > │ points="506,69 506,74 "/>                                                    │

02:08:47 #2543 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:47 #2544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2545 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2546 [Debug] > │ 4.0                                                                          │

02:08:47 #2547 [Debug] > │ </text>                                                                      │

02:08:47 #2548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2549 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:47 #2550 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2551 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:47 #2552 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2553 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2554 [Debug] > │ -1.0                                                                         │

02:08:47 #2555 [Debug] > │ </text>                                                                      │

02:08:47 #2556 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2557 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:47 #2558 [Debug] > │ <text x="45" y="373" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2559 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2560 [Debug] > │ -0.8                                                                         │

02:08:47 #2561 [Debug] > │ </text>                                                                      │

02:08:47 #2562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2563 [Debug] > │ points="49,373 54,373 "/>                                                    │

02:08:47 #2564 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2565 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2566 [Debug] > │ -0.6                                                                         │

02:08:47 #2567 [Debug] > │ </text>                                                                      │

02:08:47 #2568 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2569 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:08:47 #2570 [Debug] > │ <text x="45" y="291" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2571 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2572 [Debug] > │ -0.4                                                                         │

02:08:47 #2573 [Debug] > │ </text>                                                                      │

02:08:47 #2574 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2575 [Debug] > │ points="49,291 54,291 "/>                                                    │

02:08:47 #2576 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2577 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2578 [Debug] > │ -0.2                                                                         │

02:08:47 #2579 [Debug] > │ </text>                                                                      │

02:08:47 #2580 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2581 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:08:47 #2582 [Debug] > │ <text x="45" y="209" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2583 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2584 [Debug] > │ -0.0                                                                         │

02:08:47 #2585 [Debug] > │ </text>                                                                      │

02:08:47 #2586 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2587 [Debug] > │ points="49,209 54,209 "/>                                                    │

02:08:47 #2588 [Debug] > │ <text x="45" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2589 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2590 [Debug] > │ 0.2                                                                          │

02:08:47 #2591 [Debug] > │ </text>                                                                      │

02:08:47 #2592 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2593 [Debug] > │ points="49,168 54,168 "/>                                                    │

02:08:47 #2594 [Debug] > │ <text x="45" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2595 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2596 [Debug] > │ 0.4                                                                          │

02:08:47 #2597 [Debug] > │ </text>                                                                      │

02:08:47 #2598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2599 [Debug] > │ points="49,127 54,127 "/>                                                    │

02:08:47 #2600 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:47 #2601 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2602 [Debug] > │ 0.6                                                                          │

02:08:47 #2603 [Debug] > │ </text>                                                                      │

02:08:47 #2604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2605 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:08:47 #2606 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2607 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:47 #2608 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:47 #2609 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2610 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2611 [Debug] > │ 0.0                                                                          │

02:08:47 #2612 [Debug] > │ </text>                                                                      │

02:08:47 #2613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2614 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:47 #2615 [Debug] > │ <text x="132" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2616 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2617 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2618 [Debug] > │ 0.5                                                                          │

02:08:47 #2619 [Debug] > │ </text>                                                                      │

02:08:47 #2620 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2621 [Debug] > │ points="132,425 132,430 "/>                                                  │

02:08:47 #2622 [Debug] > │ <text x="194" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2623 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2624 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2625 [Debug] > │ 1.0                                                                          │

02:08:47 #2626 [Debug] > │ </text>                                                                      │

02:08:47 #2627 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2628 [Debug] > │ points="194,425 194,430 "/>                                                  │

02:08:47 #2629 [Debug] > │ <text x="257" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2630 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2631 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2632 [Debug] > │ 1.5                                                                          │

02:08:47 #2633 [Debug] > │ </text>                                                                      │

02:08:47 #2634 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2635 [Debug] > │ points="257,425 257,430 "/>                                                  │

02:08:47 #2636 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2637 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2638 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2639 [Debug] > │ 2.0                                                                          │

02:08:47 #2640 [Debug] > │ </text>                                                                      │

02:08:47 #2641 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2642 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:47 #2643 [Debug] > │ <text x="381" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2644 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2645 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2646 [Debug] > │ 2.5                                                                          │

02:08:47 #2647 [Debug] > │ </text>                                                                      │

02:08:47 #2648 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2649 [Debug] > │ points="381,425 381,430 "/>                                                  │

02:08:47 #2650 [Debug] > │ <text x="444" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2651 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2652 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2653 [Debug] > │ 3.0                                                                          │

02:08:47 #2654 [Debug] > │ </text>                                                                      │

02:08:47 #2655 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2656 [Debug] > │ points="444,425 444,430 "/>                                                  │

02:08:47 #2657 [Debug] > │ <text x="506" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2658 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2659 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2660 [Debug] > │ 3.5                                                                          │

02:08:47 #2661 [Debug] > │ </text>                                                                      │

02:08:47 #2662 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2663 [Debug] > │ points="506,425 506,430 "/>                                                  │

02:08:47 #2664 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:47 #2665 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2666 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2667 [Debug] > │ 4.0                                                                          │

02:08:47 #2668 [Debug] > │ </text>                                                                      │

02:08:47 #2669 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2670 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:47 #2671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2672 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:47 #2673 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:08:47 #2674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2675 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2676 [Debug] > │ -1.0                                                                         │

02:08:47 #2677 [Debug] > │ </text>                                                                      │

02:08:47 #2678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2679 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:47 #2680 [Debug] > │ <text x="595" y="373" dy="0.5ex" text-anchor="start"                         │

02:08:47 #2681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2682 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2683 [Debug] > │ -0.8                                                                         │

02:08:47 #2684 [Debug] > │ </text>                                                                      │

02:08:47 #2685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2686 [Debug] > │ points="585,373 590,373 "/>                                                  │

02:08:47 #2687 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:08:47 #2688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2689 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2690 [Debug] > │ -0.6                                                                         │

02:08:47 #2691 [Debug] > │ </text>                                                                      │

02:08:47 #2692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2693 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:08:47 #2694 [Debug] > │ <text x="595" y="291" dy="0.5ex" text-anchor="start"                         │

02:08:47 #2695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2696 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2697 [Debug] > │ -0.4                                                                         │

02:08:47 #2698 [Debug] > │ </text>                                                                      │

02:08:47 #2699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2700 [Debug] > │ points="585,291 590,291 "/>                                                  │

02:08:47 #2701 [Debug] > │ <text x="595" y="250" dy="0.5ex" text-anchor="start"                         │

02:08:47 #2702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2703 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2704 [Debug] > │ -0.2                                                                         │

02:08:47 #2705 [Debug] > │ </text>                                                                      │

02:08:47 #2706 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2707 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:08:47 #2708 [Debug] > │ <text x="595" y="209" dy="0.5ex" text-anchor="start"                         │

02:08:47 #2709 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2710 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2711 [Debug] > │ -0.0                                                                         │

02:08:47 #2712 [Debug] > │ </text>                                                                      │

02:08:47 #2713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2714 [Debug] > │ points="585,209 590,209 "/>                                                  │

02:08:47 #2715 [Debug] > │ <text x="617" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:47 #2716 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2717 [Debug] > │ 0.2                                                                          │

02:08:47 #2718 [Debug] > │ </text>                                                                      │

02:08:47 #2719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2720 [Debug] > │ points="585,168 590,168 "/>                                                  │

02:08:47 #2721 [Debug] > │ <text x="617" y="127" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:47 #2722 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2723 [Debug] > │ 0.4                                                                          │

02:08:47 #2724 [Debug] > │ </text>                                                                      │

02:08:47 #2725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2726 [Debug] > │ points="585,127 590,127 "/>                                                  │

02:08:47 #2727 [Debug] > │ <text x="617" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:47 #2728 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:47 #2729 [Debug] > │ 0.6                                                                          │

02:08:47 #2730 [Debug] > │ </text>                                                                      │

02:08:47 #2731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:47 #2732 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:08:47 #2733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:47 #2734 [Debug] > │ points="69,85 82,94 94,102 107,110 119,118 132,127 144,135 157,143 169,151   │

02:08:47 #2735 [Debug] > │ 182,159 194,168 207,176 219,184 232,192 244,201 257,209 269,217 282,225      │

02:08:47 #2736 [Debug] > │ 294,234 307,242 319,250 331,258 344,266 356,275 369,283 381,291 394,299      │

02:08:47 #2737 [Debug] > │ 406,308 419,316 431,324 444,332 456,341 469,349 481,357 494,365 506,373      │

02:08:47 #2738 [Debug] > │ 519,382 531,390 544,398 556,406 569,415 "/>                                  │

02:08:47 #2739 [Debug] > │ <rect x="415" y="235" width="165" height="30" opacity="1" fill="none"        │

02:08:47 #2740 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:47 #2741 [Debug] > │ <text x="455" y="245" dy="0.76em" text-anchor="start"                        │

02:08:47 #2742 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:47 #2743 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:47 #2744 [Debug] > │ velocity of car (m/s)                                                        │

02:08:47 #2745 [Debug] > │ </text>                                                                      │

02:08:47 #2746 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:47 #2747 [Debug] > │ points="425,250 445,250 "/>                                                  │

02:08:47 #2748 [Debug] > │ </svg>                                                                       │

02:08:47 #2749 [Debug] > │                                                                              │

02:08:47 #2750 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2751 [Debug] >

02:08:47 #2752 [Debug] > ╭─[ 471.09ms - stdout ]────────────────────────────────────────────────────────╮

02:08:47 #2753 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:47 #2754 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:47 #2755 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:47 #2756 [Debug] > │     let v2 : bool = v1 < 41                                                  │

02:08:47 #2757 [Debug] > │     v2                                                                       │

02:08:47 #2758 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:47 #2759 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:47 #2760 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:47 #2761 [Debug] > │     v3                                                                       │

02:08:47 #2762 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:47 #2763 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:47 #2764 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (41)                       │

02:08:47 #2765 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:47 #2766 [Debug] > │     while method1(v1) do                                                     │

02:08:47 #2767 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:47 #2768 [Debug] > │         let v4 : float = float v3                                            │

02:08:47 #2769 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:08:47 #2770 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:47 #2771 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:47 #2772 [Debug] > │         v1.l0 <- v6                                                          │

02:08:47 #2773 [Debug] > │         ()                                                                   │

02:08:47 #2774 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:08:47 #2775 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:08:47 #2776 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:47 #2777 [Debug] > │     while method2(v7, v9) do                                                 │

02:08:47 #2778 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:08:47 #2779 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:08:47 #2780 [Debug] > │         let v13 : float = -0.39999999999999997 * v12                         │

02:08:47 #2781 [Debug] > │         let v14 : float = 0.6 + v13                                          │

02:08:47 #2782 [Debug] > │         v8.[int v11] <- v14                                                  │

02:08:47 #2783 [Debug] > │         let v15 : int32 = v11 + 1                                            │

02:08:47 #2784 [Debug] > │         v9.l0 <- v15                                                         │

02:08:47 #2785 [Debug] > │         ()                                                                   │

02:08:47 #2786 [Debug] > │     let v16 : string = "velocity of car (m/s)"                               │

02:08:47 #2787 [Debug] > │     let v17 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:47 #2788 [Debug] > │ (v16, v0, v8)|]                                                              │

02:08:47 #2789 [Debug] > │     let v18 : string = "car on an air track"                                 │

02:08:47 #2790 [Debug] > │     let v19 : string = "time (s)"                                            │

02:08:47 #2791 [Debug] > │     let v20 : string = ""                                                    │

02:08:47 #2792 [Debug] > │     struct (v18, v19, v20, v17)                                              │

02:08:47 #2793 [Debug] > │ method0()                                                                    │

02:08:47 #2794 [Debug] > │                                                                              │

02:08:47 #2795 [Debug] > │                                                                              │

02:08:47 #2796 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2797 [Debug] >

02:08:47 #2798 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:47 #2799 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:47 #2800 [Debug] > │ ## derivative                                                                │

02:08:47 #2801 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2802 [Debug] >

02:08:47 #2803 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:47 #2804 [Debug] > type derivative = (f64 -> f64) -> f64 -> f64

02:08:47 #2805 [Debug] >

02:08:47 #2806 [Debug] > inl derivative dt : derivative =

02:08:47 #2807 [Debug] >     fun x t =>

02:08:47 #2808 [Debug] >         (x (t + dt / 2) - x (t - dt / 2)) / dt

02:08:47 #2809 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4759-5996-5c402d3c990b\main.spi

02:08:47 #2810 [Debug] >

02:08:47 #2811 [Debug] > ╭─[ 183.19ms - stdout ]────────────────────────────────────────────────────────╮

02:08:47 #2812 [Debug] > │ ()                                                                           │

02:08:47 #2813 [Debug] > │                                                                              │

02:08:47 #2814 [Debug] > │                                                                              │

02:08:47 #2815 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2816 [Debug] >

02:08:47 #2817 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:47 #2818 [Debug] > // // test

02:08:47 #2819 [Debug] >

02:08:47 #2820 [Debug] > derivative 1 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2821 [Debug] > |> _almost_equal 0.25

02:08:47 #2822 [Debug] >

02:08:47 #2823 [Debug] > derivative 0.001 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2824 [Debug] > |> _almost_equal 0.0000002499998827953931

02:08:47 #2825 [Debug] >

02:08:47 #2826 [Debug] > derivative 0.000001 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2827 [Debug] > |> _almost_equal 0.000000000001000088900582341

02:08:47 #2828 [Debug] >

02:08:47 #2829 [Debug] > derivative 0.000000001 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2830 [Debug] > |> _almost_equal 0.00000008274037099909037

02:08:47 #2831 [Debug] >

02:08:47 #2832 [Debug] > derivative 0.000000000001 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2833 [Debug] > |> _almost_equal 0.00008890058234101161

02:08:47 #2834 [Debug] >

02:08:47 #2835 [Debug] > derivative 0.000000000000001 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2836 [Debug] > |> _almost_equal -0.0007992778373592246

02:08:47 #2837 [Debug] >

02:08:47 #2838 [Debug] > derivative 0.000000000000000001 (fun x => x ** 4 / 4) 1 - 1

02:08:47 #2839 [Debug] > |> _almost_equal -1

02:08:47 #2840 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4778-7828-7d78e46ea2b3\main.spi

02:08:47 #2841 [Debug] >

02:08:47 #2842 [Debug] > ╭─[ 201.54ms - stdout ]────────────────────────────────────────────────────────╮

02:08:47 #2843 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:47 #2844 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.25} / expected:         │

02:08:47 #2845 [Debug] > │ %A{0.25}"                                                                    │

02:08:47 #2846 [Debug] > │     let v1 : string = $"_almost_equal / actual: %A{2.499998827953931E-07} /  │

02:08:47 #2847 [Debug] > │ expected: %A{2.499998827953931E-07}"                                         │

02:08:47 #2848 [Debug] > │     let v2 : string = $"_almost_equal / actual: %A{1.000088900582341E-12} /  │

02:08:47 #2849 [Debug] > │ expected: %A{1.000088900582341E-12}"                                         │

02:08:47 #2850 [Debug] > │     let v3 : string = $"_almost_equal / actual: %A{8.274037099909037E-08} /  │

02:08:47 #2851 [Debug] > │ expected: %A{8.274037099909037E-08}"                                         │

02:08:47 #2852 [Debug] > │     let v4 : string = $"_almost_equal / actual: %A{8.890058234101161E-05} /  │

02:08:47 #2853 [Debug] > │ expected: %A{8.890058234101161E-05}"                                         │

02:08:47 #2854 [Debug] > │     let v5 : string = $"_almost_equal / actual: %A{-0.0007992778373592246} / │

02:08:47 #2855 [Debug] > │ expected: %A{-0.0007992778373592246}"                                        │

02:08:47 #2856 [Debug] > │     let v6 : string = $"_almost_equal / actual: %A{-1.0} / expected:         │

02:08:47 #2857 [Debug] > │ %A{-1.0}"                                                                    │

02:08:47 #2858 [Debug] > │     ()                                                                       │

02:08:47 #2859 [Debug] > │ method0()                                                                    │

02:08:47 #2860 [Debug] > │                                                                              │

02:08:47 #2861 [Debug] > │                                                                              │

02:08:47 #2862 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2863 [Debug] >

02:08:47 #2864 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:47 #2865 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:47 #2866 [Debug] > │ ## integration                                                               │

02:08:47 #2867 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:47 #2868 [Debug] >

02:08:47 #2869 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:47 #2870 [Debug] > type integration = (f64 -> f64) -> f64 -> f64 -> f64

02:08:47 #2871 [Debug] >

02:08:47 #2872 [Debug] > inl integral dt : integration =

02:08:47 #2873 [Debug] >     fun f a b =>

02:08:47 #2874 [Debug] >         inl rec loop t y =

02:08:47 #2875 [Debug] >             if t < b

02:08:47 #2876 [Debug] >             then loop (t + dt) (y + f t * dt)

02:08:47 #2877 [Debug] >             else t, y

02:08:47 #2878 [Debug] >         loop (a + dt / 2) 0

02:08:47 #2879 [Debug] >         |> snd

02:08:48 #2880 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4799-9959-91a3b6a0a300\main.spi

02:08:48 #2881 [Debug] >

02:08:48 #2882 [Debug] > ╭─[ 192.81ms - stdout ]────────────────────────────────────────────────────────╮

02:08:48 #2883 [Debug] > │ ()                                                                           │

02:08:48 #2884 [Debug] > │                                                                              │

02:08:48 #2885 [Debug] > │                                                                              │

02:08:48 #2886 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:48 #2887 [Debug] >

02:08:48 #2888 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:48 #2889 [Debug] > // // test

02:08:48 #2890 [Debug] >

02:08:48 #2891 [Debug] > integral 0.01 math.square 0 1

02:08:48 #2892 [Debug] > |> _almost_equal 0.33332500000000004

02:08:48 #2893 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4819-1905-15267a6c98f2\main.spi

02:08:48 #2894 [Debug] >

02:08:48 #2895 [Debug] > ╭─[ 194.34ms - stdout ]────────────────────────────────────────────────────────╮

02:08:48 #2896 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:48 #2897 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.3333250000000004} /     │

02:08:48 #2898 [Debug] > │ expected: %A{0.33332500000000004}"                                           │

02:08:48 #2899 [Debug] > │     ()                                                                       │

02:08:48 #2900 [Debug] > │ method0()                                                                    │

02:08:48 #2901 [Debug] > │                                                                              │

02:08:48 #2902 [Debug] > │                                                                              │

02:08:48 #2903 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:48 #2904 [Debug] >

02:08:48 #2905 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:48 #2906 [Debug] > inl integral' dt : integration =

02:08:48 #2907 [Debug] >     fun f a b =>

02:08:48 #2908 [Debug] >         listm'.init_series (a + dt / 2) (b - dt / 2) dt

02:08:48 #2909 [Debug] >         |> listm.map (f >> (*) dt)

02:08:48 #2910 [Debug] >         |> listm'.sum

02:08:48 #2911 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4838-3898-3f65c4cfdad6\main.spi

02:08:48 #2912 [Debug] >

02:08:48 #2913 [Debug] > ╭─[ 195.07ms - stdout ]────────────────────────────────────────────────────────╮

02:08:48 #2914 [Debug] > │ ()                                                                           │

02:08:48 #2915 [Debug] > │                                                                              │

02:08:48 #2916 [Debug] > │                                                                              │

02:08:48 #2917 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:48 #2918 [Debug] >

02:08:48 #2919 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:48 #2920 [Debug] > // // test

02:08:48 #2921 [Debug] >

02:08:48 #2922 [Debug] > integral' 0.1 math.square 0 1

02:08:48 #2923 [Debug] > |> _almost_equal (integral 0.1 math.square 0 1)

02:08:48 #2924 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4858-5873-54635835cd9b\main.spi

02:08:48 #2925 [Debug] >

02:08:48 #2926 [Debug] > ╭─[ 201.72ms - stdout ]────────────────────────────────────────────────────────╮

02:08:48 #2927 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:48 #2928 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{0.3325000000000001} /     │

02:08:48 #2929 [Debug] > │ expected: %A{0.33249999999999996}"                                           │

02:08:48 #2930 [Debug] > │     ()                                                                       │

02:08:48 #2931 [Debug] > │ method0()                                                                    │

02:08:48 #2932 [Debug] > │                                                                              │

02:08:48 #2933 [Debug] > │                                                                              │

02:08:48 #2934 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:48 #2935 [Debug] >

02:08:48 #2936 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:48 #2937 [Debug] > inl integral'' dt : integration =

02:08:48 #2938 [Debug] >     fun f a b =>

02:08:48 #2939 [Debug] >         am'.init_series (a + dt / 2) (b - dt / 2) dt

02:08:48 #2940 [Debug] >         |> am.map (f >> (*) dt)

02:08:48 #2941 [Debug] >         |> am'.sum

02:08:48 #2942 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4879-7932-7bba76b7eaf9\main.spi

02:08:48 #2943 [Debug] >

02:08:48 #2944 [Debug] > ╭─[ 204.68ms - stdout ]────────────────────────────────────────────────────────╮

02:08:48 #2945 [Debug] > │ ()                                                                           │

02:08:48 #2946 [Debug] > │                                                                              │

02:08:48 #2947 [Debug] > │                                                                              │

02:08:48 #2948 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:48 #2949 [Debug] >

02:08:48 #2950 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:48 #2951 [Debug] > // // test

02:08:48 #2952 [Debug] >

02:08:48 #2953 [Debug] > integral'' 0.01 math.square 0 1

02:08:48 #2954 [Debug] > |> _almost_equal (integral 0.01 math.square 0 1)

02:08:49 #2955 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4900-0002-0d690547dbdc\main.spi

02:08:49 #2956 [Debug] >

02:08:49 #2957 [Debug] > ╭─[ 361.77ms - stdout ]────────────────────────────────────────────────────────╮

02:08:49 #2958 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:49 #2959 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : float}                          │

02:08:49 #2960 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:49 #2961 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:49 #2962 [Debug] > │     let v2 : bool = v1 < 100                                                 │

02:08:49 #2963 [Debug] > │     v2                                                                       │

02:08:49 #2964 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:49 #2965 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:49 #2966 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:49 #2967 [Debug] > │     v3                                                                       │

02:08:49 #2968 [Debug] > │ and method3 (v0 : int32, v1 : Mut1) : bool =                                 │

02:08:49 #2969 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:49 #2970 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:49 #2971 [Debug] > │     v3                                                                       │

02:08:49 #2972 [Debug] > │ and method0 () : unit =                                                      │

02:08:49 #2973 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (100)                      │

02:08:49 #2974 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:49 #2975 [Debug] > │     while method1(v1) do                                                     │

02:08:49 #2976 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:49 #2977 [Debug] > │         let v4 : float = float v3                                            │

02:08:49 #2978 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:08:49 #2979 [Debug] > │         let v6 : float = 0.005 + v5                                          │

02:08:49 #2980 [Debug] > │         v0.[int v3] <- v6                                                    │

02:08:49 #2981 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:08:49 #2982 [Debug] > │         v1.l0 <- v7                                                          │

02:08:49 #2983 [Debug] > │         ()                                                                   │

02:08:49 #2984 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:08:49 #2985 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:08:49 #2986 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:08:49 #2987 [Debug] > │     while method2(v8, v10) do                                                │

02:08:49 #2988 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:08:49 #2989 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:08:49 #2990 [Debug] > │         let v14 : float = v13 ** 2.0                                         │

02:08:49 #2991 [Debug] > │         let v15 : float = 0.01 * v14                                         │

02:08:49 #2992 [Debug] > │         v9.[int v12] <- v15                                                  │

02:08:49 #2993 [Debug] > │         let v16 : int32 = v12 + 1                                            │

02:08:49 #2994 [Debug] > │         v10.l0 <- v16                                                        │

02:08:49 #2995 [Debug] > │         ()                                                                   │

02:08:49 #2996 [Debug] > │     let v17 : int32 = v9.Length                                              │

02:08:49 #2997 [Debug] > │     let v18 : Mut1 = {l0 = 0; l1 = 0.0} : Mut1                               │

02:08:49 #2998 [Debug] > │     while method3(v17, v18) do                                               │

02:08:49 #2999 [Debug] > │         let v20 : int32 = v18.l0                                             │

02:08:49 #3000 [Debug] > │         let v21 : float = v18.l1                                             │

02:08:49 #3001 [Debug] > │         let v22 : float = v9.[int v20]                                       │

02:08:49 #3002 [Debug] > │         let v23 : float = v21 + v22                                          │

02:08:49 #3003 [Debug] > │         let v24 : int32 = v20 + 1                                            │

02:08:49 #3004 [Debug] > │         v18.l0 <- v24                                                        │

02:08:49 #3005 [Debug] > │         v18.l1 <- v23                                                        │

02:08:49 #3006 [Debug] > │         ()                                                                   │

02:08:49 #3007 [Debug] > │     let v25 : float = v18.l1                                                 │

02:08:49 #3008 [Debug] > │     let v26 : float = 0.3333250000000004 - v25                               │

02:08:49 #3009 [Debug] > │     let v27 : float =  -v26                                                  │

02:08:49 #3010 [Debug] > │     let v28 : bool = v26 >= v27                                              │

02:08:49 #3011 [Debug] > │     let v29 : float =                                                        │

02:08:49 #3012 [Debug] > │         if v28 then                                                          │

02:08:49 #3013 [Debug] > │             v26                                                              │

02:08:49 #3014 [Debug] > │         else                                                                 │

02:08:49 #3015 [Debug] > │             v27                                                              │

02:08:49 #3016 [Debug] > │     let v30 : bool = v29 < 1E-08                                             │

02:08:49 #3017 [Debug] > │     let v31 : string = $"_almost_equal / actual: %A{v25} / expected:         │

02:08:49 #3018 [Debug] > │ %A{0.3333250000000004}"                                                      │

02:08:49 #3019 [Debug] > │     let v32 : bool = v30 = false                                             │

02:08:49 #3020 [Debug] > │     if v32 then                                                              │

02:08:49 #3021 [Debug] > │         failwith<unit> v31                                                   │

02:08:49 #3022 [Debug] > │ method0()                                                                    │

02:08:49 #3023 [Debug] > │                                                                              │

02:08:49 #3024 [Debug] > │                                                                              │

02:08:49 #3025 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3026 [Debug] >

02:08:49 #3027 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:49 #3028 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:49 #3029 [Debug] > │ ## anti_derivative                                                           │

02:08:49 #3030 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3031 [Debug] >

02:08:49 #3032 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:49 #3033 [Debug] > inl anti_derivative dt v0 a t =

02:08:49 #3034 [Debug] >     v0 + integral' dt a 0 t

02:08:49 #3035 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4938-3887-339257c38098\main.spi

02:08:49 #3036 [Debug] >

02:08:49 #3037 [Debug] > ╭─[ 179.15ms - stdout ]────────────────────────────────────────────────────────╮

02:08:49 #3038 [Debug] > │ ()                                                                           │

02:08:49 #3039 [Debug] > │                                                                              │

02:08:49 #3040 [Debug] > │                                                                              │

02:08:49 #3041 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3042 [Debug] >

02:08:49 #3043 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:49 #3044 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:49 #3045 [Debug] > │ ## velocity_ft                                                               │

02:08:49 #3046 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3047 [Debug] >

02:08:49 #3048 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:49 #3049 [Debug] > type velocity_ft = mass -> velocity -> list (time -> force) -> (time ->

02:08:49 #3050 [Debug] > velocity)

02:08:49 #3051 [Debug] >

02:08:49 #3052 [Debug] > inl velocity_ft dt : velocity_ft =

02:08:49 #3053 [Debug] >     fun m v0 fs =>

02:08:49 #3054 [Debug] >         inl f_net t = fs |> listm.map (fun f => f t) |> listm'.sum

02:08:49 #3055 [Debug] >         inl a t = f_net t / m

02:08:49 #3056 [Debug] >         anti_derivative dt v0 a

02:08:49 #3057 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4957-5726-5eeba8e260b6\main.spi

02:08:49 #3058 [Debug] >

02:08:49 #3059 [Debug] > ╭─[ 183.95ms - stdout ]────────────────────────────────────────────────────────╮

02:08:49 #3060 [Debug] > │ ()                                                                           │

02:08:49 #3061 [Debug] > │                                                                              │

02:08:49 #3062 [Debug] > │                                                                              │

02:08:49 #3063 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3064 [Debug] >

02:08:49 #3065 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:49 #3066 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:49 #3067 [Debug] > │ ## position_ft                                                               │

02:08:49 #3068 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3069 [Debug] >

02:08:49 #3070 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:49 #3071 [Debug] > type position_ft = mass -> position -> velocity -> list (time -> force) -> (time

02:08:49 #3072 [Debug] > -> position)

02:08:49 #3073 [Debug] >

02:08:49 #3074 [Debug] > inl position_ft dt : position_ft =

02:08:49 #3075 [Debug] >     fun m x0 v0 fs =>

02:08:49 #3076 [Debug] >         velocity_ft dt m v0 fs

02:08:49 #3077 [Debug] >         |> anti_derivative dt x0

02:08:49 #3078 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4976-7631-767ecd3d2995\main.spi

02:08:49 #3079 [Debug] >

02:08:49 #3080 [Debug] > ╭─[ 198.23ms - stdout ]────────────────────────────────────────────────────────╮

02:08:49 #3081 [Debug] > │ ()                                                                           │

02:08:49 #3082 [Debug] > │                                                                              │

02:08:49 #3083 [Debug] > │                                                                              │

02:08:49 #3084 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:49 #3085 [Debug] >

02:08:49 #3086 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:49 #3087 [Debug] > // // test

02:08:49 #3088 [Debug] >

02:08:49 #3089 [Debug] > inl pedal_coast (t : time) : force =

02:08:49 #3090 [Debug] >     inl t_cycle = 20

02:08:49 #3091 [Debug] >     inl n_complete : i32 = t / t_cycle |> conv

02:08:49 #3092 [Debug] >     inl remainder = t - conv n_complete * t_cycle

02:08:49 #3093 [Debug] >     if remainder > 0 && remainder < 10

02:08:49 #3094 [Debug] >     then 10

02:08:49 #3095 [Debug] >     else 0

02:08:49 #3096 [Debug] >

02:08:49 #3097 [Debug] > inl x = am'.init_series -5 45 0.1

02:08:49 #3098 [Debug] > inl y = x |> am.map pedal_coast

02:08:49 #3099 [Debug] > "child pedaling then coasting", "time (s)", "", ;[[ "force on bike (N)", x, y ]]

02:08:50 #3100 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-4996-9649-98a27732b4a4\main.spi

02:08:50 #3101 [Debug] >

02:08:50 #3102 [Debug] > ╭─[ 252.62ms - return value ]──────────────────────────────────────────────────╮

02:08:50 #3103 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:50 #3104 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:50 #3105 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:50 #3106 [Debug] > │ stroke="none"/>                                                              │

02:08:50 #3107 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:50 #3108 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3109 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3110 [Debug] > │ child pedaling then coasting                                                 │

02:08:50 #3111 [Debug] > │ </text>                                                                      │

02:08:50 #3112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:08:50 #3113 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:50 #3115 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:08:50 #3117 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:08:50 #3119 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:08:50 #3121 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:08:50 #3123 [Debug] > │ x2="109" y2="75"/>                                                           │

02:08:50 #3124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:50 #3125 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:50 #3126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:08:50 #3127 [Debug] > │ x2="129" y2="75"/>                                                           │

02:08:50 #3128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:08:50 #3129 [Debug] > │ x2="139" y2="75"/>                                                           │

02:08:50 #3130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:08:50 #3131 [Debug] > │ x2="149" y2="75"/>                                                           │

02:08:50 #3132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:08:50 #3133 [Debug] > │ x2="159" y2="75"/>                                                           │

02:08:50 #3134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:50 #3135 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:50 #3136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:08:50 #3137 [Debug] > │ x2="179" y2="75"/>                                                           │

02:08:50 #3138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:08:50 #3139 [Debug] > │ x2="189" y2="75"/>                                                           │

02:08:50 #3140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:08:50 #3141 [Debug] > │ x2="199" y2="75"/>                                                           │

02:08:50 #3142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:08:50 #3143 [Debug] > │ x2="209" y2="75"/>                                                           │

02:08:50 #3144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:50 #3145 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:50 #3146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:08:50 #3147 [Debug] > │ x2="229" y2="75"/>                                                           │

02:08:50 #3148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:08:50 #3149 [Debug] > │ x2="239" y2="75"/>                                                           │

02:08:50 #3150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:08:50 #3151 [Debug] > │ x2="249" y2="75"/>                                                           │

02:08:50 #3152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:08:50 #3153 [Debug] > │ x2="259" y2="75"/>                                                           │

02:08:50 #3154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:50 #3155 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:50 #3156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:08:50 #3157 [Debug] > │ x2="279" y2="75"/>                                                           │

02:08:50 #3158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:08:50 #3159 [Debug] > │ x2="289" y2="75"/>                                                           │

02:08:50 #3160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:08:50 #3161 [Debug] > │ x2="299" y2="75"/>                                                           │

02:08:50 #3162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:08:50 #3163 [Debug] > │ x2="309" y2="75"/>                                                           │

02:08:50 #3164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:50 #3165 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:50 #3166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:08:50 #3167 [Debug] > │ x2="329" y2="75"/>                                                           │

02:08:50 #3168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:08:50 #3169 [Debug] > │ x2="339" y2="75"/>                                                           │

02:08:50 #3170 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:08:50 #3171 [Debug] > │ x2="349" y2="75"/>                                                           │

02:08:50 #3172 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:08:50 #3173 [Debug] > │ x2="359" y2="75"/>                                                           │

02:08:50 #3174 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:50 #3175 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:50 #3176 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:08:50 #3177 [Debug] > │ x2="379" y2="75"/>                                                           │

02:08:50 #3178 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:08:50 #3179 [Debug] > │ x2="389" y2="75"/>                                                           │

02:08:50 #3180 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:08:50 #3181 [Debug] > │ x2="399" y2="75"/>                                                           │

02:08:50 #3182 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:08:50 #3183 [Debug] > │ x2="409" y2="75"/>                                                           │

02:08:50 #3184 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:50 #3185 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:50 #3186 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:08:50 #3187 [Debug] > │ x2="429" y2="75"/>                                                           │

02:08:50 #3188 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:08:50 #3189 [Debug] > │ x2="439" y2="75"/>                                                           │

02:08:50 #3190 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:08:50 #3191 [Debug] > │ x2="449" y2="75"/>                                                           │

02:08:50 #3192 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:08:50 #3193 [Debug] > │ x2="459" y2="75"/>                                                           │

02:08:50 #3194 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:50 #3195 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:50 #3196 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:08:50 #3197 [Debug] > │ x2="479" y2="75"/>                                                           │

02:08:50 #3198 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:08:50 #3199 [Debug] > │ x2="489" y2="75"/>                                                           │

02:08:50 #3200 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:08:50 #3201 [Debug] > │ x2="499" y2="75"/>                                                           │

02:08:50 #3202 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:08:50 #3203 [Debug] > │ x2="509" y2="75"/>                                                           │

02:08:50 #3204 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:50 #3205 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:50 #3206 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:08:50 #3207 [Debug] > │ x2="529" y2="75"/>                                                           │

02:08:50 #3208 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:08:50 #3209 [Debug] > │ x2="539" y2="75"/>                                                           │

02:08:50 #3210 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:08:50 #3211 [Debug] > │ x2="549" y2="75"/>                                                           │

02:08:50 #3212 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:08:50 #3213 [Debug] > │ x2="559" y2="75"/>                                                           │

02:08:50 #3214 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:50 #3215 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:50 #3216 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:08:50 #3217 [Debug] > │ x2="579" y2="75"/>                                                           │

02:08:50 #3218 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:50 #3219 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:50 #3220 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:08:50 #3221 [Debug] > │ x2="584" y2="398"/>                                                          │

02:08:50 #3222 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:08:50 #3223 [Debug] > │ x2="584" y2="382"/>                                                          │

02:08:50 #3224 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:08:50 #3225 [Debug] > │ x2="584" y2="365"/>                                                          │

02:08:50 #3226 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:08:50 #3227 [Debug] > │ x2="584" y2="349"/>                                                          │

02:08:50 #3228 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:08:50 #3229 [Debug] > │ x2="584" y2="332"/>                                                          │

02:08:50 #3230 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:08:50 #3231 [Debug] > │ x2="584" y2="316"/>                                                          │

02:08:50 #3232 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:08:50 #3233 [Debug] > │ x2="584" y2="299"/>                                                          │

02:08:50 #3234 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:08:50 #3235 [Debug] > │ x2="584" y2="283"/>                                                          │

02:08:50 #3236 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:08:50 #3237 [Debug] > │ x2="584" y2="266"/>                                                          │

02:08:50 #3238 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:08:50 #3239 [Debug] > │ x2="584" y2="250"/>                                                          │

02:08:50 #3240 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:08:50 #3241 [Debug] > │ x2="584" y2="234"/>                                                          │

02:08:50 #3242 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:08:50 #3243 [Debug] > │ x2="584" y2="217"/>                                                          │

02:08:50 #3244 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:08:50 #3245 [Debug] > │ x2="584" y2="201"/>                                                          │

02:08:50 #3246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:08:50 #3247 [Debug] > │ x2="584" y2="184"/>                                                          │

02:08:50 #3248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:08:50 #3249 [Debug] > │ x2="584" y2="168"/>                                                          │

02:08:50 #3250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:08:50 #3251 [Debug] > │ x2="584" y2="151"/>                                                          │

02:08:50 #3252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:08:50 #3253 [Debug] > │ x2="584" y2="135"/>                                                          │

02:08:50 #3254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:08:50 #3255 [Debug] > │ x2="584" y2="118"/>                                                          │

02:08:50 #3256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:08:50 #3257 [Debug] > │ x2="584" y2="102"/>                                                          │

02:08:50 #3258 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:50 #3259 [Debug] > │ y2="85"/>                                                                    │

02:08:50 #3260 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:50 #3261 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3262 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3263 [Debug] > │ time (s)                                                                     │

02:08:50 #3264 [Debug] > │ </text>                                                                      │

02:08:50 #3265 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:50 #3266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3267 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:50 #3268 [Debug] > │                                                                              │

02:08:50 #3269 [Debug] > │ </text>                                                                      │

02:08:50 #3270 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:50 #3271 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3272 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3273 [Debug] > │ time (s)                                                                     │

02:08:50 #3274 [Debug] > │ </text>                                                                      │

02:08:50 #3275 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3277 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:50 #3278 [Debug] > │                                                                              │

02:08:50 #3279 [Debug] > │ </text>                                                                      │

02:08:50 #3280 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:50 #3281 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3282 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:08:50 #3283 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:50 #3284 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:50 #3285 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:50 #3286 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:08:50 #3287 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:50 #3288 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:50 #3289 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:50 #3290 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:50 #3291 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:50 #3292 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:50 #3293 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:50 #3294 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:08:50 #3295 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:50 #3296 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:50 #3297 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:50 #3298 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:08:50 #3299 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:50 #3300 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:50 #3301 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:50 #3302 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:50 #3303 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:50 #3304 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="349"         │

02:08:50 #3305 [Debug] > │ x2="584" y2="349"/>                                                          │

02:08:50 #3306 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="283"         │

02:08:50 #3307 [Debug] > │ x2="584" y2="283"/>                                                          │

02:08:50 #3308 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="217"         │

02:08:50 #3309 [Debug] > │ x2="584" y2="217"/>                                                          │

02:08:50 #3310 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="151"         │

02:08:50 #3311 [Debug] > │ x2="584" y2="151"/>                                                          │

02:08:50 #3312 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:50 #3313 [Debug] > │ y2="85"/>                                                                    │

02:08:50 #3314 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3315 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:50 #3316 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:50 #3317 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3318 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3319 [Debug] > │ -5.0                                                                         │

02:08:50 #3320 [Debug] > │ </text>                                                                      │

02:08:50 #3321 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3322 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:50 #3323 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3324 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3325 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3326 [Debug] > │ 0.0                                                                          │

02:08:50 #3327 [Debug] > │ </text>                                                                      │

02:08:50 #3328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3329 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:08:50 #3330 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3331 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3332 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3333 [Debug] > │ 5.0                                                                          │

02:08:50 #3334 [Debug] > │ </text>                                                                      │

02:08:50 #3335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3336 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:50 #3337 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3338 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3339 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3340 [Debug] > │ 10.0                                                                         │

02:08:50 #3341 [Debug] > │ </text>                                                                      │

02:08:50 #3342 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3343 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:08:50 #3344 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3345 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3346 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3347 [Debug] > │ 15.0                                                                         │

02:08:50 #3348 [Debug] > │ </text>                                                                      │

02:08:50 #3349 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3350 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:50 #3351 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3352 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3353 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3354 [Debug] > │ 20.0                                                                         │

02:08:50 #3355 [Debug] > │ </text>                                                                      │

02:08:50 #3356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3357 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:50 #3358 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3359 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3360 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3361 [Debug] > │ 25.0                                                                         │

02:08:50 #3362 [Debug] > │ </text>                                                                      │

02:08:50 #3363 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3364 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:50 #3365 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3366 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3367 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3368 [Debug] > │ 30.0                                                                         │

02:08:50 #3369 [Debug] > │ </text>                                                                      │

02:08:50 #3370 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3371 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:08:50 #3372 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3373 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3374 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3375 [Debug] > │ 35.0                                                                         │

02:08:50 #3376 [Debug] > │ </text>                                                                      │

02:08:50 #3377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3378 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:50 #3379 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3380 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3381 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3382 [Debug] > │ 40.0                                                                         │

02:08:50 #3383 [Debug] > │ </text>                                                                      │

02:08:50 #3384 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3385 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:08:50 #3386 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:50 #3387 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3388 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3389 [Debug] > │ 45.0                                                                         │

02:08:50 #3390 [Debug] > │ </text>                                                                      │

02:08:50 #3391 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3392 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:50 #3393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3394 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:50 #3395 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:50 #3396 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3397 [Debug] > │ 0.0                                                                          │

02:08:50 #3398 [Debug] > │ </text>                                                                      │

02:08:50 #3399 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3400 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:50 #3401 [Debug] > │ <text x="45" y="349" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:50 #3402 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3403 [Debug] > │ 2.0                                                                          │

02:08:50 #3404 [Debug] > │ </text>                                                                      │

02:08:50 #3405 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3406 [Debug] > │ points="49,349 54,349 "/>                                                    │

02:08:50 #3407 [Debug] > │ <text x="45" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:50 #3408 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3409 [Debug] > │ 4.0                                                                          │

02:08:50 #3410 [Debug] > │ </text>                                                                      │

02:08:50 #3411 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3412 [Debug] > │ points="49,283 54,283 "/>                                                    │

02:08:50 #3413 [Debug] > │ <text x="45" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:50 #3414 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3415 [Debug] > │ 6.0                                                                          │

02:08:50 #3416 [Debug] > │ </text>                                                                      │

02:08:50 #3417 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3418 [Debug] > │ points="49,217 54,217 "/>                                                    │

02:08:50 #3419 [Debug] > │ <text x="45" y="151" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:50 #3420 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3421 [Debug] > │ 8.0                                                                          │

02:08:50 #3422 [Debug] > │ </text>                                                                      │

02:08:50 #3423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3424 [Debug] > │ points="49,151 54,151 "/>                                                    │

02:08:50 #3425 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:50 #3426 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3427 [Debug] > │ 10.0                                                                         │

02:08:50 #3428 [Debug] > │ </text>                                                                      │

02:08:50 #3429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3430 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:08:50 #3431 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3432 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:50 #3433 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:50 #3434 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3435 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3436 [Debug] > │ -5.0                                                                         │

02:08:50 #3437 [Debug] > │ </text>                                                                      │

02:08:50 #3438 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3439 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:50 #3440 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3441 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3442 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3443 [Debug] > │ 0.0                                                                          │

02:08:50 #3444 [Debug] > │ </text>                                                                      │

02:08:50 #3445 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3446 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:08:50 #3447 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3448 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3449 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3450 [Debug] > │ 5.0                                                                          │

02:08:50 #3451 [Debug] > │ </text>                                                                      │

02:08:50 #3452 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3453 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:50 #3454 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3455 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3456 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3457 [Debug] > │ 10.0                                                                         │

02:08:50 #3458 [Debug] > │ </text>                                                                      │

02:08:50 #3459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3460 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:08:50 #3461 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3462 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3463 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3464 [Debug] > │ 15.0                                                                         │

02:08:50 #3465 [Debug] > │ </text>                                                                      │

02:08:50 #3466 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3467 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:50 #3468 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3469 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3470 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3471 [Debug] > │ 20.0                                                                         │

02:08:50 #3472 [Debug] > │ </text>                                                                      │

02:08:50 #3473 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3474 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:50 #3475 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3476 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3477 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3478 [Debug] > │ 25.0                                                                         │

02:08:50 #3479 [Debug] > │ </text>                                                                      │

02:08:50 #3480 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3481 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:50 #3482 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3483 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3484 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3485 [Debug] > │ 30.0                                                                         │

02:08:50 #3486 [Debug] > │ </text>                                                                      │

02:08:50 #3487 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3488 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:08:50 #3489 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3490 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3491 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3492 [Debug] > │ 35.0                                                                         │

02:08:50 #3493 [Debug] > │ </text>                                                                      │

02:08:50 #3494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3495 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:50 #3496 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3497 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3498 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3499 [Debug] > │ 40.0                                                                         │

02:08:50 #3500 [Debug] > │ </text>                                                                      │

02:08:50 #3501 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3502 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:08:50 #3503 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:50 #3504 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3505 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3506 [Debug] > │ 45.0                                                                         │

02:08:50 #3507 [Debug] > │ </text>                                                                      │

02:08:50 #3508 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3509 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:50 #3510 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3511 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:50 #3512 [Debug] > │ <text x="617" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:50 #3513 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3514 [Debug] > │ 0.0                                                                          │

02:08:50 #3515 [Debug] > │ </text>                                                                      │

02:08:50 #3516 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3517 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:50 #3518 [Debug] > │ <text x="617" y="349" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:50 #3519 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3520 [Debug] > │ 2.0                                                                          │

02:08:50 #3521 [Debug] > │ </text>                                                                      │

02:08:50 #3522 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3523 [Debug] > │ points="585,349 590,349 "/>                                                  │

02:08:50 #3524 [Debug] > │ <text x="617" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:50 #3525 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3526 [Debug] > │ 4.0                                                                          │

02:08:50 #3527 [Debug] > │ </text>                                                                      │

02:08:50 #3528 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3529 [Debug] > │ points="585,283 590,283 "/>                                                  │

02:08:50 #3530 [Debug] > │ <text x="617" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:50 #3531 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3532 [Debug] > │ 6.0                                                                          │

02:08:50 #3533 [Debug] > │ </text>                                                                      │

02:08:50 #3534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3535 [Debug] > │ points="585,217 590,217 "/>                                                  │

02:08:50 #3536 [Debug] > │ <text x="617" y="151" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:50 #3537 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3538 [Debug] > │ 8.0                                                                          │

02:08:50 #3539 [Debug] > │ </text>                                                                      │

02:08:50 #3540 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3541 [Debug] > │ points="585,151 590,151 "/>                                                  │

02:08:50 #3542 [Debug] > │ <text x="595" y="85" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:08:50 #3543 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:50 #3544 [Debug] > │ 10.0                                                                         │

02:08:50 #3545 [Debug] > │ </text>                                                                      │

02:08:50 #3546 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:50 #3547 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:08:50 #3548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:50 #3549 [Debug] > │ points="69,415 70,415 71,415 72,415 73,415 74,415 75,415 76,415 77,415       │

02:08:50 #3550 [Debug] > │ 78,415 79,415 80,415 81,415 82,415 83,415 84,415 85,415 86,415 87,415 88,415 │

02:08:50 #3551 [Debug] > │ 89,415 90,415 91,415 92,415 93,415 94,415 95,415 96,415 97,415 98,415 99,415 │

02:08:50 #3552 [Debug] > │ 100,415 101,415 102,415 103,415 104,415 105,415 106,415 107,415 108,415      │

02:08:50 #3553 [Debug] > │ 109,415 110,415 111,415 112,415 113,415 114,415 115,415 116,415 117,415      │

02:08:50 #3554 [Debug] > │ 118,415 119,415 120,85 121,85 122,85 123,85 124,85 125,85 126,85 127,85      │

02:08:50 #3555 [Debug] > │ 128,85 129,85 130,85 131,85 132,85 133,85 134,85 135,85 136,85 137,85 138,85 │

02:08:50 #3556 [Debug] > │ 139,85 140,85 141,85 142,85 143,85 144,85 145,85 146,85 147,85 148,85 149,85 │

02:08:50 #3557 [Debug] > │ 150,85 151,85 152,85 153,85 154,85 155,85 156,85 157,85 158,85 159,85 160,85 │

02:08:50 #3558 [Debug] > │ 161,85 162,85 163,85 164,85 165,85 166,85 167,85 168,85 169,85 170,85 171,85 │

02:08:50 #3559 [Debug] > │ 172,85 173,85 174,85 175,85 176,85 177,85 178,85 179,85 180,85 181,85 182,85 │

02:08:50 #3560 [Debug] > │ 183,85 184,85 185,85 186,85 187,85 188,85 189,85 190,85 191,85 192,85 193,85 │

02:08:50 #3561 [Debug] > │ 194,85 195,85 196,85 197,85 198,85 199,85 200,85 201,85 202,85 203,85 204,85 │

02:08:50 #3562 [Debug] > │ 205,85 206,85 207,85 208,85 209,85 210,85 211,85 212,85 213,85 214,85 215,85 │

02:08:50 #3563 [Debug] > │ 216,85 217,85 218,85 219,415 220,415 221,415 222,415 223,415 224,415 225,415 │

02:08:50 #3564 [Debug] > │ 226,415 227,415 228,415 229,415 230,415 231,415 232,415 233,415 234,415      │

02:08:50 #3565 [Debug] > │ 235,415 236,415 237,415 238,415 239,415 240,415 241,415 242,415 243,415      │

02:08:50 #3566 [Debug] > │ 244,415 245,415 246,415 247,415 248,415 249,415 250,415 251,415 252,415      │

02:08:50 #3567 [Debug] > │ 253,415 254,415 255,415 256,415 257,415 258,415 259,415 260,415 261,415      │

02:08:50 #3568 [Debug] > │ 262,415 263,415 264,415 265,415 266,415 267,415 268,415 269,415 270,415      │

02:08:50 #3569 [Debug] > │ 271,415 272,415 273,415 274,415 275,415 276,415 277,415 278,415 279,415      │

02:08:50 #3570 [Debug] > │ 280,415 281,415 282,415 283,415 284,415 285,415 286,415 287,415 288,415      │

02:08:50 #3571 [Debug] > │ 289,415 290,415 291,415 292,415 293,415 294,415 295,415 296,415 297,415      │

02:08:50 #3572 [Debug] > │ 298,415 299,415 300,415 301,415 302,415 303,415 304,415 305,415 306,415      │

02:08:50 #3573 [Debug] > │ 307,415 308,415 309,415 310,415 311,415 312,415 313,415 314,415 315,415      │

02:08:50 #3574 [Debug] > │ 316,415 317,415 318,415 319,415 320,85 321,85 322,85 323,85 324,85 325,85    │

02:08:50 #3575 [Debug] > │ 326,85 327,85 328,85 329,85 330,85 331,85 332,85 333,85 334,85 335,85 336,85 │

02:08:50 #3576 [Debug] > │ 337,85 338,85 339,85 340,85 341,85 342,85 343,85 344,85 345,85 346,85 347,85 │

02:08:50 #3577 [Debug] > │ 348,85 349,85 350,85 351,85 352,85 353,85 354,85 355,85 356,85 357,85 358,85 │

02:08:50 #3578 [Debug] > │ 359,85 360,85 361,85 362,85 363,85 364,85 365,85 366,85 367,85 368,85 369,85 │

02:08:50 #3579 [Debug] > │ 370,85 371,85 372,85 373,85 374,85 375,85 376,85 377,85 378,85 379,85 380,85 │

02:08:50 #3580 [Debug] > │ 381,85 382,85 383,85 384,85 385,85 386,85 387,85 388,85 389,85 390,85 391,85 │

02:08:50 #3581 [Debug] > │ 392,85 393,85 394,85 395,85 396,85 397,85 398,85 399,85 400,85 401,85 402,85 │

02:08:50 #3582 [Debug] > │ 403,85 404,85 405,85 406,85 407,85 408,85 409,85 410,85 411,85 412,85 413,85 │

02:08:50 #3583 [Debug] > │ 414,85 415,85 416,85 417,85 418,85 419,415 420,415 421,415 422,415 423,415   │

02:08:50 #3584 [Debug] > │ 424,415 425,415 426,415 427,415 428,415 429,415 430,415 431,415 432,415      │

02:08:50 #3585 [Debug] > │ 433,415 434,415 435,415 436,415 437,415 438,415 439,415 440,415 441,415      │

02:08:50 #3586 [Debug] > │ 442,415 443,415 444,415 445,415 446,415 447,415 448,415 449,415 450,415      │

02:08:50 #3587 [Debug] > │ 451,415 452,415 453,415 454,415 455,415 456,415 457,415 458,415 459,415      │

02:08:50 #3588 [Debug] > │ 460,415 461,415 462,415 463,415 464,415 465,415 466,415 467,415 468,415      │

02:08:50 #3589 [Debug] > │ 469,415 470,415 471,415 472,415 473,415 474,415 475,415 476,415 477,415      │

02:08:50 #3590 [Debug] > │ 478,415 479,415 480,415 481,415 482,415 483,415 484,415 485,415 486,415      │

02:08:50 #3591 [Debug] > │ 487,415 488,415 489,415 490,415 491,415 492,415 493,415 494,415 495,415      │

02:08:50 #3592 [Debug] > │ 496,415 497,415 498,415 499,415 500,415 501,415 502,415 503,415 504,415      │

02:08:50 #3593 [Debug] > │ 505,415 506,415 507,415 508,415 509,415 510,415 511,415 512,415 513,415      │

02:08:50 #3594 [Debug] > │ 514,415 515,415 516,415 517,415 518,415 519,415 520,85 521,85 522,85 523,85  │

02:08:50 #3595 [Debug] > │ 524,85 525,85 526,85 527,85 528,85 529,85 530,85 531,85 532,85 533,85 534,85 │

02:08:50 #3596 [Debug] > │ 535,85 536,85 537,85 538,85 539,85 540,85 541,85 542,85 543,85 544,85 545,85 │

02:08:50 #3597 [Debug] > │ 546,85 547,85 548,85 549,85 550,85 551,85 552,85 553,85 554,85 555,85 556,85 │

02:08:50 #3598 [Debug] > │ 557,85 558,85 559,85 560,85 561,85 562,85 563,85 564,85 565,85 566,85 567,85 │

02:08:50 #3599 [Debug] > │ 568,85 569,85 "/>                                                            │

02:08:50 #3600 [Debug] > │ <rect x="437" y="235" width="143" height="30" opacity="1" fill="none"        │

02:08:50 #3601 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:50 #3602 [Debug] > │ <text x="477" y="245" dy="0.76em" text-anchor="start"                        │

02:08:50 #3603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3604 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3605 [Debug] > │ force on bike (N)                                                            │

02:08:50 #3606 [Debug] > │ </text>                                                                      │

02:08:50 #3607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:50 #3608 [Debug] > │ points="447,250 467,250 "/>                                                  │

02:08:50 #3609 [Debug] > │ </svg>                                                                       │

02:08:50 #3610 [Debug] > │                                                                              │

02:08:50 #3611 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:50 #3612 [Debug] >

02:08:50 #3613 [Debug] > ╭─[ 450.82ms - stdout ]────────────────────────────────────────────────────────╮

02:08:50 #3614 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:50 #3615 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:50 #3616 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:50 #3617 [Debug] > │     let v2 : bool = v1 < 501                                                 │

02:08:50 #3618 [Debug] > │     v2                                                                       │

02:08:50 #3619 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:50 #3620 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:50 #3621 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:50 #3622 [Debug] > │     v3                                                                       │

02:08:50 #3623 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:50 #3624 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:50 #3625 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (501)                      │

02:08:50 #3626 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:50 #3627 [Debug] > │     while method1(v1) do                                                     │

02:08:50 #3628 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:50 #3629 [Debug] > │         let v4 : float = float v3                                            │

02:08:50 #3630 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:08:50 #3631 [Debug] > │         let v6 : float = -5.0 + v5                                           │

02:08:50 #3632 [Debug] > │         v0.[int v3] <- v6                                                    │

02:08:50 #3633 [Debug] > │         let v7 : int32 = v3 + 1                                              │

02:08:50 #3634 [Debug] > │         v1.l0 <- v7                                                          │

02:08:50 #3635 [Debug] > │         ()                                                                   │

02:08:50 #3636 [Debug] > │     let v8 : int32 = v0.Length                                               │

02:08:50 #3637 [Debug] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

02:08:50 #3638 [Debug] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

02:08:50 #3639 [Debug] > │     while method2(v8, v10) do                                                │

02:08:50 #3640 [Debug] > │         let v12 : int32 = v10.l0                                             │

02:08:50 #3641 [Debug] > │         let v13 : float = v0.[int v12]                                       │

02:08:50 #3642 [Debug] > │         let v14 : float = v13 / 20.0                                         │

02:08:50 #3643 [Debug] > │         let v15 : int32 = int32 v14                                          │

02:08:50 #3644 [Debug] > │         let v16 : float = float v15                                          │

02:08:50 #3645 [Debug] > │         let v17 : float = v16 * 20.0                                         │

02:08:50 #3646 [Debug] > │         let v18 : float = v13 - v17                                          │

02:08:50 #3647 [Debug] > │         let v19 : bool = v18 > 0.0                                           │

02:08:50 #3648 [Debug] > │         let v21 : bool =                                                     │

02:08:50 #3649 [Debug] > │             if v19 then                                                      │

02:08:50 #3650 [Debug] > │                 let v20 : bool = v18 < 10.0                                  │

02:08:50 #3651 [Debug] > │                 v20                                                          │

02:08:50 #3652 [Debug] > │             else                                                             │

02:08:50 #3653 [Debug] > │                 false                                                        │

02:08:50 #3654 [Debug] > │         let v22 : float =                                                    │

02:08:50 #3655 [Debug] > │             if v21 then                                                      │

02:08:50 #3656 [Debug] > │                 10.0                                                         │

02:08:50 #3657 [Debug] > │             else                                                             │

02:08:50 #3658 [Debug] > │                 0.0                                                          │

02:08:50 #3659 [Debug] > │         v9.[int v12] <- v22                                                  │

02:08:50 #3660 [Debug] > │         let v23 : int32 = v12 + 1                                            │

02:08:50 #3661 [Debug] > │         v10.l0 <- v23                                                        │

02:08:50 #3662 [Debug] > │         ()                                                                   │

02:08:50 #3663 [Debug] > │     let v24 : string = "force on bike (N)"                                   │

02:08:50 #3664 [Debug] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:50 #3665 [Debug] > │ (v24, v0, v9)|]                                                              │

02:08:50 #3666 [Debug] > │     let v26 : string = "child pedaling then coasting"                        │

02:08:50 #3667 [Debug] > │     let v27 : string = "time (s)"                                            │

02:08:50 #3668 [Debug] > │     let v28 : string = ""                                                    │

02:08:50 #3669 [Debug] > │     struct (v26, v27, v28, v25)                                              │

02:08:50 #3670 [Debug] > │ method0()                                                                    │

02:08:50 #3671 [Debug] > │                                                                              │

02:08:50 #3672 [Debug] > │                                                                              │

02:08:50 #3673 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:50 #3674 [Debug] >

02:08:50 #3675 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:50 #3676 [Debug] > // // test

02:08:50 #3677 [Debug] >

02:08:50 #3678 [Debug] > inl x = am'.init_series -5 45 1

02:08:50 #3679 [Debug] > inl y = x |> am.map (position_ft 0.1f64 20 0 0 [[ pedal_coast ]])

02:08:50 #3680 [Debug] > "child pedaling then coasting", "time (s)", "", ;[[ "position of bike (m)", x, y

02:08:50 #3681 [Debug] > ]]

02:08:50 #3682 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5044-4438-4da177aabc4b\main.spi

02:08:50 #3683 [Debug] >

02:08:50 #3684 [Debug] > ╭─[ 473.94ms - return value ]──────────────────────────────────────────────────╮

02:08:50 #3685 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:50 #3686 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:50 #3687 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:50 #3688 [Debug] > │ stroke="none"/>                                                              │

02:08:50 #3689 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:50 #3690 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3691 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3692 [Debug] > │ child pedaling then coasting                                                 │

02:08:50 #3693 [Debug] > │ </text>                                                                      │

02:08:50 #3694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:08:50 #3695 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:50 #3697 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:08:50 #3699 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:08:50 #3701 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:08:50 #3703 [Debug] > │ y2="75"/>                                                                    │

02:08:50 #3704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:08:50 #3705 [Debug] > │ x2="109" y2="75"/>                                                           │

02:08:50 #3706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:50 #3707 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:50 #3708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:08:50 #3709 [Debug] > │ x2="129" y2="75"/>                                                           │

02:08:50 #3710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:08:50 #3711 [Debug] > │ x2="139" y2="75"/>                                                           │

02:08:50 #3712 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:08:50 #3713 [Debug] > │ x2="149" y2="75"/>                                                           │

02:08:50 #3714 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:08:50 #3715 [Debug] > │ x2="159" y2="75"/>                                                           │

02:08:50 #3716 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:50 #3717 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:50 #3718 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:08:50 #3719 [Debug] > │ x2="179" y2="75"/>                                                           │

02:08:50 #3720 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:08:50 #3721 [Debug] > │ x2="189" y2="75"/>                                                           │

02:08:50 #3722 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:08:50 #3723 [Debug] > │ x2="199" y2="75"/>                                                           │

02:08:50 #3724 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:08:50 #3725 [Debug] > │ x2="209" y2="75"/>                                                           │

02:08:50 #3726 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:50 #3727 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:50 #3728 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:08:50 #3729 [Debug] > │ x2="229" y2="75"/>                                                           │

02:08:50 #3730 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:08:50 #3731 [Debug] > │ x2="239" y2="75"/>                                                           │

02:08:50 #3732 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:08:50 #3733 [Debug] > │ x2="249" y2="75"/>                                                           │

02:08:50 #3734 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:08:50 #3735 [Debug] > │ x2="259" y2="75"/>                                                           │

02:08:50 #3736 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:50 #3737 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:50 #3738 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:08:50 #3739 [Debug] > │ x2="279" y2="75"/>                                                           │

02:08:50 #3740 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:08:50 #3741 [Debug] > │ x2="289" y2="75"/>                                                           │

02:08:50 #3742 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:08:50 #3743 [Debug] > │ x2="299" y2="75"/>                                                           │

02:08:50 #3744 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:08:50 #3745 [Debug] > │ x2="309" y2="75"/>                                                           │

02:08:50 #3746 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:50 #3747 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:50 #3748 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:08:50 #3749 [Debug] > │ x2="329" y2="75"/>                                                           │

02:08:50 #3750 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:08:50 #3751 [Debug] > │ x2="339" y2="75"/>                                                           │

02:08:50 #3752 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:08:50 #3753 [Debug] > │ x2="349" y2="75"/>                                                           │

02:08:50 #3754 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:08:50 #3755 [Debug] > │ x2="359" y2="75"/>                                                           │

02:08:50 #3756 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:50 #3757 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:50 #3758 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:08:50 #3759 [Debug] > │ x2="379" y2="75"/>                                                           │

02:08:50 #3760 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:08:50 #3761 [Debug] > │ x2="389" y2="75"/>                                                           │

02:08:50 #3762 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:08:50 #3763 [Debug] > │ x2="399" y2="75"/>                                                           │

02:08:50 #3764 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:08:50 #3765 [Debug] > │ x2="409" y2="75"/>                                                           │

02:08:50 #3766 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:50 #3767 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:50 #3768 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:08:50 #3769 [Debug] > │ x2="429" y2="75"/>                                                           │

02:08:50 #3770 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:08:50 #3771 [Debug] > │ x2="439" y2="75"/>                                                           │

02:08:50 #3772 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:08:50 #3773 [Debug] > │ x2="449" y2="75"/>                                                           │

02:08:50 #3774 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:08:50 #3775 [Debug] > │ x2="459" y2="75"/>                                                           │

02:08:50 #3776 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:50 #3777 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:50 #3778 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:08:50 #3779 [Debug] > │ x2="479" y2="75"/>                                                           │

02:08:50 #3780 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:08:50 #3781 [Debug] > │ x2="489" y2="75"/>                                                           │

02:08:50 #3782 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:08:50 #3783 [Debug] > │ x2="499" y2="75"/>                                                           │

02:08:50 #3784 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:08:50 #3785 [Debug] > │ x2="509" y2="75"/>                                                           │

02:08:50 #3786 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:50 #3787 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:50 #3788 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:08:50 #3789 [Debug] > │ x2="529" y2="75"/>                                                           │

02:08:50 #3790 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:08:50 #3791 [Debug] > │ x2="539" y2="75"/>                                                           │

02:08:50 #3792 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:08:50 #3793 [Debug] > │ x2="549" y2="75"/>                                                           │

02:08:50 #3794 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:08:50 #3795 [Debug] > │ x2="559" y2="75"/>                                                           │

02:08:50 #3796 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:50 #3797 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:50 #3798 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:08:50 #3799 [Debug] > │ x2="579" y2="75"/>                                                           │

02:08:50 #3800 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:50 #3801 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:50 #3802 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:08:50 #3803 [Debug] > │ x2="584" y2="404"/>                                                          │

02:08:50 #3804 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:08:50 #3805 [Debug] > │ x2="584" y2="393"/>                                                          │

02:08:50 #3806 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:08:50 #3807 [Debug] > │ x2="584" y2="383"/>                                                          │

02:08:50 #3808 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:08:50 #3809 [Debug] > │ x2="584" y2="372"/>                                                          │

02:08:50 #3810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="361"         │

02:08:50 #3811 [Debug] > │ x2="584" y2="361"/>                                                          │

02:08:50 #3812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:08:50 #3813 [Debug] > │ x2="584" y2="351"/>                                                          │

02:08:50 #3814 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:08:50 #3815 [Debug] > │ x2="584" y2="340"/>                                                          │

02:08:50 #3816 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:08:50 #3817 [Debug] > │ x2="584" y2="329"/>                                                          │

02:08:50 #3818 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="318"         │

02:08:50 #3819 [Debug] > │ x2="584" y2="318"/>                                                          │

02:08:50 #3820 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:08:50 #3821 [Debug] > │ x2="584" y2="308"/>                                                          │

02:08:50 #3822 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="297"         │

02:08:50 #3823 [Debug] > │ x2="584" y2="297"/>                                                          │

02:08:50 #3824 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:08:50 #3825 [Debug] > │ x2="584" y2="286"/>                                                          │

02:08:50 #3826 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="276"         │

02:08:50 #3827 [Debug] > │ x2="584" y2="276"/>                                                          │

02:08:50 #3828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="265"         │

02:08:50 #3829 [Debug] > │ x2="584" y2="265"/>                                                          │

02:08:50 #3830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="254"         │

02:08:50 #3831 [Debug] > │ x2="584" y2="254"/>                                                          │

02:08:50 #3832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="244"         │

02:08:50 #3833 [Debug] > │ x2="584" y2="244"/>                                                          │

02:08:50 #3834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:08:50 #3835 [Debug] > │ x2="584" y2="233"/>                                                          │

02:08:50 #3836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:08:50 #3837 [Debug] > │ x2="584" y2="222"/>                                                          │

02:08:50 #3838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="212"         │

02:08:50 #3839 [Debug] > │ x2="584" y2="212"/>                                                          │

02:08:50 #3840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:08:50 #3841 [Debug] > │ x2="584" y2="201"/>                                                          │

02:08:50 #3842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="190"         │

02:08:50 #3843 [Debug] > │ x2="584" y2="190"/>                                                          │

02:08:50 #3844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:08:50 #3845 [Debug] > │ x2="584" y2="180"/>                                                          │

02:08:50 #3846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="169"         │

02:08:50 #3847 [Debug] > │ x2="584" y2="169"/>                                                          │

02:08:50 #3848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="158"         │

02:08:50 #3849 [Debug] > │ x2="584" y2="158"/>                                                          │

02:08:50 #3850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:08:50 #3851 [Debug] > │ x2="584" y2="147"/>                                                          │

02:08:50 #3852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:08:50 #3853 [Debug] > │ x2="584" y2="137"/>                                                          │

02:08:50 #3854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="126"         │

02:08:50 #3855 [Debug] > │ x2="584" y2="126"/>                                                          │

02:08:50 #3856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="115"         │

02:08:50 #3857 [Debug] > │ x2="584" y2="115"/>                                                          │

02:08:50 #3858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="105"         │

02:08:50 #3859 [Debug] > │ x2="584" y2="105"/>                                                          │

02:08:50 #3860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:08:50 #3861 [Debug] > │ y2="94"/>                                                                    │

02:08:50 #3862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:08:50 #3863 [Debug] > │ y2="83"/>                                                                    │

02:08:50 #3864 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:50 #3865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:50 #3866 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:50 #3867 [Debug] > │ time (s)                                                                     │

02:08:51 #3868 [Debug] > │ </text>                                                                      │

02:08:51 #3869 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:51 #3870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3871 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:51 #3872 [Debug] > │                                                                              │

02:08:51 #3873 [Debug] > │ </text>                                                                      │

02:08:51 #3874 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:51 #3875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3876 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3877 [Debug] > │ time (s)                                                                     │

02:08:51 #3878 [Debug] > │ </text>                                                                      │

02:08:51 #3879 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:51 #3880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3881 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:51 #3882 [Debug] > │                                                                              │

02:08:51 #3883 [Debug] > │ </text>                                                                      │

02:08:51 #3884 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:51 #3885 [Debug] > │ y2="75"/>                                                                    │

02:08:51 #3886 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:08:51 #3887 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:51 #3888 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:51 #3889 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:51 #3890 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:08:51 #3891 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:51 #3892 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:51 #3893 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:51 #3894 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:51 #3895 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:51 #3896 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:51 #3897 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:51 #3898 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:08:51 #3899 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:51 #3900 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:51 #3901 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:51 #3902 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:08:51 #3903 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:51 #3904 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:51 #3905 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:51 #3906 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:51 #3907 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:51 #3908 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="361"         │

02:08:51 #3909 [Debug] > │ x2="584" y2="361"/>                                                          │

02:08:51 #3910 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="308"         │

02:08:51 #3911 [Debug] > │ x2="584" y2="308"/>                                                          │

02:08:51 #3912 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="254"         │

02:08:51 #3913 [Debug] > │ x2="584" y2="254"/>                                                          │

02:08:51 #3914 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="201"         │

02:08:51 #3915 [Debug] > │ x2="584" y2="201"/>                                                          │

02:08:51 #3916 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="147"         │

02:08:51 #3917 [Debug] > │ x2="584" y2="147"/>                                                          │

02:08:51 #3918 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="94" x2="584" │

02:08:51 #3919 [Debug] > │ y2="94"/>                                                                    │

02:08:51 #3920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3921 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:51 #3922 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:51 #3923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3924 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3925 [Debug] > │ -5.0                                                                         │

02:08:51 #3926 [Debug] > │ </text>                                                                      │

02:08:51 #3927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3928 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:51 #3929 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3930 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3931 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3932 [Debug] > │ 0.0                                                                          │

02:08:51 #3933 [Debug] > │ </text>                                                                      │

02:08:51 #3934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3935 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:08:51 #3936 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3938 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3939 [Debug] > │ 5.0                                                                          │

02:08:51 #3940 [Debug] > │ </text>                                                                      │

02:08:51 #3941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3942 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:51 #3943 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3944 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3945 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3946 [Debug] > │ 10.0                                                                         │

02:08:51 #3947 [Debug] > │ </text>                                                                      │

02:08:51 #3948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3949 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:08:51 #3950 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3951 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3952 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3953 [Debug] > │ 15.0                                                                         │

02:08:51 #3954 [Debug] > │ </text>                                                                      │

02:08:51 #3955 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3956 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:51 #3957 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3959 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3960 [Debug] > │ 20.0                                                                         │

02:08:51 #3961 [Debug] > │ </text>                                                                      │

02:08:51 #3962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3963 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:51 #3964 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3966 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3967 [Debug] > │ 25.0                                                                         │

02:08:51 #3968 [Debug] > │ </text>                                                                      │

02:08:51 #3969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3970 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:51 #3971 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3973 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3974 [Debug] > │ 30.0                                                                         │

02:08:51 #3975 [Debug] > │ </text>                                                                      │

02:08:51 #3976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3977 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:08:51 #3978 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3980 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3981 [Debug] > │ 35.0                                                                         │

02:08:51 #3982 [Debug] > │ </text>                                                                      │

02:08:51 #3983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3984 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:51 #3985 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3987 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3988 [Debug] > │ 40.0                                                                         │

02:08:51 #3989 [Debug] > │ </text>                                                                      │

02:08:51 #3990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3991 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:08:51 #3992 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:51 #3993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #3994 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #3995 [Debug] > │ 45.0                                                                         │

02:08:51 #3996 [Debug] > │ </text>                                                                      │

02:08:51 #3997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #3998 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:51 #3999 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4000 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:51 #4001 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:51 #4002 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4003 [Debug] > │ 0.0                                                                          │

02:08:51 #4004 [Debug] > │ </text>                                                                      │

02:08:51 #4005 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4006 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:51 #4007 [Debug] > │ <text x="45" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:51 #4008 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4009 [Debug] > │ 50.0                                                                         │

02:08:51 #4010 [Debug] > │ </text>                                                                      │

02:08:51 #4011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4012 [Debug] > │ points="49,361 54,361 "/>                                                    │

02:08:51 #4013 [Debug] > │ <text x="45" y="308" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:51 #4014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4015 [Debug] > │ 100.0                                                                        │

02:08:51 #4016 [Debug] > │ </text>                                                                      │

02:08:51 #4017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4018 [Debug] > │ points="49,308 54,308 "/>                                                    │

02:08:51 #4019 [Debug] > │ <text x="45" y="254" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:51 #4020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4021 [Debug] > │ 150.0                                                                        │

02:08:51 #4022 [Debug] > │ </text>                                                                      │

02:08:51 #4023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4024 [Debug] > │ points="49,254 54,254 "/>                                                    │

02:08:51 #4025 [Debug] > │ <text x="45" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:51 #4026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4027 [Debug] > │ 200.0                                                                        │

02:08:51 #4028 [Debug] > │ </text>                                                                      │

02:08:51 #4029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4030 [Debug] > │ points="49,201 54,201 "/>                                                    │

02:08:51 #4031 [Debug] > │ <text x="45" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:51 #4032 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4033 [Debug] > │ 250.0                                                                        │

02:08:51 #4034 [Debug] > │ </text>                                                                      │

02:08:51 #4035 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4036 [Debug] > │ points="49,147 54,147 "/>                                                    │

02:08:51 #4037 [Debug] > │ <text x="45" y="94" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:51 #4038 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4039 [Debug] > │ 300.0                                                                        │

02:08:51 #4040 [Debug] > │ </text>                                                                      │

02:08:51 #4041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4042 [Debug] > │ points="49,94 54,94 "/>                                                      │

02:08:51 #4043 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4044 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:51 #4045 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:51 #4046 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4047 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4048 [Debug] > │ -5.0                                                                         │

02:08:51 #4049 [Debug] > │ </text>                                                                      │

02:08:51 #4050 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4051 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:51 #4052 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4053 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4054 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4055 [Debug] > │ 0.0                                                                          │

02:08:51 #4056 [Debug] > │ </text>                                                                      │

02:08:51 #4057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4058 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:08:51 #4059 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4060 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4061 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4062 [Debug] > │ 5.0                                                                          │

02:08:51 #4063 [Debug] > │ </text>                                                                      │

02:08:51 #4064 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4065 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:51 #4066 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4067 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4068 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4069 [Debug] > │ 10.0                                                                         │

02:08:51 #4070 [Debug] > │ </text>                                                                      │

02:08:51 #4071 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4072 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:08:51 #4073 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4074 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4075 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4076 [Debug] > │ 15.0                                                                         │

02:08:51 #4077 [Debug] > │ </text>                                                                      │

02:08:51 #4078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4079 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:51 #4080 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4081 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4082 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4083 [Debug] > │ 20.0                                                                         │

02:08:51 #4084 [Debug] > │ </text>                                                                      │

02:08:51 #4085 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4086 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:51 #4087 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4088 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4089 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4090 [Debug] > │ 25.0                                                                         │

02:08:51 #4091 [Debug] > │ </text>                                                                      │

02:08:51 #4092 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4093 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:51 #4094 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4095 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4096 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4097 [Debug] > │ 30.0                                                                         │

02:08:51 #4098 [Debug] > │ </text>                                                                      │

02:08:51 #4099 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4100 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:08:51 #4101 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4102 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4103 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4104 [Debug] > │ 35.0                                                                         │

02:08:51 #4105 [Debug] > │ </text>                                                                      │

02:08:51 #4106 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4107 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:51 #4108 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4109 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4110 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4111 [Debug] > │ 40.0                                                                         │

02:08:51 #4112 [Debug] > │ </text>                                                                      │

02:08:51 #4113 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4114 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:08:51 #4115 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:51 #4116 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4117 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4118 [Debug] > │ 45.0                                                                         │

02:08:51 #4119 [Debug] > │ </text>                                                                      │

02:08:51 #4120 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4121 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:51 #4122 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4123 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:51 #4124 [Debug] > │ <text x="622" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:51 #4125 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4126 [Debug] > │ 0.0                                                                          │

02:08:51 #4127 [Debug] > │ </text>                                                                      │

02:08:51 #4128 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4129 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:51 #4130 [Debug] > │ <text x="622" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:51 #4131 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4132 [Debug] > │ 50.0                                                                         │

02:08:51 #4133 [Debug] > │ </text>                                                                      │

02:08:51 #4134 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4135 [Debug] > │ points="585,361 590,361 "/>                                                  │

02:08:51 #4136 [Debug] > │ <text x="595" y="308" dy="0.5ex" text-anchor="start"                         │

02:08:51 #4137 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4138 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4139 [Debug] > │ 100.0                                                                        │

02:08:51 #4140 [Debug] > │ </text>                                                                      │

02:08:51 #4141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4142 [Debug] > │ points="585,308 590,308 "/>                                                  │

02:08:51 #4143 [Debug] > │ <text x="595" y="254" dy="0.5ex" text-anchor="start"                         │

02:08:51 #4144 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4145 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4146 [Debug] > │ 150.0                                                                        │

02:08:51 #4147 [Debug] > │ </text>                                                                      │

02:08:51 #4148 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4149 [Debug] > │ points="585,254 590,254 "/>                                                  │

02:08:51 #4150 [Debug] > │ <text x="595" y="201" dy="0.5ex" text-anchor="start"                         │

02:08:51 #4151 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4152 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4153 [Debug] > │ 200.0                                                                        │

02:08:51 #4154 [Debug] > │ </text>                                                                      │

02:08:51 #4155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4156 [Debug] > │ points="585,201 590,201 "/>                                                  │

02:08:51 #4157 [Debug] > │ <text x="595" y="147" dy="0.5ex" text-anchor="start"                         │

02:08:51 #4158 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4159 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4160 [Debug] > │ 250.0                                                                        │

02:08:51 #4161 [Debug] > │ </text>                                                                      │

02:08:51 #4162 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4163 [Debug] > │ points="585,147 590,147 "/>                                                  │

02:08:51 #4164 [Debug] > │ <text x="595" y="94" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:08:51 #4165 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:51 #4166 [Debug] > │ 300.0                                                                        │

02:08:51 #4167 [Debug] > │ </text>                                                                      │

02:08:51 #4168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:51 #4169 [Debug] > │ points="585,94 590,94 "/>                                                    │

02:08:51 #4170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:51 #4171 [Debug] > │ points="69,415 79,415 89,415 99,415 109,415 119,415 129,414 139,413 149,412  │

02:08:51 #4172 [Debug] > │ 159,410 169,408 179,405 189,401 199,397 209,393 219,388 229,382 239,377      │

02:08:51 #4173 [Debug] > │ 249,372 259,366 269,361 279,356 289,350 299,345 309,340 319,334 329,329      │

02:08:51 #4174 [Debug] > │ 339,322 349,316 359,308 369,301 379,292 389,284 399,274 409,264 419,254      │

02:08:51 #4175 [Debug] > │ 429,243 439,232 449,221 459,210 469,199 479,189 489,178 499,167 509,157      │

02:08:51 #4176 [Debug] > │ 519,146 529,135 539,123 549,111 559,99 569,85 "/>                            │

02:08:51 #4177 [Debug] > │ <rect x="421" y="235" width="159" height="30" opacity="1" fill="none"        │

02:08:51 #4178 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:51 #4179 [Debug] > │ <text x="461" y="245" dy="0.76em" text-anchor="start"                        │

02:08:51 #4180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:51 #4181 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:51 #4182 [Debug] > │ position of bike (m)                                                         │

02:08:51 #4183 [Debug] > │ </text>                                                                      │

02:08:51 #4184 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:51 #4185 [Debug] > │ points="431,250 451,250 "/>                                                  │

02:08:51 #4186 [Debug] > │ </svg>                                                                       │

02:08:51 #4187 [Debug] > │                                                                              │

02:08:51 #4188 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:51 #4189 [Debug] >

02:08:51 #4190 [Debug] > ╭─[ 711.02ms - stdout ]────────────────────────────────────────────────────────╮

02:08:51 #4191 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:51 #4192 [Debug] > │ and UH0 =                                                                    │

02:08:51 #4193 [Debug] > │     | UH0_0 of float * UH0                                                   │

02:08:51 #4194 [Debug] > │     | UH0_1                                                                  │

02:08:51 #4195 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:51 #4196 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:51 #4197 [Debug] > │     let v2 : bool = v1 < 51                                                  │

02:08:51 #4198 [Debug] > │     v2                                                                       │

02:08:51 #4199 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:51 #4200 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:51 #4201 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:51 #4202 [Debug] > │     v3                                                                       │

02:08:51 #4203 [Debug] > │ and method3 (v0 : float, v1 : float) : UH0 =                                 │

02:08:51 #4204 [Debug] > │     let v2 : bool = v1 < v0                                                  │

02:08:51 #4205 [Debug] > │     if v2 then                                                               │

02:08:51 #4206 [Debug] > │         let v3 : float = 0.1 * v1                                            │

02:08:51 #4207 [Debug] > │         let v4 : float = 0.05 + v3                                           │

02:08:51 #4208 [Debug] > │         let v5 : float = v1 + 1.0                                            │

02:08:51 #4209 [Debug] > │         let v6 : UH0 = method3(v0, v5)                                       │

02:08:51 #4210 [Debug] > │         UH0_0(v4, v6)                                                        │

02:08:51 #4211 [Debug] > │     else                                                                     │

02:08:51 #4212 [Debug] > │         UH0_1                                                                │

02:08:51 #4213 [Debug] > │ and method5 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:08:51 #4214 [Debug] > │     match v0 with                                                            │

02:08:51 #4215 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:08:51 #4216 [Debug] > │         let v4 : UH0 = method5(v3, v1)                                       │

02:08:51 #4217 [Debug] > │         let v5 : float = v2 / 20.0                                           │

02:08:51 #4218 [Debug] > │         let v6 : int32 = int32 v5                                            │

02:08:51 #4219 [Debug] > │         let v7 : float = float v6                                            │

02:08:51 #4220 [Debug] > │         let v8 : float = v7 * 20.0                                           │

02:08:51 #4221 [Debug] > │         let v9 : float = v2 - v8                                             │

02:08:51 #4222 [Debug] > │         let v10 : bool = v9 > 0.0                                            │

02:08:51 #4223 [Debug] > │         let v12 : bool =                                                     │

02:08:51 #4224 [Debug] > │             if v10 then                                                      │

02:08:51 #4225 [Debug] > │                 let v11 : bool = v9 < 10.0                                   │

02:08:51 #4226 [Debug] > │                 v11                                                          │

02:08:51 #4227 [Debug] > │             else                                                             │

02:08:51 #4228 [Debug] > │                 false                                                        │

02:08:51 #4229 [Debug] > │         let v13 : float =                                                    │

02:08:51 #4230 [Debug] > │             if v12 then                                                      │

02:08:51 #4231 [Debug] > │                 10.0                                                         │

02:08:51 #4232 [Debug] > │             else                                                             │

02:08:51 #4233 [Debug] > │                 0.0                                                          │

02:08:51 #4234 [Debug] > │         let v14 : float = v13 / 20.0                                         │

02:08:51 #4235 [Debug] > │         let v15 : float = 0.1 * v14                                          │

02:08:51 #4236 [Debug] > │         UH0_0(v15, v4)                                                       │

02:08:51 #4237 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:08:51 #4238 [Debug] > │         v1                                                                   │

02:08:51 #4239 [Debug] > │ and method6 (v0 : UH0, v1 : float) : float =                                 │

02:08:51 #4240 [Debug] > │     match v0 with                                                            │

02:08:51 #4241 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:08:51 #4242 [Debug] > │         let v4 : float = v1 + v2                                             │

02:08:51 #4243 [Debug] > │         method6(v3, v4)                                                      │

02:08:51 #4244 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:08:51 #4245 [Debug] > │         v1                                                                   │

02:08:51 #4246 [Debug] > │ and method4 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:08:51 #4247 [Debug] > │     match v0 with                                                            │

02:08:51 #4248 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:08:51 #4249 [Debug] > │         let v4 : UH0 = method4(v3, v1)                                       │

02:08:51 #4250 [Debug] > │         let v5 : float = v2 - 0.05                                           │

02:08:51 #4251 [Debug] > │         let v6 : float = v5 - 0.05                                           │

02:08:51 #4252 [Debug] > │         let v7 : float = v6 / 0.1                                            │

02:08:51 #4253 [Debug] > │         let v8 : float = v7 + 1.0                                            │

02:08:51 #4254 [Debug] > │         let v9 : float = 0.0                                                 │

02:08:51 #4255 [Debug] > │         let v10 : UH0 = method3(v8, v9)                                      │

02:08:51 #4256 [Debug] > │         let v11 : UH0 = UH0_1                                                │

02:08:51 #4257 [Debug] > │         let v12 : UH0 = method5(v10, v11)                                    │

02:08:51 #4258 [Debug] > │         let v13 : float = 0.0                                                │

02:08:51 #4259 [Debug] > │         let v14 : float = method6(v12, v13)                                  │

02:08:51 #4260 [Debug] > │         let v15 : float = 0.1 * v14                                          │

02:08:51 #4261 [Debug] > │         UH0_0(v15, v4)                                                       │

02:08:51 #4262 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:08:51 #4263 [Debug] > │         v1                                                                   │

02:08:51 #4264 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:51 #4265 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:51 #4266 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (51)                       │

02:08:51 #4267 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:51 #4268 [Debug] > │     while method1(v1) do                                                     │

02:08:51 #4269 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:51 #4270 [Debug] > │         let v4 : float = float v3                                            │

02:08:51 #4271 [Debug] > │         let v5 : float = -5.0 + v4                                           │

02:08:51 #4272 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:51 #4273 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:51 #4274 [Debug] > │         v1.l0 <- v6                                                          │

02:08:51 #4275 [Debug] > │         ()                                                                   │

02:08:51 #4276 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:08:51 #4277 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:08:51 #4278 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:51 #4279 [Debug] > │     while method2(v7, v9) do                                                 │

02:08:51 #4280 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:08:51 #4281 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:08:51 #4282 [Debug] > │         let v13 : float = v12 - 0.05                                         │

02:08:51 #4283 [Debug] > │         let v14 : float = v13 - 0.05                                         │

02:08:51 #4284 [Debug] > │         let v15 : float = v14 / 0.1                                          │

02:08:51 #4285 [Debug] > │         let v16 : float = v15 + 1.0                                          │

02:08:51 #4286 [Debug] > │         let v17 : float = 0.0                                                │

02:08:51 #4287 [Debug] > │         let v18 : UH0 = method3(v16, v17)                                    │

02:08:51 #4288 [Debug] > │         let v19 : UH0 = UH0_1                                                │

02:08:51 #4289 [Debug] > │         let v20 : UH0 = method4(v18, v19)                                    │

02:08:51 #4290 [Debug] > │         let v21 : float = 0.0                                                │

02:08:51 #4291 [Debug] > │         let v22 : float = method6(v20, v21)                                  │

02:08:51 #4292 [Debug] > │         v8.[int v11] <- v22                                                  │

02:08:51 #4293 [Debug] > │         let v23 : int32 = v11 + 1                                            │

02:08:51 #4294 [Debug] > │         v9.l0 <- v23                                                         │

02:08:51 #4295 [Debug] > │         ()                                                                   │

02:08:51 #4296 [Debug] > │     let v24 : string = "position of bike (m)"                                │

02:08:51 #4297 [Debug] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:51 #4298 [Debug] > │ (v24, v0, v8)|]                                                              │

02:08:51 #4299 [Debug] > │     let v26 : string = "child pedaling then coasting"                        │

02:08:51 #4300 [Debug] > │     let v27 : string = "time (s)"                                            │

02:08:51 #4301 [Debug] > │     let v28 : string = ""                                                    │

02:08:51 #4302 [Debug] > │     struct (v26, v27, v28, v25)                                              │

02:08:51 #4303 [Debug] > │ method0()                                                                    │

02:08:51 #4304 [Debug] > │                                                                              │

02:08:51 #4305 [Debug] > │                                                                              │

02:08:51 #4306 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:51 #4307 [Debug] >

02:08:51 #4308 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:51 #4309 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:51 #4310 [Debug] > │ ## velocity_fv                                                               │

02:08:51 #4311 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:51 #4312 [Debug] >

02:08:51 #4313 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:51 #4314 [Debug] > inl newton_second_v m fs v0 =

02:08:51 #4315 [Debug] >     fs |> listm.map (fun f => f v0) |> listm'.sum |> fun x => x / m

02:08:51 #4316 [Debug] >

02:08:51 #4317 [Debug] > inl update_velocity dt m fs v0 =

02:08:51 #4318 [Debug] >     v0 + newton_second_v m fs v0 * dt

02:08:51 #4319 [Debug] >

02:08:51 #4320 [Debug] > inl velocity_fv dt m v0 fs t =

02:08:51 #4321 [Debug] >     stream.iterate (update_velocity dt m fs) v0

02:08:51 #4322 [Debug] >     |> stream.try_item (t / dt |> math.round |> abs)

02:08:51 #4323 [Debug] >     |> optionm'.default_value 0

02:08:51 #4324 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5120-2044-26f348edce5b\main.spi

02:08:51 #4325 [Debug] >

02:08:51 #4326 [Debug] > ╭─[ 200.67ms - stdout ]────────────────────────────────────────────────────────╮

02:08:51 #4327 [Debug] > │ ()                                                                           │

02:08:51 #4328 [Debug] > │                                                                              │

02:08:51 #4329 [Debug] > │                                                                              │

02:08:51 #4330 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:51 #4331 [Debug] >

02:08:51 #4332 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:51 #4333 [Debug] > inl f_air drag rho area v =

02:08:51 #4334 [Debug] >     -drag * rho * area * abs v * v / 2

02:08:51 #4335 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5140-4054-4de8f3469155\main.spi

02:08:51 #4336 [Debug] >

02:08:51 #4337 [Debug] > ╭─[ 183.12ms - stdout ]────────────────────────────────────────────────────────╮

02:08:51 #4338 [Debug] > │ ()                                                                           │

02:08:51 #4339 [Debug] > │                                                                              │

02:08:51 #4340 [Debug] > │                                                                              │

02:08:51 #4341 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:51 #4342 [Debug] >

02:08:51 #4343 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:51 #4344 [Debug] > // // test

02:08:51 #4345 [Debug] >

02:08:51 #4346 [Debug] > inl x = am'.init_series 0 60 0.5

02:08:51 #4347 [Debug] > inl y = x |> am.map (velocity_fv 1 70 0f64 [[ fun _ => 100; f_air 2 1.225 0.6

02:08:51 #4348 [Debug] > ]])

02:08:51 #4349 [Debug] > "bike velocity", "time (s)", "", ;[[ "velocity of bike (m/s)", x, y ]]

02:08:51 #4350 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5159-5900-5f47ee433b73\main.spi

02:08:52 #4351 [Debug] >

02:08:52 #4352 [Debug] > ╭─[ 498.81ms - return value ]──────────────────────────────────────────────────╮

02:08:52 #4353 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:52 #4354 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:52 #4355 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:52 #4356 [Debug] > │ stroke="none"/>                                                              │

02:08:52 #4357 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:52 #4358 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4359 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4360 [Debug] > │ bike velocity                                                                │

02:08:52 #4361 [Debug] > │ </text>                                                                      │

02:08:52 #4362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:08:52 #4363 [Debug] > │ y2="75"/>                                                                    │

02:08:52 #4364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:52 #4365 [Debug] > │ y2="75"/>                                                                    │

02:08:52 #4366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:08:52 #4367 [Debug] > │ y2="75"/>                                                                    │

02:08:52 #4368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:08:52 #4369 [Debug] > │ y2="75"/>                                                                    │

02:08:52 #4370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:08:52 #4371 [Debug] > │ y2="75"/>                                                                    │

02:08:52 #4372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:08:52 #4373 [Debug] > │ x2="103" y2="75"/>                                                           │

02:08:52 #4374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:08:52 #4375 [Debug] > │ x2="111" y2="75"/>                                                           │

02:08:52 #4376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:52 #4377 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:52 #4378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:08:52 #4379 [Debug] > │ x2="128" y2="75"/>                                                           │

02:08:52 #4380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:08:52 #4381 [Debug] > │ x2="136" y2="75"/>                                                           │

02:08:52 #4382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:08:52 #4383 [Debug] > │ x2="144" y2="75"/>                                                           │

02:08:52 #4384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:08:52 #4385 [Debug] > │ x2="153" y2="75"/>                                                           │

02:08:52 #4386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:08:52 #4387 [Debug] > │ x2="161" y2="75"/>                                                           │

02:08:52 #4388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:52 #4389 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:52 #4390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:08:52 #4391 [Debug] > │ x2="178" y2="75"/>                                                           │

02:08:52 #4392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:08:52 #4393 [Debug] > │ x2="186" y2="75"/>                                                           │

02:08:52 #4394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:08:52 #4395 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:52 #4396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:08:52 #4397 [Debug] > │ x2="203" y2="75"/>                                                           │

02:08:52 #4398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:08:52 #4399 [Debug] > │ x2="211" y2="75"/>                                                           │

02:08:52 #4400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:52 #4401 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:52 #4402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:08:52 #4403 [Debug] > │ x2="228" y2="75"/>                                                           │

02:08:52 #4404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:08:52 #4405 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:52 #4406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:08:52 #4407 [Debug] > │ x2="244" y2="75"/>                                                           │

02:08:52 #4408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:08:52 #4409 [Debug] > │ x2="252" y2="75"/>                                                           │

02:08:52 #4410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:08:52 #4411 [Debug] > │ x2="261" y2="75"/>                                                           │

02:08:52 #4412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:52 #4413 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:52 #4414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:08:52 #4415 [Debug] > │ x2="277" y2="75"/>                                                           │

02:08:52 #4416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:08:52 #4417 [Debug] > │ x2="286" y2="75"/>                                                           │

02:08:52 #4418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:08:52 #4419 [Debug] > │ x2="294" y2="75"/>                                                           │

02:08:52 #4420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:08:52 #4421 [Debug] > │ x2="302" y2="75"/>                                                           │

02:08:52 #4422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:08:52 #4423 [Debug] > │ x2="311" y2="75"/>                                                           │

02:08:52 #4424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:52 #4425 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:52 #4426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:08:52 #4427 [Debug] > │ x2="327" y2="75"/>                                                           │

02:08:52 #4428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:08:52 #4429 [Debug] > │ x2="336" y2="75"/>                                                           │

02:08:52 #4430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:08:52 #4431 [Debug] > │ x2="344" y2="75"/>                                                           │

02:08:52 #4432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:08:52 #4433 [Debug] > │ x2="352" y2="75"/>                                                           │

02:08:52 #4434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:08:52 #4435 [Debug] > │ x2="361" y2="75"/>                                                           │

02:08:52 #4436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:52 #4437 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:52 #4438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:08:52 #4439 [Debug] > │ x2="377" y2="75"/>                                                           │

02:08:52 #4440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:08:52 #4441 [Debug] > │ x2="386" y2="75"/>                                                           │

02:08:52 #4442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:08:52 #4443 [Debug] > │ x2="394" y2="75"/>                                                           │

02:08:52 #4444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:08:52 #4445 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:52 #4446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:08:52 #4447 [Debug] > │ x2="410" y2="75"/>                                                           │

02:08:52 #4448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:52 #4449 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:52 #4450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:08:52 #4451 [Debug] > │ x2="427" y2="75"/>                                                           │

02:08:52 #4452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:08:52 #4453 [Debug] > │ x2="435" y2="75"/>                                                           │

02:08:52 #4454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:08:52 #4455 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:52 #4456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:08:52 #4457 [Debug] > │ x2="452" y2="75"/>                                                           │

02:08:52 #4458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:08:52 #4459 [Debug] > │ x2="460" y2="75"/>                                                           │

02:08:52 #4460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:52 #4461 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:52 #4462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:08:52 #4463 [Debug] > │ x2="477" y2="75"/>                                                           │

02:08:52 #4464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:08:52 #4465 [Debug] > │ x2="485" y2="75"/>                                                           │

02:08:52 #4466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:08:52 #4467 [Debug] > │ x2="494" y2="75"/>                                                           │

02:08:52 #4468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:08:52 #4469 [Debug] > │ x2="502" y2="75"/>                                                           │

02:08:52 #4470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:08:52 #4471 [Debug] > │ x2="510" y2="75"/>                                                           │

02:08:52 #4472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:52 #4473 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:52 #4474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:08:52 #4475 [Debug] > │ x2="527" y2="75"/>                                                           │

02:08:52 #4476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:08:52 #4477 [Debug] > │ x2="535" y2="75"/>                                                           │

02:08:52 #4478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:08:52 #4479 [Debug] > │ x2="544" y2="75"/>                                                           │

02:08:52 #4480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:08:52 #4481 [Debug] > │ x2="552" y2="75"/>                                                           │

02:08:52 #4482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:08:52 #4483 [Debug] > │ x2="560" y2="75"/>                                                           │

02:08:52 #4484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:52 #4485 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:52 #4486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:08:52 #4487 [Debug] > │ x2="577" y2="75"/>                                                           │

02:08:52 #4488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:52 #4489 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:52 #4490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:08:52 #4491 [Debug] > │ x2="584" y2="401"/>                                                          │

02:08:52 #4492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:08:52 #4493 [Debug] > │ x2="584" y2="386"/>                                                          │

02:08:52 #4494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:08:52 #4495 [Debug] > │ x2="584" y2="372"/>                                                          │

02:08:52 #4496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="358"         │

02:08:52 #4497 [Debug] > │ x2="584" y2="358"/>                                                          │

02:08:52 #4498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:08:52 #4499 [Debug] > │ x2="584" y2="344"/>                                                          │

02:08:52 #4500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:08:52 #4501 [Debug] > │ x2="584" y2="330"/>                                                          │

02:08:52 #4502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:08:52 #4503 [Debug] > │ x2="584" y2="316"/>                                                          │

02:08:52 #4504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:08:52 #4505 [Debug] > │ x2="584" y2="302"/>                                                          │

02:08:52 #4506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:08:52 #4507 [Debug] > │ x2="584" y2="288"/>                                                          │

02:08:52 #4508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:08:52 #4509 [Debug] > │ x2="584" y2="273"/>                                                          │

02:08:52 #4510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="259"         │

02:08:52 #4511 [Debug] > │ x2="584" y2="259"/>                                                          │

02:08:52 #4512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="245"         │

02:08:52 #4513 [Debug] > │ x2="584" y2="245"/>                                                          │

02:08:52 #4514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:08:52 #4515 [Debug] > │ x2="584" y2="231"/>                                                          │

02:08:52 #4516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:08:52 #4517 [Debug] > │ x2="584" y2="217"/>                                                          │

02:08:52 #4518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="203"         │

02:08:52 #4519 [Debug] > │ x2="584" y2="203"/>                                                          │

02:08:52 #4520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:08:52 #4521 [Debug] > │ x2="584" y2="189"/>                                                          │

02:08:52 #4522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:08:52 #4523 [Debug] > │ x2="584" y2="175"/>                                                          │

02:08:52 #4524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:08:52 #4525 [Debug] > │ x2="584" y2="161"/>                                                          │

02:08:52 #4526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="146"         │

02:08:52 #4527 [Debug] > │ x2="584" y2="146"/>                                                          │

02:08:52 #4528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:08:52 #4529 [Debug] > │ x2="584" y2="132"/>                                                          │

02:08:52 #4530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:08:52 #4531 [Debug] > │ x2="584" y2="118"/>                                                          │

02:08:52 #4532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:08:52 #4533 [Debug] > │ x2="584" y2="104"/>                                                          │

02:08:52 #4534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="90" x2="584" │

02:08:52 #4535 [Debug] > │ y2="90"/>                                                                    │

02:08:52 #4536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="76" x2="584" │

02:08:52 #4537 [Debug] > │ y2="76"/>                                                                    │

02:08:52 #4538 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:52 #4539 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4540 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4541 [Debug] > │ time (s)                                                                     │

02:08:52 #4542 [Debug] > │ </text>                                                                      │

02:08:52 #4543 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:52 #4544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4545 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:52 #4546 [Debug] > │                                                                              │

02:08:52 #4547 [Debug] > │ </text>                                                                      │

02:08:52 #4548 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:52 #4549 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4550 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4551 [Debug] > │ time (s)                                                                     │

02:08:52 #4552 [Debug] > │ </text>                                                                      │

02:08:52 #4553 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4554 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4555 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:52 #4556 [Debug] > │                                                                              │

02:08:52 #4557 [Debug] > │ </text>                                                                      │

02:08:52 #4558 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:52 #4559 [Debug] > │ y2="75"/>                                                                    │

02:08:52 #4560 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="111" y1="424"        │

02:08:52 #4561 [Debug] > │ x2="111" y2="75"/>                                                           │

02:08:52 #4562 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="153" y1="424"        │

02:08:52 #4563 [Debug] > │ x2="153" y2="75"/>                                                           │

02:08:52 #4564 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="194" y1="424"        │

02:08:52 #4565 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:52 #4566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:08:52 #4567 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:52 #4568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="277" y1="424"        │

02:08:52 #4569 [Debug] > │ x2="277" y2="75"/>                                                           │

02:08:52 #4570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:52 #4571 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:52 #4572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="361" y1="424"        │

02:08:52 #4573 [Debug] > │ x2="361" y2="75"/>                                                           │

02:08:52 #4574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:08:52 #4575 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:52 #4576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="444" y1="424"        │

02:08:52 #4577 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:52 #4578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:08:52 #4579 [Debug] > │ x2="485" y2="75"/>                                                           │

02:08:52 #4580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:08:52 #4581 [Debug] > │ x2="527" y2="75"/>                                                           │

02:08:52 #4582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:52 #4583 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:52 #4584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:52 #4585 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:52 #4586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="358"         │

02:08:52 #4587 [Debug] > │ x2="584" y2="358"/>                                                          │

02:08:52 #4588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="302"         │

02:08:52 #4589 [Debug] > │ x2="584" y2="302"/>                                                          │

02:08:52 #4590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="245"         │

02:08:52 #4591 [Debug] > │ x2="584" y2="245"/>                                                          │

02:08:52 #4592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="189"         │

02:08:52 #4593 [Debug] > │ x2="584" y2="189"/>                                                          │

02:08:52 #4594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="132"         │

02:08:52 #4595 [Debug] > │ x2="584" y2="132"/>                                                          │

02:08:52 #4596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="76" x2="584" │

02:08:52 #4597 [Debug] > │ y2="76"/>                                                                    │

02:08:52 #4598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4599 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:52 #4600 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:52 #4601 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4602 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4603 [Debug] > │ 0.0                                                                          │

02:08:52 #4604 [Debug] > │ </text>                                                                      │

02:08:52 #4605 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4606 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:52 #4607 [Debug] > │ <text x="111" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4609 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4610 [Debug] > │ 5.0                                                                          │

02:08:52 #4611 [Debug] > │ </text>                                                                      │

02:08:52 #4612 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4613 [Debug] > │ points="111,69 111,74 "/>                                                    │

02:08:52 #4614 [Debug] > │ <text x="153" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4615 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4616 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4617 [Debug] > │ 10.0                                                                         │

02:08:52 #4618 [Debug] > │ </text>                                                                      │

02:08:52 #4619 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4620 [Debug] > │ points="153,69 153,74 "/>                                                    │

02:08:52 #4621 [Debug] > │ <text x="194" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4622 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4623 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4624 [Debug] > │ 15.0                                                                         │

02:08:52 #4625 [Debug] > │ </text>                                                                      │

02:08:52 #4626 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4627 [Debug] > │ points="194,69 194,74 "/>                                                    │

02:08:52 #4628 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4629 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4630 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4631 [Debug] > │ 20.0                                                                         │

02:08:52 #4632 [Debug] > │ </text>                                                                      │

02:08:52 #4633 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4634 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:08:52 #4635 [Debug] > │ <text x="277" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4636 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4637 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4638 [Debug] > │ 25.0                                                                         │

02:08:52 #4639 [Debug] > │ </text>                                                                      │

02:08:52 #4640 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4641 [Debug] > │ points="277,69 277,74 "/>                                                    │

02:08:52 #4642 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4643 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4644 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4645 [Debug] > │ 30.0                                                                         │

02:08:52 #4646 [Debug] > │ </text>                                                                      │

02:08:52 #4647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4648 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:52 #4649 [Debug] > │ <text x="361" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4650 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4651 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4652 [Debug] > │ 35.0                                                                         │

02:08:52 #4653 [Debug] > │ </text>                                                                      │

02:08:52 #4654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4655 [Debug] > │ points="361,69 361,74 "/>                                                    │

02:08:52 #4656 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4657 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4658 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4659 [Debug] > │ 40.0                                                                         │

02:08:52 #4660 [Debug] > │ </text>                                                                      │

02:08:52 #4661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4662 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:08:52 #4663 [Debug] > │ <text x="444" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4664 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4665 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4666 [Debug] > │ 45.0                                                                         │

02:08:52 #4667 [Debug] > │ </text>                                                                      │

02:08:52 #4668 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4669 [Debug] > │ points="444,69 444,74 "/>                                                    │

02:08:52 #4670 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4671 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4672 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4673 [Debug] > │ 50.0                                                                         │

02:08:52 #4674 [Debug] > │ </text>                                                                      │

02:08:52 #4675 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4676 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:08:52 #4677 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4678 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4679 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4680 [Debug] > │ 55.0                                                                         │

02:08:52 #4681 [Debug] > │ </text>                                                                      │

02:08:52 #4682 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4683 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:08:52 #4684 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:52 #4685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4686 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4687 [Debug] > │ 60.0                                                                         │

02:08:52 #4688 [Debug] > │ </text>                                                                      │

02:08:52 #4689 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4690 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:52 #4691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4692 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:52 #4693 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:52 #4694 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4695 [Debug] > │ 0.0                                                                          │

02:08:52 #4696 [Debug] > │ </text>                                                                      │

02:08:52 #4697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4698 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:52 #4699 [Debug] > │ <text x="45" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:52 #4700 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4701 [Debug] > │ 2.0                                                                          │

02:08:52 #4702 [Debug] > │ </text>                                                                      │

02:08:52 #4703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4704 [Debug] > │ points="49,358 54,358 "/>                                                    │

02:08:52 #4705 [Debug] > │ <text x="45" y="302" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:52 #4706 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4707 [Debug] > │ 4.0                                                                          │

02:08:52 #4708 [Debug] > │ </text>                                                                      │

02:08:52 #4709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4710 [Debug] > │ points="49,302 54,302 "/>                                                    │

02:08:52 #4711 [Debug] > │ <text x="45" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:52 #4712 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4713 [Debug] > │ 6.0                                                                          │

02:08:52 #4714 [Debug] > │ </text>                                                                      │

02:08:52 #4715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4716 [Debug] > │ points="49,245 54,245 "/>                                                    │

02:08:52 #4717 [Debug] > │ <text x="45" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:52 #4718 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4719 [Debug] > │ 8.0                                                                          │

02:08:52 #4720 [Debug] > │ </text>                                                                      │

02:08:52 #4721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4722 [Debug] > │ points="49,189 54,189 "/>                                                    │

02:08:52 #4723 [Debug] > │ <text x="45" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:52 #4724 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4725 [Debug] > │ 10.0                                                                         │

02:08:52 #4726 [Debug] > │ </text>                                                                      │

02:08:52 #4727 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4728 [Debug] > │ points="49,132 54,132 "/>                                                    │

02:08:52 #4729 [Debug] > │ <text x="45" y="76" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:52 #4730 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4731 [Debug] > │ 12.0                                                                         │

02:08:52 #4732 [Debug] > │ </text>                                                                      │

02:08:52 #4733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4734 [Debug] > │ points="49,76 54,76 "/>                                                      │

02:08:52 #4735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4736 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:52 #4737 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:52 #4738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4739 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4740 [Debug] > │ 0.0                                                                          │

02:08:52 #4741 [Debug] > │ </text>                                                                      │

02:08:52 #4742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4743 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:52 #4744 [Debug] > │ <text x="111" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4746 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4747 [Debug] > │ 5.0                                                                          │

02:08:52 #4748 [Debug] > │ </text>                                                                      │

02:08:52 #4749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4750 [Debug] > │ points="111,425 111,430 "/>                                                  │

02:08:52 #4751 [Debug] > │ <text x="153" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4753 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4754 [Debug] > │ 10.0                                                                         │

02:08:52 #4755 [Debug] > │ </text>                                                                      │

02:08:52 #4756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4757 [Debug] > │ points="153,425 153,430 "/>                                                  │

02:08:52 #4758 [Debug] > │ <text x="194" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4760 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4761 [Debug] > │ 15.0                                                                         │

02:08:52 #4762 [Debug] > │ </text>                                                                      │

02:08:52 #4763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4764 [Debug] > │ points="194,425 194,430 "/>                                                  │

02:08:52 #4765 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4767 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4768 [Debug] > │ 20.0                                                                         │

02:08:52 #4769 [Debug] > │ </text>                                                                      │

02:08:52 #4770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4771 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:08:52 #4772 [Debug] > │ <text x="277" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4774 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4775 [Debug] > │ 25.0                                                                         │

02:08:52 #4776 [Debug] > │ </text>                                                                      │

02:08:52 #4777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4778 [Debug] > │ points="277,425 277,430 "/>                                                  │

02:08:52 #4779 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4781 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4782 [Debug] > │ 30.0                                                                         │

02:08:52 #4783 [Debug] > │ </text>                                                                      │

02:08:52 #4784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4785 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:52 #4786 [Debug] > │ <text x="361" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4788 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4789 [Debug] > │ 35.0                                                                         │

02:08:52 #4790 [Debug] > │ </text>                                                                      │

02:08:52 #4791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4792 [Debug] > │ points="361,425 361,430 "/>                                                  │

02:08:52 #4793 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4795 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4796 [Debug] > │ 40.0                                                                         │

02:08:52 #4797 [Debug] > │ </text>                                                                      │

02:08:52 #4798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4799 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:08:52 #4800 [Debug] > │ <text x="444" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4802 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4803 [Debug] > │ 45.0                                                                         │

02:08:52 #4804 [Debug] > │ </text>                                                                      │

02:08:52 #4805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4806 [Debug] > │ points="444,425 444,430 "/>                                                  │

02:08:52 #4807 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4809 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4810 [Debug] > │ 50.0                                                                         │

02:08:52 #4811 [Debug] > │ </text>                                                                      │

02:08:52 #4812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4813 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:08:52 #4814 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4816 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4817 [Debug] > │ 55.0                                                                         │

02:08:52 #4818 [Debug] > │ </text>                                                                      │

02:08:52 #4819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4820 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:08:52 #4821 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:52 #4822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4823 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4824 [Debug] > │ 60.0                                                                         │

02:08:52 #4825 [Debug] > │ </text>                                                                      │

02:08:52 #4826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4827 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:52 #4828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4829 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:52 #4830 [Debug] > │ <text x="617" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:52 #4831 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4832 [Debug] > │ 0.0                                                                          │

02:08:52 #4833 [Debug] > │ </text>                                                                      │

02:08:52 #4834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4835 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:52 #4836 [Debug] > │ <text x="617" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:52 #4837 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4838 [Debug] > │ 2.0                                                                          │

02:08:52 #4839 [Debug] > │ </text>                                                                      │

02:08:52 #4840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4841 [Debug] > │ points="585,358 590,358 "/>                                                  │

02:08:52 #4842 [Debug] > │ <text x="617" y="302" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:52 #4843 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4844 [Debug] > │ 4.0                                                                          │

02:08:52 #4845 [Debug] > │ </text>                                                                      │

02:08:52 #4846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4847 [Debug] > │ points="585,302 590,302 "/>                                                  │

02:08:52 #4848 [Debug] > │ <text x="617" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:52 #4849 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4850 [Debug] > │ 6.0                                                                          │

02:08:52 #4851 [Debug] > │ </text>                                                                      │

02:08:52 #4852 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4853 [Debug] > │ points="585,245 590,245 "/>                                                  │

02:08:52 #4854 [Debug] > │ <text x="617" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:52 #4855 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4856 [Debug] > │ 8.0                                                                          │

02:08:52 #4857 [Debug] > │ </text>                                                                      │

02:08:52 #4858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4859 [Debug] > │ points="585,189 590,189 "/>                                                  │

02:08:52 #4860 [Debug] > │ <text x="595" y="132" dy="0.5ex" text-anchor="start"                         │

02:08:52 #4861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4862 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4863 [Debug] > │ 10.0                                                                         │

02:08:52 #4864 [Debug] > │ </text>                                                                      │

02:08:52 #4865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4866 [Debug] > │ points="585,132 590,132 "/>                                                  │

02:08:52 #4867 [Debug] > │ <text x="595" y="76" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:08:52 #4868 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:52 #4869 [Debug] > │ 12.0                                                                         │

02:08:52 #4870 [Debug] > │ </text>                                                                      │

02:08:52 #4871 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:52 #4872 [Debug] > │ points="585,76 590,76 "/>                                                    │

02:08:52 #4873 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:52 #4874 [Debug] > │ points="69,415 74,415 78,374 82,335 86,335 90,335 94,297 99,261 103,261      │

02:08:52 #4875 [Debug] > │ 107,261 111,230 115,202 119,202 124,202 128,179 132,159 136,159 140,159      │

02:08:52 #4876 [Debug] > │ 144,143 148,130 153,130 157,130 161,120 165,112 169,112 173,112 178,106      │

02:08:52 #4877 [Debug] > │ 182,101 186,101 190,101 194,97 198,94 203,94 207,94 211,92 215,91 219,91     │

02:08:52 #4878 [Debug] > │ 223,91 228,89 232,88 236,88 240,88 244,88 248,87 252,87 257,87 261,87 265,86 │

02:08:52 #4879 [Debug] > │ 269,86 273,86 277,86 282,86 286,86 290,86 294,86 298,86 302,86 307,86 311,86 │

02:08:52 #4880 [Debug] > │ 315,86 319,86 323,86 327,86 331,85 336,85 340,85 344,85 348,85 352,85 356,85 │

02:08:52 #4881 [Debug] > │ 361,85 365,85 369,85 373,85 377,85 381,85 386,85 390,85 394,85 398,85 402,85 │

02:08:52 #4882 [Debug] > │ 406,85 410,85 415,85 419,85 423,85 427,85 431,85 435,85 440,85 444,85 448,85 │

02:08:52 #4883 [Debug] > │ 452,85 456,85 460,85 465,85 469,85 473,85 477,85 481,85 485,85 490,85 494,85 │

02:08:52 #4884 [Debug] > │ 498,85 502,85 506,85 510,85 514,85 519,85 523,85 527,85 531,85 535,85 539,85 │

02:08:52 #4885 [Debug] > │ 544,85 548,85 552,85 556,85 560,85 564,85 569,85 "/>                         │

02:08:52 #4886 [Debug] > │ <rect x="410" y="235" width="170" height="30" opacity="1" fill="none"        │

02:08:52 #4887 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:52 #4888 [Debug] > │ <text x="450" y="245" dy="0.76em" text-anchor="start"                        │

02:08:52 #4889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:52 #4890 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:52 #4891 [Debug] > │ velocity of bike (m/s)                                                       │

02:08:52 #4892 [Debug] > │ </text>                                                                      │

02:08:52 #4893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:52 #4894 [Debug] > │ points="420,250 440,250 "/>                                                  │

02:08:52 #4895 [Debug] > │ </svg>                                                                       │

02:08:52 #4896 [Debug] > │                                                                              │

02:08:52 #4897 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:52 #4898 [Debug] >

02:08:52 #4899 [Debug] > ╭─[ 750.45ms - stdout ]────────────────────────────────────────────────────────╮

02:08:52 #4900 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:52 #4901 [Debug] > │ and UH0 =                                                                    │

02:08:52 #4902 [Debug] > │     | UH0_0 of float * (unit -> UH0)                                         │

02:08:52 #4903 [Debug] > │     | UH0_1                                                                  │

02:08:52 #4904 [Debug] > │ and [<Struct>] US0 =                                                         │

02:08:52 #4905 [Debug] > │     | US0_0                                                                  │

02:08:52 #4906 [Debug] > │     | US0_1 of f1_0 : float                                                  │

02:08:52 #4907 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:52 #4908 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:52 #4909 [Debug] > │     let v2 : bool = v1 < 121                                                 │

02:08:52 #4910 [Debug] > │     v2                                                                       │

02:08:52 #4911 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:52 #4912 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:52 #4913 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:52 #4914 [Debug] > │     v3                                                                       │

02:08:52 #4915 [Debug] > │ and closure129 () () : UH0 =                                                 │

02:08:52 #4916 [Debug] > │     let v0 : (unit -> UH0) = closure129()                                    │

02:08:52 #4917 [Debug] > │     UH0_0(11.664236870396083, v0)                                            │

02:08:52 #4918 [Debug] > │ and closure128 () () : UH0 =                                                 │

02:08:52 #4919 [Debug] > │     let v0 : (unit -> UH0) = closure129()                                    │

02:08:52 #4920 [Debug] > │     UH0_0(11.664236870396081, v0)                                            │

02:08:52 #4921 [Debug] > │ and closure127 () () : UH0 =                                                 │

02:08:52 #4922 [Debug] > │     let v0 : (unit -> UH0) = closure128()                                    │

02:08:52 #4923 [Debug] > │     UH0_0(11.66423687039608, v0)                                             │

02:08:52 #4924 [Debug] > │ and closure126 () () : UH0 =                                                 │

02:08:52 #4925 [Debug] > │     let v0 : (unit -> UH0) = closure127()                                    │

02:08:52 #4926 [Debug] > │     UH0_0(11.664236870396078, v0)                                            │

02:08:52 #4927 [Debug] > │ and closure125 () () : UH0 =                                                 │

02:08:52 #4928 [Debug] > │     let v0 : (unit -> UH0) = closure126()                                    │

02:08:52 #4929 [Debug] > │     UH0_0(11.664236870396074, v0)                                            │

02:08:52 #4930 [Debug] > │ and closure124 () () : UH0 =                                                 │

02:08:52 #4931 [Debug] > │     let v0 : (unit -> UH0) = closure125()                                    │

02:08:52 #4932 [Debug] > │     UH0_0(11.66423687039607, v0)                                             │

02:08:52 #4933 [Debug] > │ and closure123 () () : UH0 =                                                 │

02:08:52 #4934 [Debug] > │     let v0 : (unit -> UH0) = closure124()                                    │

02:08:52 #4935 [Debug] > │     UH0_0(11.664236870396065, v0)                                            │

02:08:52 #4936 [Debug] > │ and closure122 () () : UH0 =                                                 │

02:08:52 #4937 [Debug] > │     let v0 : (unit -> UH0) = closure123()                                    │

02:08:52 #4938 [Debug] > │     UH0_0(11.664236870396058, v0)                                            │

02:08:52 #4939 [Debug] > │ and closure121 () () : UH0 =                                                 │

02:08:52 #4940 [Debug] > │     let v0 : (unit -> UH0) = closure122()                                    │

02:08:52 #4941 [Debug] > │     UH0_0(11.66423687039605, v0)                                             │

02:08:52 #4942 [Debug] > │ and closure120 () () : UH0 =                                                 │

02:08:52 #4943 [Debug] > │     let v0 : (unit -> UH0) = closure121()                                    │

02:08:52 #4944 [Debug] > │     UH0_0(11.664236870396037, v0)                                            │

02:08:52 #4945 [Debug] > │ and closure119 () () : UH0 =                                                 │

02:08:52 #4946 [Debug] > │     let v0 : (unit -> UH0) = closure120()                                    │

02:08:52 #4947 [Debug] > │     UH0_0(11.66423687039602, v0)                                             │

02:08:52 #4948 [Debug] > │ and closure118 () () : UH0 =                                                 │

02:08:52 #4949 [Debug] > │     let v0 : (unit -> UH0) = closure119()                                    │

02:08:52 #4950 [Debug] > │     UH0_0(11.664236870396, v0)                                               │

02:08:52 #4951 [Debug] > │ and closure117 () () : UH0 =                                                 │

02:08:52 #4952 [Debug] > │     let v0 : (unit -> UH0) = closure118()                                    │

02:08:52 #4953 [Debug] > │     UH0_0(11.664236870395971, v0)                                            │

02:08:52 #4954 [Debug] > │ and closure116 () () : UH0 =                                                 │

02:08:52 #4955 [Debug] > │     let v0 : (unit -> UH0) = closure117()                                    │

02:08:52 #4956 [Debug] > │     UH0_0(11.664236870395934, v0)                                            │

02:08:52 #4957 [Debug] > │ and closure115 () () : UH0 =                                                 │

02:08:52 #4958 [Debug] > │     let v0 : (unit -> UH0) = closure116()                                    │

02:08:52 #4959 [Debug] > │     UH0_0(11.664236870395884, v0)                                            │

02:08:52 #4960 [Debug] > │ and closure114 () () : UH0 =                                                 │

02:08:52 #4961 [Debug] > │     let v0 : (unit -> UH0) = closure115()                                    │

02:08:52 #4962 [Debug] > │     UH0_0(11.664236870395818, v0)                                            │

02:08:52 #4963 [Debug] > │ and closure113 () () : UH0 =                                                 │

02:08:52 #4964 [Debug] > │     let v0 : (unit -> UH0) = closure114()                                    │

02:08:52 #4965 [Debug] > │     UH0_0(11.664236870395731, v0)                                            │

02:08:52 #4966 [Debug] > │ and closure112 () () : UH0 =                                                 │

02:08:52 #4967 [Debug] > │     let v0 : (unit -> UH0) = closure113()                                    │

02:08:52 #4968 [Debug] > │     UH0_0(11.664236870395616, v0)                                            │

02:08:52 #4969 [Debug] > │ and closure111 () () : UH0 =                                                 │

02:08:52 #4970 [Debug] > │     let v0 : (unit -> UH0) = closure112()                                    │

02:08:52 #4971 [Debug] > │     UH0_0(11.664236870395463, v0)                                            │

02:08:52 #4972 [Debug] > │ and closure110 () () : UH0 =                                                 │

02:08:52 #4973 [Debug] > │     let v0 : (unit -> UH0) = closure111()                                    │

02:08:52 #4974 [Debug] > │     UH0_0(11.66423687039526, v0)                                             │

02:08:52 #4975 [Debug] > │ and closure109 () () : UH0 =                                                 │

02:08:52 #4976 [Debug] > │     let v0 : (unit -> UH0) = closure110()                                    │

02:08:52 #4977 [Debug] > │     UH0_0(11.664236870394992, v0)                                            │

02:08:52 #4978 [Debug] > │ and closure108 () () : UH0 =                                                 │

02:08:52 #4979 [Debug] > │     let v0 : (unit -> UH0) = closure109()                                    │

02:08:52 #4980 [Debug] > │     UH0_0(11.664236870394637, v0)                                            │

02:08:52 #4981 [Debug] > │ and closure107 () () : UH0 =                                                 │

02:08:52 #4982 [Debug] > │     let v0 : (unit -> UH0) = closure108()                                    │

02:08:52 #4983 [Debug] > │     UH0_0(11.664236870394168, v0)                                            │

02:08:52 #4984 [Debug] > │ and closure106 () () : UH0 =                                                 │

02:08:52 #4985 [Debug] > │     let v0 : (unit -> UH0) = closure107()                                    │

02:08:52 #4986 [Debug] > │     UH0_0(11.664236870393546, v0)                                            │

02:08:52 #4987 [Debug] > │ and closure105 () () : UH0 =                                                 │

02:08:52 #4988 [Debug] > │     let v0 : (unit -> UH0) = closure106()                                    │

02:08:52 #4989 [Debug] > │     UH0_0(11.664236870392722, v0)                                            │

02:08:52 #4990 [Debug] > │ and closure104 () () : UH0 =                                                 │

02:08:52 #4991 [Debug] > │     let v0 : (unit -> UH0) = closure105()                                    │

02:08:52 #4992 [Debug] > │     UH0_0(11.664236870391631, v0)                                            │

02:08:52 #4993 [Debug] > │ and closure103 () () : UH0 =                                                 │

02:08:52 #4994 [Debug] > │     let v0 : (unit -> UH0) = closure104()                                    │

02:08:52 #4995 [Debug] > │     UH0_0(11.664236870390187, v0)                                            │

02:08:52 #4996 [Debug] > │ and closure102 () () : UH0 =                                                 │

02:08:52 #4997 [Debug] > │     let v0 : (unit -> UH0) = closure103()                                    │

02:08:52 #4998 [Debug] > │     UH0_0(11.664236870388274, v0)                                            │

02:08:52 #4999 [Debug] > │ and closure101 () () : UH0 =                                                 │

02:08:52 #5000 [Debug] > │     let v0 : (unit -> UH0) = closure102()                                    │

02:08:52 #5001 [Debug] > │     UH0_0(11.66423687038574, v0)                                             │

02:08:52 #5002 [Debug] > │ and closure100 () () : UH0 =                                                 │

02:08:52 #5003 [Debug] > │     let v0 : (unit -> UH0) = closure101()                                    │

02:08:52 #5004 [Debug] > │     UH0_0(11.664236870382384, v0)                                            │

02:08:52 #5005 [Debug] > │ and closure99 () () : UH0 =                                                  │

02:08:52 #5006 [Debug] > │     let v0 : (unit -> UH0) = closure100()                                    │

02:08:52 #5007 [Debug] > │     UH0_0(11.664236870377938, v0)                                            │

02:08:52 #5008 [Debug] > │ and closure98 () () : UH0 =                                                  │

02:08:52 #5009 [Debug] > │     let v0 : (unit -> UH0) = closure99()                                     │

02:08:52 #5010 [Debug] > │     UH0_0(11.66423687037205, v0)                                             │

02:08:52 #5011 [Debug] > │ and closure97 () () : UH0 =                                                  │

02:08:52 #5012 [Debug] > │     let v0 : (unit -> UH0) = closure98()                                     │

02:08:52 #5013 [Debug] > │     UH0_0(11.664236870364254, v0)                                            │

02:08:52 #5014 [Debug] > │ and closure96 () () : UH0 =                                                  │

02:08:52 #5015 [Debug] > │     let v0 : (unit -> UH0) = closure97()                                     │

02:08:52 #5016 [Debug] > │     UH0_0(11.664236870353927, v0)                                            │

02:08:52 #5017 [Debug] > │ and closure95 () () : UH0 =                                                  │

02:08:52 #5018 [Debug] > │     let v0 : (unit -> UH0) = closure96()                                     │

02:08:52 #5019 [Debug] > │     UH0_0(11.664236870340249, v0)                                            │

02:08:52 #5020 [Debug] > │ and closure94 () () : UH0 =                                                  │

02:08:52 #5021 [Debug] > │     let v0 : (unit -> UH0) = closure95()                                     │

02:08:52 #5022 [Debug] > │     UH0_0(11.664236870322135, v0)                                            │

02:08:52 #5023 [Debug] > │ and closure93 () () : UH0 =                                                  │

02:08:52 #5024 [Debug] > │     let v0 : (unit -> UH0) = closure94()                                     │

02:08:52 #5025 [Debug] > │     UH0_0(11.664236870298145, v0)                                            │

02:08:52 #5026 [Debug] > │ and closure92 () () : UH0 =                                                  │

02:08:52 #5027 [Debug] > │     let v0 : (unit -> UH0) = closure93()                                     │

02:08:52 #5028 [Debug] > │     UH0_0(11.664236870266372, v0)                                            │

02:08:52 #5029 [Debug] > │ and closure91 () () : UH0 =                                                  │

02:08:52 #5030 [Debug] > │     let v0 : (unit -> UH0) = closure92()                                     │

02:08:52 #5031 [Debug] > │     UH0_0(11.664236870224292, v0)                                            │

02:08:52 #5032 [Debug] > │ and closure90 () () : UH0 =                                                  │

02:08:52 #5033 [Debug] > │     let v0 : (unit -> UH0) = closure91()                                     │

02:08:52 #5034 [Debug] > │     UH0_0(11.66423687016856, v0)                                             │

02:08:52 #5035 [Debug] > │ and closure89 () () : UH0 =                                                  │

02:08:52 #5036 [Debug] > │     let v0 : (unit -> UH0) = closure90()                                     │

02:08:52 #5037 [Debug] > │     UH0_0(11.664236870094747, v0)                                            │

02:08:52 #5038 [Debug] > │ and closure88 () () : UH0 =                                                  │

02:08:52 #5039 [Debug] > │     let v0 : (unit -> UH0) = closure89()                                     │

02:08:52 #5040 [Debug] > │     UH0_0(11.664236869996989, v0)                                            │

02:08:52 #5041 [Debug] > │ and closure87 () () : UH0 =                                                  │

02:08:52 #5042 [Debug] > │     let v0 : (unit -> UH0) = closure88()                                     │

02:08:52 #5043 [Debug] > │     UH0_0(11.664236869867516, v0)                                            │

02:08:52 #5044 [Debug] > │ and closure86 () () : UH0 =                                                  │

02:08:52 #5045 [Debug] > │     let v0 : (unit -> UH0) = closure87()                                     │

02:08:52 #5046 [Debug] > │     UH0_0(11.66423686969604, v0)                                             │

02:08:52 #5047 [Debug] > │ and closure85 () () : UH0 =                                                  │

02:08:52 #5048 [Debug] > │     let v0 : (unit -> UH0) = closure86()                                     │

02:08:52 #5049 [Debug] > │     UH0_0(11.664236869468937, v0)                                            │

02:08:52 #5050 [Debug] > │ and closure84 () () : UH0 =                                                  │

02:08:52 #5051 [Debug] > │     let v0 : (unit -> UH0) = closure85()                                     │

02:08:52 #5052 [Debug] > │     UH0_0(11.664236869168157, v0)                                            │

02:08:52 #5053 [Debug] > │ and closure83 () () : UH0 =                                                  │

02:08:52 #5054 [Debug] > │     let v0 : (unit -> UH0) = closure84()                                     │

02:08:52 #5055 [Debug] > │     UH0_0(11.6642368687698, v0)                                              │

02:08:52 #5056 [Debug] > │ and closure82 () () : UH0 =                                                  │

02:08:52 #5057 [Debug] > │     let v0 : (unit -> UH0) = closure83()                                     │

02:08:52 #5058 [Debug] > │     UH0_0(11.664236868242211, v0)                                            │

02:08:52 #5059 [Debug] > │ and closure81 () () : UH0 =                                                  │

02:08:52 #5060 [Debug] > │     let v0 : (unit -> UH0) = closure82()                                     │

02:08:52 #5061 [Debug] > │     UH0_0(11.664236867543465, v0)                                            │

02:08:52 #5062 [Debug] > │ and closure80 () () : UH0 =                                                  │

02:08:52 #5063 [Debug] > │     let v0 : (unit -> UH0) = closure81()                                     │

02:08:52 #5064 [Debug] > │     UH0_0(11.664236866618037, v0)                                            │

02:08:52 #5065 [Debug] > │ and closure79 () () : UH0 =                                                  │

02:08:52 #5066 [Debug] > │     let v0 : (unit -> UH0) = closure80()                                     │

02:08:52 #5067 [Debug] > │     UH0_0(11.664236865392386, v0)                                            │

02:08:52 #5068 [Debug] > │ and closure78 () () : UH0 =                                                  │

02:08:52 #5069 [Debug] > │     let v0 : (unit -> UH0) = closure79()                                     │

02:08:52 #5070 [Debug] > │     UH0_0(11.664236863769117, v0)                                            │

02:08:52 #5071 [Debug] > │ and closure77 () () : UH0 =                                                  │

02:08:52 #5072 [Debug] > │     let v0 : (unit -> UH0) = closure78()                                     │

02:08:52 #5073 [Debug] > │     UH0_0(11.664236861619237, v0)                                            │

02:08:52 #5074 [Debug] > │ and closure76 () () : UH0 =                                                  │

02:08:52 #5075 [Debug] > │     let v0 : (unit -> UH0) = closure77()                                     │

02:08:52 #5076 [Debug] > │     UH0_0(11.664236858771906, v0)                                            │

02:08:52 #5077 [Debug] > │ and closure75 () () : UH0 =                                                  │

02:08:52 #5078 [Debug] > │     let v0 : (unit -> UH0) = closure76()                                     │

02:08:52 #5079 [Debug] > │     UH0_0(11.66423685500086, v0)                                             │

02:08:52 #5080 [Debug] > │ and closure74 () () : UH0 =                                                  │

02:08:52 #5081 [Debug] > │     let v0 : (unit -> UH0) = closure75()                                     │

02:08:52 #5082 [Debug] > │     UH0_0(11.664236850006436, v0)                                            │

02:08:52 #5083 [Debug] > │ and closure73 () () : UH0 =                                                  │

02:08:52 #5084 [Debug] > │     let v0 : (unit -> UH0) = closure74()                                     │

02:08:52 #5085 [Debug] > │     UH0_0(11.664236843391752, v0)                                            │

02:08:52 #5086 [Debug] > │ and closure72 () () : UH0 =                                                  │

02:08:52 #5087 [Debug] > │     let v0 : (unit -> UH0) = closure73()                                     │

02:08:52 #5088 [Debug] > │     UH0_0(11.664236834631172, v0)                                            │

02:08:52 #5089 [Debug] > │ and closure71 () () : UH0 =                                                  │

02:08:52 #5090 [Debug] > │     let v0 : (unit -> UH0) = closure72()                                     │

02:08:52 #5091 [Debug] > │     UH0_0(11.66423682302854, v0)                                             │

02:08:52 #5092 [Debug] > │ and closure70 () () : UH0 =                                                  │

02:08:52 #5093 [Debug] > │     let v0 : (unit -> UH0) = closure71()                                     │

02:08:52 #5094 [Debug] > │     UH0_0(11.664236807661855, v0)                                            │

02:08:52 #5095 [Debug] > │ and closure69 () () : UH0 =                                                  │

02:08:52 #5096 [Debug] > │     let v0 : (unit -> UH0) = closure70()                                     │

02:08:52 #5097 [Debug] > │     UH0_0(11.664236787310005, v0)                                            │

02:08:52 #5098 [Debug] > │ and closure68 () () : UH0 =                                                  │

02:08:52 #5099 [Debug] > │     let v0 : (unit -> UH0) = closure69()                                     │

02:08:52 #5100 [Debug] > │     UH0_0(11.664236760355733, v0)                                            │

02:08:52 #5101 [Debug] > │ and closure67 () () : UH0 =                                                  │

02:08:52 #5102 [Debug] > │     let v0 : (unit -> UH0) = closure68()                                     │

02:08:52 #5103 [Debug] > │     UH0_0(11.664236724657123, v0)                                            │

02:08:52 #5104 [Debug] > │ and closure66 () () : UH0 =                                                  │

02:08:52 #5105 [Debug] > │     let v0 : (unit -> UH0) = closure67()                                     │

02:08:52 #5106 [Debug] > │     UH0_0(11.66423667737739, v0)                                             │

02:08:52 #5107 [Debug] > │ and closure65 () () : UH0 =                                                  │

02:08:52 #5108 [Debug] > │     let v0 : (unit -> UH0) = closure66()                                     │

02:08:52 #5109 [Debug] > │     UH0_0(11.664236614759462, v0)                                            │

02:08:52 #5110 [Debug] > │ and closure64 () () : UH0 =                                                  │

02:08:52 #5111 [Debug] > │     let v0 : (unit -> UH0) = closure65()                                     │

02:08:52 #5112 [Debug] > │     UH0_0(11.664236531827415, v0)                                            │

02:08:52 #5113 [Debug] > │ and closure63 () () : UH0 =                                                  │

02:08:52 #5114 [Debug] > │     let v0 : (unit -> UH0) = closure64()                                     │

02:08:52 #5115 [Debug] > │     UH0_0(11.664236421991067, v0)                                            │

02:08:52 #5116 [Debug] > │ and closure62 () () : UH0 =                                                  │

02:08:52 #5117 [Debug] > │     let v0 : (unit -> UH0) = closure63()                                     │

02:08:52 #5118 [Debug] > │     UH0_0(11.664236276522294, v0)                                            │

02:08:52 #5119 [Debug] > │ and closure61 () () : UH0 =                                                  │

02:08:52 #5120 [Debug] > │     let v0 : (unit -> UH0) = closure62()                                     │

02:08:52 #5121 [Debug] > │     UH0_0(11.664236083861448, v0)                                            │

02:08:52 #5122 [Debug] > │ and closure60 () () : UH0 =                                                  │

02:08:52 #5123 [Debug] > │     let v0 : (unit -> UH0) = closure61()                                     │

02:08:52 #5124 [Debug] > │     UH0_0(11.664235828698772, v0)                                            │

02:08:52 #5125 [Debug] > │ and closure59 () () : UH0 =                                                  │

02:08:52 #5126 [Debug] > │     let v0 : (unit -> UH0) = closure60()                                     │

02:08:52 #5127 [Debug] > │     UH0_0(11.664235490757811, v0)                                            │

02:08:52 #5128 [Debug] > │ and closure58 () () : UH0 =                                                  │

02:08:52 #5129 [Debug] > │     let v0 : (unit -> UH0) = closure59()                                     │

02:08:52 #5130 [Debug] > │     UH0_0(11.664235043184158, v0)                                            │

02:08:52 #5131 [Debug] > │ and closure57 () () : UH0 =                                                  │

02:08:52 #5132 [Debug] > │     let v0 : (unit -> UH0) = closure58()                                     │

02:08:52 #5133 [Debug] > │     UH0_0(11.66423445041147, v0)                                             │

02:08:52 #5134 [Debug] > │ and closure56 () () : UH0 =                                                  │

02:08:52 #5135 [Debug] > │     let v0 : (unit -> UH0) = closure57()                                     │

02:08:52 #5136 [Debug] > │     UH0_0(11.664233665335203, v0)                                            │

02:08:52 #5137 [Debug] > │ and closure55 () () : UH0 =                                                  │

02:08:52 #5138 [Debug] > │     let v0 : (unit -> UH0) = closure56()                                     │

02:08:52 #5139 [Debug] > │     UH0_0(11.664232625569467, v0)                                            │

02:08:52 #5140 [Debug] > │ and closure54 () () : UH0 =                                                  │

02:08:52 #5141 [Debug] > │     let v0 : (unit -> UH0) = closure55()                                     │

02:08:52 #5142 [Debug] > │     UH0_0(11.664231248489562, v0)                                            │

02:08:52 #5143 [Debug] > │ and closure53 () () : UH0 =                                                  │

02:08:52 #5144 [Debug] > │     let v0 : (unit -> UH0) = closure54()                                     │

02:08:52 #5145 [Debug] > │     UH0_0(11.664229424666262, v0)                                            │

02:08:52 #5146 [Debug] > │ and closure52 () () : UH0 =                                                  │

02:08:52 #5147 [Debug] > │     let v0 : (unit -> UH0) = closure53()                                     │

02:08:52 #5148 [Debug] > │     UH0_0(11.66422700917009, v0)                                             │

02:08:52 #5149 [Debug] > │ and closure51 () () : UH0 =                                                  │

02:08:52 #5150 [Debug] > │     let v0 : (unit -> UH0) = closure52()                                     │

02:08:52 #5151 [Debug] > │     UH0_0(11.664223810054642, v0)                                            │

02:08:52 #5152 [Debug] > │ and closure50 () () : UH0 =                                                  │

02:08:52 #5153 [Debug] > │     let v0 : (unit -> UH0) = closure51()                                     │

02:08:52 #5154 [Debug] > │     UH0_0(11.664219573103773, v0)                                            │

02:08:52 #5155 [Debug] > │ and closure49 () () : UH0 =                                                  │

02:08:52 #5156 [Debug] > │     let v0 : (unit -> UH0) = closure50()                                     │

02:08:52 #5157 [Debug] > │     UH0_0(11.6642139616307, v0)                                              │

02:08:52 #5158 [Debug] > │ and closure48 () () : UH0 =                                                  │

02:08:52 #5159 [Debug] > │     let v0 : (unit -> UH0) = closure49()                                     │

02:08:52 #5160 [Debug] > │     UH0_0(11.664206529723813, v0)                                            │

02:08:52 #5161 [Debug] > │ and closure47 () () : UH0 =                                                  │

02:08:52 #5162 [Debug] > │     let v0 : (unit -> UH0) = closure48()                                     │

02:08:52 #5163 [Debug] > │     UH0_0(11.664196686813408, v0)                                            │

02:08:52 #5164 [Debug] > │ and closure46 () () : UH0 =                                                  │

02:08:52 #5165 [Debug] > │     let v0 : (unit -> UH0) = closure47()                                     │

02:08:52 #5166 [Debug] > │     UH0_0(11.664183650743945, v0)                                            │

02:08:52 #5167 [Debug] > │ and closure45 () () : UH0 =                                                  │

02:08:52 #5168 [Debug] > │     let v0 : (unit -> UH0) = closure46()                                     │

02:08:52 #5169 [Debug] > │     UH0_0(11.664166385623318, v0)                                            │

02:08:52 #5170 [Debug] > │ and closure44 () () : UH0 =                                                  │

02:08:52 #5171 [Debug] > │     let v0 : (unit -> UH0) = closure45()                                     │

02:08:52 #5172 [Debug] > │     UH0_0(11.664143519511356, v0)                                            │

02:08:52 #5173 [Debug] > │ and closure43 () () : UH0 =                                                  │

02:08:52 #5174 [Debug] > │     let v0 : (unit -> UH0) = closure44()                                     │

02:08:52 #5175 [Debug] > │     UH0_0(11.664113235408447, v0)                                            │

02:08:52 #5176 [Debug] > │ and closure42 () () : UH0 =                                                  │

02:08:52 #5177 [Debug] > │     let v0 : (unit -> UH0) = closure43()                                     │

02:08:52 #5178 [Debug] > │     UH0_0(11.66407312688485, v0)                                             │

02:08:52 #5179 [Debug] > │ and closure41 () () : UH0 =                                                  │

02:08:52 #5180 [Debug] > │     let v0 : (unit -> UH0) = closure42()                                     │

02:08:52 #5181 [Debug] > │     UH0_0(11.664020006883758, v0)                                            │

02:08:52 #5182 [Debug] > │ and closure40 () () : UH0 =                                                  │

02:08:52 #5183 [Debug] > │     let v0 : (unit -> UH0) = closure41()                                     │

02:08:52 #5184 [Debug] > │     UH0_0(11.663949654514292, v0)                                            │

02:08:52 #5185 [Debug] > │ and closure39 () () : UH0 =                                                  │

02:08:52 #5186 [Debug] > │     let v0 : (unit -> UH0) = closure40()                                     │

02:08:52 #5187 [Debug] > │     UH0_0(11.663856479730171, v0)                                            │

02:08:52 #5188 [Debug] > │ and closure38 () () : UH0 =                                                  │

02:08:52 #5189 [Debug] > │     let v0 : (unit -> UH0) = closure39()                                     │

02:08:52 #5190 [Debug] > │     UH0_0(11.663733079277343, v0)                                            │

02:08:52 #5191 [Debug] > │ and closure37 () () : UH0 =                                                  │

02:08:52 #5192 [Debug] > │     let v0 : (unit -> UH0) = closure38()                                     │

02:08:52 #5193 [Debug] > │     UH0_0(11.663569648675777, v0)                                            │

02:08:52 #5194 [Debug] > │ and closure36 () () : UH0 =                                                  │

02:08:52 #5195 [Debug] > │     let v0 : (unit -> UH0) = closure37()                                     │

02:08:52 #5196 [Debug] > │     UH0_0(11.663353203599439, v0)                                            │

02:08:52 #5197 [Debug] > │ and closure35 () () : UH0 =                                                  │

02:08:52 #5198 [Debug] > │     let v0 : (unit -> UH0) = closure36()                                     │

02:08:52 #5199 [Debug] > │     UH0_0(11.663066548940721, v0)                                            │

02:08:52 #5200 [Debug] > │ and closure34 () () : UH0 =                                                  │

02:08:52 #5201 [Debug] > │     let v0 : (unit -> UH0) = closure35()                                     │

02:08:52 #5202 [Debug] > │     UH0_0(11.662686913915445, v0)                                            │

02:08:52 #5203 [Debug] > │ and closure33 () () : UH0 =                                                  │

02:08:52 #5204 [Debug] > │     let v0 : (unit -> UH0) = closure34()                                     │

02:08:52 #5205 [Debug] > │     UH0_0(11.662184145236864, v0)                                            │

02:08:52 #5206 [Debug] > │ and closure32 () () : UH0 =                                                  │

02:08:52 #5207 [Debug] > │     let v0 : (unit -> UH0) = closure33()                                     │

02:08:52 #5208 [Debug] > │     UH0_0(11.661518315638029, v0)                                            │

02:08:52 #5209 [Debug] > │ and closure31 () () : UH0 =                                                  │

02:08:52 #5210 [Debug] > │     let v0 : (unit -> UH0) = closure32()                                     │

02:08:52 #5211 [Debug] > │     UH0_0(11.66063655920926, v0)                                             │

02:08:52 #5212 [Debug] > │ and closure30 () () : UH0 =                                                  │

02:08:52 #5213 [Debug] > │     let v0 : (unit -> UH0) = closure31()                                     │

02:08:52 #5214 [Debug] > │     UH0_0(11.659468884709733, v0)                                            │

02:08:52 #5215 [Debug] > │ and closure29 () () : UH0 =                                                  │

02:08:52 #5216 [Debug] > │     let v0 : (unit -> UH0) = closure30()                                     │

02:08:52 #5217 [Debug] > │     UH0_0(11.657922638782631, v0)                                            │

02:08:52 #5218 [Debug] > │ and closure28 () () : UH0 =                                                  │

02:08:52 #5219 [Debug] > │     let v0 : (unit -> UH0) = closure29()                                     │

02:08:52 #5220 [Debug] > │     UH0_0(11.655875187195818, v0)                                            │

02:08:52 #5221 [Debug] > │ and closure27 () () : UH0 =                                                  │

02:08:52 #5222 [Debug] > │     let v0 : (unit -> UH0) = closure28()                                     │

02:08:52 #5223 [Debug] > │     UH0_0(11.653164246713697, v0)                                            │

02:08:52 #5224 [Debug] > │ and closure26 () () : UH0 =                                                  │

02:08:52 #5225 [Debug] > │     let v0 : (unit -> UH0) = closure27()                                     │

02:08:52 #5226 [Debug] > │     UH0_0(11.64957512416459, v0)                                             │

02:08:52 #5227 [Debug] > │ and closure25 () () : UH0 =                                                  │

02:08:52 #5228 [Debug] > │     let v0 : (unit -> UH0) = closure26()                                     │

02:08:52 #5229 [Debug] > │     UH0_0(11.644823892116417, v0)                                            │

02:08:52 #5230 [Debug] > │ and closure24 () () : UH0 =                                                  │

02:08:52 #5231 [Debug] > │     let v0 : (unit -> UH0) = closure25()                                     │

02:08:52 #5232 [Debug] > │     UH0_0(11.63853524018339, v0)                                             │

02:08:52 #5233 [Debug] > │ and closure23 () () : UH0 =                                                  │

02:08:52 #5234 [Debug] > │     let v0 : (unit -> UH0) = closure24()                                     │

02:08:52 #5235 [Debug] > │     UH0_0(11.630213374558416, v0)                                            │

02:08:52 #5236 [Debug] > │ and closure22 () () : UH0 =                                                  │

02:08:52 #5237 [Debug] > │     let v0 : (unit -> UH0) = closure23()                                     │

02:08:52 #5238 [Debug] > │     UH0_0(11.619203884549703, v0)                                            │

02:08:52 #5239 [Debug] > │ and closure21 () () : UH0 =                                                  │

02:08:52 #5240 [Debug] > │     let v0 : (unit -> UH0) = closure22()                                     │

02:08:52 #5241 [Debug] > │     UH0_0(11.604643948207235, v0)                                            │

02:08:52 #5242 [Debug] > │ and closure20 () () : UH0 =                                                  │

02:08:52 #5243 [Debug] > │     let v0 : (unit -> UH0) = closure21()                                     │

02:08:52 #5244 [Debug] > │     UH0_0(11.585397618384544, v0)                                            │

02:08:52 #5245 [Debug] > │ and closure19 () () : UH0 =                                                  │

02:08:52 #5246 [Debug] > │     let v0 : (unit -> UH0) = closure20()                                     │

02:08:52 #5247 [Debug] > │     UH0_0(11.559972254267073, v0)                                            │

02:08:52 #5248 [Debug] > │ and closure18 () () : UH0 =                                                  │

02:08:52 #5249 [Debug] > │     let v0 : (unit -> UH0) = closure19()                                     │

02:08:52 #5250 [Debug] > │     UH0_0(11.526411536153837, v0)                                            │

02:08:52 #5251 [Debug] > │ and closure17 () () : UH0 =                                                  │

02:08:52 #5252 [Debug] > │     let v0 : (unit -> UH0) = closure18()                                     │

02:08:52 #5253 [Debug] > │     UH0_0(11.48216011776808, v0)                                             │

02:08:52 #5254 [Debug] > │ and closure16 () () : UH0 =                                                  │

02:08:52 #5255 [Debug] > │     let v0 : (unit -> UH0) = closure17()                                     │

02:08:52 #5256 [Debug] > │     UH0_0(11.42389519391233, v0)                                             │

02:08:52 #5257 [Debug] > │ and closure15 () () : UH0 =                                                  │

02:08:52 #5258 [Debug] > │     let v0 : (unit -> UH0) = closure16()                                     │

02:08:52 #5259 [Debug] > │     UH0_0(11.347321723441393, v0)                                            │

02:08:52 #5260 [Debug] > │ and closure14 () () : UH0 =                                                  │

02:08:52 #5261 [Debug] > │     let v0 : (unit -> UH0) = closure15()                                     │

02:08:52 #5262 [Debug] > │     UH0_0(11.246931775734161, v0)                                            │

02:08:52 #5263 [Debug] > │ and closure13 () () : UH0 =                                                  │

02:08:52 #5264 [Debug] > │     let v0 : (unit -> UH0) = closure14()                                     │

02:08:52 #5265 [Debug] > │     UH0_0(11.115736011467376, v0)                                            │

02:08:52 #5266 [Debug] > │ and closure12 () () : UH0 =                                                  │

02:08:52 #5267 [Debug] > │     let v0 : (unit -> UH0) = closure13()                                     │

02:08:52 #5268 [Debug] > │     UH0_0(10.94498876251829, v0)                                             │

02:08:52 #5269 [Debug] > │ and closure11 () () : UH0 =                                                  │

02:08:52 #5270 [Debug] > │     let v0 : (unit -> UH0) = closure12()                                     │

02:08:52 #5271 [Debug] > │     UH0_0(10.72394989903564, v0)                                             │

02:08:52 #5272 [Debug] > │ and closure10 () () : UH0 =                                                  │

02:08:52 #5273 [Debug] > │     let v0 : (unit -> UH0) = closure11()                                     │

02:08:52 #5274 [Debug] > │     UH0_0(10.439758275369812, v0)                                            │

02:08:52 #5275 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:08:52 #5276 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:08:52 #5277 [Debug] > │     UH0_0(10.077531599826058, v0)                                            │

02:08:52 #5278 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:08:52 #5279 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:08:52 #5280 [Debug] > │     UH0_0(9.62084761372258, v0)                                              │

02:08:52 #5281 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:08:52 #5282 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:08:52 #5283 [Debug] > │     UH0_0(9.052781056066443, v0)                                             │

02:08:52 #5284 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:08:52 #5285 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:08:52 #5286 [Debug] > │     UH0_0(8.357635347880503, v0)                                             │

02:08:52 #5287 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:08:52 #5288 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:08:52 #5289 [Debug] > │     UH0_0(7.523376447621674, v0)                                             │

02:08:52 #5290 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:08:52 #5291 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:08:52 #5292 [Debug] > │     UH0_0(6.544529054818572, v0)                                             │

02:08:52 #5293 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:08:52 #5294 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:08:52 #5295 [Debug] > │     UH0_0(5.424976512996006, v0)                                             │

02:08:52 #5296 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:08:52 #5297 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:08:52 #5298 [Debug] > │     UH0_0(4.179852321428571, v0)                                             │

02:08:52 #5299 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:08:52 #5300 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:08:52 #5301 [Debug] > │     UH0_0(2.835714285714286, v0)                                             │

02:08:52 #5302 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:08:52 #5303 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:08:52 #5304 [Debug] > │     UH0_0(1.4285714285714286, v0)                                            │

02:08:52 #5305 [Debug] > │ and method3 (v0 : float, v1 : UH0) : US0 =                                   │

02:08:52 #5306 [Debug] > │     match v1 with                                                            │

02:08:52 #5307 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:08:52 #5308 [Debug] > │         let v4 : bool = v0 <= 0.0                                            │

02:08:52 #5309 [Debug] > │         if v4 then                                                           │

02:08:52 #5310 [Debug] > │             US0_1(v2)                                                        │

02:08:52 #5311 [Debug] > │         else                                                                 │

02:08:52 #5312 [Debug] > │             let v6 : float = v0 - 1.0                                        │

02:08:52 #5313 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:08:52 #5314 [Debug] > │             method3(v6, v7)                                                  │

02:08:52 #5315 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:08:52 #5316 [Debug] > │         US0_0                                                                │

02:08:52 #5317 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:52 #5318 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:52 #5319 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (121)                      │

02:08:52 #5320 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:52 #5321 [Debug] > │     while method1(v1) do                                                     │

02:08:52 #5322 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:52 #5323 [Debug] > │         let v4 : float = float v3                                            │

02:08:52 #5324 [Debug] > │         let v5 : float = 0.5 * v4                                            │

02:08:52 #5325 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:52 #5326 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:52 #5327 [Debug] > │         v1.l0 <- v6                                                          │

02:08:52 #5328 [Debug] > │         ()                                                                   │

02:08:52 #5329 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:08:52 #5330 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:08:52 #5331 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:52 #5332 [Debug] > │     while method2(v7, v9) do                                                 │

02:08:52 #5333 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:08:52 #5334 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:08:52 #5335 [Debug] > │         let v13 : float = round v12                                          │

02:08:52 #5336 [Debug] > │         let v14 : float =  -v13                                              │

02:08:52 #5337 [Debug] > │         let v15 : bool = v13 >= v14                                          │

02:08:52 #5338 [Debug] > │         let v16 : float =                                                    │

02:08:52 #5339 [Debug] > │             if v15 then                                                      │

02:08:52 #5340 [Debug] > │                 v13                                                          │

02:08:52 #5341 [Debug] > │             else                                                             │

02:08:52 #5342 [Debug] > │                 v14                                                          │

02:08:52 #5343 [Debug] > │         let v17 : float = 0.0                                                │

02:08:52 #5344 [Debug] > │         let v18 : (unit -> UH0) = closure0()                                 │

02:08:52 #5345 [Debug] > │         let v19 : UH0 = UH0_0(v17, v18)                                      │

02:08:52 #5346 [Debug] > │         let v20 : US0 = method3(v16, v19)                                    │

02:08:52 #5347 [Debug] > │         let v23 : float =                                                    │

02:08:52 #5348 [Debug] > │             match v20 with                                                   │

02:08:52 #5349 [Debug] > │             | US0_0 -> (* None *)                                            │

02:08:52 #5350 [Debug] > │                 0.0                                                          │

02:08:52 #5351 [Debug] > │             | US0_1(v21) -> (* Some *)                                       │

02:08:52 #5352 [Debug] > │                 v21                                                          │

02:08:52 #5353 [Debug] > │         v8.[int v11] <- v23                                                  │

02:08:52 #5354 [Debug] > │         let v24 : int32 = v11 + 1                                            │

02:08:52 #5355 [Debug] > │         v9.l0 <- v24                                                         │

02:08:52 #5356 [Debug] > │         ()                                                                   │

02:08:52 #5357 [Debug] > │     let v25 : string = "velocity of bike (m/s)"                              │

02:08:52 #5358 [Debug] > │     let v26 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:52 #5359 [Debug] > │ (v25, v0, v8)|]                                                              │

02:08:52 #5360 [Debug] > │     let v27 : string = "bike velocity"                                       │

02:08:52 #5361 [Debug] > │     let v28 : string = "time (s)"                                            │

02:08:52 #5362 [Debug] > │     let v29 : string = ""                                                    │

02:08:52 #5363 [Debug] > │     struct (v27, v28, v29, v26)                                              │

02:08:52 #5364 [Debug] > │ method0()                                                                    │

02:08:52 #5365 [Debug] > │                                                                              │

02:08:52 #5366 [Debug] > │                                                                              │

02:08:52 #5367 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:52 #5368 [Debug] >

02:08:52 #5369 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:52 #5370 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:52 #5371 [Debug] > │ ## velocity_ftv                                                              │

02:08:52 #5372 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:52 #5373 [Debug] >

02:08:52 #5374 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:52 #5375 [Debug] > inl newton_second_tv m fs (t, v0) =

02:08:52 #5376 [Debug] >     inl f_net = fs |> listm.map (fun f => f (t, v0)) |> listm'.sum

02:08:52 #5377 [Debug] >     inl acc = f_net / m

02:08:52 #5378 [Debug] >     1, acc

02:08:52 #5379 [Debug] >

02:08:52 #5380 [Debug] > inl update_tv dt m fs (t, v0) =

02:08:52 #5381 [Debug] >     inl dtdt, dvdt = newton_second_tv m fs (t, v0)

02:08:52 #5382 [Debug] >     t + dtdt * dt, v0 + dvdt * dt

02:08:52 #5383 [Debug] >

02:08:52 #5384 [Debug] > inl velocity_ftv dt m tv0 fs t =

02:08:52 #5385 [Debug] >     stream.iterate (join update_tv dt m fs) tv0

02:08:52 #5386 [Debug] >     |> stream.try_item (t / dt |> math.round |> abs)

02:08:52 #5387 [Debug] >     |> optionm.map snd

02:08:52 #5388 [Debug] >     |> optionm'.default_value 0

02:08:52 #5389 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5256-5665-528e2637ec94\main.spi

02:08:52 #5390 [Debug] >

02:08:52 #5391 [Debug] > ╭─[ 200.68ms - stdout ]────────────────────────────────────────────────────────╮

02:08:52 #5392 [Debug] > │ ()                                                                           │

02:08:52 #5393 [Debug] > │                                                                              │

02:08:52 #5394 [Debug] > │                                                                              │

02:08:52 #5395 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:52 #5396 [Debug] >

02:08:52 #5397 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:52 #5398 [Debug] > // // test

02:08:52 #5399 [Debug] >

02:08:52 #5400 [Debug] > inl x = am'.init_series 0 100 0.1

02:08:52 #5401 [Debug] > inl y =

02:08:52 #5402 [Debug] >     x

02:08:52 #5403 [Debug] >     |> am.map (

02:08:52 #5404 [Debug] >         velocity_ftv 0.1 20 (dyn (0, 0)) [[ fun (t, _) => pedal_coast t; fun (_,

02:08:52 #5405 [Debug] > v) => f_air 2 1.225 0.5 v ]]

02:08:52 #5406 [Debug] >     )

02:08:52 #5407 [Debug] > "pedaling and coasting with air", "time (s)", "", ;[[ "velocity of bike (m/s)",

02:08:52 #5408 [Debug] > x, y ]]

02:08:52 #5409 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5276-7685-76870d3ef52e\main.spi

02:08:53 #5410 [Debug] >

02:08:53 #5411 [Debug] > ╭─[ 355.57ms - return value ]──────────────────────────────────────────────────╮

02:08:53 #5412 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:53 #5413 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:53 #5414 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:53 #5415 [Debug] > │ stroke="none"/>                                                              │

02:08:53 #5416 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:53 #5417 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5418 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5419 [Debug] > │ pedaling and coasting with air                                               │

02:08:53 #5420 [Debug] > │ </text>                                                                      │

02:08:53 #5421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:08:53 #5422 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #5423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:53 #5424 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #5425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:08:53 #5426 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #5427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:08:53 #5428 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #5429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:08:53 #5430 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #5431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:08:53 #5432 [Debug] > │ x2="109" y2="75"/>                                                           │

02:08:53 #5433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:53 #5434 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:53 #5435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:08:53 #5436 [Debug] > │ x2="129" y2="75"/>                                                           │

02:08:53 #5437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:08:53 #5438 [Debug] > │ x2="139" y2="75"/>                                                           │

02:08:53 #5439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:08:53 #5440 [Debug] > │ x2="149" y2="75"/>                                                           │

02:08:53 #5441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:08:53 #5442 [Debug] > │ x2="159" y2="75"/>                                                           │

02:08:53 #5443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:53 #5444 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:53 #5445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:08:53 #5446 [Debug] > │ x2="179" y2="75"/>                                                           │

02:08:53 #5447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:08:53 #5448 [Debug] > │ x2="189" y2="75"/>                                                           │

02:08:53 #5449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:08:53 #5450 [Debug] > │ x2="199" y2="75"/>                                                           │

02:08:53 #5451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:08:53 #5452 [Debug] > │ x2="209" y2="75"/>                                                           │

02:08:53 #5453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:53 #5454 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:53 #5455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:08:53 #5456 [Debug] > │ x2="229" y2="75"/>                                                           │

02:08:53 #5457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:08:53 #5458 [Debug] > │ x2="239" y2="75"/>                                                           │

02:08:53 #5459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:08:53 #5460 [Debug] > │ x2="249" y2="75"/>                                                           │

02:08:53 #5461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:08:53 #5462 [Debug] > │ x2="259" y2="75"/>                                                           │

02:08:53 #5463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:53 #5464 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:53 #5465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:08:53 #5466 [Debug] > │ x2="279" y2="75"/>                                                           │

02:08:53 #5467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:08:53 #5468 [Debug] > │ x2="289" y2="75"/>                                                           │

02:08:53 #5469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:08:53 #5470 [Debug] > │ x2="299" y2="75"/>                                                           │

02:08:53 #5471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:08:53 #5472 [Debug] > │ x2="309" y2="75"/>                                                           │

02:08:53 #5473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:53 #5474 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:53 #5475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:08:53 #5476 [Debug] > │ x2="329" y2="75"/>                                                           │

02:08:53 #5477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:08:53 #5478 [Debug] > │ x2="339" y2="75"/>                                                           │

02:08:53 #5479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:08:53 #5480 [Debug] > │ x2="349" y2="75"/>                                                           │

02:08:53 #5481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:08:53 #5482 [Debug] > │ x2="359" y2="75"/>                                                           │

02:08:53 #5483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:53 #5484 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:53 #5485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:08:53 #5486 [Debug] > │ x2="379" y2="75"/>                                                           │

02:08:53 #5487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:08:53 #5488 [Debug] > │ x2="389" y2="75"/>                                                           │

02:08:53 #5489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:08:53 #5490 [Debug] > │ x2="399" y2="75"/>                                                           │

02:08:53 #5491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:08:53 #5492 [Debug] > │ x2="409" y2="75"/>                                                           │

02:08:53 #5493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:53 #5494 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:53 #5495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:08:53 #5496 [Debug] > │ x2="429" y2="75"/>                                                           │

02:08:53 #5497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:08:53 #5498 [Debug] > │ x2="439" y2="75"/>                                                           │

02:08:53 #5499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:08:53 #5500 [Debug] > │ x2="449" y2="75"/>                                                           │

02:08:53 #5501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:08:53 #5502 [Debug] > │ x2="459" y2="75"/>                                                           │

02:08:53 #5503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:53 #5504 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:53 #5505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:08:53 #5506 [Debug] > │ x2="479" y2="75"/>                                                           │

02:08:53 #5507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:08:53 #5508 [Debug] > │ x2="489" y2="75"/>                                                           │

02:08:53 #5509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:08:53 #5510 [Debug] > │ x2="499" y2="75"/>                                                           │

02:08:53 #5511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:08:53 #5512 [Debug] > │ x2="509" y2="75"/>                                                           │

02:08:53 #5513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:53 #5514 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:53 #5515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:08:53 #5516 [Debug] > │ x2="529" y2="75"/>                                                           │

02:08:53 #5517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:08:53 #5518 [Debug] > │ x2="539" y2="75"/>                                                           │

02:08:53 #5519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:08:53 #5520 [Debug] > │ x2="549" y2="75"/>                                                           │

02:08:53 #5521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:08:53 #5522 [Debug] > │ x2="559" y2="75"/>                                                           │

02:08:53 #5523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:53 #5524 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:53 #5525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:08:53 #5526 [Debug] > │ x2="579" y2="75"/>                                                           │

02:08:53 #5527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="423"         │

02:08:53 #5528 [Debug] > │ x2="584" y2="423"/>                                                          │

02:08:53 #5529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:08:53 #5530 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:53 #5531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:08:53 #5532 [Debug] > │ x2="584" y2="406"/>                                                          │

02:08:53 #5533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="397"         │

02:08:53 #5534 [Debug] > │ x2="584" y2="397"/>                                                          │

02:08:53 #5535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="389"         │

02:08:53 #5536 [Debug] > │ x2="584" y2="389"/>                                                          │

02:08:53 #5537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:08:53 #5538 [Debug] > │ x2="584" y2="380"/>                                                          │

02:08:53 #5539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="371"         │

02:08:53 #5540 [Debug] > │ x2="584" y2="371"/>                                                          │

02:08:53 #5541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="362"         │

02:08:53 #5542 [Debug] > │ x2="584" y2="362"/>                                                          │

02:08:53 #5543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="354"         │

02:08:53 #5544 [Debug] > │ x2="584" y2="354"/>                                                          │

02:08:53 #5545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="345"         │

02:08:53 #5546 [Debug] > │ x2="584" y2="345"/>                                                          │

02:08:53 #5547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:08:53 #5548 [Debug] > │ x2="584" y2="336"/>                                                          │

02:08:53 #5549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:08:53 #5550 [Debug] > │ x2="584" y2="328"/>                                                          │

02:08:53 #5551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:08:53 #5552 [Debug] > │ x2="584" y2="319"/>                                                          │

02:08:53 #5553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="310"         │

02:08:53 #5554 [Debug] > │ x2="584" y2="310"/>                                                          │

02:08:53 #5555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:08:53 #5556 [Debug] > │ x2="584" y2="302"/>                                                          │

02:08:53 #5557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="293"         │

02:08:53 #5558 [Debug] > │ x2="584" y2="293"/>                                                          │

02:08:53 #5559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:08:53 #5560 [Debug] > │ x2="584" y2="284"/>                                                          │

02:08:53 #5561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="275"         │

02:08:53 #5562 [Debug] > │ x2="584" y2="275"/>                                                          │

02:08:53 #5563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:08:53 #5564 [Debug] > │ x2="584" y2="267"/>                                                          │

02:08:53 #5565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="258"         │

02:08:53 #5566 [Debug] > │ x2="584" y2="258"/>                                                          │

02:08:53 #5567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="249"         │

02:08:53 #5568 [Debug] > │ x2="584" y2="249"/>                                                          │

02:08:53 #5569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:08:53 #5570 [Debug] > │ x2="584" y2="241"/>                                                          │

02:08:53 #5571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:08:53 #5572 [Debug] > │ x2="584" y2="232"/>                                                          │

02:08:53 #5573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="223"         │

02:08:53 #5574 [Debug] > │ x2="584" y2="223"/>                                                          │

02:08:53 #5575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:08:53 #5576 [Debug] > │ x2="584" y2="215"/>                                                          │

02:08:53 #5577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="206"         │

02:08:53 #5578 [Debug] > │ x2="584" y2="206"/>                                                          │

02:08:53 #5579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="197"         │

02:08:53 #5580 [Debug] > │ x2="584" y2="197"/>                                                          │

02:08:53 #5581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:08:53 #5582 [Debug] > │ x2="584" y2="188"/>                                                          │

02:08:53 #5583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:08:53 #5584 [Debug] > │ x2="584" y2="180"/>                                                          │

02:08:53 #5585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:08:53 #5586 [Debug] > │ x2="584" y2="171"/>                                                          │

02:08:53 #5587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:08:53 #5588 [Debug] > │ x2="584" y2="162"/>                                                          │

02:08:53 #5589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="154"         │

02:08:53 #5590 [Debug] > │ x2="584" y2="154"/>                                                          │

02:08:53 #5591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:08:53 #5592 [Debug] > │ x2="584" y2="145"/>                                                          │

02:08:53 #5593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="136"         │

02:08:53 #5594 [Debug] > │ x2="584" y2="136"/>                                                          │

02:08:53 #5595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="128"         │

02:08:53 #5596 [Debug] > │ x2="584" y2="128"/>                                                          │

02:08:53 #5597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:08:53 #5598 [Debug] > │ x2="584" y2="119"/>                                                          │

02:08:53 #5599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:08:53 #5600 [Debug] > │ x2="584" y2="110"/>                                                          │

02:08:53 #5601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:08:53 #5602 [Debug] > │ x2="584" y2="102"/>                                                          │

02:08:53 #5603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:08:53 #5604 [Debug] > │ y2="93"/>                                                                    │

02:08:53 #5605 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:53 #5606 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5607 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5608 [Debug] > │ time (s)                                                                     │

02:08:53 #5609 [Debug] > │ </text>                                                                      │

02:08:53 #5610 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:53 #5611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5612 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:53 #5613 [Debug] > │                                                                              │

02:08:53 #5614 [Debug] > │ </text>                                                                      │

02:08:53 #5615 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:53 #5616 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5617 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5618 [Debug] > │ time (s)                                                                     │

02:08:53 #5619 [Debug] > │ </text>                                                                      │

02:08:53 #5620 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5621 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5622 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:53 #5623 [Debug] > │                                                                              │

02:08:53 #5624 [Debug] > │ </text>                                                                      │

02:08:53 #5625 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:53 #5626 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #5627 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:08:53 #5628 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:53 #5629 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:53 #5630 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:53 #5631 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:08:53 #5632 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:53 #5633 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:53 #5634 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:53 #5635 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:08:53 #5636 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:53 #5637 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:53 #5638 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:53 #5639 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:08:53 #5640 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:53 #5641 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:53 #5642 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:53 #5643 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:08:53 #5644 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:53 #5645 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:08:53 #5646 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:53 #5647 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:08:53 #5648 [Debug] > │ x2="584" y2="415"/>                                                          │

02:08:53 #5649 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="371"         │

02:08:53 #5650 [Debug] > │ x2="584" y2="371"/>                                                          │

02:08:53 #5651 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="328"         │

02:08:53 #5652 [Debug] > │ x2="584" y2="328"/>                                                          │

02:08:53 #5653 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="284"         │

02:08:53 #5654 [Debug] > │ x2="584" y2="284"/>                                                          │

02:08:53 #5655 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="241"         │

02:08:53 #5656 [Debug] > │ x2="584" y2="241"/>                                                          │

02:08:53 #5657 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="197"         │

02:08:53 #5658 [Debug] > │ x2="584" y2="197"/>                                                          │

02:08:53 #5659 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="154"         │

02:08:53 #5660 [Debug] > │ x2="584" y2="154"/>                                                          │

02:08:53 #5661 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="110"         │

02:08:53 #5662 [Debug] > │ x2="584" y2="110"/>                                                          │

02:08:53 #5663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5664 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:53 #5665 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:53 #5666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5667 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5668 [Debug] > │ 0.0                                                                          │

02:08:53 #5669 [Debug] > │ </text>                                                                      │

02:08:53 #5670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5671 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:53 #5672 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5674 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5675 [Debug] > │ 10.0                                                                         │

02:08:53 #5676 [Debug] > │ </text>                                                                      │

02:08:53 #5677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5678 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:08:53 #5679 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5681 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5682 [Debug] > │ 20.0                                                                         │

02:08:53 #5683 [Debug] > │ </text>                                                                      │

02:08:53 #5684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5685 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:53 #5686 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5688 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5689 [Debug] > │ 30.0                                                                         │

02:08:53 #5690 [Debug] > │ </text>                                                                      │

02:08:53 #5691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5692 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:08:53 #5693 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5694 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5695 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5696 [Debug] > │ 40.0                                                                         │

02:08:53 #5697 [Debug] > │ </text>                                                                      │

02:08:53 #5698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5699 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:53 #5700 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5702 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5703 [Debug] > │ 50.0                                                                         │

02:08:53 #5704 [Debug] > │ </text>                                                                      │

02:08:53 #5705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5706 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:08:53 #5707 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5709 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5710 [Debug] > │ 60.0                                                                         │

02:08:53 #5711 [Debug] > │ </text>                                                                      │

02:08:53 #5712 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5713 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:53 #5714 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5716 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5717 [Debug] > │ 70.0                                                                         │

02:08:53 #5718 [Debug] > │ </text>                                                                      │

02:08:53 #5719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5720 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:08:53 #5721 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5722 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5723 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5724 [Debug] > │ 80.0                                                                         │

02:08:53 #5725 [Debug] > │ </text>                                                                      │

02:08:53 #5726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5727 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:53 #5728 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5730 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5731 [Debug] > │ 90.0                                                                         │

02:08:53 #5732 [Debug] > │ </text>                                                                      │

02:08:53 #5733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5734 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:08:53 #5735 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:53 #5736 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5737 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5738 [Debug] > │ 100.0                                                                        │

02:08:53 #5739 [Debug] > │ </text>                                                                      │

02:08:53 #5740 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5741 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:08:53 #5742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5743 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:53 #5744 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5745 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5746 [Debug] > │ 0.0                                                                          │

02:08:53 #5747 [Debug] > │ </text>                                                                      │

02:08:53 #5748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5749 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:08:53 #5750 [Debug] > │ <text x="45" y="371" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5751 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5752 [Debug] > │ 0.5                                                                          │

02:08:53 #5753 [Debug] > │ </text>                                                                      │

02:08:53 #5754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5755 [Debug] > │ points="49,371 54,371 "/>                                                    │

02:08:53 #5756 [Debug] > │ <text x="45" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5757 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5758 [Debug] > │ 1.0                                                                          │

02:08:53 #5759 [Debug] > │ </text>                                                                      │

02:08:53 #5760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5761 [Debug] > │ points="49,328 54,328 "/>                                                    │

02:08:53 #5762 [Debug] > │ <text x="45" y="284" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5763 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5764 [Debug] > │ 1.5                                                                          │

02:08:53 #5765 [Debug] > │ </text>                                                                      │

02:08:53 #5766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5767 [Debug] > │ points="49,284 54,284 "/>                                                    │

02:08:53 #5768 [Debug] > │ <text x="45" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5769 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5770 [Debug] > │ 2.0                                                                          │

02:08:53 #5771 [Debug] > │ </text>                                                                      │

02:08:53 #5772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5773 [Debug] > │ points="49,241 54,241 "/>                                                    │

02:08:53 #5774 [Debug] > │ <text x="45" y="197" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5775 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5776 [Debug] > │ 2.5                                                                          │

02:08:53 #5777 [Debug] > │ </text>                                                                      │

02:08:53 #5778 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5779 [Debug] > │ points="49,197 54,197 "/>                                                    │

02:08:53 #5780 [Debug] > │ <text x="45" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5781 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5782 [Debug] > │ 3.0                                                                          │

02:08:53 #5783 [Debug] > │ </text>                                                                      │

02:08:53 #5784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5785 [Debug] > │ points="49,154 54,154 "/>                                                    │

02:08:53 #5786 [Debug] > │ <text x="45" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:53 #5787 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:53 #5788 [Debug] > │ 3.5                                                                          │

02:08:53 #5789 [Debug] > │ </text>                                                                      │

02:08:53 #5790 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5791 [Debug] > │ points="49,110 54,110 "/>                                                    │

02:08:53 #5792 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5793 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:53 #5794 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:53 #5795 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5796 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5797 [Debug] > │ 0.0                                                                          │

02:08:53 #5798 [Debug] > │ </text>                                                                      │

02:08:53 #5799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5800 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:53 #5801 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5802 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5803 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5804 [Debug] > │ 10.0                                                                         │

02:08:53 #5805 [Debug] > │ </text>                                                                      │

02:08:53 #5806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5807 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:08:53 #5808 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5809 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5810 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5811 [Debug] > │ 20.0                                                                         │

02:08:53 #5812 [Debug] > │ </text>                                                                      │

02:08:53 #5813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5814 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:53 #5815 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5816 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5817 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5818 [Debug] > │ 30.0                                                                         │

02:08:53 #5819 [Debug] > │ </text>                                                                      │

02:08:53 #5820 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5821 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:08:53 #5822 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5823 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5824 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5825 [Debug] > │ 40.0                                                                         │

02:08:53 #5826 [Debug] > │ </text>                                                                      │

02:08:53 #5827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5828 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:53 #5829 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5831 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5832 [Debug] > │ 50.0                                                                         │

02:08:53 #5833 [Debug] > │ </text>                                                                      │

02:08:53 #5834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5835 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:08:53 #5836 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5838 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5839 [Debug] > │ 60.0                                                                         │

02:08:53 #5840 [Debug] > │ </text>                                                                      │

02:08:53 #5841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5842 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:53 #5843 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5845 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5846 [Debug] > │ 70.0                                                                         │

02:08:53 #5847 [Debug] > │ </text>                                                                      │

02:08:53 #5848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5849 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:08:53 #5850 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5852 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5853 [Debug] > │ 80.0                                                                         │

02:08:53 #5854 [Debug] > │ </text>                                                                      │

02:08:53 #5855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5856 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:53 #5857 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5859 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5860 [Debug] > │ 90.0                                                                         │

02:08:53 #5861 [Debug] > │ </text>                                                                      │

02:08:53 #5862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5863 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:08:53 #5864 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:53 #5865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5866 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5867 [Debug] > │ 100.0                                                                        │

02:08:53 #5868 [Debug] > │ </text>                                                                      │

02:08:53 #5869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5870 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:08:53 #5871 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5872 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:53 #5873 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5874 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5875 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5876 [Debug] > │ 0.0                                                                          │

02:08:53 #5877 [Debug] > │ </text>                                                                      │

02:08:53 #5878 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5879 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:08:53 #5880 [Debug] > │ <text x="595" y="371" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5881 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5882 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5883 [Debug] > │ 0.5                                                                          │

02:08:53 #5884 [Debug] > │ </text>                                                                      │

02:08:53 #5885 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5886 [Debug] > │ points="585,371 590,371 "/>                                                  │

02:08:53 #5887 [Debug] > │ <text x="595" y="328" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5888 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5889 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5890 [Debug] > │ 1.0                                                                          │

02:08:53 #5891 [Debug] > │ </text>                                                                      │

02:08:53 #5892 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5893 [Debug] > │ points="585,328 590,328 "/>                                                  │

02:08:53 #5894 [Debug] > │ <text x="595" y="284" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5895 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5896 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5897 [Debug] > │ 1.5                                                                          │

02:08:53 #5898 [Debug] > │ </text>                                                                      │

02:08:53 #5899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5900 [Debug] > │ points="585,284 590,284 "/>                                                  │

02:08:53 #5901 [Debug] > │ <text x="595" y="241" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5902 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5903 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5904 [Debug] > │ 2.0                                                                          │

02:08:53 #5905 [Debug] > │ </text>                                                                      │

02:08:53 #5906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5907 [Debug] > │ points="585,241 590,241 "/>                                                  │

02:08:53 #5908 [Debug] > │ <text x="595" y="197" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5909 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5910 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5911 [Debug] > │ 2.5                                                                          │

02:08:53 #5912 [Debug] > │ </text>                                                                      │

02:08:53 #5913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5914 [Debug] > │ points="585,197 590,197 "/>                                                  │

02:08:53 #5915 [Debug] > │ <text x="595" y="154" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5916 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5917 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5918 [Debug] > │ 3.0                                                                          │

02:08:53 #5919 [Debug] > │ </text>                                                                      │

02:08:53 #5920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5921 [Debug] > │ points="585,154 590,154 "/>                                                  │

02:08:53 #5922 [Debug] > │ <text x="595" y="110" dy="0.5ex" text-anchor="start"                         │

02:08:53 #5923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #5924 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #5925 [Debug] > │ 3.5                                                                          │

02:08:53 #5926 [Debug] > │ </text>                                                                      │

02:08:53 #5927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:53 #5928 [Debug] > │ points="585,110 590,110 "/>                                                  │

02:08:53 #5929 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:53 #5930 [Debug] > │ points="69,415 70,415 70,410 71,406 71,402 72,397 72,393 73,389 73,384       │

02:08:53 #5931 [Debug] > │ 74,380 74,376 75,371 75,367 76,363 76,359 77,354 77,350 78,346 78,342 79,338 │

02:08:53 #5932 [Debug] > │ 79,333 80,329 80,325 81,321 81,317 82,313 82,309 83,305 83,301 84,297 84,293 │

02:08:53 #5933 [Debug] > │ 85,290 85,286 86,282 86,278 87,275 87,271 88,267 88,264 89,260 89,257 90,253 │

02:08:53 #5934 [Debug] > │ 90,250 91,246 91,243 92,240 92,236 93,233 93,230 94,227 94,224 95,221 95,218 │

02:08:53 #5935 [Debug] > │ 96,215 96,212 97,209 97,206 98,203 98,200 99,198 99,195 100,192 100,190      │

02:08:53 #5936 [Debug] > │ 101,187 101,185 102,182 102,180 103,177 103,175 104,173 104,170 105,168      │

02:08:53 #5937 [Debug] > │ 105,166 106,164 106,162 107,159 107,157 108,155 108,153 109,151 109,150      │

02:08:53 #5938 [Debug] > │ 110,148 110,146 111,144 111,142 112,141 112,139 113,137 113,136 114,134      │

02:08:53 #5939 [Debug] > │ 114,132 115,131 115,129 116,128 116,126 117,125 117,124 118,122 118,121      │

02:08:53 #5940 [Debug] > │ 119,120 119,118 120,117 120,120 121,123 121,126 122,129 122,132 123,135      │

02:08:53 #5941 [Debug] > │ 123,138 124,140 124,143 125,145 125,148 126,151 126,153 127,155 127,158      │

02:08:53 #5942 [Debug] > │ 128,160 128,162 129,165 129,167 130,169 130,171 131,173 131,175 132,177      │

02:08:53 #5943 [Debug] > │ 132,179 133,181 133,183 134,185 134,187 135,189 135,190 136,192 136,194      │

02:08:53 #5944 [Debug] > │ 137,196 137,197 138,199 138,201 139,202 139,204 140,205 140,207 141,208      │

02:08:53 #5945 [Debug] > │ 141,210 142,211 142,213 143,214 143,216 144,217 144,219 145,220 145,221      │

02:08:53 #5946 [Debug] > │ 146,223 146,224 147,225 147,226 148,228 148,229 149,230 149,231 150,232      │

02:08:53 #5947 [Debug] > │ 150,234 151,235 151,236 152,237 152,238 153,239 153,240 154,241 154,242      │

02:08:53 #5948 [Debug] > │ 155,244 155,245 156,246 156,247 157,248 157,249 158,250 158,250 159,251      │

02:08:53 #5949 [Debug] > │ 159,252 160,253 160,254 161,255 161,256 162,257 162,258 163,259 163,259      │

02:08:53 #5950 [Debug] > │ 164,260 164,261 165,262 165,263 166,264 166,264 167,265 167,266 168,267      │

02:08:53 #5951 [Debug] > │ 168,268 169,268 169,269 170,265 170,262 171,258 171,255 172,251 172,248      │

02:08:53 #5952 [Debug] > │ 173,245 173,241 174,238 174,235 175,232 175,228 176,225 176,222 177,219      │

02:08:53 #5953 [Debug] > │ 177,216 178,213 178,210 179,207 179,205 180,202 180,199 181,196 181,194      │

02:08:53 #5954 [Debug] > │ 182,191 182,188 183,186 183,183 184,181 184,178 185,176 185,174 186,171      │

02:08:53 #5955 [Debug] > │ 186,169 187,167 187,165 188,163 188,160 189,158 189,156 190,154 190,152      │

02:08:53 #5956 [Debug] > │ 191,150 191,149 192,147 192,145 193,143 193,141 194,140 194,138 195,136      │

02:08:53 #5957 [Debug] > │ 195,135 196,133 196,132 197,130 197,129 198,127 198,126 199,124 199,123      │

02:08:53 #5958 [Debug] > │ 200,121 200,120 201,119 201,118 202,116 202,115 203,114 203,113 204,112      │

02:08:53 #5959 [Debug] > │ 204,111 205,109 205,108 206,107 206,106 207,105 207,104 208,103 208,102      │

02:08:53 #5960 [Debug] > │ 209,101 209,101 210,100 210,99 211,98 211,97 212,96 212,96 213,95 213,94     │

02:08:53 #5961 [Debug] > │ 214,93 214,93 215,92 215,91 216,91 216,90 217,89 217,89 218,88 218,87 219,87 │

02:08:53 #5962 [Debug] > │ 219,86 220,90 220,94 221,97 221,101 222,104 222,108 223,111 223,114 224,118  │

02:08:53 #5963 [Debug] > │ 224,121 225,124 225,127 226,130 226,132 227,135 227,138 228,141 228,143      │

02:08:53 #5964 [Debug] > │ 229,146 229,149 230,151 230,153 231,156 231,158 232,161 232,163 233,165      │

02:08:53 #5965 [Debug] > │ 233,167 234,169 234,171 235,174 235,176 236,178 236,180 237,182 237,183      │

02:08:53 #5966 [Debug] > │ 238,185 238,187 239,189 239,191 240,193 240,194 241,196 241,198 242,199      │

02:08:53 #5967 [Debug] > │ 242,201 243,203 243,204 244,206 244,207 245,209 245,210 246,212 246,213      │

02:08:53 #5968 [Debug] > │ 247,215 247,216 248,217 248,219 249,220 249,221 250,223 250,224 251,225      │

02:08:53 #5969 [Debug] > │ 251,227 252,228 252,229 253,230 253,232 254,233 254,234 255,235 255,236      │

02:08:53 #5970 [Debug] > │ 256,237 256,238 257,239 257,241 258,242 258,243 259,244 259,245 260,246      │

02:08:53 #5971 [Debug] > │ 260,247 261,248 261,249 262,250 262,251 263,252 263,253 264,253 264,254      │

02:08:53 #5972 [Debug] > │ 265,255 265,256 266,257 266,258 267,259 267,260 268,260 268,261 269,262      │

02:08:53 #5973 [Debug] > │ 269,263 270,259 270,256 271,252 271,249 272,246 272,242 273,239 273,236      │

02:08:53 #5974 [Debug] > │ 274,233 274,229 275,226 275,223 276,220 276,217 277,214 277,211 278,208      │

02:08:53 #5975 [Debug] > │ 278,205 279,203 279,200 280,197 280,194 281,192 281,189 282,187 282,184      │

02:08:53 #5976 [Debug] > │ 283,182 283,179 284,177 284,174 285,172 285,170 286,168 286,165 287,163      │

02:08:53 #5977 [Debug] > │ 287,161 288,159 288,157 289,155 289,153 290,151 290,149 291,147 291,145      │

02:08:53 #5978 [Debug] > │ 292,144 292,142 293,140 293,138 294,137 294,135 295,134 295,132 296,130      │

02:08:53 #5979 [Debug] > │ 296,129 297,127 297,126 298,125 298,123 299,122 299,121 300,119 300,118      │

02:08:53 #5980 [Debug] > │ 301,117 301,115 302,114 302,113 303,112 303,111 304,110 304,109 305,108      │

02:08:53 #5981 [Debug] > │ 305,107 306,106 306,105 307,104 307,103 308,102 308,101 309,100 309,99       │

02:08:53 #5982 [Debug] > │ 310,98 310,97 311,97 311,96 312,95 312,94 313,94 313,93 314,92 314,91 315,91 │

02:08:53 #5983 [Debug] > │ 315,90 316,90 316,89 317,88 317,88 318,87 318,87 319,86 319,85 320,89 320,93 │

02:08:53 #5984 [Debug] > │ 320,97 321,100 321,104 322,107 322,110 323,114 323,117 324,120 324,123       │

02:08:53 #5985 [Debug] > │ 325,126 325,129 326,132 326,135 327,137 327,140 328,143 328,145 329,148      │

02:08:53 #5986 [Debug] > │ 329,150 330,153 330,155 331,158 331,160 332,162 332,164 333,167 333,169      │

02:08:53 #5987 [Debug] > │ 334,171 334,173 335,175 335,177 336,179 336,181 337,183 337,185 338,187      │

02:08:53 #5988 [Debug] > │ 338,189 339,190 339,192 340,194 340,196 341,197 341,199 342,201 342,202      │

02:08:53 #5989 [Debug] > │ 343,204 343,205 344,207 344,208 345,210 345,211 346,213 346,214 347,216      │

02:08:53 #5990 [Debug] > │ 347,217 348,218 348,220 349,221 349,222 350,224 350,225 351,226 351,228      │

02:08:53 #5991 [Debug] > │ 352,229 352,230 353,231 353,232 354,234 354,235 355,236 355,237 356,238      │

02:08:53 #5992 [Debug] > │ 356,239 357,240 357,241 358,242 358,243 359,244 359,246 360,247 360,248      │

02:08:53 #5993 [Debug] > │ 361,248 361,249 362,250 362,251 363,252 363,253 364,254 364,255 365,256      │

02:08:53 #5994 [Debug] > │ 365,257 366,258 366,259 367,259 367,260 368,261 368,262 369,263 369,259      │

02:08:53 #5995 [Debug] > │ 370,256 370,252 371,249 371,245 372,242 372,239 373,236 373,232 374,229      │

02:08:53 #5996 [Debug] > │ 374,226 375,223 375,220 376,217 376,214 377,211 377,208 378,205 378,202      │

02:08:53 #5997 [Debug] > │ 379,200 379,197 380,194 380,192 381,189 381,186 382,184 382,181 383,179      │

02:08:53 #5998 [Debug] > │ 383,177 384,174 384,172 385,170 385,167 386,165 386,163 387,161 387,159      │

02:08:53 #5999 [Debug] > │ 388,157 388,155 389,153 389,151 390,149 390,147 391,145 391,144 392,142      │

02:08:53 #6000 [Debug] > │ 392,140 393,138 393,137 394,135 394,133 395,132 395,130 396,129 396,127      │

02:08:53 #6001 [Debug] > │ 397,126 397,125 398,123 398,122 399,120 399,119 400,118 400,117 401,115      │

02:08:53 #6002 [Debug] > │ 401,114 402,113 402,112 403,111 403,110 404,109 404,108 405,107 405,106      │

02:08:53 #6003 [Debug] > │ 406,105 406,104 407,103 407,102 408,101 408,100 409,99 409,98 410,97 410,97  │

02:08:53 #6004 [Debug] > │ 411,96 411,95 412,94 412,94 413,93 413,92 414,91 414,91 415,90 415,89 416,89 │

02:08:53 #6005 [Debug] > │ 416,88 417,88 417,87 418,86 418,86 419,85 419,89 420,93 420,97 421,100       │

02:08:53 #6006 [Debug] > │ 421,104 422,107 422,110 423,114 423,117 424,120 424,123 425,126 425,129      │

02:08:53 #6007 [Debug] > │ 426,132 426,135 427,137 427,140 428,143 428,145 429,148 429,150 430,153      │

02:08:53 #6008 [Debug] > │ 430,155 431,158 431,160 432,162 432,164 433,167 433,169 434,171 434,173      │

02:08:53 #6009 [Debug] > │ 435,175 435,177 436,179 436,181 437,183 437,185 438,187 438,189 439,190      │

02:08:53 #6010 [Debug] > │ 439,192 440,194 440,196 441,197 441,199 442,201 442,202 443,204 443,205      │

02:08:53 #6011 [Debug] > │ 444,207 444,208 445,210 445,211 446,213 446,214 447,216 447,217 448,218      │

02:08:53 #6012 [Debug] > │ 448,220 449,221 449,222 450,224 450,225 451,226 451,228 452,229 452,230      │

02:08:53 #6013 [Debug] > │ 453,231 453,232 454,234 454,235 455,236 455,237 456,238 456,239 457,240      │

02:08:53 #6014 [Debug] > │ 457,241 458,242 458,243 459,244 459,245 460,247 460,248 461,248 461,249      │

02:08:53 #6015 [Debug] > │ 462,250 462,251 463,252 463,253 464,254 464,255 465,256 465,257 466,258      │

02:08:53 #6016 [Debug] > │ 466,259 467,259 467,260 468,261 468,262 469,263 469,264 470,260 470,257      │

02:08:53 #6017 [Debug] > │ 471,253 471,250 472,246 472,243 473,240 473,236 474,233 474,230 475,227      │

02:08:53 #6018 [Debug] > │ 475,224 476,221 476,218 477,215 477,212 478,209 478,206 479,203 479,200      │

02:08:53 #6019 [Debug] > │ 480,198 480,195 481,192 481,190 482,187 482,185 483,182 483,180 484,177      │

02:08:53 #6020 [Debug] > │ 484,175 485,173 485,170 486,168 486,166 487,164 487,161 488,159 488,157      │

02:08:53 #6021 [Debug] > │ 489,155 489,153 490,151 490,149 491,148 491,146 492,144 492,142 493,140      │

02:08:53 #6022 [Debug] > │ 493,139 494,137 494,135 495,134 495,132 496,131 496,129 497,128 497,126      │

02:08:53 #6023 [Debug] > │ 498,125 498,123 499,122 499,121 500,119 500,118 501,117 501,116 502,114      │

02:08:53 #6024 [Debug] > │ 502,113 503,112 503,111 504,110 504,109 505,108 505,107 506,106 506,105      │

02:08:53 #6025 [Debug] > │ 507,104 507,103 508,102 508,101 509,100 509,99 510,98 510,98 511,97 511,96   │

02:08:53 #6026 [Debug] > │ 512,95 512,94 513,94 513,93 514,92 514,92 515,91 515,90 516,90 516,89 517,88 │

02:08:53 #6027 [Debug] > │ 517,88 518,87 518,87 519,86 519,85 520,89 520,93 521,97 521,100 522,104      │

02:08:53 #6028 [Debug] > │ 522,107 523,110 523,114 524,117 524,120 525,123 525,126 526,129 526,132      │

02:08:53 #6029 [Debug] > │ 527,135 527,137 528,140 528,143 529,145 529,148 530,150 530,153 531,155      │

02:08:53 #6030 [Debug] > │ 531,158 532,160 532,162 533,165 533,167 534,169 534,171 535,173 535,175      │

02:08:53 #6031 [Debug] > │ 536,177 536,179 537,181 537,183 538,185 538,187 539,189 539,190 540,192      │

02:08:53 #6032 [Debug] > │ 540,194 541,196 541,197 542,199 542,201 543,202 543,204 544,205 544,207      │

02:08:53 #6033 [Debug] > │ 545,208 545,210 546,211 546,213 547,214 547,216 548,217 548,219 549,220      │

02:08:53 #6034 [Debug] > │ 549,221 550,223 550,224 551,225 551,226 552,228 552,229 553,230 553,231      │

02:08:53 #6035 [Debug] > │ 554,232 554,234 555,235 555,236 556,237 556,238 557,239 557,240 558,241      │

02:08:53 #6036 [Debug] > │ 558,242 559,243 559,245 560,246 560,247 561,248 561,249 562,249 562,250      │

02:08:53 #6037 [Debug] > │ 563,251 563,252 564,253 564,254 565,255 565,256 566,257 566,258 567,259      │

02:08:53 #6038 [Debug] > │ 567,259 568,260 568,261 569,262 "/>                                          │

02:08:53 #6039 [Debug] > │ <rect x="410" y="235" width="170" height="30" opacity="1" fill="none"        │

02:08:53 #6040 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:53 #6041 [Debug] > │ <text x="450" y="245" dy="0.76em" text-anchor="start"                        │

02:08:53 #6042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #6043 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #6044 [Debug] > │ velocity of bike (m/s)                                                       │

02:08:53 #6045 [Debug] > │ </text>                                                                      │

02:08:53 #6046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:53 #6047 [Debug] > │ points="420,250 440,250 "/>                                                  │

02:08:53 #6048 [Debug] > │ </svg>                                                                       │

02:08:53 #6049 [Debug] > │                                                                              │

02:08:53 #6050 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:53 #6051 [Debug] >

02:08:53 #6052 [Debug] > ╭─[ 636.09ms - stdout ]────────────────────────────────────────────────────────╮

02:08:53 #6053 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:53 #6054 [Debug] > │ and UH0 =                                                                    │

02:08:53 #6055 [Debug] > │     | UH0_0 of float * float * (unit -> UH0)                                 │

02:08:53 #6056 [Debug] > │     | UH0_1                                                                  │

02:08:53 #6057 [Debug] > │ and [<Struct>] US0 =                                                         │

02:08:53 #6058 [Debug] > │     | US0_0                                                                  │

02:08:53 #6059 [Debug] > │     | US0_1 of f1_0 : float * f1_1 : float                                   │

02:08:53 #6060 [Debug] > │ and [<Struct>] US1 =                                                         │

02:08:53 #6061 [Debug] > │     | US1_0                                                                  │

02:08:53 #6062 [Debug] > │     | US1_1 of f1_0 : float                                                  │

02:08:53 #6063 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:53 #6064 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:53 #6065 [Debug] > │     let v2 : bool = v1 < 1001                                                │

02:08:53 #6066 [Debug] > │     v2                                                                       │

02:08:53 #6067 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:53 #6068 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:53 #6069 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:53 #6070 [Debug] > │     v3                                                                       │

02:08:53 #6071 [Debug] > │ and closure0 () struct (v0 : float, v1 : float) : struct (float * float) =   │

02:08:53 #6072 [Debug] > │     let v2 : float =  -v1                                                    │

02:08:53 #6073 [Debug] > │     let v3 : bool = v1 >= v2                                                 │

02:08:53 #6074 [Debug] > │     let v4 : float =                                                         │

02:08:53 #6075 [Debug] > │         if v3 then                                                           │

02:08:53 #6076 [Debug] > │             v1                                                               │

02:08:53 #6077 [Debug] > │         else                                                                 │

02:08:53 #6078 [Debug] > │             v2                                                               │

02:08:53 #6079 [Debug] > │     let v5 : float = -1.225 * v4                                             │

02:08:53 #6080 [Debug] > │     let v6 : float = v5 * v1                                                 │

02:08:53 #6081 [Debug] > │     let v7 : float = v6 / 2.0                                                │

02:08:53 #6082 [Debug] > │     let v8 : float = v0 / 20.0                                               │

02:08:53 #6083 [Debug] > │     let v9 : int32 = int32 v8                                                │

02:08:53 #6084 [Debug] > │     let v10 : float = float v9                                               │

02:08:53 #6085 [Debug] > │     let v11 : float = v10 * 20.0                                             │

02:08:53 #6086 [Debug] > │     let v12 : float = v0 - v11                                               │

02:08:53 #6087 [Debug] > │     let v13 : bool = v12 > 0.0                                               │

02:08:53 #6088 [Debug] > │     let v15 : bool =                                                         │

02:08:53 #6089 [Debug] > │         if v13 then                                                          │

02:08:53 #6090 [Debug] > │             let v14 : bool = v12 < 10.0                                      │

02:08:53 #6091 [Debug] > │             v14                                                              │

02:08:53 #6092 [Debug] > │         else                                                                 │

02:08:53 #6093 [Debug] > │             false                                                            │

02:08:53 #6094 [Debug] > │     let v16 : float =                                                        │

02:08:53 #6095 [Debug] > │         if v15 then                                                          │

02:08:53 #6096 [Debug] > │             10.0                                                             │

02:08:53 #6097 [Debug] > │         else                                                                 │

02:08:53 #6098 [Debug] > │             0.0                                                              │

02:08:53 #6099 [Debug] > │     let v17 : float = v16 + v7                                               │

02:08:53 #6100 [Debug] > │     let v18 : float = v17 / 20.0                                             │

02:08:53 #6101 [Debug] > │     let v19 : float = v0 + 0.1                                               │

02:08:53 #6102 [Debug] > │     let v20 : float = v18 * 0.1                                              │

02:08:53 #6103 [Debug] > │     let v21 : float = v1 + v20                                               │

02:08:53 #6104 [Debug] > │     struct (v19, v21)                                                        │

02:08:53 #6105 [Debug] > │ and method3 () : (struct (float * float) -> struct (float * float)) =        │

02:08:53 #6106 [Debug] > │     closure0()                                                               │

02:08:53 #6107 [Debug] > │ and closure1 (v0 : (struct (float * float) -> struct (float * float)), v1 :  │

02:08:53 #6108 [Debug] > │ float, v2 : float, v3 : float, v4 : float) () : UH0 =                        │

02:08:53 #6109 [Debug] > │     let struct (v5 : float, v6 : float) = v0 struct (v3, v4)                 │

02:08:53 #6110 [Debug] > │     let v7 : (unit -> UH0) = closure1(v0, v1, v2, v5, v6)                    │

02:08:53 #6111 [Debug] > │     UH0_0(v3, v4, v7)                                                        │

02:08:53 #6112 [Debug] > │ and method4 (v0 : float, v1 : UH0) : US0 =                                   │

02:08:53 #6113 [Debug] > │     match v1 with                                                            │

02:08:53 #6114 [Debug] > │     | UH0_0(v2, v3, v4) -> (* StreamCons *)                                  │

02:08:53 #6115 [Debug] > │         let v5 : bool = v0 <= 0.0                                            │

02:08:53 #6116 [Debug] > │         if v5 then                                                           │

02:08:53 #6117 [Debug] > │             US0_1(v2, v3)                                                    │

02:08:53 #6118 [Debug] > │         else                                                                 │

02:08:53 #6119 [Debug] > │             let v7 : float = v0 - 1.0                                        │

02:08:53 #6120 [Debug] > │             let v8 : UH0 = v4 ()                                             │

02:08:53 #6121 [Debug] > │             method4(v7, v8)                                                  │

02:08:53 #6122 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:08:53 #6123 [Debug] > │         US0_0                                                                │

02:08:53 #6124 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:53 #6125 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:53 #6126 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (1001)                     │

02:08:53 #6127 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:53 #6128 [Debug] > │     while method1(v1) do                                                     │

02:08:53 #6129 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:53 #6130 [Debug] > │         let v4 : float = float v3                                            │

02:08:53 #6131 [Debug] > │         let v5 : float = 0.1 * v4                                            │

02:08:53 #6132 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:53 #6133 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:53 #6134 [Debug] > │         v1.l0 <- v6                                                          │

02:08:53 #6135 [Debug] > │         ()                                                                   │

02:08:53 #6136 [Debug] > │     let v7 : float = 0.0                                                     │

02:08:53 #6137 [Debug] > │     let v8 : float = 0.0                                                     │

02:08:53 #6138 [Debug] > │     let v9 : int32 = v0.Length                                               │

02:08:53 #6139 [Debug] > │     let v10 : (float []) = Array.zeroCreate<float> (v9)                      │

02:08:53 #6140 [Debug] > │     let v11 : Mut0 = {l0 = 0} : Mut0                                         │

02:08:53 #6141 [Debug] > │     while method2(v9, v11) do                                                │

02:08:53 #6142 [Debug] > │         let v13 : int32 = v11.l0                                             │

02:08:53 #6143 [Debug] > │         let v14 : float = v0.[int v13]                                       │

02:08:53 #6144 [Debug] > │         let v15 : (struct (float * float) -> struct (float * float)) =       │

02:08:53 #6145 [Debug] > │ method3()                                                                    │

02:08:53 #6146 [Debug] > │         let struct (v16 : float, v17 : float) = v15 struct (v7, v8)          │

02:08:53 #6147 [Debug] > │         let v18 : float = v14 / 0.1                                          │

02:08:53 #6148 [Debug] > │         let v19 : float = round v18                                          │

02:08:53 #6149 [Debug] > │         let v20 : float =  -v19                                              │

02:08:53 #6150 [Debug] > │         let v21 : bool = v19 >= v20                                          │

02:08:53 #6151 [Debug] > │         let v22 : float =                                                    │

02:08:53 #6152 [Debug] > │             if v21 then                                                      │

02:08:53 #6153 [Debug] > │                 v19                                                          │

02:08:53 #6154 [Debug] > │             else                                                             │

02:08:53 #6155 [Debug] > │                 v20                                                          │

02:08:53 #6156 [Debug] > │         let v23 : (unit -> UH0) = closure1(v15, v7, v8, v16, v17)            │

02:08:53 #6157 [Debug] > │         let v24 : UH0 = UH0_0(v7, v8, v23)                                   │

02:08:53 #6158 [Debug] > │         let v25 : US0 = method4(v22, v24)                                    │

02:08:53 #6159 [Debug] > │         let v31 : US1 =                                                      │

02:08:53 #6160 [Debug] > │             match v25 with                                                   │

02:08:53 #6161 [Debug] > │             | US0_0 -> (* None *)                                            │

02:08:53 #6162 [Debug] > │                 US1_0                                                        │

02:08:53 #6163 [Debug] > │             | US0_1(v26, v27) -> (* Some *)                                  │

02:08:53 #6164 [Debug] > │                 US1_1(v27)                                                   │

02:08:53 #6165 [Debug] > │         let v34 : float =                                                    │

02:08:53 #6166 [Debug] > │             match v31 with                                                   │

02:08:53 #6167 [Debug] > │             | US1_0 -> (* None *)                                            │

02:08:53 #6168 [Debug] > │                 0.0                                                          │

02:08:53 #6169 [Debug] > │             | US1_1(v32) -> (* Some *)                                       │

02:08:53 #6170 [Debug] > │                 v32                                                          │

02:08:53 #6171 [Debug] > │         v10.[int v13] <- v34                                                 │

02:08:53 #6172 [Debug] > │         let v35 : int32 = v13 + 1                                            │

02:08:53 #6173 [Debug] > │         v11.l0 <- v35                                                        │

02:08:53 #6174 [Debug] > │         ()                                                                   │

02:08:53 #6175 [Debug] > │     let v36 : string = "velocity of bike (m/s)"                              │

02:08:53 #6176 [Debug] > │     let v37 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:53 #6177 [Debug] > │ (v36, v0, v10)|]                                                             │

02:08:53 #6178 [Debug] > │     let v38 : string = "pedaling and coasting with air"                      │

02:08:53 #6179 [Debug] > │     let v39 : string = "time (s)"                                            │

02:08:53 #6180 [Debug] > │     let v40 : string = ""                                                    │

02:08:53 #6181 [Debug] > │     struct (v38, v39, v40, v37)                                              │

02:08:53 #6182 [Debug] > │ method0()                                                                    │

02:08:53 #6183 [Debug] > │                                                                              │

02:08:53 #6184 [Debug] > │                                                                              │

02:08:53 #6185 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:53 #6186 [Debug] >

02:08:53 #6187 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:53 #6188 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:53 #6189 [Debug] > │ ## velocity_ftxv                                                             │

02:08:53 #6190 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:53 #6191 [Debug] >

02:08:53 #6192 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:53 #6193 [Debug] > nominal state_1d = time * position * velocity

02:08:53 #6194 [Debug] > nominal rrr = f64 * f64 * f64

02:08:53 #6195 [Debug] >

02:08:53 #6196 [Debug] > inl newton_second_1d m fs (state_1d (t, x0, v0)) =

02:08:53 #6197 [Debug] >     inl f_net = fs |> listm.map (fun f => f (state_1d (t, x0, v0))) |>

02:08:53 #6198 [Debug] > listm'.sum

02:08:53 #6199 [Debug] >     inl acc = f_net / m

02:08:53 #6200 [Debug] >     rrr (1f64, v0, acc)

02:08:53 #6201 [Debug] >

02:08:53 #6202 [Debug] > inl euler_1d dt deriv (state_1d (t0, x0, v0) as t) =

02:08:53 #6203 [Debug] >     inl (rrr (_, _, dvdt)) = deriv t

02:08:53 #6204 [Debug] >     inl t1 = t0 + dt

02:08:53 #6205 [Debug] >     inl x1 = x0 + v0 * dt

02:08:53 #6206 [Debug] >     inl v1 = v0 + dvdt * dt

02:08:53 #6207 [Debug] >     state_1d (t1, x1, v1)

02:08:53 #6208 [Debug] >

02:08:53 #6209 [Debug] > inl update_txv dt m fs =

02:08:53 #6210 [Debug] >     newton_second_1d m fs |> euler_1d dt

02:08:53 #6211 [Debug] >

02:08:53 #6212 [Debug] > inl states_txv dt m txv0 fs =

02:08:53 #6213 [Debug] >     seq.iterate_ (update_txv dt m fs) txv0

02:08:53 #6214 [Debug] >

02:08:53 #6215 [Debug] > inl velocity_1d sts t =

02:08:53 #6216 [Debug] >     inl (state_1d (t0, _, _)) = sts 0

02:08:53 #6217 [Debug] >     inl (state_1d (t1, _, _)) = sts 1

02:08:53 #6218 [Debug] >     inl dt = t1 - t0

02:08:53 #6219 [Debug] >     inl num_steps = t / dt |> math.round |> abs

02:08:53 #6220 [Debug] >     inl (state_1d (_, _, v0)) = sts num_steps

02:08:53 #6221 [Debug] >     v0

02:08:53 #6222 [Debug] >

02:08:53 #6223 [Debug] > inl velocity_ftxv dt m txv0 fs =

02:08:53 #6224 [Debug] >     states_txv dt m txv0 fs |> velocity_1d

02:08:53 #6225 [Debug] >

02:08:53 #6226 [Debug] > inl position_1d sts t =

02:08:53 #6227 [Debug] >     inl (state_1d (t0, _, _)) = sts 0

02:08:53 #6228 [Debug] >     inl (state_1d (t1, _, _)) = sts 1

02:08:53 #6229 [Debug] >     inl dt = t1 - t0

02:08:53 #6230 [Debug] >     inl num_steps = t / dt |> math.round |> abs

02:08:53 #6231 [Debug] >     inl (state_1d (_, x0, _)) = sts num_steps

02:08:53 #6232 [Debug] >     x0

02:08:53 #6233 [Debug] >

02:08:53 #6234 [Debug] > inl position_ftxv dt m txv0 fs =

02:08:53 #6235 [Debug] >     states_txv dt m txv0 fs |> position_1d

02:08:53 #6236 [Debug] >

02:08:53 #6237 [Debug] > inl spring_force k (state_1d (_, x0, _)) =

02:08:53 #6238 [Debug] >     -k * x0

02:08:53 #6239 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5346-4686-466aff1857c1\main.spi

02:08:53 #6240 [Debug] >

02:08:53 #6241 [Debug] > ╭─[ 187.53ms - stdout ]────────────────────────────────────────────────────────╮

02:08:53 #6242 [Debug] > │ ()                                                                           │

02:08:53 #6243 [Debug] > │                                                                              │

02:08:53 #6244 [Debug] > │                                                                              │

02:08:53 #6245 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:53 #6246 [Debug] >

02:08:53 #6247 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:53 #6248 [Debug] > // // test

02:08:53 #6249 [Debug] >

02:08:53 #6250 [Debug] > inl damped_ho_forces () =

02:08:53 #6251 [Debug] >     [[

02:08:53 #6252 [Debug] >         spring_force 0.8

02:08:53 #6253 [Debug] >         fun (state_1d (_, _, v0)) => f_air 2 1.225 (pi * math.square 0.02) v0

02:08:53 #6254 [Debug] >         fun _ => -0.0027 * 9.80665

02:08:53 #6255 [Debug] >     ]]

02:08:53 #6256 [Debug] >

02:08:53 #6257 [Debug] > inl damped_ho_states () =

02:08:53 #6258 [Debug] >     states_txv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ())

02:08:53 #6259 [Debug] >

02:08:53 #6260 [Debug] > inl pingpong_position t =

02:08:53 #6261 [Debug] >     position_ftxv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ()) t

02:08:53 #6262 [Debug] >

02:08:53 #6263 [Debug] > inl x : a _ f64 = am'.init_series 0 3 0.01

02:08:53 #6264 [Debug] > inl y = x |> am.map pingpong_position

02:08:53 #6265 [Debug] > "ping pong ball on a slinky", "time (s)", "", ;[[ "position (m)", x, y ]]

02:08:53 #6266 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5365-6576-635a7b264b68\main.spi

02:08:53 #6267 [Debug] >

02:08:53 #6268 [Debug] > ╭─[ 260.39ms - return value ]──────────────────────────────────────────────────╮

02:08:53 #6269 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:53 #6270 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:53 #6271 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:53 #6272 [Debug] > │ stroke="none"/>                                                              │

02:08:53 #6273 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:53 #6274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:53 #6275 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:53 #6276 [Debug] > │ ping pong ball on a slinky                                                   │

02:08:53 #6277 [Debug] > │ </text>                                                                      │

02:08:53 #6278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:08:53 #6279 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #6280 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:53 #6281 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #6282 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:08:53 #6283 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #6284 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:08:53 #6285 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #6286 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:08:53 #6287 [Debug] > │ y2="75"/>                                                                    │

02:08:53 #6288 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:08:53 #6289 [Debug] > │ x2="103" y2="75"/>                                                           │

02:08:53 #6290 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:08:53 #6291 [Debug] > │ x2="111" y2="75"/>                                                           │

02:08:53 #6292 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:53 #6293 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:53 #6294 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:08:53 #6295 [Debug] > │ x2="128" y2="75"/>                                                           │

02:08:53 #6296 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:08:53 #6297 [Debug] > │ x2="136" y2="75"/>                                                           │

02:08:53 #6298 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:08:53 #6299 [Debug] > │ x2="144" y2="75"/>                                                           │

02:08:53 #6300 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:08:53 #6301 [Debug] > │ x2="153" y2="75"/>                                                           │

02:08:53 #6302 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:08:53 #6303 [Debug] > │ x2="161" y2="75"/>                                                           │

02:08:53 #6304 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:53 #6305 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:53 #6306 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:08:53 #6307 [Debug] > │ x2="178" y2="75"/>                                                           │

02:08:53 #6308 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:08:53 #6309 [Debug] > │ x2="186" y2="75"/>                                                           │

02:08:53 #6310 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:08:53 #6311 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:53 #6312 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:08:53 #6313 [Debug] > │ x2="203" y2="75"/>                                                           │

02:08:53 #6314 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:08:53 #6315 [Debug] > │ x2="211" y2="75"/>                                                           │

02:08:53 #6316 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:53 #6317 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:53 #6318 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:08:53 #6319 [Debug] > │ x2="228" y2="75"/>                                                           │

02:08:53 #6320 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:08:53 #6321 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:53 #6322 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:08:53 #6323 [Debug] > │ x2="244" y2="75"/>                                                           │

02:08:53 #6324 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:08:53 #6325 [Debug] > │ x2="252" y2="75"/>                                                           │

02:08:53 #6326 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:08:53 #6327 [Debug] > │ x2="261" y2="75"/>                                                           │

02:08:53 #6328 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:53 #6329 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:53 #6330 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:08:53 #6331 [Debug] > │ x2="277" y2="75"/>                                                           │

02:08:53 #6332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:08:53 #6333 [Debug] > │ x2="286" y2="75"/>                                                           │

02:08:53 #6334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:08:53 #6335 [Debug] > │ x2="294" y2="75"/>                                                           │

02:08:53 #6336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:08:53 #6337 [Debug] > │ x2="302" y2="75"/>                                                           │

02:08:53 #6338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:08:53 #6339 [Debug] > │ x2="311" y2="75"/>                                                           │

02:08:53 #6340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:53 #6341 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:53 #6342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:08:53 #6343 [Debug] > │ x2="327" y2="75"/>                                                           │

02:08:53 #6344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:08:53 #6345 [Debug] > │ x2="336" y2="75"/>                                                           │

02:08:53 #6346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:08:53 #6347 [Debug] > │ x2="344" y2="75"/>                                                           │

02:08:53 #6348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:08:53 #6349 [Debug] > │ x2="352" y2="75"/>                                                           │

02:08:53 #6350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:08:53 #6351 [Debug] > │ x2="361" y2="75"/>                                                           │

02:08:53 #6352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:53 #6353 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:53 #6354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:08:53 #6355 [Debug] > │ x2="377" y2="75"/>                                                           │

02:08:53 #6356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:08:53 #6357 [Debug] > │ x2="386" y2="75"/>                                                           │

02:08:53 #6358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:08:53 #6359 [Debug] > │ x2="394" y2="75"/>                                                           │

02:08:53 #6360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:08:53 #6361 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:53 #6362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:08:53 #6363 [Debug] > │ x2="410" y2="75"/>                                                           │

02:08:53 #6364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:53 #6365 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:53 #6366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:08:53 #6367 [Debug] > │ x2="427" y2="75"/>                                                           │

02:08:53 #6368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:08:53 #6369 [Debug] > │ x2="435" y2="75"/>                                                           │

02:08:53 #6370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:08:53 #6371 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:53 #6372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:08:53 #6373 [Debug] > │ x2="452" y2="75"/>                                                           │

02:08:53 #6374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:08:53 #6375 [Debug] > │ x2="460" y2="75"/>                                                           │

02:08:53 #6376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:53 #6377 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:53 #6378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:08:53 #6379 [Debug] > │ x2="477" y2="75"/>                                                           │

02:08:53 #6380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:08:53 #6381 [Debug] > │ x2="485" y2="75"/>                                                           │

02:08:53 #6382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:08:53 #6383 [Debug] > │ x2="494" y2="75"/>                                                           │

02:08:53 #6384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:08:53 #6385 [Debug] > │ x2="502" y2="75"/>                                                           │

02:08:53 #6386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:08:53 #6387 [Debug] > │ x2="510" y2="75"/>                                                           │

02:08:53 #6388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:53 #6389 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:53 #6390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:08:53 #6391 [Debug] > │ x2="527" y2="75"/>                                                           │

02:08:53 #6392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:08:53 #6393 [Debug] > │ x2="535" y2="75"/>                                                           │

02:08:53 #6394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:08:53 #6395 [Debug] > │ x2="544" y2="75"/>                                                           │

02:08:53 #6396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:08:53 #6397 [Debug] > │ x2="552" y2="75"/>                                                           │

02:08:53 #6398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:08:53 #6399 [Debug] > │ x2="560" y2="75"/>                                                           │

02:08:53 #6400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:53 #6401 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:53 #6402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:08:53 #6403 [Debug] > │ x2="577" y2="75"/>                                                           │

02:08:53 #6404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="419"         │

02:08:53 #6405 [Debug] > │ x2="584" y2="419"/>                                                          │

02:08:53 #6406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:08:53 #6407 [Debug] > │ x2="584" y2="406"/>                                                          │

02:08:53 #6408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:08:53 #6409 [Debug] > │ x2="584" y2="393"/>                                                          │

02:08:53 #6410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:08:53 #6411 [Debug] > │ x2="584" y2="380"/>                                                          │

02:08:53 #6412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:08:53 #6413 [Debug] > │ x2="584" y2="367"/>                                                          │

02:08:53 #6414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="354"         │

02:08:53 #6415 [Debug] > │ x2="584" y2="354"/>                                                          │

02:08:53 #6416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="342"         │

02:08:53 #6417 [Debug] > │ x2="584" y2="342"/>                                                          │

02:08:53 #6418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:08:53 #6419 [Debug] > │ x2="584" y2="329"/>                                                          │

02:08:53 #6420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:08:53 #6421 [Debug] > │ x2="584" y2="316"/>                                                          │

02:08:53 #6422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:08:53 #6423 [Debug] > │ x2="584" y2="303"/>                                                          │

02:08:53 #6424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="290"         │

02:08:53 #6425 [Debug] > │ x2="584" y2="290"/>                                                          │

02:08:53 #6426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="278"         │

02:08:53 #6427 [Debug] > │ x2="584" y2="278"/>                                                          │

02:08:53 #6428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="265"         │

02:08:53 #6429 [Debug] > │ x2="584" y2="265"/>                                                          │

02:08:53 #6430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="252"         │

02:08:53 #6431 [Debug] > │ x2="584" y2="252"/>                                                          │

02:08:53 #6432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="239"         │

02:08:53 #6433 [Debug] > │ x2="584" y2="239"/>                                                          │

02:08:53 #6434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="226"         │

02:08:53 #6435 [Debug] > │ x2="584" y2="226"/>                                                          │

02:08:53 #6436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:08:53 #6437 [Debug] > │ x2="584" y2="214"/>                                                          │

02:08:53 #6438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:08:53 #6439 [Debug] > │ x2="584" y2="201"/>                                                          │

02:08:53 #6440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:08:53 #6441 [Debug] > │ x2="584" y2="188"/>                                                          │

02:08:53 #6442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:08:53 #6443 [Debug] > │ x2="584" y2="175"/>                                                          │

02:08:53 #6444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:08:53 #6445 [Debug] > │ x2="584" y2="162"/>                                                          │

02:08:53 #6446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:08:53 #6447 [Debug] > │ x2="584" y2="149"/>                                                          │

02:08:53 #6448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:08:53 #6449 [Debug] > │ x2="584" y2="137"/>                                                          │

02:08:53 #6450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:08:54 #6451 [Debug] > │ x2="584" y2="124"/>                                                          │

02:08:54 #6452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="111"         │

02:08:54 #6453 [Debug] > │ x2="584" y2="111"/>                                                          │

02:08:54 #6454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:08:54 #6455 [Debug] > │ y2="98"/>                                                                    │

02:08:54 #6456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:54 #6457 [Debug] > │ y2="85"/>                                                                    │

02:08:54 #6458 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:54 #6459 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6460 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6461 [Debug] > │ time (s)                                                                     │

02:08:54 #6462 [Debug] > │ </text>                                                                      │

02:08:54 #6463 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:54 #6464 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6465 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:54 #6466 [Debug] > │                                                                              │

02:08:54 #6467 [Debug] > │ </text>                                                                      │

02:08:54 #6468 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:54 #6469 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6470 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6471 [Debug] > │ time (s)                                                                     │

02:08:54 #6472 [Debug] > │ </text>                                                                      │

02:08:54 #6473 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6474 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6475 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:54 #6476 [Debug] > │                                                                              │

02:08:54 #6477 [Debug] > │ </text>                                                                      │

02:08:54 #6478 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:54 #6479 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #6480 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="103" y1="424"        │

02:08:54 #6481 [Debug] > │ x2="103" y2="75"/>                                                           │

02:08:54 #6482 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="136" y1="424"        │

02:08:54 #6483 [Debug] > │ x2="136" y2="75"/>                                                           │

02:08:54 #6484 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:54 #6485 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:54 #6486 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="203" y1="424"        │

02:08:54 #6487 [Debug] > │ x2="203" y2="75"/>                                                           │

02:08:54 #6488 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:08:54 #6489 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:54 #6490 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:54 #6491 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:54 #6492 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="302" y1="424"        │

02:08:54 #6493 [Debug] > │ x2="302" y2="75"/>                                                           │

02:08:54 #6494 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:08:54 #6495 [Debug] > │ x2="336" y2="75"/>                                                           │

02:08:54 #6496 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:54 #6497 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:54 #6498 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:08:54 #6499 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:54 #6500 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="435" y1="424"        │

02:08:54 #6501 [Debug] > │ x2="435" y2="75"/>                                                           │

02:08:54 #6502 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:54 #6503 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:54 #6504 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="502" y1="424"        │

02:08:54 #6505 [Debug] > │ x2="502" y2="75"/>                                                           │

02:08:54 #6506 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="535" y1="424"        │

02:08:54 #6507 [Debug] > │ x2="535" y2="75"/>                                                           │

02:08:54 #6508 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="406"         │

02:08:54 #6509 [Debug] > │ x2="584" y2="406"/>                                                          │

02:08:54 #6510 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="342"         │

02:08:54 #6511 [Debug] > │ x2="584" y2="342"/>                                                          │

02:08:54 #6512 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="278"         │

02:08:54 #6513 [Debug] > │ x2="584" y2="278"/>                                                          │

02:08:54 #6514 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="214"         │

02:08:54 #6515 [Debug] > │ x2="584" y2="214"/>                                                          │

02:08:54 #6516 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="149"         │

02:08:54 #6517 [Debug] > │ x2="584" y2="149"/>                                                          │

02:08:54 #6518 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="85" x2="584" │

02:08:54 #6519 [Debug] > │ y2="85"/>                                                                    │

02:08:54 #6520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6521 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:54 #6522 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:54 #6523 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6524 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6525 [Debug] > │ 0.0                                                                          │

02:08:54 #6526 [Debug] > │ </text>                                                                      │

02:08:54 #6527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6528 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:54 #6529 [Debug] > │ <text x="103" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6530 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6531 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6532 [Debug] > │ 0.2                                                                          │

02:08:54 #6533 [Debug] > │ </text>                                                                      │

02:08:54 #6534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6535 [Debug] > │ points="103,69 103,74 "/>                                                    │

02:08:54 #6536 [Debug] > │ <text x="136" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6537 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6538 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6539 [Debug] > │ 0.4                                                                          │

02:08:54 #6540 [Debug] > │ </text>                                                                      │

02:08:54 #6541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6542 [Debug] > │ points="136,69 136,74 "/>                                                    │

02:08:54 #6543 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6545 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6546 [Debug] > │ 0.6                                                                          │

02:08:54 #6547 [Debug] > │ </text>                                                                      │

02:08:54 #6548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6549 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:54 #6550 [Debug] > │ <text x="203" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6551 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6552 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6553 [Debug] > │ 0.8                                                                          │

02:08:54 #6554 [Debug] > │ </text>                                                                      │

02:08:54 #6555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6556 [Debug] > │ points="203,69 203,74 "/>                                                    │

02:08:54 #6557 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6559 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6560 [Debug] > │ 1.0                                                                          │

02:08:54 #6561 [Debug] > │ </text>                                                                      │

02:08:54 #6562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6563 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:08:54 #6564 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6565 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6566 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6567 [Debug] > │ 1.2                                                                          │

02:08:54 #6568 [Debug] > │ </text>                                                                      │

02:08:54 #6569 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6570 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:54 #6571 [Debug] > │ <text x="302" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6572 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6573 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6574 [Debug] > │ 1.4                                                                          │

02:08:54 #6575 [Debug] > │ </text>                                                                      │

02:08:54 #6576 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6577 [Debug] > │ points="302,69 302,74 "/>                                                    │

02:08:54 #6578 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6579 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6580 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6581 [Debug] > │ 1.6                                                                          │

02:08:54 #6582 [Debug] > │ </text>                                                                      │

02:08:54 #6583 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6584 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:08:54 #6585 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6586 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6587 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6588 [Debug] > │ 1.8                                                                          │

02:08:54 #6589 [Debug] > │ </text>                                                                      │

02:08:54 #6590 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6591 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:54 #6592 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6593 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6594 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6595 [Debug] > │ 2.0                                                                          │

02:08:54 #6596 [Debug] > │ </text>                                                                      │

02:08:54 #6597 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6598 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:08:54 #6599 [Debug] > │ <text x="435" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6601 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6602 [Debug] > │ 2.2                                                                          │

02:08:54 #6603 [Debug] > │ </text>                                                                      │

02:08:54 #6604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6605 [Debug] > │ points="435,69 435,74 "/>                                                    │

02:08:54 #6606 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6607 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6608 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6609 [Debug] > │ 2.4                                                                          │

02:08:54 #6610 [Debug] > │ </text>                                                                      │

02:08:54 #6611 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6612 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:54 #6613 [Debug] > │ <text x="502" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6614 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6615 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6616 [Debug] > │ 2.6                                                                          │

02:08:54 #6617 [Debug] > │ </text>                                                                      │

02:08:54 #6618 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6619 [Debug] > │ points="502,69 502,74 "/>                                                    │

02:08:54 #6620 [Debug] > │ <text x="535" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #6621 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6622 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6623 [Debug] > │ 2.8                                                                          │

02:08:54 #6624 [Debug] > │ </text>                                                                      │

02:08:54 #6625 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6626 [Debug] > │ points="535,69 535,74 "/>                                                    │

02:08:54 #6627 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6628 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:54 #6629 [Debug] > │ <text x="45" y="406" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #6630 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6631 [Debug] > │ -0.2                                                                         │

02:08:54 #6632 [Debug] > │ </text>                                                                      │

02:08:54 #6633 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6634 [Debug] > │ points="49,406 54,406 "/>                                                    │

02:08:54 #6635 [Debug] > │ <text x="45" y="342" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #6636 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6637 [Debug] > │ -0.1                                                                         │

02:08:54 #6638 [Debug] > │ </text>                                                                      │

02:08:54 #6639 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6640 [Debug] > │ points="49,342 54,342 "/>                                                    │

02:08:54 #6641 [Debug] > │ <text x="45" y="278" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #6642 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6643 [Debug] > │ -0.1                                                                         │

02:08:54 #6644 [Debug] > │ </text>                                                                      │

02:08:54 #6645 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6646 [Debug] > │ points="49,278 54,278 "/>                                                    │

02:08:54 #6647 [Debug] > │ <text x="45" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #6648 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6649 [Debug] > │ -0.0                                                                         │

02:08:54 #6650 [Debug] > │ </text>                                                                      │

02:08:54 #6651 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6652 [Debug] > │ points="49,214 54,214 "/>                                                    │

02:08:54 #6653 [Debug] > │ <text x="45" y="149" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #6654 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6655 [Debug] > │ 0.0                                                                          │

02:08:54 #6656 [Debug] > │ </text>                                                                      │

02:08:54 #6657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6658 [Debug] > │ points="49,149 54,149 "/>                                                    │

02:08:54 #6659 [Debug] > │ <text x="45" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:54 #6660 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6661 [Debug] > │ 0.1                                                                          │

02:08:54 #6662 [Debug] > │ </text>                                                                      │

02:08:54 #6663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6664 [Debug] > │ points="49,85 54,85 "/>                                                      │

02:08:54 #6665 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6666 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:54 #6667 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:54 #6668 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6669 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6670 [Debug] > │ 0.0                                                                          │

02:08:54 #6671 [Debug] > │ </text>                                                                      │

02:08:54 #6672 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6673 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:54 #6674 [Debug] > │ <text x="103" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6675 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6676 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6677 [Debug] > │ 0.2                                                                          │

02:08:54 #6678 [Debug] > │ </text>                                                                      │

02:08:54 #6679 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6680 [Debug] > │ points="103,425 103,430 "/>                                                  │

02:08:54 #6681 [Debug] > │ <text x="136" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6682 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6683 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6684 [Debug] > │ 0.4                                                                          │

02:08:54 #6685 [Debug] > │ </text>                                                                      │

02:08:54 #6686 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6687 [Debug] > │ points="136,425 136,430 "/>                                                  │

02:08:54 #6688 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6689 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6690 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6691 [Debug] > │ 0.6                                                                          │

02:08:54 #6692 [Debug] > │ </text>                                                                      │

02:08:54 #6693 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6694 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:54 #6695 [Debug] > │ <text x="203" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6696 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6697 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6698 [Debug] > │ 0.8                                                                          │

02:08:54 #6699 [Debug] > │ </text>                                                                      │

02:08:54 #6700 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6701 [Debug] > │ points="203,425 203,430 "/>                                                  │

02:08:54 #6702 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6703 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6704 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6705 [Debug] > │ 1.0                                                                          │

02:08:54 #6706 [Debug] > │ </text>                                                                      │

02:08:54 #6707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6708 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:08:54 #6709 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6710 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6711 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6712 [Debug] > │ 1.2                                                                          │

02:08:54 #6713 [Debug] > │ </text>                                                                      │

02:08:54 #6714 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6715 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:54 #6716 [Debug] > │ <text x="302" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6717 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6718 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6719 [Debug] > │ 1.4                                                                          │

02:08:54 #6720 [Debug] > │ </text>                                                                      │

02:08:54 #6721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6722 [Debug] > │ points="302,425 302,430 "/>                                                  │

02:08:54 #6723 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6724 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6725 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6726 [Debug] > │ 1.6                                                                          │

02:08:54 #6727 [Debug] > │ </text>                                                                      │

02:08:54 #6728 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6729 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:08:54 #6730 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6731 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6732 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6733 [Debug] > │ 1.8                                                                          │

02:08:54 #6734 [Debug] > │ </text>                                                                      │

02:08:54 #6735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6736 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:54 #6737 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6739 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6740 [Debug] > │ 2.0                                                                          │

02:08:54 #6741 [Debug] > │ </text>                                                                      │

02:08:54 #6742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6743 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:08:54 #6744 [Debug] > │ <text x="435" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6746 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6747 [Debug] > │ 2.2                                                                          │

02:08:54 #6748 [Debug] > │ </text>                                                                      │

02:08:54 #6749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6750 [Debug] > │ points="435,425 435,430 "/>                                                  │

02:08:54 #6751 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6753 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6754 [Debug] > │ 2.4                                                                          │

02:08:54 #6755 [Debug] > │ </text>                                                                      │

02:08:54 #6756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6757 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:54 #6758 [Debug] > │ <text x="502" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6760 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6761 [Debug] > │ 2.6                                                                          │

02:08:54 #6762 [Debug] > │ </text>                                                                      │

02:08:54 #6763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6764 [Debug] > │ points="502,425 502,430 "/>                                                  │

02:08:54 #6765 [Debug] > │ <text x="535" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #6766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6767 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6768 [Debug] > │ 2.8                                                                          │

02:08:54 #6769 [Debug] > │ </text>                                                                      │

02:08:54 #6770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6771 [Debug] > │ points="535,425 535,430 "/>                                                  │

02:08:54 #6772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6773 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:54 #6774 [Debug] > │ <text x="595" y="406" dy="0.5ex" text-anchor="start"                         │

02:08:54 #6775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6776 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6777 [Debug] > │ -0.2                                                                         │

02:08:54 #6778 [Debug] > │ </text>                                                                      │

02:08:54 #6779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6780 [Debug] > │ points="585,406 590,406 "/>                                                  │

02:08:54 #6781 [Debug] > │ <text x="595" y="342" dy="0.5ex" text-anchor="start"                         │

02:08:54 #6782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6783 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6784 [Debug] > │ -0.1                                                                         │

02:08:54 #6785 [Debug] > │ </text>                                                                      │

02:08:54 #6786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6787 [Debug] > │ points="585,342 590,342 "/>                                                  │

02:08:54 #6788 [Debug] > │ <text x="595" y="278" dy="0.5ex" text-anchor="start"                         │

02:08:54 #6789 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6790 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6791 [Debug] > │ -0.1                                                                         │

02:08:54 #6792 [Debug] > │ </text>                                                                      │

02:08:54 #6793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6794 [Debug] > │ points="585,278 590,278 "/>                                                  │

02:08:54 #6795 [Debug] > │ <text x="595" y="214" dy="0.5ex" text-anchor="start"                         │

02:08:54 #6796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6797 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6798 [Debug] > │ -0.0                                                                         │

02:08:54 #6799 [Debug] > │ </text>                                                                      │

02:08:54 #6800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6801 [Debug] > │ points="585,214 590,214 "/>                                                  │

02:08:54 #6802 [Debug] > │ <text x="617" y="149" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:54 #6803 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6804 [Debug] > │ 0.0                                                                          │

02:08:54 #6805 [Debug] > │ </text>                                                                      │

02:08:54 #6806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6807 [Debug] > │ points="585,149 590,149 "/>                                                  │

02:08:54 #6808 [Debug] > │ <text x="617" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #6809 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #6810 [Debug] > │ 0.1                                                                          │

02:08:54 #6811 [Debug] > │ </text>                                                                      │

02:08:54 #6812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #6813 [Debug] > │ points="585,85 590,85 "/>                                                    │

02:08:54 #6814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:54 #6815 [Debug] > │ points="69,85 71,88 73,95 74,107 76,123 78,143 79,167 81,193 83,220 84,248   │

02:08:54 #6816 [Debug] > │ 86,276 88,304 89,329 91,353 93,373 94,390 96,402 98,411 99,415 101,414       │

02:08:54 #6817 [Debug] > │ 103,408 104,398 106,384 108,366 109,345 111,321 113,296 114,270 116,243      │

02:08:54 #6818 [Debug] > │ 118,217 119,193 121,170 123,151 124,134 126,121 128,112 129,108 131,107      │

02:08:54 #6819 [Debug] > │ 133,111 134,120 136,132 138,148 139,167 141,189 143,212 144,237 146,262      │

02:08:54 #6820 [Debug] > │ 148,286 149,310 151,331 153,351 154,367 156,380 158,390 159,395 161,396      │

02:08:54 #6821 [Debug] > │ 163,394 164,387 166,376 168,362 169,344 171,324 173,303 174,280 176,256      │

02:08:54 #6822 [Debug] > │ 178,233 179,210 181,189 183,171 184,154 186,141 188,131 189,125 191,123      │

02:08:54 #6823 [Debug] > │ 193,125 194,130 196,139 198,152 199,168 201,186 203,206 204,228 206,250      │

02:08:54 #6824 [Debug] > │ 208,272 209,294 211,314 213,333 214,349 216,362 218,373 219,379 221,382      │

02:08:54 #6825 [Debug] > │ 223,382 224,377 226,369 228,358 229,344 231,327 232,308 234,288 236,267      │

02:08:54 #6826 [Debug] > │ 237,246 239,225 241,205 242,187 244,171 246,157 247,147 249,140 251,136      │

02:08:54 #6827 [Debug] > │ 252,135 254,139 256,145 257,155 259,168 261,184 262,201 264,220 266,240      │

02:08:54 #6828 [Debug] > │ 267,261 269,281 271,300 272,318 274,334 276,347 277,358 279,366 281,371      │

02:08:54 #6829 [Debug] > │ 282,372 284,369 286,364 287,355 289,343 291,329 292,313 294,295 296,276      │

02:08:54 #6830 [Debug] > │ 297,256 299,237 301,218 302,201 304,185 306,171 307,160 309,152 311,147      │

02:08:54 #6831 [Debug] > │ 312,145 314,146 316,151 317,158 319,169 321,182 322,197 324,214 326,232      │

02:08:54 #6832 [Debug] > │ 327,251 329,270 331,288 332,305 334,321 336,334 337,346 339,354 341,360      │

02:08:54 #6833 [Debug] > │ 342,363 344,362 346,359 347,352 349,342 351,330 352,316 354,300 356,283      │

02:08:54 #6834 [Debug] > │ 357,265 359,247 361,229 362,212 364,197 366,183 367,172 369,163 371,156      │

02:08:54 #6835 [Debug] > │ 372,153 374,153 376,156 377,161 379,170 381,181 382,194 384,209 386,226      │

02:08:54 #6836 [Debug] > │ 387,243 389,260 391,277 392,294 394,309 396,323 397,335 399,344 401,351      │

02:08:54 #6837 [Debug] > │ 402,355 404,356 406,354 407,349 409,341 410,331 412,319 414,305 415,289      │

02:08:54 #6838 [Debug] > │ 417,273 419,256 420,239 422,223 424,208 425,194 427,182 429,172 430,165      │

02:08:54 #6839 [Debug] > │ 432,161 434,159 435,160 437,164 439,171 440,180 442,192 444,205 445,220      │

02:08:54 #6840 [Debug] > │ 447,235 449,252 450,268 452,284 454,299 455,313 457,325 459,335 460,342      │

02:08:54 #6841 [Debug] > │ 462,347 464,350 465,349 467,346 469,340 470,332 472,321 474,309 475,295      │

02:08:54 #6842 [Debug] > │ 477,280 479,264 480,248 482,232 484,217 485,204 487,192 489,181 490,173      │

02:08:54 #6843 [Debug] > │ 492,168 494,165 495,165 497,167 499,172 500,180 502,189 504,201 505,215      │

02:08:54 #6844 [Debug] > │ 507,229 509,244 510,260 512,275 514,290 515,303 517,316 519,326 520,335      │

02:08:54 #6845 [Debug] > │ 522,341 524,344 525,345 527,343 529,339 530,332 532,323 534,312 535,300      │

02:08:54 #6846 [Debug] > │ 537,286 539,271 540,256 542,241 544,226 545,213 547,200 549,190 550,181      │

02:08:54 #6847 [Debug] > │ 552,175 554,171 555,169 557,170 559,174 560,180 562,188 564,198 565,210      │

02:08:54 #6848 [Debug] > │ 567,223 569,238 "/>                                                          │

02:08:54 #6849 [Debug] > │ <rect x="464" y="235" width="116" height="30" opacity="1" fill="none"        │

02:08:54 #6850 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:54 #6851 [Debug] > │ <text x="504" y="245" dy="0.76em" text-anchor="start"                        │

02:08:54 #6852 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6853 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6854 [Debug] > │ position (m)                                                                 │

02:08:54 #6855 [Debug] > │ </text>                                                                      │

02:08:54 #6856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:54 #6857 [Debug] > │ points="474,250 494,250 "/>                                                  │

02:08:54 #6858 [Debug] > │ </svg>                                                                       │

02:08:54 #6859 [Debug] > │                                                                              │

02:08:54 #6860 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:54 #6861 [Debug] >

02:08:54 #6862 [Debug] > ╭─[ 529.68ms - stdout ]────────────────────────────────────────────────────────╮

02:08:54 #6863 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:54 #6864 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:54 #6865 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:54 #6866 [Debug] > │     let v2 : bool = v1 < 301                                                 │

02:08:54 #6867 [Debug] > │     v2                                                                       │

02:08:54 #6868 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:54 #6869 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:54 #6870 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:54 #6871 [Debug] > │     v3                                                                       │

02:08:54 #6872 [Debug] > │ and method3 (v0 : float, v1 : float, v2 : float, v3 : float) : struct (float │

02:08:54 #6873 [Debug] > │ * float * float) =                                                           │

02:08:54 #6874 [Debug] > │     let v4 : bool = v3 <= 0.0                                                │

02:08:54 #6875 [Debug] > │     if v4 then                                                               │

02:08:54 #6876 [Debug] > │         struct (v0, v1, v2)                                                  │

02:08:54 #6877 [Debug] > │     else                                                                     │

02:08:54 #6878 [Debug] > │         let v5 : float =  -v2                                                │

02:08:54 #6879 [Debug] > │         let v6 : bool = v2 >= v5                                             │

02:08:54 #6880 [Debug] > │         let v7 : float =                                                     │

02:08:54 #6881 [Debug] > │             if v6 then                                                       │

02:08:54 #6882 [Debug] > │                 v2                                                           │

02:08:54 #6883 [Debug] > │             else                                                             │

02:08:54 #6884 [Debug] > │                 v5                                                           │

02:08:54 #6885 [Debug] > │         let v8 : float = -0.0030787608005179976 * v7                         │

02:08:54 #6886 [Debug] > │         let v9 : float = v8 * v2                                             │

02:08:54 #6887 [Debug] > │         let v10 : float = v9 / 2.0                                           │

02:08:54 #6888 [Debug] > │         let v11 : float = -0.8 * v1                                          │

02:08:54 #6889 [Debug] > │         let v12 : float = v11 + v10                                          │

02:08:54 #6890 [Debug] > │         let v13 : float = v12 + -0.026477955                                 │

02:08:54 #6891 [Debug] > │         let v14 : float = v13 / 0.0027                                       │

02:08:54 #6892 [Debug] > │         let v15 : float = v0 + 0.001                                         │

02:08:54 #6893 [Debug] > │         let v16 : float = v2 * 0.001                                         │

02:08:54 #6894 [Debug] > │         let v17 : float = v1 + v16                                           │

02:08:54 #6895 [Debug] > │         let v18 : float = v14 * 0.001                                        │

02:08:54 #6896 [Debug] > │         let v19 : float = v2 + v18                                           │

02:08:54 #6897 [Debug] > │         let v20 : float = v3 - 1.0                                           │

02:08:54 #6898 [Debug] > │         method3(v15, v17, v19, v20)                                          │

02:08:54 #6899 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:54 #6900 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:54 #6901 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (301)                      │

02:08:54 #6902 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:54 #6903 [Debug] > │     while method1(v1) do                                                     │

02:08:54 #6904 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:54 #6905 [Debug] > │         let v4 : float = float v3                                            │

02:08:54 #6906 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:08:54 #6907 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:54 #6908 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:54 #6909 [Debug] > │         v1.l0 <- v6                                                          │

02:08:54 #6910 [Debug] > │         ()                                                                   │

02:08:54 #6911 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:08:54 #6912 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:08:54 #6913 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:54 #6914 [Debug] > │     while method2(v7, v9) do                                                 │

02:08:54 #6915 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:08:54 #6916 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:08:54 #6917 [Debug] > │         let v13 : float = 0.0                                                │

02:08:54 #6918 [Debug] > │         let v14 : float = 0.1                                                │

02:08:54 #6919 [Debug] > │         let v15 : float = 0.0                                                │

02:08:54 #6920 [Debug] > │         let v16 : float = 0.0                                                │

02:08:54 #6921 [Debug] > │         let struct (v17 : float, v18 : float, v19 : float) = method3(v13,    │

02:08:54 #6922 [Debug] > │ v14, v15, v16)                                                               │

02:08:54 #6923 [Debug] > │         let v20 : float = 0.0                                                │

02:08:54 #6924 [Debug] > │         let v21 : float = 0.1                                                │

02:08:54 #6925 [Debug] > │         let v22 : float = 0.0                                                │

02:08:54 #6926 [Debug] > │         let v23 : float = 1.0                                                │

02:08:54 #6927 [Debug] > │         let struct (v24 : float, v25 : float, v26 : float) = method3(v20,    │

02:08:54 #6928 [Debug] > │ v21, v22, v23)                                                               │

02:08:54 #6929 [Debug] > │         let v27 : float = v24 - v17                                          │

02:08:54 #6930 [Debug] > │         let v28 : float = v12 / v27                                          │

02:08:54 #6931 [Debug] > │         let v29 : float = round v28                                          │

02:08:54 #6932 [Debug] > │         let v30 : float =  -v29                                              │

02:08:54 #6933 [Debug] > │         let v31 : bool = v29 >= v30                                          │

02:08:54 #6934 [Debug] > │         let v32 : float =                                                    │

02:08:54 #6935 [Debug] > │             if v31 then                                                      │

02:08:54 #6936 [Debug] > │                 v29                                                          │

02:08:54 #6937 [Debug] > │             else                                                             │

02:08:54 #6938 [Debug] > │                 v30                                                          │

02:08:54 #6939 [Debug] > │         let v33 : float = 0.0                                                │

02:08:54 #6940 [Debug] > │         let v34 : float = 0.1                                                │

02:08:54 #6941 [Debug] > │         let v35 : float = 0.0                                                │

02:08:54 #6942 [Debug] > │         let struct (v36 : float, v37 : float, v38 : float) = method3(v33,    │

02:08:54 #6943 [Debug] > │ v34, v35, v32)                                                               │

02:08:54 #6944 [Debug] > │         v8.[int v11] <- v37                                                  │

02:08:54 #6945 [Debug] > │         let v39 : int32 = v11 + 1                                            │

02:08:54 #6946 [Debug] > │         v9.l0 <- v39                                                         │

02:08:54 #6947 [Debug] > │         ()                                                                   │

02:08:54 #6948 [Debug] > │     let v40 : string = "position (m)"                                        │

02:08:54 #6949 [Debug] > │     let v41 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:54 #6950 [Debug] > │ (v40, v0, v8)|]                                                              │

02:08:54 #6951 [Debug] > │     let v42 : string = "ping pong ball on a slinky"                          │

02:08:54 #6952 [Debug] > │     let v43 : string = "time (s)"                                            │

02:08:54 #6953 [Debug] > │     let v44 : string = ""                                                    │

02:08:54 #6954 [Debug] > │     struct (v42, v43, v44, v41)                                              │

02:08:54 #6955 [Debug] > │ method0()                                                                    │

02:08:54 #6956 [Debug] > │                                                                              │

02:08:54 #6957 [Debug] > │                                                                              │

02:08:54 #6958 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:54 #6959 [Debug] >

02:08:54 #6960 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:54 #6961 [Debug] > // // test

02:08:54 #6962 [Debug] >

02:08:54 #6963 [Debug] > inl pingpong_velocity t =

02:08:54 #6964 [Debug] >     velocity_ftxv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ()) t

02:08:54 #6965 [Debug] >

02:08:54 #6966 [Debug] > inl x = am'.init_series 0 3 0.01

02:08:54 #6967 [Debug] > inl y = x |> am.map pingpong_velocity

02:08:54 #6968 [Debug] > "ping pong ball on a slinky", "time (s)", "", ;[[ "velocity (m/s)", x, y ]]

02:08:54 #6969 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5423-2374-2558f655ff1a\main.spi

02:08:54 #6970 [Debug] >

02:08:54 #6971 [Debug] > ╭─[ 264.33ms - return value ]──────────────────────────────────────────────────╮

02:08:54 #6972 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:08:54 #6973 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:08:54 #6974 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:08:54 #6975 [Debug] > │ stroke="none"/>                                                              │

02:08:54 #6976 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:08:54 #6977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #6978 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #6979 [Debug] > │ ping pong ball on a slinky                                                   │

02:08:54 #6980 [Debug] > │ </text>                                                                      │

02:08:54 #6981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

02:08:54 #6982 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #6983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:54 #6984 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #6985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

02:08:54 #6986 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #6987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

02:08:54 #6988 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #6989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

02:08:54 #6990 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #6991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="103" y1="424"        │

02:08:54 #6992 [Debug] > │ x2="103" y2="75"/>                                                           │

02:08:54 #6993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="111" y1="424"        │

02:08:54 #6994 [Debug] > │ x2="111" y2="75"/>                                                           │

02:08:54 #6995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:08:54 #6996 [Debug] > │ x2="119" y2="75"/>                                                           │

02:08:54 #6997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="128" y1="424"        │

02:08:54 #6998 [Debug] > │ x2="128" y2="75"/>                                                           │

02:08:54 #6999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="136" y1="424"        │

02:08:54 #7000 [Debug] > │ x2="136" y2="75"/>                                                           │

02:08:54 #7001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="144" y1="424"        │

02:08:54 #7002 [Debug] > │ x2="144" y2="75"/>                                                           │

02:08:54 #7003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:08:54 #7004 [Debug] > │ x2="153" y2="75"/>                                                           │

02:08:54 #7005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:08:54 #7006 [Debug] > │ x2="161" y2="75"/>                                                           │

02:08:54 #7007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:08:54 #7008 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:54 #7009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="178" y1="424"        │

02:08:54 #7010 [Debug] > │ x2="178" y2="75"/>                                                           │

02:08:54 #7011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="186" y1="424"        │

02:08:54 #7012 [Debug] > │ x2="186" y2="75"/>                                                           │

02:08:54 #7013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="194" y1="424"        │

02:08:54 #7014 [Debug] > │ x2="194" y2="75"/>                                                           │

02:08:54 #7015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="203" y1="424"        │

02:08:54 #7016 [Debug] > │ x2="203" y2="75"/>                                                           │

02:08:54 #7017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="211" y1="424"        │

02:08:54 #7018 [Debug] > │ x2="211" y2="75"/>                                                           │

02:08:54 #7019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:08:54 #7020 [Debug] > │ x2="219" y2="75"/>                                                           │

02:08:54 #7021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:08:54 #7022 [Debug] > │ x2="228" y2="75"/>                                                           │

02:08:54 #7023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:08:54 #7024 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:54 #7025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:08:54 #7026 [Debug] > │ x2="244" y2="75"/>                                                           │

02:08:54 #7027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:08:54 #7028 [Debug] > │ x2="252" y2="75"/>                                                           │

02:08:54 #7029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:08:54 #7030 [Debug] > │ x2="261" y2="75"/>                                                           │

02:08:54 #7031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:08:54 #7032 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:54 #7033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:08:54 #7034 [Debug] > │ x2="277" y2="75"/>                                                           │

02:08:54 #7035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="286" y1="424"        │

02:08:54 #7036 [Debug] > │ x2="286" y2="75"/>                                                           │

02:08:54 #7037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="294" y1="424"        │

02:08:54 #7038 [Debug] > │ x2="294" y2="75"/>                                                           │

02:08:54 #7039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="302" y1="424"        │

02:08:54 #7040 [Debug] > │ x2="302" y2="75"/>                                                           │

02:08:54 #7041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:08:54 #7042 [Debug] > │ x2="311" y2="75"/>                                                           │

02:08:54 #7043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:08:54 #7044 [Debug] > │ x2="319" y2="75"/>                                                           │

02:08:54 #7045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:08:54 #7046 [Debug] > │ x2="327" y2="75"/>                                                           │

02:08:54 #7047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:08:54 #7048 [Debug] > │ x2="336" y2="75"/>                                                           │

02:08:54 #7049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:08:54 #7050 [Debug] > │ x2="344" y2="75"/>                                                           │

02:08:54 #7051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:08:54 #7052 [Debug] > │ x2="352" y2="75"/>                                                           │

02:08:54 #7053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:08:54 #7054 [Debug] > │ x2="361" y2="75"/>                                                           │

02:08:54 #7055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:08:54 #7056 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:54 #7057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:08:54 #7058 [Debug] > │ x2="377" y2="75"/>                                                           │

02:08:54 #7059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="386" y1="424"        │

02:08:54 #7060 [Debug] > │ x2="386" y2="75"/>                                                           │

02:08:54 #7061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="394" y1="424"        │

02:08:54 #7062 [Debug] > │ x2="394" y2="75"/>                                                           │

02:08:54 #7063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:08:54 #7064 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:54 #7065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:08:54 #7066 [Debug] > │ x2="410" y2="75"/>                                                           │

02:08:54 #7067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:08:54 #7068 [Debug] > │ x2="419" y2="75"/>                                                           │

02:08:54 #7069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:08:54 #7070 [Debug] > │ x2="427" y2="75"/>                                                           │

02:08:54 #7071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:08:54 #7072 [Debug] > │ x2="435" y2="75"/>                                                           │

02:08:54 #7073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:08:54 #7074 [Debug] > │ x2="444" y2="75"/>                                                           │

02:08:54 #7075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:08:54 #7076 [Debug] > │ x2="452" y2="75"/>                                                           │

02:08:54 #7077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:08:54 #7078 [Debug] > │ x2="460" y2="75"/>                                                           │

02:08:54 #7079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:08:54 #7080 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:54 #7081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="477" y1="424"        │

02:08:54 #7082 [Debug] > │ x2="477" y2="75"/>                                                           │

02:08:54 #7083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:08:54 #7084 [Debug] > │ x2="485" y2="75"/>                                                           │

02:08:54 #7085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:08:54 #7086 [Debug] > │ x2="494" y2="75"/>                                                           │

02:08:54 #7087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:08:54 #7088 [Debug] > │ x2="502" y2="75"/>                                                           │

02:08:54 #7089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:08:54 #7090 [Debug] > │ x2="510" y2="75"/>                                                           │

02:08:54 #7091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:08:54 #7092 [Debug] > │ x2="519" y2="75"/>                                                           │

02:08:54 #7093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:08:54 #7094 [Debug] > │ x2="527" y2="75"/>                                                           │

02:08:54 #7095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:08:54 #7096 [Debug] > │ x2="535" y2="75"/>                                                           │

02:08:54 #7097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:08:54 #7098 [Debug] > │ x2="544" y2="75"/>                                                           │

02:08:54 #7099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:08:54 #7100 [Debug] > │ x2="552" y2="75"/>                                                           │

02:08:54 #7101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:08:54 #7102 [Debug] > │ x2="560" y2="75"/>                                                           │

02:08:54 #7103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:08:54 #7104 [Debug] > │ x2="569" y2="75"/>                                                           │

02:08:54 #7105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="577" y1="424"        │

02:08:54 #7106 [Debug] > │ x2="577" y2="75"/>                                                           │

02:08:54 #7107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="414"         │

02:08:54 #7108 [Debug] > │ x2="584" y2="414"/>                                                          │

02:08:54 #7109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:08:54 #7110 [Debug] > │ x2="584" y2="398"/>                                                          │

02:08:54 #7111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:08:54 #7112 [Debug] > │ x2="584" y2="383"/>                                                          │

02:08:54 #7113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:08:54 #7114 [Debug] > │ x2="584" y2="368"/>                                                          │

02:08:54 #7115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="352"         │

02:08:54 #7116 [Debug] > │ x2="584" y2="352"/>                                                          │

02:08:54 #7117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="337"         │

02:08:54 #7118 [Debug] > │ x2="584" y2="337"/>                                                          │

02:08:54 #7119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:08:54 #7120 [Debug] > │ x2="584" y2="321"/>                                                          │

02:08:54 #7121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:08:54 #7122 [Debug] > │ x2="584" y2="306"/>                                                          │

02:08:54 #7123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="291"         │

02:08:54 #7124 [Debug] > │ x2="584" y2="291"/>                                                          │

02:08:54 #7125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="275"         │

02:08:54 #7126 [Debug] > │ x2="584" y2="275"/>                                                          │

02:08:54 #7127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:08:54 #7128 [Debug] > │ x2="584" y2="260"/>                                                          │

02:08:54 #7129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="244"         │

02:08:54 #7130 [Debug] > │ x2="584" y2="244"/>                                                          │

02:08:54 #7131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:08:54 #7132 [Debug] > │ x2="584" y2="229"/>                                                          │

02:08:54 #7133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:08:54 #7134 [Debug] > │ x2="584" y2="214"/>                                                          │

02:08:54 #7135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:08:54 #7136 [Debug] > │ x2="584" y2="198"/>                                                          │

02:08:54 #7137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:08:54 #7138 [Debug] > │ x2="584" y2="183"/>                                                          │

02:08:54 #7139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:08:54 #7140 [Debug] > │ x2="584" y2="167"/>                                                          │

02:08:54 #7141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:08:54 #7142 [Debug] > │ x2="584" y2="152"/>                                                          │

02:08:54 #7143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:08:54 #7144 [Debug] > │ x2="584" y2="137"/>                                                          │

02:08:54 #7145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:08:54 #7146 [Debug] > │ x2="584" y2="121"/>                                                          │

02:08:54 #7147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:08:54 #7148 [Debug] > │ x2="584" y2="106"/>                                                          │

02:08:54 #7149 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:08:54 #7150 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7151 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7152 [Debug] > │ time (s)                                                                     │

02:08:54 #7153 [Debug] > │ </text>                                                                      │

02:08:54 #7154 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:08:54 #7155 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7156 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:08:54 #7157 [Debug] > │                                                                              │

02:08:54 #7158 [Debug] > │ </text>                                                                      │

02:08:54 #7159 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:08:54 #7160 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7161 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7162 [Debug] > │ time (s)                                                                     │

02:08:54 #7163 [Debug] > │ </text>                                                                      │

02:08:54 #7164 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7165 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7166 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:08:54 #7167 [Debug] > │                                                                              │

02:08:54 #7168 [Debug] > │ </text>                                                                      │

02:08:54 #7169 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:08:54 #7170 [Debug] > │ y2="75"/>                                                                    │

02:08:54 #7171 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="103" y1="424"        │

02:08:54 #7172 [Debug] > │ x2="103" y2="75"/>                                                           │

02:08:54 #7173 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="136" y1="424"        │

02:08:54 #7174 [Debug] > │ x2="136" y2="75"/>                                                           │

02:08:54 #7175 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:08:54 #7176 [Debug] > │ x2="169" y2="75"/>                                                           │

02:08:54 #7177 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="203" y1="424"        │

02:08:54 #7178 [Debug] > │ x2="203" y2="75"/>                                                           │

02:08:54 #7179 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="236" y1="424"        │

02:08:54 #7180 [Debug] > │ x2="236" y2="75"/>                                                           │

02:08:54 #7181 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:08:54 #7182 [Debug] > │ x2="269" y2="75"/>                                                           │

02:08:54 #7183 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="302" y1="424"        │

02:08:54 #7184 [Debug] > │ x2="302" y2="75"/>                                                           │

02:08:54 #7185 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:08:54 #7186 [Debug] > │ x2="336" y2="75"/>                                                           │

02:08:54 #7187 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:08:54 #7188 [Debug] > │ x2="369" y2="75"/>                                                           │

02:08:54 #7189 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="402" y1="424"        │

02:08:54 #7190 [Debug] > │ x2="402" y2="75"/>                                                           │

02:08:54 #7191 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="435" y1="424"        │

02:08:54 #7192 [Debug] > │ x2="435" y2="75"/>                                                           │

02:08:54 #7193 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:08:54 #7194 [Debug] > │ x2="469" y2="75"/>                                                           │

02:08:54 #7195 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="502" y1="424"        │

02:08:54 #7196 [Debug] > │ x2="502" y2="75"/>                                                           │

02:08:54 #7197 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="535" y1="424"        │

02:08:54 #7198 [Debug] > │ x2="535" y2="75"/>                                                           │

02:08:54 #7199 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="398"         │

02:08:54 #7200 [Debug] > │ x2="584" y2="398"/>                                                          │

02:08:54 #7201 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="360"         │

02:08:54 #7202 [Debug] > │ x2="584" y2="360"/>                                                          │

02:08:54 #7203 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:08:54 #7204 [Debug] > │ x2="584" y2="321"/>                                                          │

02:08:54 #7205 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="283"         │

02:08:54 #7206 [Debug] > │ x2="584" y2="283"/>                                                          │

02:08:54 #7207 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="244"         │

02:08:54 #7208 [Debug] > │ x2="584" y2="244"/>                                                          │

02:08:54 #7209 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="206"         │

02:08:54 #7210 [Debug] > │ x2="584" y2="206"/>                                                          │

02:08:54 #7211 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="167"         │

02:08:54 #7212 [Debug] > │ x2="584" y2="167"/>                                                          │

02:08:54 #7213 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="129"         │

02:08:54 #7214 [Debug] > │ x2="584" y2="129"/>                                                          │

02:08:54 #7215 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="91" x2="584" │

02:08:54 #7216 [Debug] > │ y2="91"/>                                                                    │

02:08:54 #7217 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7218 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:08:54 #7219 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:08:54 #7220 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7221 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7222 [Debug] > │ 0.0                                                                          │

02:08:54 #7223 [Debug] > │ </text>                                                                      │

02:08:54 #7224 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7225 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:08:54 #7226 [Debug] > │ <text x="103" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7227 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7228 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7229 [Debug] > │ 0.2                                                                          │

02:08:54 #7230 [Debug] > │ </text>                                                                      │

02:08:54 #7231 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7232 [Debug] > │ points="103,69 103,74 "/>                                                    │

02:08:54 #7233 [Debug] > │ <text x="136" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7234 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7235 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7236 [Debug] > │ 0.4                                                                          │

02:08:54 #7237 [Debug] > │ </text>                                                                      │

02:08:54 #7238 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7239 [Debug] > │ points="136,69 136,74 "/>                                                    │

02:08:54 #7240 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7241 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7242 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7243 [Debug] > │ 0.6                                                                          │

02:08:54 #7244 [Debug] > │ </text>                                                                      │

02:08:54 #7245 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7246 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:08:54 #7247 [Debug] > │ <text x="203" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7248 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7249 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7250 [Debug] > │ 0.8                                                                          │

02:08:54 #7251 [Debug] > │ </text>                                                                      │

02:08:54 #7252 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7253 [Debug] > │ points="203,69 203,74 "/>                                                    │

02:08:54 #7254 [Debug] > │ <text x="236" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7255 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7256 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7257 [Debug] > │ 1.0                                                                          │

02:08:54 #7258 [Debug] > │ </text>                                                                      │

02:08:54 #7259 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7260 [Debug] > │ points="236,69 236,74 "/>                                                    │

02:08:54 #7261 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7262 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7263 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7264 [Debug] > │ 1.2                                                                          │

02:08:54 #7265 [Debug] > │ </text>                                                                      │

02:08:54 #7266 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7267 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:08:54 #7268 [Debug] > │ <text x="302" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7269 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7270 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7271 [Debug] > │ 1.4                                                                          │

02:08:54 #7272 [Debug] > │ </text>                                                                      │

02:08:54 #7273 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7274 [Debug] > │ points="302,69 302,74 "/>                                                    │

02:08:54 #7275 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7277 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7278 [Debug] > │ 1.6                                                                          │

02:08:54 #7279 [Debug] > │ </text>                                                                      │

02:08:54 #7280 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7281 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:08:54 #7282 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7283 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7284 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7285 [Debug] > │ 1.8                                                                          │

02:08:54 #7286 [Debug] > │ </text>                                                                      │

02:08:54 #7287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7288 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:08:54 #7289 [Debug] > │ <text x="402" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7290 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7291 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7292 [Debug] > │ 2.0                                                                          │

02:08:54 #7293 [Debug] > │ </text>                                                                      │

02:08:54 #7294 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7295 [Debug] > │ points="402,69 402,74 "/>                                                    │

02:08:54 #7296 [Debug] > │ <text x="435" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7297 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7298 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7299 [Debug] > │ 2.2                                                                          │

02:08:54 #7300 [Debug] > │ </text>                                                                      │

02:08:54 #7301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7302 [Debug] > │ points="435,69 435,74 "/>                                                    │

02:08:54 #7303 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7304 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7305 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7306 [Debug] > │ 2.4                                                                          │

02:08:54 #7307 [Debug] > │ </text>                                                                      │

02:08:54 #7308 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7309 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:08:54 #7310 [Debug] > │ <text x="502" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7311 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7312 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7313 [Debug] > │ 2.6                                                                          │

02:08:54 #7314 [Debug] > │ </text>                                                                      │

02:08:54 #7315 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7316 [Debug] > │ points="502,69 502,74 "/>                                                    │

02:08:54 #7317 [Debug] > │ <text x="535" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:08:54 #7318 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7319 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7320 [Debug] > │ 2.8                                                                          │

02:08:54 #7321 [Debug] > │ </text>                                                                      │

02:08:54 #7322 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7323 [Debug] > │ points="535,69 535,74 "/>                                                    │

02:08:54 #7324 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7325 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:08:54 #7326 [Debug] > │ <text x="45" y="398" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7327 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7328 [Debug] > │ -2.0                                                                         │

02:08:54 #7329 [Debug] > │ </text>                                                                      │

02:08:54 #7330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7331 [Debug] > │ points="49,398 54,398 "/>                                                    │

02:08:54 #7332 [Debug] > │ <text x="45" y="360" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7333 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7334 [Debug] > │ -1.5                                                                         │

02:08:54 #7335 [Debug] > │ </text>                                                                      │

02:08:54 #7336 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7337 [Debug] > │ points="49,360 54,360 "/>                                                    │

02:08:54 #7338 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7339 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7340 [Debug] > │ -1.0                                                                         │

02:08:54 #7341 [Debug] > │ </text>                                                                      │

02:08:54 #7342 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7343 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:08:54 #7344 [Debug] > │ <text x="45" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7345 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7346 [Debug] > │ -0.5                                                                         │

02:08:54 #7347 [Debug] > │ </text>                                                                      │

02:08:54 #7348 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7349 [Debug] > │ points="49,283 54,283 "/>                                                    │

02:08:54 #7350 [Debug] > │ <text x="45" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7351 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7352 [Debug] > │ 0.0                                                                          │

02:08:54 #7353 [Debug] > │ </text>                                                                      │

02:08:54 #7354 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7355 [Debug] > │ points="49,244 54,244 "/>                                                    │

02:08:54 #7356 [Debug] > │ <text x="45" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7357 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7358 [Debug] > │ 0.5                                                                          │

02:08:54 #7359 [Debug] > │ </text>                                                                      │

02:08:54 #7360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7361 [Debug] > │ points="49,206 54,206 "/>                                                    │

02:08:54 #7362 [Debug] > │ <text x="45" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7363 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7364 [Debug] > │ 1.0                                                                          │

02:08:54 #7365 [Debug] > │ </text>                                                                      │

02:08:54 #7366 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7367 [Debug] > │ points="49,167 54,167 "/>                                                    │

02:08:54 #7368 [Debug] > │ <text x="45" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7369 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7370 [Debug] > │ 1.5                                                                          │

02:08:54 #7371 [Debug] > │ </text>                                                                      │

02:08:54 #7372 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7373 [Debug] > │ points="49,129 54,129 "/>                                                    │

02:08:54 #7374 [Debug] > │ <text x="45" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:08:54 #7375 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7376 [Debug] > │ 2.0                                                                          │

02:08:54 #7377 [Debug] > │ </text>                                                                      │

02:08:54 #7378 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7379 [Debug] > │ points="49,91 54,91 "/>                                                      │

02:08:54 #7380 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7381 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:08:54 #7382 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:08:54 #7383 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7384 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7385 [Debug] > │ 0.0                                                                          │

02:08:54 #7386 [Debug] > │ </text>                                                                      │

02:08:54 #7387 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7388 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:08:54 #7389 [Debug] > │ <text x="103" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7390 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7391 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7392 [Debug] > │ 0.2                                                                          │

02:08:54 #7393 [Debug] > │ </text>                                                                      │

02:08:54 #7394 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7395 [Debug] > │ points="103,425 103,430 "/>                                                  │

02:08:54 #7396 [Debug] > │ <text x="136" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7397 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7398 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7399 [Debug] > │ 0.4                                                                          │

02:08:54 #7400 [Debug] > │ </text>                                                                      │

02:08:54 #7401 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7402 [Debug] > │ points="136,425 136,430 "/>                                                  │

02:08:54 #7403 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7404 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7405 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7406 [Debug] > │ 0.6                                                                          │

02:08:54 #7407 [Debug] > │ </text>                                                                      │

02:08:54 #7408 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7409 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:08:54 #7410 [Debug] > │ <text x="203" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7411 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7412 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7413 [Debug] > │ 0.8                                                                          │

02:08:54 #7414 [Debug] > │ </text>                                                                      │

02:08:54 #7415 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7416 [Debug] > │ points="203,425 203,430 "/>                                                  │

02:08:54 #7417 [Debug] > │ <text x="236" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7418 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7419 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7420 [Debug] > │ 1.0                                                                          │

02:08:54 #7421 [Debug] > │ </text>                                                                      │

02:08:54 #7422 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7423 [Debug] > │ points="236,425 236,430 "/>                                                  │

02:08:54 #7424 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7425 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7426 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7427 [Debug] > │ 1.2                                                                          │

02:08:54 #7428 [Debug] > │ </text>                                                                      │

02:08:54 #7429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7430 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:08:54 #7431 [Debug] > │ <text x="302" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7432 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7433 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7434 [Debug] > │ 1.4                                                                          │

02:08:54 #7435 [Debug] > │ </text>                                                                      │

02:08:54 #7436 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7437 [Debug] > │ points="302,425 302,430 "/>                                                  │

02:08:54 #7438 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7439 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7440 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7441 [Debug] > │ 1.6                                                                          │

02:08:54 #7442 [Debug] > │ </text>                                                                      │

02:08:54 #7443 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7444 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:08:54 #7445 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7446 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7447 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7448 [Debug] > │ 1.8                                                                          │

02:08:54 #7449 [Debug] > │ </text>                                                                      │

02:08:54 #7450 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7451 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:08:54 #7452 [Debug] > │ <text x="402" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7453 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7454 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7455 [Debug] > │ 2.0                                                                          │

02:08:54 #7456 [Debug] > │ </text>                                                                      │

02:08:54 #7457 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7458 [Debug] > │ points="402,425 402,430 "/>                                                  │

02:08:54 #7459 [Debug] > │ <text x="435" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7460 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7461 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7462 [Debug] > │ 2.2                                                                          │

02:08:54 #7463 [Debug] > │ </text>                                                                      │

02:08:54 #7464 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7465 [Debug] > │ points="435,425 435,430 "/>                                                  │

02:08:54 #7466 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7467 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7468 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7469 [Debug] > │ 2.4                                                                          │

02:08:54 #7470 [Debug] > │ </text>                                                                      │

02:08:54 #7471 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7472 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:08:54 #7473 [Debug] > │ <text x="502" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7474 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7475 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7476 [Debug] > │ 2.6                                                                          │

02:08:54 #7477 [Debug] > │ </text>                                                                      │

02:08:54 #7478 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7479 [Debug] > │ points="502,425 502,430 "/>                                                  │

02:08:54 #7480 [Debug] > │ <text x="535" y="435" dy="0.76em" text-anchor="middle"                       │

02:08:54 #7481 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7482 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7483 [Debug] > │ 2.8                                                                          │

02:08:54 #7484 [Debug] > │ </text>                                                                      │

02:08:54 #7485 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7486 [Debug] > │ points="535,425 535,430 "/>                                                  │

02:08:54 #7487 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7488 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:08:54 #7489 [Debug] > │ <text x="595" y="398" dy="0.5ex" text-anchor="start"                         │

02:08:54 #7490 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7491 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7492 [Debug] > │ -2.0                                                                         │

02:08:54 #7493 [Debug] > │ </text>                                                                      │

02:08:54 #7494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7495 [Debug] > │ points="585,398 590,398 "/>                                                  │

02:08:54 #7496 [Debug] > │ <text x="595" y="360" dy="0.5ex" text-anchor="start"                         │

02:08:54 #7497 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7498 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7499 [Debug] > │ -1.5                                                                         │

02:08:54 #7500 [Debug] > │ </text>                                                                      │

02:08:54 #7501 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7502 [Debug] > │ points="585,360 590,360 "/>                                                  │

02:08:54 #7503 [Debug] > │ <text x="595" y="321" dy="0.5ex" text-anchor="start"                         │

02:08:54 #7504 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7505 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7506 [Debug] > │ -1.0                                                                         │

02:08:54 #7507 [Debug] > │ </text>                                                                      │

02:08:54 #7508 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7509 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:08:54 #7510 [Debug] > │ <text x="595" y="283" dy="0.5ex" text-anchor="start"                         │

02:08:54 #7511 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7512 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7513 [Debug] > │ -0.5                                                                         │

02:08:54 #7514 [Debug] > │ </text>                                                                      │

02:08:54 #7515 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7516 [Debug] > │ points="585,283 590,283 "/>                                                  │

02:08:54 #7517 [Debug] > │ <text x="617" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:54 #7518 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7519 [Debug] > │ 0.0                                                                          │

02:08:54 #7520 [Debug] > │ </text>                                                                      │

02:08:54 #7521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7522 [Debug] > │ points="585,244 590,244 "/>                                                  │

02:08:54 #7523 [Debug] > │ <text x="617" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:54 #7524 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7525 [Debug] > │ 0.5                                                                          │

02:08:54 #7526 [Debug] > │ </text>                                                                      │

02:08:54 #7527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7528 [Debug] > │ points="585,206 590,206 "/>                                                  │

02:08:54 #7529 [Debug] > │ <text x="617" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:54 #7530 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7531 [Debug] > │ 1.0                                                                          │

02:08:54 #7532 [Debug] > │ </text>                                                                      │

02:08:54 #7533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7534 [Debug] > │ points="585,167 590,167 "/>                                                  │

02:08:54 #7535 [Debug] > │ <text x="617" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:08:54 #7536 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7537 [Debug] > │ 1.5                                                                          │

02:08:54 #7538 [Debug] > │ </text>                                                                      │

02:08:54 #7539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7540 [Debug] > │ points="585,129 590,129 "/>                                                  │

02:08:54 #7541 [Debug] > │ <text x="617" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:08:54 #7542 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:08:54 #7543 [Debug] > │ 2.0                                                                          │

02:08:54 #7544 [Debug] > │ </text>                                                                      │

02:08:54 #7545 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:08:54 #7546 [Debug] > │ points="585,91 590,91 "/>                                                    │

02:08:54 #7547 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:54 #7548 [Debug] > │ points="69,244 71,275 73,304 74,331 76,356 78,377 79,393 81,406 83,413       │

02:08:54 #7549 [Debug] > │ 84,415 86,412 88,404 89,391 91,375 93,355 94,332 96,307 98,280 99,252        │

02:08:54 #7550 [Debug] > │ 101,223 103,196 104,170 106,146 108,126 109,109 111,96 113,89 114,85 116,87  │

02:08:54 #7551 [Debug] > │ 118,93 119,103 121,118 123,136 124,157 126,180 128,205 129,231 131,257       │

02:08:54 #7552 [Debug] > │ 133,283 134,308 136,331 138,351 139,368 141,381 143,389 144,394 146,393      │

02:08:54 #7553 [Debug] > │ 148,389 149,380 151,367 153,351 154,332 156,311 158,288 159,264 161,239      │

02:08:54 #7554 [Debug] > │ 163,214 164,190 166,168 168,148 169,132 171,118 173,109 174,104 176,103      │

02:08:54 #7555 [Debug] > │ 178,106 179,114 181,125 183,139 184,156 186,176 188,197 189,220 191,244      │

02:08:54 #7556 [Debug] > │ 193,267 194,290 196,312 198,331 199,348 201,361 203,371 204,377 206,379      │

02:08:54 #7557 [Debug] > │ 208,377 209,371 211,361 213,348 214,333 216,314 218,294 219,273 221,251      │

02:08:54 #7558 [Debug] > │ 223,228 224,206 226,185 228,166 229,150 231,136 232,126 234,119 236,117      │

02:08:54 #7559 [Debug] > │ 237,118 239,122 241,130 242,142 244,156 246,173 247,192 249,212 251,233      │

02:08:54 #7560 [Debug] > │ 252,254 254,276 256,296 257,315 259,331 261,345 262,355 264,363 266,366      │

02:08:54 #7561 [Debug] > │ 267,366 269,363 271,356 272,346 274,333 276,317 277,300 279,281 281,261      │

02:08:54 #7562 [Debug] > │ 282,240 284,220 286,200 287,182 289,165 291,151 292,140 294,133 296,128      │

02:08:54 #7563 [Debug] > │ 297,127 299,130 301,136 302,145 304,156 306,171 307,187 309,205 311,224      │

02:08:54 #7564 [Debug] > │ 312,244 314,263 316,283 317,301 319,317 321,331 322,342 324,350 326,355      │

02:08:54 #7565 [Debug] > │ 327,357 329,356 331,351 332,343 334,332 336,319 337,304 339,287 341,269      │

02:08:54 #7566 [Debug] > │ 342,250 344,231 346,212 347,195 349,178 351,164 352,153 354,144 356,138      │

02:08:54 #7567 [Debug] > │ 357,136 359,136 361,140 362,147 364,157 366,169 367,183 369,199 371,216      │

02:08:54 #7568 [Debug] > │ 372,234 374,253 376,271 377,288 379,304 381,318 382,330 384,339 386,346      │

02:08:54 #7569 [Debug] > │ 387,349 389,349 391,346 392,340 394,332 396,321 397,307 399,292 401,276      │

02:08:54 #7570 [Debug] > │ 402,258 404,241 406,223 407,206 409,190 410,176 412,164 414,154 415,148      │

02:08:54 #7571 [Debug] > │ 417,144 419,143 420,145 422,150 424,158 425,168 427,180 429,194 430,210      │

02:08:54 #7572 [Debug] > │ 432,227 434,244 435,261 437,278 439,293 440,307 442,320 444,330 445,337      │

02:08:54 #7573 [Debug] > │ 447,341 449,343 450,342 452,338 454,331 455,322 457,310 459,297 460,282      │

02:08:54 #7574 [Debug] > │ 462,266 464,249 465,233 467,216 469,201 470,187 472,174 474,164 475,156      │

02:08:54 #7575 [Debug] > │ 477,151 479,149 480,149 482,153 484,159 485,167 487,178 489,190 490,204      │

02:08:54 #7576 [Debug] > │ 492,220 494,236 495,252 497,268 499,283 500,297 502,310 504,320 505,329      │

02:08:54 #7577 [Debug] > │ 507,334 509,337 510,337 512,335 514,330 515,322 517,312 519,300 520,287      │

02:08:54 #7578 [Debug] > │ 522,272 524,257 525,241 527,226 529,210 530,196 532,184 534,173 535,164      │

02:08:54 #7579 [Debug] > │ 537,158 539,154 540,154 542,155 544,160 545,167 547,176 549,187 550,199      │

02:08:54 #7580 [Debug] > │ 552,213 554,228 555,244 557,259 559,274 560,288 562,301 564,312 565,321      │

02:08:54 #7581 [Debug] > │ 567,327 569,332 "/>                                                          │

02:08:54 #7582 [Debug] > │ <rect x="454" y="235" width="126" height="30" opacity="1" fill="none"        │

02:08:54 #7583 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:08:54 #7584 [Debug] > │ <text x="494" y="245" dy="0.76em" text-anchor="start"                        │

02:08:54 #7585 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:08:54 #7586 [Debug] > │ fill="#FFFFFF">                                                              │

02:08:54 #7587 [Debug] > │ velocity (m/s)                                                               │

02:08:54 #7588 [Debug] > │ </text>                                                                      │

02:08:54 #7589 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:08:54 #7590 [Debug] > │ points="464,250 484,250 "/>                                                  │

02:08:54 #7591 [Debug] > │ </svg>                                                                       │

02:08:54 #7592 [Debug] > │                                                                              │

02:08:54 #7593 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:54 #7594 [Debug] >

02:08:54 #7595 [Debug] > ╭─[ 537.10ms - stdout ]────────────────────────────────────────────────────────╮

02:08:54 #7596 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:08:54 #7597 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:08:54 #7598 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:08:54 #7599 [Debug] > │     let v2 : bool = v1 < 301                                                 │

02:08:54 #7600 [Debug] > │     v2                                                                       │

02:08:54 #7601 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:08:54 #7602 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:08:54 #7603 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:08:54 #7604 [Debug] > │     v3                                                                       │

02:08:54 #7605 [Debug] > │ and method3 (v0 : float, v1 : float, v2 : float, v3 : float) : struct (float │

02:08:54 #7606 [Debug] > │ * float * float) =                                                           │

02:08:54 #7607 [Debug] > │     let v4 : bool = v3 <= 0.0                                                │

02:08:54 #7608 [Debug] > │     if v4 then                                                               │

02:08:54 #7609 [Debug] > │         struct (v0, v1, v2)                                                  │

02:08:54 #7610 [Debug] > │     else                                                                     │

02:08:54 #7611 [Debug] > │         let v5 : float =  -v2                                                │

02:08:54 #7612 [Debug] > │         let v6 : bool = v2 >= v5                                             │

02:08:54 #7613 [Debug] > │         let v7 : float =                                                     │

02:08:54 #7614 [Debug] > │             if v6 then                                                       │

02:08:54 #7615 [Debug] > │                 v2                                                           │

02:08:54 #7616 [Debug] > │             else                                                             │

02:08:54 #7617 [Debug] > │                 v5                                                           │

02:08:54 #7618 [Debug] > │         let v8 : float = -0.0030787608005179976 * v7                         │

02:08:54 #7619 [Debug] > │         let v9 : float = v8 * v2                                             │

02:08:54 #7620 [Debug] > │         let v10 : float = v9 / 2.0                                           │

02:08:54 #7621 [Debug] > │         let v11 : float = -0.8 * v1                                          │

02:08:54 #7622 [Debug] > │         let v12 : float = v11 + v10                                          │

02:08:54 #7623 [Debug] > │         let v13 : float = v12 + -0.026477955                                 │

02:08:54 #7624 [Debug] > │         let v14 : float = v13 / 0.0027                                       │

02:08:54 #7625 [Debug] > │         let v15 : float = v0 + 0.001                                         │

02:08:54 #7626 [Debug] > │         let v16 : float = v2 * 0.001                                         │

02:08:54 #7627 [Debug] > │         let v17 : float = v1 + v16                                           │

02:08:54 #7628 [Debug] > │         let v18 : float = v14 * 0.001                                        │

02:08:54 #7629 [Debug] > │         let v19 : float = v2 + v18                                           │

02:08:54 #7630 [Debug] > │         let v20 : float = v3 - 1.0                                           │

02:08:54 #7631 [Debug] > │         method3(v15, v17, v19, v20)                                          │

02:08:54 #7632 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:08:54 #7633 [Debug] > │ []) * (float [])) [])) =                                                     │

02:08:54 #7634 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (301)                      │

02:08:54 #7635 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:54 #7636 [Debug] > │     while method1(v1) do                                                     │

02:08:54 #7637 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:08:54 #7638 [Debug] > │         let v4 : float = float v3                                            │

02:08:54 #7639 [Debug] > │         let v5 : float = 0.01 * v4                                           │

02:08:54 #7640 [Debug] > │         v0.[int v3] <- v5                                                    │

02:08:54 #7641 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:08:54 #7642 [Debug] > │         v1.l0 <- v6                                                          │

02:08:54 #7643 [Debug] > │         ()                                                                   │

02:08:54 #7644 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:08:54 #7645 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:08:54 #7646 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:08:54 #7647 [Debug] > │     while method2(v7, v9) do                                                 │

02:08:54 #7648 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:08:54 #7649 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:08:54 #7650 [Debug] > │         let v13 : float = 0.0                                                │

02:08:54 #7651 [Debug] > │         let v14 : float = 0.1                                                │

02:08:54 #7652 [Debug] > │         let v15 : float = 0.0                                                │

02:08:54 #7653 [Debug] > │         let v16 : float = 0.0                                                │

02:08:54 #7654 [Debug] > │         let struct (v17 : float, v18 : float, v19 : float) = method3(v13,    │

02:08:54 #7655 [Debug] > │ v14, v15, v16)                                                               │

02:08:54 #7656 [Debug] > │         let v20 : float = 0.0                                                │

02:08:54 #7657 [Debug] > │         let v21 : float = 0.1                                                │

02:08:54 #7658 [Debug] > │         let v22 : float = 0.0                                                │

02:08:54 #7659 [Debug] > │         let v23 : float = 1.0                                                │

02:08:54 #7660 [Debug] > │         let struct (v24 : float, v25 : float, v26 : float) = method3(v20,    │

02:08:54 #7661 [Debug] > │ v21, v22, v23)                                                               │

02:08:54 #7662 [Debug] > │         let v27 : float = v24 - v17                                          │

02:08:54 #7663 [Debug] > │         let v28 : float = v12 / v27                                          │

02:08:54 #7664 [Debug] > │         let v29 : float = round v28                                          │

02:08:54 #7665 [Debug] > │         let v30 : float =  -v29                                              │

02:08:54 #7666 [Debug] > │         let v31 : bool = v29 >= v30                                          │

02:08:54 #7667 [Debug] > │         let v32 : float =                                                    │

02:08:54 #7668 [Debug] > │             if v31 then                                                      │

02:08:54 #7669 [Debug] > │                 v29                                                          │

02:08:54 #7670 [Debug] > │             else                                                             │

02:08:54 #7671 [Debug] > │                 v30                                                          │

02:08:54 #7672 [Debug] > │         let v33 : float = 0.0                                                │

02:08:54 #7673 [Debug] > │         let v34 : float = 0.1                                                │

02:08:54 #7674 [Debug] > │         let v35 : float = 0.0                                                │

02:08:54 #7675 [Debug] > │         let struct (v36 : float, v37 : float, v38 : float) = method3(v33,    │

02:08:54 #7676 [Debug] > │ v34, v35, v32)                                                               │

02:08:54 #7677 [Debug] > │         v8.[int v11] <- v38                                                  │

02:08:54 #7678 [Debug] > │         let v39 : int32 = v11 + 1                                            │

02:08:54 #7679 [Debug] > │         v9.l0 <- v39                                                         │

02:08:54 #7680 [Debug] > │         ()                                                                   │

02:08:54 #7681 [Debug] > │     let v40 : string = "velocity (m/s)"                                      │

02:08:54 #7682 [Debug] > │     let v41 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:08:54 #7683 [Debug] > │ (v40, v0, v8)|]                                                              │

02:08:54 #7684 [Debug] > │     let v42 : string = "ping pong ball on a slinky"                          │

02:08:54 #7685 [Debug] > │     let v43 : string = "time (s)"                                            │

02:08:54 #7686 [Debug] > │     let v44 : string = ""                                                    │

02:08:54 #7687 [Debug] > │     struct (v42, v43, v44, v41)                                              │

02:08:54 #7688 [Debug] > │ method0()                                                                    │

02:08:54 #7689 [Debug] > │                                                                              │

02:08:54 #7690 [Debug] > │                                                                              │

02:08:54 #7691 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:54 #7692 [Debug] >

02:08:54 #7693 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:54 #7694 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:54 #7695 [Debug] > │ ## shift                                                                     │

02:08:54 #7696 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:54 #7697 [Debug] >

02:08:54 #7698 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:54 #7699 [Debug] > type update_function s = s -> s

02:08:54 #7700 [Debug] >

02:08:54 #7701 [Debug] > type differential_equation s ds = s -> ds

02:08:54 #7702 [Debug] >

02:08:54 #7703 [Debug] > type numerical_method s ds = differential_equation s ds -> update_function s

02:08:54 #7704 [Debug] >

02:08:54 #7705 [Debug] >

02:08:54 #7706 [Debug] > inl solver method =

02:08:54 #7707 [Debug] >     method >> seq.iterate

02:08:54 #7708 [Debug] > inl solver' method =

02:08:54 #7709 [Debug] >     method >> seq.iterate'

02:08:54 #7710 [Debug] > inl solver_ method =

02:08:54 #7711 [Debug] >     method >> seq.iterate_

02:08:54 #7712 [Debug] >

02:08:54 #7713 [Debug] >

02:08:54 #7714 [Debug] > inl euler_cromer_1d dt deriv (state_1d (t0, x0, v0) as t) =

02:08:54 #7715 [Debug] >     inl (rrr (_, _, dvdt)) = deriv t

02:08:54 #7716 [Debug] >     inl t1 = t0 + dt

02:08:54 #7717 [Debug] >     inl v1 = v0 + dvdt * dt

02:08:54 #7718 [Debug] >     inl x1 = x0 + v1 * dt

02:08:54 #7719 [Debug] >     state_1d (t1, x1, v1)

02:08:54 #7720 [Debug] >

02:08:54 #7721 [Debug] > inl update_txv_ec dt m fs =

02:08:54 #7722 [Debug] >     euler_cromer_1d dt (newton_second_1d m fs)

02:08:54 #7723 [Debug] >

02:08:54 #7724 [Debug] > prototype (+++) ds : ds -> ds -> ds

02:08:54 #7725 [Debug] > prototype scale ds : f64 -> ds -> ds

02:08:54 #7726 [Debug] >

02:08:54 #7727 [Debug] > instance (+++) rrr = fun (rrr (dtdt0, dxdt0, dvdt0)) (rrr (dtdt1, dxdt1, dvdt1))

02:08:54 #7728 [Debug] > =>

02:08:54 #7729 [Debug] >     rrr (dtdt0 + dtdt1, dxdt0 + dxdt1, dvdt0 + dvdt1)

02:08:54 #7730 [Debug] >

02:08:54 #7731 [Debug] > instance scale rrr = fun w (rrr (dtdt0, dxdt0, dvdt0)) =>

02:08:54 #7732 [Debug] >     rrr (w * dtdt0, w * dxdt0, w * dvdt0)

02:08:54 #7733 [Debug] >

02:08:54 #7734 [Debug] > prototype shift s : forall ds. f64 -> ds -> s -> s

02:08:54 #7735 [Debug] >

02:08:54 #7736 [Debug] > instance shift state_1d = fun dt ds (state_1d (t, x, v)) =>

02:08:54 #7737 [Debug] >     inl dtdt, dxdt, dvdt =

02:08:54 #7738 [Debug] >         real

02:08:54 #7739 [Debug] >             match ds with

02:08:54 #7740 [Debug] >             | rrr x => x

02:08:54 #7741 [Debug] >             | state_1d x => x

02:08:54 #7742 [Debug] >     state_1d (t + dtdt * dt, x + dxdt * dt, v + dvdt * dt)

02:08:54 #7743 [Debug] >

02:08:54 #7744 [Debug] > inl euler dt deriv st0 =

02:08:54 #7745 [Debug] >     shift dt (deriv st0) st0

02:08:54 #7746 [Debug] >

02:08:54 #7747 [Debug] > inl runge_kutta_4 dt deriv st0 =

02:08:54 #7748 [Debug] >     inl m0 = deriv st0

02:08:54 #7749 [Debug] >     inl m1 = deriv (shift (dt / 2) m0 st0)

02:08:54 #7750 [Debug] >     inl m2 = deriv (shift (dt / 2) m1 st0)

02:08:54 #7751 [Debug] >     inl m3 = deriv (shift dt m2 st0)

02:08:54 #7752 [Debug] >     shift (dt / 6) (m0 +++ m1 +++ m1 +++ m2 +++ m2 +++ m3) st0

02:08:54 #7753 [Debug] >

02:08:54 #7754 [Debug] > inl exponential (_, x0, v0) =

02:08:54 #7755 [Debug] >     1f64, v0, x0

02:08:54 #7756 [Debug] >

02:08:54 #7757 [Debug] > inl of_state_1d (state_1d (t, x, v)) =

02:08:54 #7758 [Debug] >     t, x, v

02:08:54 #7759 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5482-8223-868571895cac\main.spi

02:08:55 #7760 [Debug] >

02:08:55 #7761 [Debug] > ╭─[ 184.01ms - stdout ]────────────────────────────────────────────────────────╮

02:08:55 #7762 [Debug] > │ ()                                                                           │

02:08:55 #7763 [Debug] > │                                                                              │

02:08:55 #7764 [Debug] > │                                                                              │

02:08:55 #7765 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:55 #7766 [Debug] >

02:08:55 #7767 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:55 #7768 [Debug] > // // test

02:08:55 #7769 [Debug] >

02:08:55 #7770 [Debug] > solver (euler 0.01) (of_state_1d >> exponential >> state_1d) (state_1d (0, 1,

02:08:55 #7771 [Debug] > 1)) 800i32

02:08:55 #7772 [Debug] > |> _equal (state_1d (7.999999999999874, 2864.8311229272326, 2864.8311229272326))

02:08:55 #7773 [Debug] >

02:08:55 #7774 [Debug] > solver (euler_cromer_1d 0.1) (of_state_1d >> exponential >> rrr) (state_1d (0,

02:08:55 #7775 [Debug] > 1, 1)) 80i32

02:08:55 #7776 [Debug] > |> _equal (state_1d (7.999999999999988, 3043.379244966009, 2895.0121485099035))

02:08:55 #7777 [Debug] >

02:08:55 #7778 [Debug] > solver (runge_kutta_4 1) (of_state_1d >> exponential >> rrr) (state_1d (0, 1,

02:08:55 #7779 [Debug] > 1)) 8i32

02:08:55 #7780 [Debug] > |> _equal (state_1d (8.0, 2894.789038540849, 2894.789038540849))

02:08:55 #7781 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5500-0056-02c3ff107030\main.spi

02:08:55 #7782 [Debug] >

02:08:55 #7783 [Debug] > ╭─[ 454.51ms - stdout ]────────────────────────────────────────────────────────╮

02:08:55 #7784 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:55 #7785 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (7.999999999999874,       │

02:08:55 #7786 [Debug] > │ 2864.8311229272326, 2864.8311229272326)} / expected: %A{struct               │

02:08:55 #7787 [Debug] > │ (7.999999999999874, 2864.8311229272326, 2864.8311229272326)}"                │

02:08:55 #7788 [Debug] > │     let v1 : string = $"_equal / actual: %A{struct (7.999999999999988,       │

02:08:55 #7789 [Debug] > │ 3043.379244966009, 2895.0121485099035)} / expected: %A{struct                │

02:08:55 #7790 [Debug] > │ (7.999999999999988, 3043.379244966009, 2895.0121485099035)}"                 │

02:08:55 #7791 [Debug] > │     let v2 : string = $"_equal / actual: %A{struct (8.0, 2894.789038540849,  │

02:08:55 #7792 [Debug] > │ 2894.789038540849)} / expected: %A{struct (8.0, 2894.789038540849,           │

02:08:55 #7793 [Debug] > │ 2894.789038540849)}"                                                         │

02:08:55 #7794 [Debug] > │     ()                                                                       │

02:08:55 #7795 [Debug] > │ method0()                                                                    │

02:08:55 #7796 [Debug] > │                                                                              │

02:08:55 #7797 [Debug] > │                                                                              │

02:08:55 #7798 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:55 #7799 [Debug] >

02:08:55 #7800 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:55 #7801 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:55 #7802 [Debug] > │ ## vec                                                                       │

02:08:55 #7803 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:55 #7804 [Debug] >

02:08:55 #7805 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:55 #7806 [Debug] > type vec =

02:08:55 #7807 [Debug] >     {

02:08:55 #7808 [Debug] >         x : f64

02:08:55 #7809 [Debug] >         y : f64

02:08:55 #7810 [Debug] >         z : f64

02:08:55 #7811 [Debug] >     }

02:08:55 #7812 [Debug] >

02:08:55 #7813 [Debug] > inl vec x y z : vec =

02:08:55 #7814 [Debug] >     { x y z }

02:08:55 #7815 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5547-4708-42b58c1be780\main.spi

02:08:55 #7816 [Debug] >

02:08:55 #7817 [Debug] > ╭─[ 210.50ms - stdout ]────────────────────────────────────────────────────────╮

02:08:55 #7818 [Debug] > │ ()                                                                           │

02:08:55 #7819 [Debug] > │                                                                              │

02:08:55 #7820 [Debug] > │                                                                              │

02:08:55 #7821 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:55 #7822 [Debug] >

02:08:55 #7823 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:55 #7824 [Debug] > // // test

02:08:55 #7825 [Debug] >

02:08:55 #7826 [Debug] > vec 1 2 3 .z

02:08:55 #7827 [Debug] > |> _equal 3

02:08:55 #7828 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5568-6819-67a0e24055ef\main.spi

02:08:55 #7829 [Debug] >

02:08:55 #7830 [Debug] > ╭─[ 156.59ms - stdout ]────────────────────────────────────────────────────────╮

02:08:55 #7831 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:55 #7832 [Debug] > │     let v0 : string = $"_equal / actual: %A{3.0} / expected: %A{3.0}"        │

02:08:55 #7833 [Debug] > │     ()                                                                       │

02:08:55 #7834 [Debug] > │ method0()                                                                    │

02:08:55 #7835 [Debug] > │                                                                              │

02:08:55 #7836 [Debug] > │                                                                              │

02:08:55 #7837 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:55 #7838 [Debug] >

02:08:55 #7839 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:55 #7840 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:55 #7841 [Debug] > │ ### consts                                                                   │

02:08:55 #7842 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:55 #7843 [Debug] >

02:08:55 #7844 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:55 #7845 [Debug] > inl i_hat () = vec 1 0 0

02:08:55 #7846 [Debug] > inl j_hat () = vec 0 1 0

02:08:55 #7847 [Debug] > inl k_hat () = vec 0 0 1

02:08:55 #7848 [Debug] > inl zero_vec () = vec 0 0 0

02:08:55 #7849 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5584-8473-8abef407fa2b\main.spi

02:08:56 #7850 [Debug] >

02:08:56 #7851 [Debug] > ╭─[ 199.53ms - stdout ]────────────────────────────────────────────────────────╮

02:08:56 #7852 [Debug] > │ ()                                                                           │

02:08:56 #7853 [Debug] > │                                                                              │

02:08:56 #7854 [Debug] > │                                                                              │

02:08:56 #7855 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7856 [Debug] >

02:08:56 #7857 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:56 #7858 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:56 #7859 [Debug] > │ ### ^+^                                                                      │

02:08:56 #7860 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7861 [Debug] >

02:08:56 #7862 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:56 #7863 [Debug] > inl (^+^) (a : vec) (b : vec) =

02:08:56 #7864 [Debug] >     vec (a.x + b.x) (a.y + b.y) (a.z + b.z)

02:08:56 #7865 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5604-0489-0361ae52748a\main.spi

02:08:56 #7866 [Debug] >

02:08:56 #7867 [Debug] > ╭─[ 200.48ms - stdout ]────────────────────────────────────────────────────────╮

02:08:56 #7868 [Debug] > │ ()                                                                           │

02:08:56 #7869 [Debug] > │                                                                              │

02:08:56 #7870 [Debug] > │                                                                              │

02:08:56 #7871 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7872 [Debug] >

02:08:56 #7873 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:56 #7874 [Debug] > // // test

02:08:56 #7875 [Debug] >

02:08:56 #7876 [Debug] > vec 1 2 3 ^+^ vec 4 5 6

02:08:56 #7877 [Debug] > |> _equal (vec 5 7 9)

02:08:56 #7878 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5625-2532-230fd71ef16d\main.spi

02:08:56 #7879 [Debug] >

02:08:56 #7880 [Debug] > ╭─[ 185.76ms - stdout ]────────────────────────────────────────────────────────╮

02:08:56 #7881 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:56 #7882 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 7.0, 9.0)} /        │

02:08:56 #7883 [Debug] > │ expected: %A{struct (5.0, 7.0, 9.0)}"                                        │

02:08:56 #7884 [Debug] > │     ()                                                                       │

02:08:56 #7885 [Debug] > │ method0()                                                                    │

02:08:56 #7886 [Debug] > │                                                                              │

02:08:56 #7887 [Debug] > │                                                                              │

02:08:56 #7888 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7889 [Debug] >

02:08:56 #7890 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:56 #7891 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:56 #7892 [Debug] > │ ### sum_vec                                                                  │

02:08:56 #7893 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7894 [Debug] >

02:08:56 #7895 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:56 #7896 [Debug] > inl sum_vec vs =

02:08:56 #7897 [Debug] >     vs |> listm.fold (^+^) (zero_vec ())

02:08:56 #7898 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5644-4433-4176e0433caa\main.spi

02:08:56 #7899 [Debug] >

02:08:56 #7900 [Debug] > ╭─[ 192.89ms - stdout ]────────────────────────────────────────────────────────╮

02:08:56 #7901 [Debug] > │ ()                                                                           │

02:08:56 #7902 [Debug] > │                                                                              │

02:08:56 #7903 [Debug] > │                                                                              │

02:08:56 #7904 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7905 [Debug] >

02:08:56 #7906 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:56 #7907 [Debug] > // // test

02:08:56 #7908 [Debug] >

02:08:56 #7909 [Debug] > [[ vec 1 2 3; vec 4 5 6 ]]

02:08:56 #7910 [Debug] > |> sum_vec

02:08:56 #7911 [Debug] > |> _equal (vec 5 7 9)

02:08:56 #7912 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5664-6407-6c50508060d9\main.spi

02:08:56 #7913 [Debug] >

02:08:56 #7914 [Debug] > ╭─[ 187.97ms - stdout ]────────────────────────────────────────────────────────╮

02:08:56 #7915 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:56 #7916 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 7.0, 9.0)} /        │

02:08:56 #7917 [Debug] > │ expected: %A{struct (5.0, 7.0, 9.0)}"                                        │

02:08:56 #7918 [Debug] > │     ()                                                                       │

02:08:56 #7919 [Debug] > │ method0()                                                                    │

02:08:56 #7920 [Debug] > │                                                                              │

02:08:56 #7921 [Debug] > │                                                                              │

02:08:56 #7922 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7923 [Debug] >

02:08:56 #7924 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:56 #7925 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:56 #7926 [Debug] > │ ### *^                                                                       │

02:08:56 #7927 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:56 #7928 [Debug] >

02:08:56 #7929 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:56 #7930 [Debug] > inl (*^) c { x y z } =

02:08:56 #7931 [Debug] >     vec (c * x) (c * y) (c * z)

02:08:56 #7932 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5683-8323-83d23843eae9\main.spi

02:08:57 #7933 [Debug] >

02:08:57 #7934 [Debug] > ╭─[ 180.19ms - stdout ]────────────────────────────────────────────────────────╮

02:08:57 #7935 [Debug] > │ ()                                                                           │

02:08:57 #7936 [Debug] > │                                                                              │

02:08:57 #7937 [Debug] > │                                                                              │

02:08:57 #7938 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #7939 [Debug] >

02:08:57 #7940 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:57 #7941 [Debug] > // // test

02:08:57 #7942 [Debug] >

02:08:57 #7943 [Debug] > 5 *^ vec 1 2 3

02:08:57 #7944 [Debug] > |> _equal (vec 5 10 15)

02:08:57 #7945 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5701-0151-008ae26d7e6a\main.spi

02:08:57 #7946 [Debug] >

02:08:57 #7947 [Debug] > ╭─[ 157.26ms - stdout ]────────────────────────────────────────────────────────╮

02:08:57 #7948 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:57 #7949 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 10.0, 15.0)} /      │

02:08:57 #7950 [Debug] > │ expected: %A{struct (5.0, 10.0, 15.0)}"                                      │

02:08:57 #7951 [Debug] > │     ()                                                                       │

02:08:57 #7952 [Debug] > │ method0()                                                                    │

02:08:57 #7953 [Debug] > │                                                                              │

02:08:57 #7954 [Debug] > │                                                                              │

02:08:57 #7955 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #7956 [Debug] >

02:08:57 #7957 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:57 #7958 [Debug] > // // test

02:08:57 #7959 [Debug] >

02:08:57 #7960 [Debug] > 3 *^ i_hat () ^+^ 4 *^ k_hat ()

02:08:57 #7961 [Debug] > |> _equal (vec 3 0 4)

02:08:57 #7962 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5717-1764-12344ce582f0\main.spi

02:08:57 #7963 [Debug] >

02:08:57 #7964 [Debug] > ╭─[ 181.55ms - stdout ]────────────────────────────────────────────────────────╮

02:08:57 #7965 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:57 #7966 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (3.0, 0.0, 4.0)} /        │

02:08:57 #7967 [Debug] > │ expected: %A{struct (3.0, 0.0, 4.0)}"                                        │

02:08:57 #7968 [Debug] > │     ()                                                                       │

02:08:57 #7969 [Debug] > │ method0()                                                                    │

02:08:57 #7970 [Debug] > │                                                                              │

02:08:57 #7971 [Debug] > │                                                                              │

02:08:57 #7972 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #7973 [Debug] >

02:08:57 #7974 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:57 #7975 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:57 #7976 [Debug] > │ ### ^*                                                                       │

02:08:57 #7977 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #7978 [Debug] >

02:08:57 #7979 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:57 #7980 [Debug] > inl (^*) v c =

02:08:57 #7981 [Debug] >     (*^) c v

02:08:57 #7982 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5736-3641-3e7f2bd332eb\main.spi

02:08:57 #7983 [Debug] >

02:08:57 #7984 [Debug] > ╭─[ 197.21ms - stdout ]────────────────────────────────────────────────────────╮

02:08:57 #7985 [Debug] > │ ()                                                                           │

02:08:57 #7986 [Debug] > │                                                                              │

02:08:57 #7987 [Debug] > │                                                                              │

02:08:57 #7988 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #7989 [Debug] >

02:08:57 #7990 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:57 #7991 [Debug] > // // test

02:08:57 #7992 [Debug] >

02:08:57 #7993 [Debug] > vec 1 2 3 ^* 5

02:08:57 #7994 [Debug] > |> _equal (vec 5 10 15)

02:08:57 #7995 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5756-5634-58637ac56464\main.spi

02:08:57 #7996 [Debug] >

02:08:57 #7997 [Debug] > ╭─[ 177.57ms - stdout ]────────────────────────────────────────────────────────╮

02:08:57 #7998 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:57 #7999 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (5.0, 10.0, 15.0)} /      │

02:08:57 #8000 [Debug] > │ expected: %A{struct (5.0, 10.0, 15.0)}"                                      │

02:08:57 #8001 [Debug] > │     ()                                                                       │

02:08:57 #8002 [Debug] > │ method0()                                                                    │

02:08:57 #8003 [Debug] > │                                                                              │

02:08:57 #8004 [Debug] > │                                                                              │

02:08:57 #8005 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #8006 [Debug] >

02:08:57 #8007 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:57 #8008 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:57 #8009 [Debug] > │ ### ^/                                                                       │

02:08:57 #8010 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #8011 [Debug] >

02:08:57 #8012 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:57 #8013 [Debug] > inl (^/) { x y z } c =

02:08:57 #8014 [Debug] >     vec (x / c) (y / c) (z / c)

02:08:57 #8015 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5774-7470-77cb4b4d937a\main.spi

02:08:57 #8016 [Debug] >

02:08:57 #8017 [Debug] > ╭─[ 192.39ms - stdout ]────────────────────────────────────────────────────────╮

02:08:57 #8018 [Debug] > │ ()                                                                           │

02:08:57 #8019 [Debug] > │                                                                              │

02:08:57 #8020 [Debug] > │                                                                              │

02:08:57 #8021 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:57 #8022 [Debug] >

02:08:57 #8023 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:57 #8024 [Debug] > // // test

02:08:57 #8025 [Debug] >

02:08:57 #8026 [Debug] > vec 1 2 3 ^/ 5

02:08:57 #8027 [Debug] > |> _equal (vec 0.2 0.4 0.6)

02:08:58 #8028 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5794-9412-96225786cdd5\main.spi

02:08:58 #8029 [Debug] >

02:08:58 #8030 [Debug] > ╭─[ 203.12ms - stdout ]────────────────────────────────────────────────────────╮

02:08:58 #8031 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:58 #8032 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (0.2, 0.4, 0.6)} /        │

02:08:58 #8033 [Debug] > │ expected: %A{struct (0.2, 0.4, 0.6)}"                                        │

02:08:58 #8034 [Debug] > │     ()                                                                       │

02:08:58 #8035 [Debug] > │ method0()                                                                    │

02:08:58 #8036 [Debug] > │                                                                              │

02:08:58 #8037 [Debug] > │                                                                              │

02:08:58 #8038 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:58 #8039 [Debug] >

02:08:58 #8040 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:58 #8041 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:58 #8042 [Debug] > │ ### negate_vec                                                               │

02:08:58 #8043 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:58 #8044 [Debug] >

02:08:58 #8045 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:58 #8046 [Debug] > inl negate_vec v =

02:08:58 #8047 [Debug] >     v ^* -1

02:08:58 #8048 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5814-1493-1f2661f29e44\main.spi

02:08:58 #8049 [Debug] >

02:08:58 #8050 [Debug] > ╭─[ 228.82ms - stdout ]────────────────────────────────────────────────────────╮

02:08:58 #8051 [Debug] > │ ()                                                                           │

02:08:58 #8052 [Debug] > │                                                                              │

02:08:58 #8053 [Debug] > │                                                                              │

02:08:58 #8054 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:58 #8055 [Debug] >

02:08:58 #8056 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:58 #8057 [Debug] > // // test

02:08:58 #8058 [Debug] >

02:08:58 #8059 [Debug] > vec 1 2 3

02:08:58 #8060 [Debug] > |> negate_vec

02:08:58 #8061 [Debug] > |> _equal (vec -1 -2 -3)

02:08:58 #8062 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5838-3836-3127159e46a3\main.spi

02:08:58 #8063 [Debug] >

02:08:58 #8064 [Debug] > ╭─[ 188.95ms - stdout ]────────────────────────────────────────────────────────╮

02:08:58 #8065 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:58 #8066 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (-1.0, -2.0, -3.0)} /     │

02:08:58 #8067 [Debug] > │ expected: %A{struct (-1.0, -2.0, -3.0)}"                                     │

02:08:58 #8068 [Debug] > │     ()                                                                       │

02:08:58 #8069 [Debug] > │ method0()                                                                    │

02:08:58 #8070 [Debug] > │                                                                              │

02:08:58 #8071 [Debug] > │                                                                              │

02:08:58 #8072 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:58 #8073 [Debug] >

02:08:58 #8074 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:58 #8075 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:58 #8076 [Debug] > │ ### ^-^                                                                      │

02:08:58 #8077 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:58 #8078 [Debug] >

02:08:58 #8079 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:58 #8080 [Debug] > inl (^-^) a b =

02:08:58 #8081 [Debug] >     a ^+^ (negate_vec b)

02:08:58 #8082 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5857-5748-5c45f3eba6c8\main.spi

02:08:58 #8083 [Debug] >

02:08:58 #8084 [Debug] > ╭─[ 224.80ms - stdout ]────────────────────────────────────────────────────────╮

02:08:58 #8085 [Debug] > │ ()                                                                           │

02:08:58 #8086 [Debug] > │                                                                              │

02:08:58 #8087 [Debug] > │                                                                              │

02:08:58 #8088 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:58 #8089 [Debug] >

02:08:58 #8090 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:58 #8091 [Debug] > // // test

02:08:58 #8092 [Debug] >

02:08:58 #8093 [Debug] > vec 1 2 3 ^-^ vec 4 5 6

02:08:58 #8094 [Debug] > |> _equal (vec -3 -3 -3)

02:08:58 #8095 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5880-8025-8494eef0b70f\main.spi

02:08:59 #8096 [Debug] >

02:08:59 #8097 [Debug] > ╭─[ 333.34ms - stdout ]────────────────────────────────────────────────────────╮

02:08:59 #8098 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:59 #8099 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (-3.0, -3.0, -3.0)} /     │

02:08:59 #8100 [Debug] > │ expected: %A{struct (-3.0, -3.0, -3.0)}"                                     │

02:08:59 #8101 [Debug] > │     ()                                                                       │

02:08:59 #8102 [Debug] > │ method0()                                                                    │

02:08:59 #8103 [Debug] > │                                                                              │

02:08:59 #8104 [Debug] > │                                                                              │

02:08:59 #8105 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8106 [Debug] >

02:08:59 #8107 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:59 #8108 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:59 #8109 [Debug] > │ ### <.>                                                                      │

02:08:59 #8110 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8111 [Debug] >

02:08:59 #8112 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:59 #8113 [Debug] > inl (<.>) { x = ax y = ay z = az } { x = bx y = by z = bz } =

02:08:59 #8114 [Debug] >     ax * bx + ay * by + az * bz

02:08:59 #8115 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5914-1418-1096bb6f56da\main.spi

02:08:59 #8116 [Debug] >

02:08:59 #8117 [Debug] > ╭─[ 166.05ms - stdout ]────────────────────────────────────────────────────────╮

02:08:59 #8118 [Debug] > │ ()                                                                           │

02:08:59 #8119 [Debug] > │                                                                              │

02:08:59 #8120 [Debug] > │                                                                              │

02:08:59 #8121 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8122 [Debug] >

02:08:59 #8123 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:59 #8124 [Debug] > // // test

02:08:59 #8125 [Debug] >

02:08:59 #8126 [Debug] > vec 1 2 3 <.> vec 4 5 6

02:08:59 #8127 [Debug] > |> _equal 32

02:08:59 #8128 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5931-3103-33c6ddbf5723\main.spi

02:08:59 #8129 [Debug] >

02:08:59 #8130 [Debug] > ╭─[ 171.52ms - stdout ]────────────────────────────────────────────────────────╮

02:08:59 #8131 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:59 #8132 [Debug] > │     let v0 : string = $"_equal / actual: %A{32.0} / expected: %A{32.0}"      │

02:08:59 #8133 [Debug] > │     ()                                                                       │

02:08:59 #8134 [Debug] > │ method0()                                                                    │

02:08:59 #8135 [Debug] > │                                                                              │

02:08:59 #8136 [Debug] > │                                                                              │

02:08:59 #8137 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8138 [Debug] >

02:08:59 #8139 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:59 #8140 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:59 #8141 [Debug] > │ ### \>\<                                                                     │

02:08:59 #8142 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8143 [Debug] >

02:08:59 #8144 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:59 #8145 [Debug] > inl (><) (a : vec) (b : vec) =

02:08:59 #8146 [Debug] >     vec

02:08:59 #8147 [Debug] >         (a.y * b.z - a.z * b.y)

02:08:59 #8148 [Debug] >         (a.z * b.x - a.x * b.z)

02:08:59 #8149 [Debug] >         (a.x * b.y - a.y * b.x)

02:08:59 #8150 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5948-4869-4833d426553c\main.spi

02:08:59 #8151 [Debug] >

02:08:59 #8152 [Debug] > ╭─[ 165.56ms - stdout ]────────────────────────────────────────────────────────╮

02:08:59 #8153 [Debug] > │ ()                                                                           │

02:08:59 #8154 [Debug] > │                                                                              │

02:08:59 #8155 [Debug] > │                                                                              │

02:08:59 #8156 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8157 [Debug] >

02:08:59 #8158 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:59 #8159 [Debug] > // // test

02:08:59 #8160 [Debug] >

02:08:59 #8161 [Debug] > vec 1 2 3 >< vec 4 5 6

02:08:59 #8162 [Debug] > |> _equal (vec -3 6 -3)

02:08:59 #8163 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5965-6545-62800f38a1d0\main.spi

02:08:59 #8164 [Debug] >

02:08:59 #8165 [Debug] > ╭─[ 192.07ms - stdout ]────────────────────────────────────────────────────────╮

02:08:59 #8166 [Debug] > │ let rec method0 () : unit =                                                  │

02:08:59 #8167 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (-3.0, 6.0, -3.0)} /      │

02:08:59 #8168 [Debug] > │ expected: %A{struct (-3.0, 6.0, -3.0)}"                                      │

02:08:59 #8169 [Debug] > │     ()                                                                       │

02:08:59 #8170 [Debug] > │ method0()                                                                    │

02:08:59 #8171 [Debug] > │                                                                              │

02:08:59 #8172 [Debug] > │                                                                              │

02:08:59 #8173 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8174 [Debug] >

02:08:59 #8175 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:08:59 #8176 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:08:59 #8177 [Debug] > │ ### magnitude                                                                │

02:08:59 #8178 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:08:59 #8179 [Debug] >

02:08:59 #8180 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:08:59 #8181 [Debug] > inl magnitude v =

02:08:59 #8182 [Debug] >     v <.> v |> sqrt

02:08:59 #8183 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0208-5985-8526-8dfa716ca0c8\main.spi

02:09:00 #8184 [Debug] >

02:09:00 #8185 [Debug] > ╭─[ 191.43ms - stdout ]────────────────────────────────────────────────────────╮

02:09:00 #8186 [Debug] > │ ()                                                                           │

02:09:00 #8187 [Debug] > │                                                                              │

02:09:00 #8188 [Debug] > │                                                                              │

02:09:00 #8189 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8190 [Debug] >

02:09:00 #8191 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:00 #8192 [Debug] > // // test

02:09:00 #8193 [Debug] >

02:09:00 #8194 [Debug] > vec 1 2 3

02:09:00 #8195 [Debug] > |> magnitude

02:09:00 #8196 [Debug] > |> _almost_equal 3.7416573867739413

02:09:00 #8197 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0004-0462-097ecc68746f\main.spi

02:09:00 #8198 [Debug] >

02:09:00 #8199 [Debug] > ╭─[ 156.15ms - stdout ]────────────────────────────────────────────────────────╮

02:09:00 #8200 [Debug] > │ let rec method0 () : unit =                                                  │

02:09:00 #8201 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{3.7416573867739413} /     │

02:09:00 #8202 [Debug] > │ expected: %A{3.7416573867739413}"                                            │

02:09:00 #8203 [Debug] > │     ()                                                                       │

02:09:00 #8204 [Debug] > │ method0()                                                                    │

02:09:00 #8205 [Debug] > │                                                                              │

02:09:00 #8206 [Debug] > │                                                                              │

02:09:00 #8207 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8208 [Debug] >

02:09:00 #8209 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:00 #8210 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:00 #8211 [Debug] > │ ### v1                                                                       │

02:09:00 #8212 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8213 [Debug] >

02:09:00 #8214 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:00 #8215 [Debug] > inl v1 t =

02:09:00 #8216 [Debug] >     2 *^ (t ** 2 *^ i_hat () ^+^ 3 *^ (t ** 3 *^ j_hat () ^+^ t ** 4 *^ k_hat

02:09:00 #8217 [Debug] > ()))

02:09:00 #8218 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0020-2079-2121b802e20f\main.spi

02:09:00 #8219 [Debug] >

02:09:00 #8220 [Debug] > ╭─[ 201.88ms - stdout ]────────────────────────────────────────────────────────╮

02:09:00 #8221 [Debug] > │ ()                                                                           │

02:09:00 #8222 [Debug] > │                                                                              │

02:09:00 #8223 [Debug] > │                                                                              │

02:09:00 #8224 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8225 [Debug] >

02:09:00 #8226 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:00 #8227 [Debug] > // // test

02:09:00 #8228 [Debug] >

02:09:00 #8229 [Debug] > v1 1

02:09:00 #8230 [Debug] > |> _equal (vec 2 6 6)

02:09:00 #8231 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0041-4128-4da6779e1fe5\main.spi

02:09:00 #8232 [Debug] >

02:09:00 #8233 [Debug] > ╭─[ 215.49ms - stdout ]────────────────────────────────────────────────────────╮

02:09:00 #8234 [Debug] > │ let rec method0 () : unit =                                                  │

02:09:00 #8235 [Debug] > │     let v0 : string = $"_equal / actual: %A{struct (2.0, 6.0, 6.0)} /        │

02:09:00 #8236 [Debug] > │ expected: %A{struct (2.0, 6.0, 6.0)}"                                        │

02:09:00 #8237 [Debug] > │     ()                                                                       │

02:09:00 #8238 [Debug] > │ method0()                                                                    │

02:09:00 #8239 [Debug] > │                                                                              │

02:09:00 #8240 [Debug] > │                                                                              │

02:09:00 #8241 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8242 [Debug] >

02:09:00 #8243 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:00 #8244 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:00 #8245 [Debug] > │ ### vec_derivative                                                           │

02:09:00 #8246 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8247 [Debug] >

02:09:00 #8248 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:00 #8249 [Debug] > type vec_derivative = (f64 -> vec) -> f64 -> vec

02:09:00 #8250 [Debug] >

02:09:00 #8251 [Debug] > inl vec_derivative dt : vec_derivative =

02:09:00 #8252 [Debug] >     fun v t =>

02:09:00 #8253 [Debug] >         (v (t + dt / 2) ^-^ v (t - dt / 2)) ^/ dt

02:09:00 #8254 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0063-6328-6349584e4e33\main.spi

02:09:00 #8255 [Debug] >

02:09:00 #8256 [Debug] > ╭─[ 196.58ms - stdout ]────────────────────────────────────────────────────────╮

02:09:00 #8257 [Debug] > │ ()                                                                           │

02:09:00 #8258 [Debug] > │                                                                              │

02:09:00 #8259 [Debug] > │                                                                              │

02:09:00 #8260 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:00 #8261 [Debug] >

02:09:00 #8262 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:00 #8263 [Debug] > // // test

02:09:00 #8264 [Debug] >

02:09:00 #8265 [Debug] > vec_derivative 0.01 v1 3 .x

02:09:00 #8266 [Debug] > |> _almost_equal (derivative 0.01 (v1 >> fun v => v.x) 3)

02:09:00 #8267 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0083-8320-8ff05a2e5a8d\main.spi

02:09:01 #8268 [Debug] >

02:09:01 #8269 [Debug] > ╭─[ 173.62ms - stdout ]────────────────────────────────────────────────────────╮

02:09:01 #8270 [Debug] > │ let rec method0 () : unit =                                                  │

02:09:01 #8271 [Debug] > │     let v0 : string = $"_almost_equal / actual: %A{11.999999999999744} /     │

02:09:01 #8272 [Debug] > │ expected: %A{11.999999999999744}"                                            │

02:09:01 #8273 [Debug] > │     ()                                                                       │

02:09:01 #8274 [Debug] > │ method0()                                                                    │

02:09:01 #8275 [Debug] > │                                                                              │

02:09:01 #8276 [Debug] > │                                                                              │

02:09:01 #8277 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:01 #8278 [Debug] >

02:09:01 #8279 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:01 #8280 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:01 #8281 [Debug] > │ ## states_ps                                                                 │

02:09:01 #8282 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:01 #8283 [Debug] >

02:09:01 #8284 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:01 #8285 [Debug] > nominal particle_state =

02:09:01 #8286 [Debug] >     {

02:09:01 #8287 [Debug] >         mass : f64

02:09:01 #8288 [Debug] >         charge : f64

02:09:01 #8289 [Debug] >         time : f64

02:09:01 #8290 [Debug] >         pos_vec : vec

02:09:01 #8291 [Debug] >         velocity : vec

02:09:01 #8292 [Debug] >     }

02:09:01 #8293 [Debug] >

02:09:01 #8294 [Debug] > inl default_particle_state () : particle_state =

02:09:01 #8295 [Debug] >     particle_state {

02:09:01 #8296 [Debug] >         mass = 1

02:09:01 #8297 [Debug] >         charge = 0

02:09:01 #8298 [Debug] >         time = 0

02:09:01 #8299 [Debug] >         pos_vec = zero_vec ()

02:09:01 #8300 [Debug] >         velocity = zero_vec ()

02:09:01 #8301 [Debug] >     }

02:09:01 #8302 [Debug] >

02:09:01 #8303 [Debug] > type one_body_force = particle_state -> vec

02:09:01 #8304 [Debug] >

02:09:01 #8305 [Debug] > nominal d_particle_state =

02:09:01 #8306 [Debug] >     {

02:09:01 #8307 [Debug] >         dmdt : f64

02:09:01 #8308 [Debug] >         dqdt : f64

02:09:01 #8309 [Debug] >         dtdt : f64

02:09:01 #8310 [Debug] >         drdt : vec

02:09:01 #8311 [Debug] >         dvdt : vec

02:09:01 #8312 [Debug] >     }

02:09:01 #8313 [Debug] >

02:09:01 #8314 [Debug] > inl newton_second_ps (fs : list one_body_force) (st : particle_state) :

02:09:01 #8315 [Debug] > d_particle_state =

02:09:01 #8316 [Debug] >     inl f_net = fs |> listm.map (fun f => f st) |> sum_vec

02:09:01 #8317 [Debug] >     d_particle_state {

02:09:01 #8318 [Debug] >         dmdt = 0

02:09:01 #8319 [Debug] >         dqdt = 0

02:09:01 #8320 [Debug] >         dtdt = 1

02:09:01 #8321 [Debug] >         drdt = st.velocity

02:09:01 #8322 [Debug] >         dvdt = f_net ^/ st.mass

02:09:01 #8323 [Debug] >     }

02:09:01 #8324 [Debug] >

02:09:01 #8325 [Debug] > inl earth_surface_gravity (st : particle_state) =

02:09:01 #8326 [Debug] >     inl g = 9.80665

02:09:01 #8327 [Debug] >     -st.mass * g *^ k_hat ()

02:09:01 #8328 [Debug] >

02:09:01 #8329 [Debug] > inl air_resistance drag rho area (st : particle_state) =

02:09:01 #8330 [Debug] >     -0.5 * drag * rho * area * magnitude st.velocity *^ st.velocity

02:09:01 #8331 [Debug] >

02:09:01 #8332 [Debug] > inl euler_cromer_ps dt (deriv : particle_state -> d_particle_state)

02:09:01 #8333 [Debug] > (particle_state st) =

02:09:01 #8334 [Debug] >     inl dst : d_particle_state = deriv (particle_state st)

02:09:01 #8335 [Debug] >     inl v' = st.velocity ^+^ dst.dvdt ^* dt

02:09:01 #8336 [Debug] >     particle_state { st with

02:09:01 #8337 [Debug] >         time = st.time + dt

02:09:01 #8338 [Debug] >         pos_vec = st.pos_vec ^+^ v' ^* dt

02:09:01 #8339 [Debug] >         velocity = st.velocity ^+^ dst.dvdt ^* dt

02:09:01 #8340 [Debug] >     }

02:09:01 #8341 [Debug] >

02:09:01 #8342 [Debug] > instance (+++) d_particle_state = fun (dps : d_particle_state) (dps' :

02:09:01 #8343 [Debug] > d_particle_state) =>

02:09:01 #8344 [Debug] >     d_particle_state {

02:09:01 #8345 [Debug] >         dmdt = dps.dmdt + dps'.dmdt

02:09:01 #8346 [Debug] >         dqdt = dps.dqdt + dps'.dqdt

02:09:01 #8347 [Debug] >         dtdt = dps.dtdt + dps'.dtdt

02:09:01 #8348 [Debug] >         drdt = dps.drdt ^+^ dps'.drdt

02:09:01 #8349 [Debug] >         dvdt = dps.dvdt ^+^ dps'.dvdt

02:09:01 #8350 [Debug] >     }

02:09:01 #8351 [Debug] >

02:09:01 #8352 [Debug] > instance scale d_particle_state = fun w (dps : d_particle_state) =>

02:09:01 #8353 [Debug] >     d_particle_state {

02:09:01 #8354 [Debug] >         dmdt = w * dps.dmdt

02:09:01 #8355 [Debug] >         dqdt = w * dps.dqdt

02:09:01 #8356 [Debug] >         dtdt = w * dps.dtdt

02:09:01 #8357 [Debug] >         drdt = w *^ dps.drdt

02:09:01 #8358 [Debug] >         dvdt = w *^ dps.dvdt

02:09:01 #8359 [Debug] >     }

02:09:01 #8360 [Debug] >

02:09:01 #8361 [Debug] > instance shift particle_state = fun dt dps (particle_state st) =>

02:09:01 #8362 [Debug] >     inl (d_particle_state dps) =

02:09:01 #8363 [Debug] >         real

02:09:01 #8364 [Debug] >             match dps with

02:09:01 #8365 [Debug] >             | d_particle_state _ => dps

02:09:01 #8366 [Debug] >     particle_state { st with

02:09:01 #8367 [Debug] >         time = st.time + dps.dtdt * dt

02:09:01 #8368 [Debug] >         pos_vec = st.pos_vec ^+^ dps.drdt ^* dt

02:09:01 #8369 [Debug] >         velocity = st.velocity ^+^ dps.dvdt ^* dt

02:09:01 #8370 [Debug] >     }

02:09:01 #8371 [Debug] >

02:09:01 #8372 [Debug] > inl states_ps (method : numerical_method particle_state d_particle_state) : _ ->

02:09:01 #8373 [Debug] > _ -> i32 -> particle_state =

02:09:01 #8374 [Debug] >     newton_second_ps >> method >> seq.iterate_

02:09:01 #8375 [Debug] >

02:09:01 #8376 [Debug] > inl z_ge0 sts =

02:09:01 #8377 [Debug] >     sts

02:09:01 #8378 [Debug] >     |> seq.take_while_ (fun (particle_state st) _ => st.pos_vec.z >= 0)

02:09:01 #8379 [Debug] >

02:09:01 #8380 [Debug] > inl trajectory sts =

02:09:01 #8381 [Debug] >     sts |> listm.map (fun (particle_state st) => st.pos_vec.y, st.pos_vec.z)

02:09:01 #8382 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0101-0130-018dfb86d76c\main.spi

02:09:01 #8383 [Debug] >

02:09:01 #8384 [Debug] > ╭─[ 212.35ms - stdout ]────────────────────────────────────────────────────────╮

02:09:01 #8385 [Debug] > │ ()                                                                           │

02:09:01 #8386 [Debug] > │                                                                              │

02:09:01 #8387 [Debug] > │                                                                              │

02:09:01 #8388 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:01 #8389 [Debug] >

02:09:01 #8390 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:01 #8391 [Debug] > // // test

02:09:01 #8392 [Debug] >

02:09:01 #8393 [Debug] > inl update_ps (method : numerical_method particle_state d_particle_state) =

02:09:01 #8394 [Debug] >     newton_second_ps >> method

02:09:01 #8395 [Debug] >

02:09:01 #8396 [Debug] > inl position_ps (method : numerical_method particle_state d_particle_state) fs

02:09:01 #8397 [Debug] > st t =

02:09:01 #8398 [Debug] >     inl states : i32 -> particle_state = states_ps method fs st

02:09:01 #8399 [Debug] >     inl dt = (states 1).time - (states 0).time

02:09:01 #8400 [Debug] >     inl num_steps = t / dt |> math.round |> abs

02:09:01 #8401 [Debug] >     inl st1 = solver' method (newton_second_ps fs) st num_steps

02:09:01 #8402 [Debug] >     st1.pos_vec

02:09:01 #8403 [Debug] >

02:09:01 #8404 [Debug] > inl sun_gravity (st : particle_state) : vec =

02:09:01 #8405 [Debug] >     inl big_g = 0.0000000000667408

02:09:01 #8406 [Debug] >     inl sun_mass = 1988480000000000000000000000000

02:09:01 #8407 [Debug] >     -big_g * sun_mass * st.mass *^ st.pos_vec ^/ magnitude st.pos_vec ** 3

02:09:01 #8408 [Debug] >

02:09:01 #8409 [Debug] > inl wind_force v_wind drag rho area (st : particle_state) =

02:09:01 #8410 [Debug] >     inl v_rel = st.velocity ^-^ v_wind

02:09:01 #8411 [Debug] >     -0.5 * drag * rho * area * magnitude v_rel *^ v_rel

02:09:01 #8412 [Debug] >

02:09:01 #8413 [Debug] > inl rock_state () =

02:09:01 #8414 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:01 #8415 [Debug] >     particle_state { default_particle_state' with

02:09:01 #8416 [Debug] >         mass = 2

02:09:01 #8417 [Debug] >         velocity = vec 3 0 4

02:09:01 #8418 [Debug] >     }

02:09:01 #8419 [Debug] >

02:09:01 #8420 [Debug] > inl halley_update dt =

02:09:01 #8421 [Debug] >     update_ps (euler_cromer_ps dt) [[ sun_gravity ]]

02:09:01 #8422 [Debug] >

02:09:01 #8423 [Debug] > inl halley_initial () =

02:09:01 #8424 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:01 #8425 [Debug] >     particle_state { default_particle_state' with

02:09:01 #8426 [Debug] >         mass = 220000000000000

02:09:01 #8427 [Debug] >         pos_vec = 87660000000 *^ i_hat ()

02:09:01 #8428 [Debug] >         velocity = 54569 *^ j_hat ()

02:09:01 #8429 [Debug] >     }

02:09:01 #8430 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0122-2268-2da4b3330a7d\main.spi

02:09:01 #8431 [Debug] >

02:09:01 #8432 [Debug] > ╭─[ 171.81ms - stdout ]────────────────────────────────────────────────────────╮

02:09:01 #8433 [Debug] > │ ()                                                                           │

02:09:01 #8434 [Debug] > │                                                                              │

02:09:01 #8435 [Debug] > │                                                                              │

02:09:01 #8436 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:01 #8437 [Debug] >

02:09:01 #8438 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:01 #8439 [Debug] > // // test

02:09:01 #8440 [Debug] >

02:09:01 #8441 [Debug] > inl baseball_forces () =

02:09:01 #8442 [Debug] >     inl area = pi * (0.074 / 2) ** 2

02:09:01 #8443 [Debug] >     [[

02:09:01 #8444 [Debug] >         earth_surface_gravity

02:09:01 #8445 [Debug] >         air_resistance 0.3 1.225 area

02:09:01 #8446 [Debug] >     ]]

02:09:01 #8447 [Debug] >

02:09:01 #8448 [Debug] > inl baseball_trajectory dt v0 theta_deg =

02:09:01 #8449 [Debug] >     inl theta_rad = theta_deg * pi / 180

02:09:01 #8450 [Debug] >     inl vy0 = v0 * cos theta_rad

02:09:01 #8451 [Debug] >     inl vz0 = v0 * sin theta_rad

02:09:01 #8452 [Debug] >     inl initial_state =

02:09:01 #8453 [Debug] >         particle_state {

02:09:01 #8454 [Debug] >             mass = 0.145

02:09:01 #8455 [Debug] >             charge = 0

02:09:01 #8456 [Debug] >             time = 0

02:09:01 #8457 [Debug] >             pos_vec = zero_vec ()

02:09:01 #8458 [Debug] >             velocity = vec 0 vy0 vz0

02:09:01 #8459 [Debug] >         }

02:09:01 #8460 [Debug] >     states_ps (euler_cromer_ps dt) (baseball_forces ()) initial_state

02:09:01 #8461 [Debug] >     >> Some

02:09:01 #8462 [Debug] >     |> z_ge0

02:09:01 #8463 [Debug] >     |> trajectory

02:09:01 #8464 [Debug] >

02:09:01 #8465 [Debug] > inl baseball_range dt v0 theta_deg =

02:09:01 #8466 [Debug] >     baseball_trajectory dt v0 theta_deg

02:09:01 #8467 [Debug] >     |> listm.fold (fun _ (y, _) => y) 0

02:09:01 #8468 [Debug] >

02:09:01 #8469 [Debug] > inl x : a _ f64 = am'.init_series 10 80 1

02:09:01 #8470 [Debug] > inl y = x |> am.map (baseball_range 0.01 45)

02:09:01 #8471 [Debug] > "range for a baseball hit at 45 m/s",

02:09:01 #8472 [Debug] > "angle above horizontal (degrees)",

02:09:01 #8473 [Debug] > "",

02:09:01 #8474 [Debug] > ;[[ "horizontal range (m)", x, y ]]

02:09:01 #8475 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0140-4021-4ab81e802d0f\main.spi

02:09:02 #8476 [Debug] >

02:09:02 #8477 [Debug] > ╭─[ 893.19ms - return value ]──────────────────────────────────────────────────╮

02:09:02 #8478 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:09:02 #8479 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:02 #8480 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:02 #8481 [Debug] > │ stroke="none"/>                                                              │

02:09:02 #8482 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:02 #8483 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8484 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8485 [Debug] > │ range for a baseball hit at 45 m/s                                           │

02:09:02 #8486 [Debug] > │ </text>                                                                      │

02:09:02 #8487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="424" x2="55" │

02:09:02 #8488 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:02 #8490 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:02 #8492 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:02 #8494 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="84" y1="424" x2="84" │

02:09:02 #8496 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="91" y1="424" x2="91" │

02:09:02 #8498 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="98" y1="424" x2="98" │

02:09:02 #8500 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="105" y1="424"        │

02:09:02 #8502 [Debug] > │ x2="105" y2="75"/>                                                           │

02:09:02 #8503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="112" y1="424"        │

02:09:02 #8504 [Debug] > │ x2="112" y2="75"/>                                                           │

02:09:02 #8505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:09:02 #8506 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:02 #8507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="127" y1="424"        │

02:09:02 #8508 [Debug] > │ x2="127" y2="75"/>                                                           │

02:09:02 #8509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="134" y1="424"        │

02:09:02 #8510 [Debug] > │ x2="134" y2="75"/>                                                           │

02:09:02 #8511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="141" y1="424"        │

02:09:02 #8512 [Debug] > │ x2="141" y2="75"/>                                                           │

02:09:02 #8513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="148" y1="424"        │

02:09:02 #8514 [Debug] > │ x2="148" y2="75"/>                                                           │

02:09:02 #8515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="155" y1="424"        │

02:09:02 #8516 [Debug] > │ x2="155" y2="75"/>                                                           │

02:09:02 #8517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:02 #8518 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:02 #8519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:02 #8520 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:02 #8521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:02 #8522 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:02 #8523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:02 #8524 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:02 #8525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:02 #8526 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:02 #8527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:02 #8528 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:02 #8529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="205" y1="424"        │

02:09:02 #8530 [Debug] > │ x2="205" y2="75"/>                                                           │

02:09:02 #8531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="212" y1="424"        │

02:09:02 #8532 [Debug] > │ x2="212" y2="75"/>                                                           │

02:09:02 #8533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:09:02 #8534 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:02 #8535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="226" y1="424"        │

02:09:02 #8536 [Debug] > │ x2="226" y2="75"/>                                                           │

02:09:02 #8537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="233" y1="424"        │

02:09:02 #8538 [Debug] > │ x2="233" y2="75"/>                                                           │

02:09:02 #8539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="241" y1="424"        │

02:09:02 #8540 [Debug] > │ x2="241" y2="75"/>                                                           │

02:09:02 #8541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="248" y1="424"        │

02:09:02 #8542 [Debug] > │ x2="248" y2="75"/>                                                           │

02:09:02 #8543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="255" y1="424"        │

02:09:02 #8544 [Debug] > │ x2="255" y2="75"/>                                                           │

02:09:02 #8545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="262" y1="424"        │

02:09:02 #8546 [Debug] > │ x2="262" y2="75"/>                                                           │

02:09:02 #8547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:02 #8548 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:02 #8549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:02 #8550 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:02 #8551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:02 #8552 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:02 #8553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:09:02 #8554 [Debug] > │ x2="290" y2="75"/>                                                           │

02:09:02 #8555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:09:02 #8556 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:02 #8557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:02 #8558 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:02 #8559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:02 #8560 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:02 #8561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:02 #8562 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:02 #8563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="326" y1="424"        │

02:09:02 #8564 [Debug] > │ x2="326" y2="75"/>                                                           │

02:09:02 #8565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="333" y1="424"        │

02:09:02 #8566 [Debug] > │ x2="333" y2="75"/>                                                           │

02:09:02 #8567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="340" y1="424"        │

02:09:02 #8568 [Debug] > │ x2="340" y2="75"/>                                                           │

02:09:02 #8569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="348" y1="424"        │

02:09:02 #8570 [Debug] > │ x2="348" y2="75"/>                                                           │

02:09:02 #8571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="355" y1="424"        │

02:09:02 #8572 [Debug] > │ x2="355" y2="75"/>                                                           │

02:09:02 #8573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="362" y1="424"        │

02:09:02 #8574 [Debug] > │ x2="362" y2="75"/>                                                           │

02:09:02 #8575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:02 #8576 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:02 #8577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="376" y1="424"        │

02:09:02 #8578 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:02 #8579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:02 #8580 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:02 #8581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:02 #8582 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:02 #8583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="397" y1="424"        │

02:09:02 #8584 [Debug] > │ x2="397" y2="75"/>                                                           │

02:09:02 #8585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:09:02 #8586 [Debug] > │ x2="405" y2="75"/>                                                           │

02:09:02 #8587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="412" y1="424"        │

02:09:02 #8588 [Debug] > │ x2="412" y2="75"/>                                                           │

02:09:02 #8589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:02 #8590 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:02 #8591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:02 #8592 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:02 #8593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:02 #8594 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:02 #8595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:02 #8596 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:02 #8597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="447" y1="424"        │

02:09:02 #8598 [Debug] > │ x2="447" y2="75"/>                                                           │

02:09:02 #8599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="454" y1="424"        │

02:09:02 #8600 [Debug] > │ x2="454" y2="75"/>                                                           │

02:09:02 #8601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="462" y1="424"        │

02:09:02 #8602 [Debug] > │ x2="462" y2="75"/>                                                           │

02:09:02 #8603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:02 #8604 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:02 #8605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:02 #8606 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:02 #8607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="483" y1="424"        │

02:09:02 #8608 [Debug] > │ x2="483" y2="75"/>                                                           │

02:09:02 #8609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:02 #8610 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:02 #8611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:09:02 #8612 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:02 #8613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="504" y1="424"        │

02:09:02 #8614 [Debug] > │ x2="504" y2="75"/>                                                           │

02:09:02 #8615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="511" y1="424"        │

02:09:02 #8616 [Debug] > │ x2="511" y2="75"/>                                                           │

02:09:02 #8617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:09:02 #8618 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:02 #8619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="526" y1="424"        │

02:09:02 #8620 [Debug] > │ x2="526" y2="75"/>                                                           │

02:09:02 #8621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="533" y1="424"        │

02:09:02 #8622 [Debug] > │ x2="533" y2="75"/>                                                           │

02:09:02 #8623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:02 #8624 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:02 #8625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:02 #8626 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:02 #8627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:02 #8628 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:02 #8629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:02 #8630 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:02 #8631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:02 #8632 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:02 #8633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="576" y1="424"        │

02:09:02 #8634 [Debug] > │ x2="576" y2="75"/>                                                           │

02:09:02 #8635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="583" y1="424"        │

02:09:02 #8636 [Debug] > │ x2="583" y2="75"/>                                                           │

02:09:02 #8637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="410"         │

02:09:02 #8638 [Debug] > │ x2="584" y2="410"/>                                                          │

02:09:02 #8639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="389"         │

02:09:02 #8640 [Debug] > │ x2="584" y2="389"/>                                                          │

02:09:02 #8641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:02 #8642 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:02 #8643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="347"         │

02:09:02 #8644 [Debug] > │ x2="584" y2="347"/>                                                          │

02:09:02 #8645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="326"         │

02:09:02 #8646 [Debug] > │ x2="584" y2="326"/>                                                          │

02:09:02 #8647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:09:02 #8648 [Debug] > │ x2="584" y2="305"/>                                                          │

02:09:02 #8649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:02 #8650 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:02 #8651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="262"         │

02:09:02 #8652 [Debug] > │ x2="584" y2="262"/>                                                          │

02:09:02 #8653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:09:02 #8654 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:02 #8655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="220"         │

02:09:02 #8656 [Debug] > │ x2="584" y2="220"/>                                                          │

02:09:02 #8657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:09:02 #8658 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:02 #8659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:09:02 #8660 [Debug] > │ x2="584" y2="178"/>                                                          │

02:09:02 #8661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="156"         │

02:09:02 #8662 [Debug] > │ x2="584" y2="156"/>                                                          │

02:09:02 #8663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:09:02 #8664 [Debug] > │ x2="584" y2="135"/>                                                          │

02:09:02 #8665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:09:02 #8666 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:02 #8667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:09:02 #8668 [Debug] > │ y2="93"/>                                                                    │

02:09:02 #8669 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:02 #8670 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8671 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8672 [Debug] > │ angle above horizontal (degrees)                                             │

02:09:02 #8673 [Debug] > │ </text>                                                                      │

02:09:02 #8674 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:02 #8675 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8676 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:02 #8677 [Debug] > │                                                                              │

02:09:02 #8678 [Debug] > │ </text>                                                                      │

02:09:02 #8679 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:02 #8680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8682 [Debug] > │ angle above horizontal (degrees)                                             │

02:09:02 #8683 [Debug] > │ </text>                                                                      │

02:09:02 #8684 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8686 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:02 #8687 [Debug] > │                                                                              │

02:09:02 #8688 [Debug] > │ </text>                                                                      │

02:09:02 #8689 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:02 #8690 [Debug] > │ y2="75"/>                                                                    │

02:09:02 #8691 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="105" y1="424"        │

02:09:02 #8692 [Debug] > │ x2="105" y2="75"/>                                                           │

02:09:02 #8693 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="141" y1="424"        │

02:09:02 #8694 [Debug] > │ x2="141" y2="75"/>                                                           │

02:09:02 #8695 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="176" y1="424"        │

02:09:02 #8696 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:02 #8697 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="212" y1="424"        │

02:09:02 #8698 [Debug] > │ x2="212" y2="75"/>                                                           │

02:09:02 #8699 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="248" y1="424"        │

02:09:02 #8700 [Debug] > │ x2="248" y2="75"/>                                                           │

02:09:02 #8701 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="283" y1="424"        │

02:09:02 #8702 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:02 #8703 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:09:02 #8704 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:02 #8705 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="355" y1="424"        │

02:09:02 #8706 [Debug] > │ x2="355" y2="75"/>                                                           │

02:09:02 #8707 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="390" y1="424"        │

02:09:02 #8708 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:02 #8709 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="426" y1="424"        │

02:09:02 #8710 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:02 #8711 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="462" y1="424"        │

02:09:02 #8712 [Debug] > │ x2="462" y2="75"/>                                                           │

02:09:02 #8713 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="497" y1="424"        │

02:09:02 #8714 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:02 #8715 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="533" y1="424"        │

02:09:02 #8716 [Debug] > │ x2="533" y2="75"/>                                                           │

02:09:02 #8717 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:02 #8718 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:02 #8719 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="410"         │

02:09:02 #8720 [Debug] > │ x2="584" y2="410"/>                                                          │

02:09:02 #8721 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="368"         │

02:09:02 #8722 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:02 #8723 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="326"         │

02:09:02 #8724 [Debug] > │ x2="584" y2="326"/>                                                          │

02:09:02 #8725 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="283"         │

02:09:02 #8726 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:02 #8727 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="241"         │

02:09:02 #8728 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:02 #8729 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="199"         │

02:09:02 #8730 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:02 #8731 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="156"         │

02:09:02 #8732 [Debug] > │ x2="584" y2="156"/>                                                          │

02:09:02 #8733 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="114"         │

02:09:02 #8734 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:02 #8735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8736 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:02 #8737 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:02 #8738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8739 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8740 [Debug] > │ 10.0                                                                         │

02:09:02 #8741 [Debug] > │ </text>                                                                      │

02:09:02 #8742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8743 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:02 #8744 [Debug] > │ <text x="105" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8746 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8747 [Debug] > │ 15.0                                                                         │

02:09:02 #8748 [Debug] > │ </text>                                                                      │

02:09:02 #8749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8750 [Debug] > │ points="105,69 105,74 "/>                                                    │

02:09:02 #8751 [Debug] > │ <text x="141" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8753 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8754 [Debug] > │ 20.0                                                                         │

02:09:02 #8755 [Debug] > │ </text>                                                                      │

02:09:02 #8756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8757 [Debug] > │ points="141,69 141,74 "/>                                                    │

02:09:02 #8758 [Debug] > │ <text x="176" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8760 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8761 [Debug] > │ 25.0                                                                         │

02:09:02 #8762 [Debug] > │ </text>                                                                      │

02:09:02 #8763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8764 [Debug] > │ points="176,69 176,74 "/>                                                    │

02:09:02 #8765 [Debug] > │ <text x="212" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8767 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8768 [Debug] > │ 30.0                                                                         │

02:09:02 #8769 [Debug] > │ </text>                                                                      │

02:09:02 #8770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8771 [Debug] > │ points="212,69 212,74 "/>                                                    │

02:09:02 #8772 [Debug] > │ <text x="248" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8774 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8775 [Debug] > │ 35.0                                                                         │

02:09:02 #8776 [Debug] > │ </text>                                                                      │

02:09:02 #8777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8778 [Debug] > │ points="248,69 248,74 "/>                                                    │

02:09:02 #8779 [Debug] > │ <text x="283" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8781 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8782 [Debug] > │ 40.0                                                                         │

02:09:02 #8783 [Debug] > │ </text>                                                                      │

02:09:02 #8784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8785 [Debug] > │ points="283,69 283,74 "/>                                                    │

02:09:02 #8786 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8788 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8789 [Debug] > │ 45.0                                                                         │

02:09:02 #8790 [Debug] > │ </text>                                                                      │

02:09:02 #8791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8792 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:09:02 #8793 [Debug] > │ <text x="355" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8795 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8796 [Debug] > │ 50.0                                                                         │

02:09:02 #8797 [Debug] > │ </text>                                                                      │

02:09:02 #8798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8799 [Debug] > │ points="355,69 355,74 "/>                                                    │

02:09:02 #8800 [Debug] > │ <text x="390" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8802 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8803 [Debug] > │ 55.0                                                                         │

02:09:02 #8804 [Debug] > │ </text>                                                                      │

02:09:02 #8805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8806 [Debug] > │ points="390,69 390,74 "/>                                                    │

02:09:02 #8807 [Debug] > │ <text x="426" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8809 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8810 [Debug] > │ 60.0                                                                         │

02:09:02 #8811 [Debug] > │ </text>                                                                      │

02:09:02 #8812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8813 [Debug] > │ points="426,69 426,74 "/>                                                    │

02:09:02 #8814 [Debug] > │ <text x="462" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8816 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8817 [Debug] > │ 65.0                                                                         │

02:09:02 #8818 [Debug] > │ </text>                                                                      │

02:09:02 #8819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8820 [Debug] > │ points="462,69 462,74 "/>                                                    │

02:09:02 #8821 [Debug] > │ <text x="497" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8823 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8824 [Debug] > │ 70.0                                                                         │

02:09:02 #8825 [Debug] > │ </text>                                                                      │

02:09:02 #8826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8827 [Debug] > │ points="497,69 497,74 "/>                                                    │

02:09:02 #8828 [Debug] > │ <text x="533" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8829 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8830 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8831 [Debug] > │ 75.0                                                                         │

02:09:02 #8832 [Debug] > │ </text>                                                                      │

02:09:02 #8833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8834 [Debug] > │ points="533,69 533,74 "/>                                                    │

02:09:02 #8835 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:02 #8836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8837 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8838 [Debug] > │ 80.0                                                                         │

02:09:02 #8839 [Debug] > │ </text>                                                                      │

02:09:02 #8840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8841 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:02 #8842 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8843 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:02 #8844 [Debug] > │ <text x="45" y="410" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8845 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8846 [Debug] > │ 40.0                                                                         │

02:09:02 #8847 [Debug] > │ </text>                                                                      │

02:09:02 #8848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8849 [Debug] > │ points="49,410 54,410 "/>                                                    │

02:09:02 #8850 [Debug] > │ <text x="45" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8851 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8852 [Debug] > │ 50.0                                                                         │

02:09:02 #8853 [Debug] > │ </text>                                                                      │

02:09:02 #8854 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8855 [Debug] > │ points="49,368 54,368 "/>                                                    │

02:09:02 #8856 [Debug] > │ <text x="45" y="326" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8857 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8858 [Debug] > │ 60.0                                                                         │

02:09:02 #8859 [Debug] > │ </text>                                                                      │

02:09:02 #8860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8861 [Debug] > │ points="49,326 54,326 "/>                                                    │

02:09:02 #8862 [Debug] > │ <text x="45" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8863 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8864 [Debug] > │ 70.0                                                                         │

02:09:02 #8865 [Debug] > │ </text>                                                                      │

02:09:02 #8866 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8867 [Debug] > │ points="49,283 54,283 "/>                                                    │

02:09:02 #8868 [Debug] > │ <text x="45" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8869 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8870 [Debug] > │ 80.0                                                                         │

02:09:02 #8871 [Debug] > │ </text>                                                                      │

02:09:02 #8872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8873 [Debug] > │ points="49,241 54,241 "/>                                                    │

02:09:02 #8874 [Debug] > │ <text x="45" y="199" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8875 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8876 [Debug] > │ 90.0                                                                         │

02:09:02 #8877 [Debug] > │ </text>                                                                      │

02:09:02 #8878 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8879 [Debug] > │ points="49,199 54,199 "/>                                                    │

02:09:02 #8880 [Debug] > │ <text x="45" y="156" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8881 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8882 [Debug] > │ 100.0                                                                        │

02:09:02 #8883 [Debug] > │ </text>                                                                      │

02:09:02 #8884 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8885 [Debug] > │ points="49,156 54,156 "/>                                                    │

02:09:02 #8886 [Debug] > │ <text x="45" y="114" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:02 #8887 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #8888 [Debug] > │ 110.0                                                                        │

02:09:02 #8889 [Debug] > │ </text>                                                                      │

02:09:02 #8890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8891 [Debug] > │ points="49,114 54,114 "/>                                                    │

02:09:02 #8892 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8893 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:02 #8894 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:02 #8895 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8896 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8897 [Debug] > │ 10.0                                                                         │

02:09:02 #8898 [Debug] > │ </text>                                                                      │

02:09:02 #8899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8900 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:02 #8901 [Debug] > │ <text x="105" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8902 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8903 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8904 [Debug] > │ 15.0                                                                         │

02:09:02 #8905 [Debug] > │ </text>                                                                      │

02:09:02 #8906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8907 [Debug] > │ points="105,425 105,430 "/>                                                  │

02:09:02 #8908 [Debug] > │ <text x="141" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8909 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8910 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8911 [Debug] > │ 20.0                                                                         │

02:09:02 #8912 [Debug] > │ </text>                                                                      │

02:09:02 #8913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8914 [Debug] > │ points="141,425 141,430 "/>                                                  │

02:09:02 #8915 [Debug] > │ <text x="176" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8916 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8917 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8918 [Debug] > │ 25.0                                                                         │

02:09:02 #8919 [Debug] > │ </text>                                                                      │

02:09:02 #8920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8921 [Debug] > │ points="176,425 176,430 "/>                                                  │

02:09:02 #8922 [Debug] > │ <text x="212" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8924 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8925 [Debug] > │ 30.0                                                                         │

02:09:02 #8926 [Debug] > │ </text>                                                                      │

02:09:02 #8927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8928 [Debug] > │ points="212,425 212,430 "/>                                                  │

02:09:02 #8929 [Debug] > │ <text x="248" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8930 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8931 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8932 [Debug] > │ 35.0                                                                         │

02:09:02 #8933 [Debug] > │ </text>                                                                      │

02:09:02 #8934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8935 [Debug] > │ points="248,425 248,430 "/>                                                  │

02:09:02 #8936 [Debug] > │ <text x="283" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8938 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8939 [Debug] > │ 40.0                                                                         │

02:09:02 #8940 [Debug] > │ </text>                                                                      │

02:09:02 #8941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8942 [Debug] > │ points="283,425 283,430 "/>                                                  │

02:09:02 #8943 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8944 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8945 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8946 [Debug] > │ 45.0                                                                         │

02:09:02 #8947 [Debug] > │ </text>                                                                      │

02:09:02 #8948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8949 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:09:02 #8950 [Debug] > │ <text x="355" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8951 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8952 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8953 [Debug] > │ 50.0                                                                         │

02:09:02 #8954 [Debug] > │ </text>                                                                      │

02:09:02 #8955 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8956 [Debug] > │ points="355,425 355,430 "/>                                                  │

02:09:02 #8957 [Debug] > │ <text x="390" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8959 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8960 [Debug] > │ 55.0                                                                         │

02:09:02 #8961 [Debug] > │ </text>                                                                      │

02:09:02 #8962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8963 [Debug] > │ points="390,425 390,430 "/>                                                  │

02:09:02 #8964 [Debug] > │ <text x="426" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8966 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8967 [Debug] > │ 60.0                                                                         │

02:09:02 #8968 [Debug] > │ </text>                                                                      │

02:09:02 #8969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8970 [Debug] > │ points="426,425 426,430 "/>                                                  │

02:09:02 #8971 [Debug] > │ <text x="462" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8973 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8974 [Debug] > │ 65.0                                                                         │

02:09:02 #8975 [Debug] > │ </text>                                                                      │

02:09:02 #8976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8977 [Debug] > │ points="462,425 462,430 "/>                                                  │

02:09:02 #8978 [Debug] > │ <text x="497" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8980 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8981 [Debug] > │ 70.0                                                                         │

02:09:02 #8982 [Debug] > │ </text>                                                                      │

02:09:02 #8983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8984 [Debug] > │ points="497,425 497,430 "/>                                                  │

02:09:02 #8985 [Debug] > │ <text x="533" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8987 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8988 [Debug] > │ 75.0                                                                         │

02:09:02 #8989 [Debug] > │ </text>                                                                      │

02:09:02 #8990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8991 [Debug] > │ points="533,425 533,430 "/>                                                  │

02:09:02 #8992 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:02 #8993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #8994 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #8995 [Debug] > │ 80.0                                                                         │

02:09:02 #8996 [Debug] > │ </text>                                                                      │

02:09:02 #8997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #8998 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:02 #8999 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9000 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:02 #9001 [Debug] > │ <text x="622" y="410" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:02 #9002 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #9003 [Debug] > │ 40.0                                                                         │

02:09:02 #9004 [Debug] > │ </text>                                                                      │

02:09:02 #9005 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9006 [Debug] > │ points="585,410 590,410 "/>                                                  │

02:09:02 #9007 [Debug] > │ <text x="622" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:02 #9008 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #9009 [Debug] > │ 50.0                                                                         │

02:09:02 #9010 [Debug] > │ </text>                                                                      │

02:09:02 #9011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9012 [Debug] > │ points="585,368 590,368 "/>                                                  │

02:09:02 #9013 [Debug] > │ <text x="622" y="326" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:02 #9014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #9015 [Debug] > │ 60.0                                                                         │

02:09:02 #9016 [Debug] > │ </text>                                                                      │

02:09:02 #9017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9018 [Debug] > │ points="585,326 590,326 "/>                                                  │

02:09:02 #9019 [Debug] > │ <text x="622" y="283" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:02 #9020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #9021 [Debug] > │ 70.0                                                                         │

02:09:02 #9022 [Debug] > │ </text>                                                                      │

02:09:02 #9023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9024 [Debug] > │ points="585,283 590,283 "/>                                                  │

02:09:02 #9025 [Debug] > │ <text x="622" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:02 #9026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #9027 [Debug] > │ 80.0                                                                         │

02:09:02 #9028 [Debug] > │ </text>                                                                      │

02:09:02 #9029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9030 [Debug] > │ points="585,241 590,241 "/>                                                  │

02:09:02 #9031 [Debug] > │ <text x="622" y="199" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:02 #9032 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:02 #9033 [Debug] > │ 90.0                                                                         │

02:09:02 #9034 [Debug] > │ </text>                                                                      │

02:09:02 #9035 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9036 [Debug] > │ points="585,199 590,199 "/>                                                  │

02:09:02 #9037 [Debug] > │ <text x="595" y="156" dy="0.5ex" text-anchor="start"                         │

02:09:02 #9038 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #9039 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #9040 [Debug] > │ 100.0                                                                        │

02:09:02 #9041 [Debug] > │ </text>                                                                      │

02:09:02 #9042 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9043 [Debug] > │ points="585,156 590,156 "/>                                                  │

02:09:02 #9044 [Debug] > │ <text x="595" y="114" dy="0.5ex" text-anchor="start"                         │

02:09:02 #9045 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #9046 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #9047 [Debug] > │ 110.0                                                                        │

02:09:02 #9048 [Debug] > │ </text>                                                                      │

02:09:02 #9049 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:02 #9050 [Debug] > │ points="585,114 590,114 "/>                                                  │

02:09:02 #9051 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:02 #9052 [Debug] > │ points="69,343 77,325 84,307 91,290 98,275 105,259 112,245 119,231 127,219   │

02:09:02 #9053 [Debug] > │ 134,207 141,196 148,184 155,174 162,164 169,155 176,147 184,139 191,132      │

02:09:02 #9054 [Debug] > │ 198,126 205,119 212,114 219,109 226,104 233,100 241,96 248,93 255,91 262,89  │

02:09:02 #9055 [Debug] > │ 269,88 276,86 283,86 290,85 298,86 305,87 312,88 319,90 326,92 333,95 340,98 │

02:09:02 #9056 [Debug] > │ 348,102 355,106 362,110 369,115 376,120 383,126 390,132 397,139 405,146      │

02:09:02 #9057 [Debug] > │ 412,153 419,161 426,169 433,178 440,187 447,197 454,207 462,217 469,228      │

02:09:02 #9058 [Debug] > │ 476,239 483,250 490,262 497,274 504,287 511,300 519,313 526,326 533,340      │

02:09:02 #9059 [Debug] > │ 540,355 547,369 554,384 561,399 569,415 "/>                                  │

02:09:02 #9060 [Debug] > │ <rect x="421" y="235" width="159" height="30" opacity="1" fill="none"        │

02:09:02 #9061 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:02 #9062 [Debug] > │ <text x="461" y="245" dy="0.76em" text-anchor="start"                        │

02:09:02 #9063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:02 #9064 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:02 #9065 [Debug] > │ horizontal range (m)                                                         │

02:09:02 #9066 [Debug] > │ </text>                                                                      │

02:09:02 #9067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:02 #9068 [Debug] > │ points="431,250 451,250 "/>                                                  │

02:09:02 #9069 [Debug] > │ </svg>                                                                       │

02:09:02 #9070 [Debug] > │                                                                              │

02:09:02 #9071 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:02 #9072 [Debug] >

02:09:02 #9073 [Debug] > ╭─[ 1.12s - stdout ]───────────────────────────────────────────────────────────╮

02:09:02 #9074 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:09:02 #9075 [Debug] > │ and UH0 =                                                                    │

02:09:02 #9076 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:09:02 #9077 [Debug] > │ * float * UH0                                                                │

02:09:02 #9078 [Debug] > │     | UH0_1                                                                  │

02:09:02 #9079 [Debug] > │ and UH1 =                                                                    │

02:09:02 #9080 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:09:02 #9081 [Debug] > │     | UH1_1                                                                  │

02:09:02 #9082 [Debug] > │ let rec method1 (v0 : Mut0) : bool =                                         │

02:09:02 #9083 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:09:02 #9084 [Debug] > │     let v2 : bool = v1 < 71                                                  │

02:09:02 #9085 [Debug] > │     v2                                                                       │

02:09:02 #9086 [Debug] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

02:09:02 #9087 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:09:02 #9088 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:09:02 #9089 [Debug] > │     v3                                                                       │

02:09:02 #9090 [Debug] > │ and method4 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5  │

02:09:02 #9091 [Debug] > │ : float, v6 : float, v7 : float, v8 : float, v9 : int32) : struct (float *   │

02:09:02 #9092 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:09:02 #9093 [Debug] > │     let v10 : bool = v9 <= 0                                                 │

02:09:02 #9094 [Debug] > │     if v10 then                                                              │

02:09:02 #9095 [Debug] > │         struct (v0, v1, v2, v3, v4, v5, v6, v7, v8)                          │

02:09:02 #9096 [Debug] > │     else                                                                     │

02:09:02 #9097 [Debug] > │         let v11 : float = v6 * v6                                            │

02:09:02 #9098 [Debug] > │         let v12 : float = v7 * v7                                            │

02:09:02 #9099 [Debug] > │         let v13 : float = v11 + v12                                          │

02:09:02 #9100 [Debug] > │         let v14 : float = v8 * v8                                            │

02:09:02 #9101 [Debug] > │         let v15 : float = v13 + v14                                          │

02:09:02 #9102 [Debug] > │         let v16 : float = sqrt v15                                           │

02:09:02 #9103 [Debug] > │         let v17 : float = -0.0007902794129829633 * v16                       │

02:09:02 #9104 [Debug] > │         let v18 : float = v17 * v6                                           │

02:09:02 #9105 [Debug] > │         let v19 : float = v17 * v7                                           │

02:09:02 #9106 [Debug] > │         let v20 : float = v17 * v8                                           │

02:09:02 #9107 [Debug] > │         let v21 : float =  -v1                                               │

02:09:02 #9108 [Debug] > │         let v22 : float = v21 * 9.80665                                      │

02:09:02 #9109 [Debug] > │         let v23 : float = v22 * 0.0                                          │

02:09:02 #9110 [Debug] > │         let v24 : float = v23 + v18                                          │

02:09:02 #9111 [Debug] > │         let v25 : float = v23 + v19                                          │

02:09:02 #9112 [Debug] > │         let v26 : float = v22 + v20                                          │

02:09:02 #9113 [Debug] > │         let v27 : float = v24 / v1                                           │

02:09:02 #9114 [Debug] > │         let v28 : float = v25 / v1                                           │

02:09:02 #9115 [Debug] > │         let v29 : float = v26 / v1                                           │

02:09:02 #9116 [Debug] > │         let v30 : float = 0.01 * v27                                         │

02:09:02 #9117 [Debug] > │         let v31 : float = 0.01 * v28                                         │

02:09:02 #9118 [Debug] > │         let v32 : float = 0.01 * v29                                         │

02:09:02 #9119 [Debug] > │         let v33 : float = v6 + v30                                           │

02:09:02 #9120 [Debug] > │         let v34 : float = v7 + v31                                           │

02:09:02 #9121 [Debug] > │         let v35 : float = v8 + v32                                           │

02:09:02 #9122 [Debug] > │         let v36 : float = v5 + 0.01                                          │

02:09:02 #9123 [Debug] > │         let v37 : float = 0.01 * v33                                         │

02:09:02 #9124 [Debug] > │         let v38 : float = 0.01 * v34                                         │

02:09:02 #9125 [Debug] > │         let v39 : float = 0.01 * v35                                         │

02:09:02 #9126 [Debug] > │         let v40 : float = v2 + v37                                           │

02:09:02 #9127 [Debug] > │         let v41 : float = v3 + v38                                           │

02:09:02 #9128 [Debug] > │         let v42 : float = v4 + v39                                           │

02:09:02 #9129 [Debug] > │         let v43 : int32 = v9 - 1                                             │

02:09:02 #9130 [Debug] > │         method4(v0, v1, v40, v41, v42, v36, v33, v34, v35, v43)              │

02:09:02 #9131 [Debug] > │ and method5 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:09:02 #9132 [Debug] > │     match v0 with                                                            │

02:09:02 #9133 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:02 #9134 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:09:02 #9135 [Debug] > │         method5(v11, v12)                                                    │

02:09:02 #9136 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:02 #9137 [Debug] > │         v1                                                                   │

02:09:02 #9138 [Debug] > │ and method3 (v0 : float, v1 : float, v2 : UH0, v3 : int32) : UH0 =           │

02:09:02 #9139 [Debug] > │     let v4 : float = 0.0                                                     │

02:09:02 #9140 [Debug] > │     let v5 : float = 0.145                                                   │

02:09:02 #9141 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:02 #9142 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:02 #9143 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:02 #9144 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:02 #9145 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:02 #9146 [Debug] > │     let struct (v11 : float, v12 : float, v13 : float, v14 : float, v15 :    │

02:09:02 #9147 [Debug] > │ float, v16 : float, v17 : float, v18 : float, v19 : float) = method4(v4, v5, │

02:09:02 #9148 [Debug] > │ v6, v7, v8, v9, v10, v0, v1, v3)                                             │

02:09:02 #9149 [Debug] > │     let v20 : bool = v15 >= 0.0                                              │

02:09:02 #9150 [Debug] > │     if v20 then                                                              │

02:09:02 #9151 [Debug] > │         let v21 : UH0 = UH0_0(v11, v12, v13, v14, v15, v16, v17, v18, v19,   │

02:09:02 #9152 [Debug] > │ v2)                                                                          │

02:09:02 #9153 [Debug] > │         let v22 : int32 = v3 + 1                                             │

02:09:02 #9154 [Debug] > │         method3(v0, v1, v21, v22)                                            │

02:09:02 #9155 [Debug] > │     else                                                                     │

02:09:02 #9156 [Debug] > │         let v24 : UH0 = UH0_1                                                │

02:09:02 #9157 [Debug] > │         method5(v2, v24)                                                     │

02:09:02 #9158 [Debug] > │ and method6 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:02 #9159 [Debug] > │     match v0 with                                                            │

02:09:02 #9160 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:02 #9161 [Debug] > │         let v12 : UH1 = method6(v11, v1)                                     │

02:09:02 #9162 [Debug] > │         UH1_0(v5, v6, v12)                                                   │

02:09:02 #9163 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:02 #9164 [Debug] > │         v1                                                                   │

02:09:02 #9165 [Debug] > │ and method7 (v0 : UH1, v1 : float) : float =                                 │

02:09:02 #9166 [Debug] > │     match v0 with                                                            │

02:09:02 #9167 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:09:02 #9168 [Debug] > │         method7(v4, v2)                                                      │

02:09:02 #9169 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:02 #9170 [Debug] > │         v1                                                                   │

02:09:02 #9171 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:09:02 #9172 [Debug] > │ []) * (float [])) [])) =                                                     │

02:09:02 #9173 [Debug] > │     let v0 : (float []) = Array.zeroCreate<float> (71)                       │

02:09:02 #9174 [Debug] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

02:09:02 #9175 [Debug] > │     while method1(v1) do                                                     │

02:09:02 #9176 [Debug] > │         let v3 : int32 = v1.l0                                               │

02:09:02 #9177 [Debug] > │         let v4 : float = float v3                                            │

02:09:02 #9178 [Debug] > │         let v5 : float = 10.0 + v4                                           │

02:09:02 #9179 [Debug] > │         v0.[int v3] <- v5                                                    │

02:09:02 #9180 [Debug] > │         let v6 : int32 = v3 + 1                                              │

02:09:02 #9181 [Debug] > │         v1.l0 <- v6                                                          │

02:09:02 #9182 [Debug] > │         ()                                                                   │

02:09:02 #9183 [Debug] > │     let v7 : int32 = v0.Length                                               │

02:09:02 #9184 [Debug] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

02:09:02 #9185 [Debug] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

02:09:02 #9186 [Debug] > │     while method2(v7, v9) do                                                 │

02:09:02 #9187 [Debug] > │         let v11 : int32 = v9.l0                                              │

02:09:02 #9188 [Debug] > │         let v12 : float = v0.[int v11]                                       │

02:09:02 #9189 [Debug] > │         let v13 : float = v12 * 3.141592653589793                            │

02:09:02 #9190 [Debug] > │         let v14 : float = v13 / 180.0                                        │

02:09:02 #9191 [Debug] > │         let v15 : float = cos v14                                            │

02:09:02 #9192 [Debug] > │         let v16 : float = 45.0 * v15                                         │

02:09:02 #9193 [Debug] > │         let v17 : float = sin v14                                            │

02:09:02 #9194 [Debug] > │         let v18 : float = 45.0 * v17                                         │

02:09:02 #9195 [Debug] > │         let v19 : UH0 = UH0_1                                                │

02:09:02 #9196 [Debug] > │         let v20 : int32 = 0                                                  │

02:09:02 #9197 [Debug] > │         let v21 : UH0 = method3(v16, v18, v19, v20)                          │

02:09:02 #9198 [Debug] > │         let v22 : UH1 = UH1_1                                                │

02:09:02 #9199 [Debug] > │         let v23 : UH1 = method6(v21, v22)                                    │

02:09:02 #9200 [Debug] > │         let v24 : float = 0.0                                                │

02:09:02 #9201 [Debug] > │         let v25 : float = method7(v23, v24)                                  │

02:09:02 #9202 [Debug] > │         v8.[int v11] <- v25                                                  │

02:09:02 #9203 [Debug] > │         let v26 : int32 = v11 + 1                                            │

02:09:02 #9204 [Debug] > │         v9.l0 <- v26                                                         │

02:09:02 #9205 [Debug] > │         ()                                                                   │

02:09:02 #9206 [Debug] > │     let v27 : string = "horizontal range (m)"                                │

02:09:02 #9207 [Debug] > │     let v28 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:09:02 #9208 [Debug] > │ (v27, v0, v8)|]                                                              │

02:09:02 #9209 [Debug] > │     let v29 : string = "range for a baseball hit at 45 m/s"                  │

02:09:02 #9210 [Debug] > │     let v30 : string = "angle above horizontal (degrees)"                    │

02:09:02 #9211 [Debug] > │     let v31 : string = ""                                                    │

02:09:02 #9212 [Debug] > │     struct (v29, v30, v31, v28)                                              │

02:09:02 #9213 [Debug] > │ method0()                                                                    │

02:09:02 #9214 [Debug] > │                                                                              │

02:09:02 #9215 [Debug] > │                                                                              │

02:09:02 #9216 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:02 #9217 [Debug] >

02:09:02 #9218 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:02 #9219 [Debug] > // // test

02:09:02 #9220 [Debug] >

02:09:02 #9221 [Debug] > inl best_angle (min, max) =

02:09:02 #9222 [Debug] >     let rec loop theta_deg (best_range, best_theta_deg) =

02:09:02 #9223 [Debug] >         if theta_deg > max

02:09:02 #9224 [Debug] >         then best_range, best_theta_deg

02:09:02 #9225 [Debug] >         else

02:09:02 #9226 [Debug] >             inl range = baseball_range 0.01 45 theta_deg

02:09:02 #9227 [Debug] >             loop

02:09:02 #9228 [Debug] >                 (theta_deg + 1)

02:09:02 #9229 [Debug] >                 (if range > best_range

02:09:02 #9230 [Debug] >                     then range, theta_deg

02:09:02 #9231 [Debug] >                     else best_range, best_theta_deg)

02:09:02 #9232 [Debug] >     loop min (0f64, min)

02:09:02 #9233 [Debug] >

02:09:02 #9234 [Debug] > best_angle (30f64, 60f64)

02:09:02 #9235 [Debug] > |> _equal (116.77499158246208, 41)

02:09:02 #9236 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0258-5827-5b9c65413e19\main.spi

02:09:03 #9237 [Debug] >

02:09:03 #9238 [Debug] > ╭─[ 553.97ms - stdout ]────────────────────────────────────────────────────────╮

02:09:03 #9239 [Debug] > │ type UH0 =                                                                   │

02:09:03 #9240 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:09:03 #9241 [Debug] > │ * float * UH0                                                                │

02:09:03 #9242 [Debug] > │     | UH0_1                                                                  │

02:09:03 #9243 [Debug] > │ and UH1 =                                                                    │

02:09:03 #9244 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:09:03 #9245 [Debug] > │     | UH1_1                                                                  │

02:09:03 #9246 [Debug] > │ let rec method3 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, │

02:09:03 #9247 [Debug] > │ v5 : float, v6 : float, v7 : float, v8 : float, v9 : int32) : struct (float  │

02:09:03 #9248 [Debug] > │ * float * float * float * float * float * float * float * float) =           │

02:09:03 #9249 [Debug] > │     let v10 : bool = v9 <= 0                                                 │

02:09:03 #9250 [Debug] > │     if v10 then                                                              │

02:09:03 #9251 [Debug] > │         struct (v0, v1, v2, v3, v4, v5, v6, v7, v8)                          │

02:09:03 #9252 [Debug] > │     else                                                                     │

02:09:03 #9253 [Debug] > │         let v11 : float = v6 * v6                                            │

02:09:03 #9254 [Debug] > │         let v12 : float = v7 * v7                                            │

02:09:03 #9255 [Debug] > │         let v13 : float = v11 + v12                                          │

02:09:03 #9256 [Debug] > │         let v14 : float = v8 * v8                                            │

02:09:03 #9257 [Debug] > │         let v15 : float = v13 + v14                                          │

02:09:03 #9258 [Debug] > │         let v16 : float = sqrt v15                                           │

02:09:03 #9259 [Debug] > │         let v17 : float = -0.0007902794129829633 * v16                       │

02:09:03 #9260 [Debug] > │         let v18 : float = v17 * v6                                           │

02:09:03 #9261 [Debug] > │         let v19 : float = v17 * v7                                           │

02:09:03 #9262 [Debug] > │         let v20 : float = v17 * v8                                           │

02:09:03 #9263 [Debug] > │         let v21 : float =  -v1                                               │

02:09:03 #9264 [Debug] > │         let v22 : float = v21 * 9.80665                                      │

02:09:03 #9265 [Debug] > │         let v23 : float = v22 * 0.0                                          │

02:09:03 #9266 [Debug] > │         let v24 : float = v23 + v18                                          │

02:09:03 #9267 [Debug] > │         let v25 : float = v23 + v19                                          │

02:09:03 #9268 [Debug] > │         let v26 : float = v22 + v20                                          │

02:09:03 #9269 [Debug] > │         let v27 : float = v24 / v1                                           │

02:09:03 #9270 [Debug] > │         let v28 : float = v25 / v1                                           │

02:09:03 #9271 [Debug] > │         let v29 : float = v26 / v1                                           │

02:09:03 #9272 [Debug] > │         let v30 : float = 0.01 * v27                                         │

02:09:03 #9273 [Debug] > │         let v31 : float = 0.01 * v28                                         │

02:09:03 #9274 [Debug] > │         let v32 : float = 0.01 * v29                                         │

02:09:03 #9275 [Debug] > │         let v33 : float = v6 + v30                                           │

02:09:03 #9276 [Debug] > │         let v34 : float = v7 + v31                                           │

02:09:03 #9277 [Debug] > │         let v35 : float = v8 + v32                                           │

02:09:03 #9278 [Debug] > │         let v36 : float = v5 + 0.01                                          │

02:09:03 #9279 [Debug] > │         let v37 : float = 0.01 * v33                                         │

02:09:03 #9280 [Debug] > │         let v38 : float = 0.01 * v34                                         │

02:09:03 #9281 [Debug] > │         let v39 : float = 0.01 * v35                                         │

02:09:03 #9282 [Debug] > │         let v40 : float = v2 + v37                                           │

02:09:03 #9283 [Debug] > │         let v41 : float = v3 + v38                                           │

02:09:03 #9284 [Debug] > │         let v42 : float = v4 + v39                                           │

02:09:03 #9285 [Debug] > │         let v43 : int32 = v9 - 1                                             │

02:09:03 #9286 [Debug] > │         method3(v0, v1, v40, v41, v42, v36, v33, v34, v35, v43)              │

02:09:03 #9287 [Debug] > │ and method4 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:09:03 #9288 [Debug] > │     match v0 with                                                            │

02:09:03 #9289 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:03 #9290 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:09:03 #9291 [Debug] > │         method4(v11, v12)                                                    │

02:09:03 #9292 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:03 #9293 [Debug] > │         v1                                                                   │

02:09:03 #9294 [Debug] > │ and method2 (v0 : float, v1 : float, v2 : UH0, v3 : int32) : UH0 =           │

02:09:03 #9295 [Debug] > │     let v4 : float = 0.0                                                     │

02:09:03 #9296 [Debug] > │     let v5 : float = 0.145                                                   │

02:09:03 #9297 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:03 #9298 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:03 #9299 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:03 #9300 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:03 #9301 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:03 #9302 [Debug] > │     let struct (v11 : float, v12 : float, v13 : float, v14 : float, v15 :    │

02:09:03 #9303 [Debug] > │ float, v16 : float, v17 : float, v18 : float, v19 : float) = method3(v4, v5, │

02:09:03 #9304 [Debug] > │ v6, v7, v8, v9, v10, v0, v1, v3)                                             │

02:09:03 #9305 [Debug] > │     let v20 : bool = v15 >= 0.0                                              │

02:09:03 #9306 [Debug] > │     if v20 then                                                              │

02:09:03 #9307 [Debug] > │         let v21 : UH0 = UH0_0(v11, v12, v13, v14, v15, v16, v17, v18, v19,   │

02:09:03 #9308 [Debug] > │ v2)                                                                          │

02:09:03 #9309 [Debug] > │         let v22 : int32 = v3 + 1                                             │

02:09:03 #9310 [Debug] > │         method2(v0, v1, v21, v22)                                            │

02:09:03 #9311 [Debug] > │     else                                                                     │

02:09:03 #9312 [Debug] > │         let v24 : UH0 = UH0_1                                                │

02:09:03 #9313 [Debug] > │         method4(v2, v24)                                                     │

02:09:03 #9314 [Debug] > │ and method5 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:03 #9315 [Debug] > │     match v0 with                                                            │

02:09:03 #9316 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:03 #9317 [Debug] > │         let v12 : UH1 = method5(v11, v1)                                     │

02:09:03 #9318 [Debug] > │         UH1_0(v5, v6, v12)                                                   │

02:09:03 #9319 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:03 #9320 [Debug] > │         v1                                                                   │

02:09:03 #9321 [Debug] > │ and method6 (v0 : UH1, v1 : float) : float =                                 │

02:09:03 #9322 [Debug] > │     match v0 with                                                            │

02:09:03 #9323 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:09:03 #9324 [Debug] > │         method6(v4, v2)                                                      │

02:09:03 #9325 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:03 #9326 [Debug] > │         v1                                                                   │

02:09:03 #9327 [Debug] > │ and method1 (v0 : float, v1 : float, v2 : float) : struct (float * float) =  │

02:09:03 #9328 [Debug] > │     let v3 : bool = v0 > 60.0                                                │

02:09:03 #9329 [Debug] > │     if v3 then                                                               │

02:09:03 #9330 [Debug] > │         struct (v2, v1)                                                      │

02:09:03 #9331 [Debug] > │     else                                                                     │

02:09:03 #9332 [Debug] > │         let v4 : float = v0 * 3.141592653589793                              │

02:09:03 #9333 [Debug] > │         let v5 : float = v4 / 180.0                                          │

02:09:03 #9334 [Debug] > │         let v6 : float = cos v5                                              │

02:09:03 #9335 [Debug] > │         let v7 : float = 45.0 * v6                                           │

02:09:03 #9336 [Debug] > │         let v8 : float = sin v5                                              │

02:09:03 #9337 [Debug] > │         let v9 : float = 45.0 * v8                                           │

02:09:03 #9338 [Debug] > │         let v10 : UH0 = UH0_1                                                │

02:09:03 #9339 [Debug] > │         let v11 : int32 = 0                                                  │

02:09:03 #9340 [Debug] > │         let v12 : UH0 = method2(v7, v9, v10, v11)                            │

02:09:03 #9341 [Debug] > │         let v13 : UH1 = UH1_1                                                │

02:09:03 #9342 [Debug] > │         let v14 : UH1 = method5(v12, v13)                                    │

02:09:03 #9343 [Debug] > │         let v15 : float = 0.0                                                │

02:09:03 #9344 [Debug] > │         let v16 : float = method6(v14, v15)                                  │

02:09:03 #9345 [Debug] > │         let v17 : float = v0 + 1.0                                           │

02:09:03 #9346 [Debug] > │         let v18 : bool = v16 > v2                                            │

02:09:03 #9347 [Debug] > │         let struct (v19 : float, v20 : float) =                              │

02:09:03 #9348 [Debug] > │             if v18 then                                                      │

02:09:03 #9349 [Debug] > │                 struct (v16, v0)                                             │

02:09:03 #9350 [Debug] > │             else                                                             │

02:09:03 #9351 [Debug] > │                 struct (v2, v1)                                              │

02:09:03 #9352 [Debug] > │         method1(v17, v20, v19)                                               │

02:09:03 #9353 [Debug] > │ and method0 () : unit =                                                      │

02:09:03 #9354 [Debug] > │     let v0 : float = 30.0                                                    │

02:09:03 #9355 [Debug] > │     let v1 : float = 0.0                                                     │

02:09:03 #9356 [Debug] > │     let v2 : float = 30.0                                                    │

02:09:03 #9357 [Debug] > │     let struct (v3 : float, v4 : float) = method1(v0, v2, v1)                │

02:09:03 #9358 [Debug] > │     let v5 : bool = v3 = 116.77499158246208                                  │

02:09:03 #9359 [Debug] > │     let v7 : bool =                                                          │

02:09:03 #9360 [Debug] > │         if v5 then                                                           │

02:09:03 #9361 [Debug] > │             let v6 : bool = v4 = 41.0                                        │

02:09:03 #9362 [Debug] > │             v6                                                               │

02:09:03 #9363 [Debug] > │         else                                                                 │

02:09:03 #9364 [Debug] > │             false                                                            │

02:09:03 #9365 [Debug] > │     let v8 : string = $"_equal / actual: %A{struct (v3, v4)} / expected:     │

02:09:03 #9366 [Debug] > │ %A{struct (116.77499158246208, 41.0)}"                                       │

02:09:03 #9367 [Debug] > │     let v9 : bool = v7 = false                                               │

02:09:03 #9368 [Debug] > │     if v9 then                                                               │

02:09:03 #9369 [Debug] > │         failwith<unit> v8                                                    │

02:09:03 #9370 [Debug] > │ method0()                                                                    │

02:09:03 #9371 [Debug] > │                                                                              │

02:09:03 #9372 [Debug] > │                                                                              │

02:09:03 #9373 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:03 #9374 [Debug] >

02:09:03 #9375 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:03 #9376 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:03 #9377 [Debug] > │ ## relativity_ps                                                             │

02:09:03 #9378 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:03 #9379 [Debug] >

02:09:03 #9380 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:03 #9381 [Debug] > inl relativity_ps fs (st : particle_state) =

02:09:03 #9382 [Debug] >     inl f_net = fs |> listm.map (fun f => f st) |> sum_vec

02:09:03 #9383 [Debug] >     inl c = 299792458

02:09:03 #9384 [Debug] >     inl u = st.velocity ^/ c

02:09:03 #9385 [Debug] >     inl acc = sqrt (1 - (u <.> u)) *^ (f_net ^-^ (f_net <.> u) *^ u) ^/ st.mass

02:09:03 #9386 [Debug] >     d_particle_state {

02:09:03 #9387 [Debug] >         dmdt = 0

02:09:03 #9388 [Debug] >         dqdt = 0

02:09:03 #9389 [Debug] >         dtdt = 1

02:09:03 #9390 [Debug] >         drdt = st.velocity

02:09:03 #9391 [Debug] >         dvdt = acc

02:09:03 #9392 [Debug] >     }

02:09:03 #9393 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0317-1796-1bf43a473636\main.spi

02:09:03 #9394 [Debug] >

02:09:03 #9395 [Debug] > ╭─[ 228.83ms - stdout ]────────────────────────────────────────────────────────╮

02:09:03 #9396 [Debug] > │ ()                                                                           │

02:09:03 #9397 [Debug] > │                                                                              │

02:09:03 #9398 [Debug] > │                                                                              │

02:09:03 #9399 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:03 #9400 [Debug] >

02:09:03 #9401 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:03 #9402 [Debug] > // // test

02:09:03 #9403 [Debug] >

02:09:03 #9404 [Debug] > inl year = 365.25 * 24 * 60 * 60

02:09:03 #9405 [Debug] > inl c = 299792458

02:09:03 #9406 [Debug] > inl ~method = runge_kutta_4 100000

02:09:03 #9407 [Debug] > inl forces = [[ fun _ => 10 *^ i_hat () ]]

02:09:03 #9408 [Debug] > inl (particle_state default_particle_state') = default_particle_state ()

02:09:03 #9409 [Debug] > inl initial_state =

02:09:03 #9410 [Debug] >     particle_state { default_particle_state' with

02:09:03 #9411 [Debug] >         mass = 1

02:09:03 #9412 [Debug] >     }

02:09:03 #9413 [Debug] >

02:09:03 #9414 [Debug] > inl newton_states = solver_ method (newton_second_ps forces) initial_state

02:09:03 #9415 [Debug] > inl relativity_states = solver_ method (relativity_ps forces) initial_state

02:09:03 #9416 [Debug] >

02:09:03 #9417 [Debug] > inl newton_x, newton_y =

02:09:03 #9418 [Debug] >     newton_states

02:09:03 #9419 [Debug] >     >> Some

02:09:03 #9420 [Debug] >     |> seq.take_while_ (fun (particle_state st) (_ : i32) => st.time <= year)

02:09:03 #9421 [Debug] >     |> listm.map (fun (particle_state st) => st.time / year, st.velocity.x / c)

02:09:03 #9422 [Debug] >     |> listm'.unzip

02:09:03 #9423 [Debug] >

02:09:03 #9424 [Debug] > inl _, relativity_y =

02:09:03 #9425 [Debug] >     relativity_states

02:09:03 #9426 [Debug] >     >> Some

02:09:03 #9427 [Debug] >     |> seq.take_while_ (fun (particle_state st) (_ : i32) => st.time <= year)

02:09:03 #9428 [Debug] >     |> listm.map (fun (particle_state st) => st.time / year, st.velocity.x / c)

02:09:03 #9429 [Debug] >     |> listm'.unzip

02:09:03 #9430 [Debug] >

02:09:03 #9431 [Debug] > inl newton_x : a i32 _ = newton_x |> listm.toArray

02:09:03 #9432 [Debug] > inl newton_y : a i32 _ = newton_y |> listm.toArray

02:09:03 #9433 [Debug] > inl relativity_y : a i32 _ = relativity_y |> listm.toArray

02:09:03 #9434 [Debug] >

02:09:03 #9435 [Debug] > "response to a constant force",

02:09:03 #9436 [Debug] > "time (years)",

02:09:03 #9437 [Debug] > "velocity (multiples of c)",

02:09:03 #9438 [Debug] > ;[[

02:09:03 #9439 [Debug] >     "newtonian", newton_x, newton_y

02:09:03 #9440 [Debug] >     "relativistic", newton_x, relativity_y

02:09:03 #9441 [Debug] > ]]

02:09:03 #9442 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0340-4098-4210e5509d09\main.spi

02:09:03 #9443 [Debug] >

02:09:03 #9444 [Debug] > ╭─[ 550.74ms - return value ]──────────────────────────────────────────────────╮

02:09:03 #9445 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:09:03 #9446 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:03 #9447 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:03 #9448 [Debug] > │ stroke="none"/>                                                              │

02:09:03 #9449 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:03 #9450 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:03 #9451 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:03 #9452 [Debug] > │ response to a constant force                                                 │

02:09:03 #9453 [Debug] > │ </text>                                                                      │

02:09:03 #9454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:09:03 #9455 [Debug] > │ y2="75"/>                                                                    │

02:09:03 #9456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:03 #9457 [Debug] > │ y2="75"/>                                                                    │

02:09:03 #9458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:09:03 #9459 [Debug] > │ y2="75"/>                                                                    │

02:09:03 #9460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:09:03 #9461 [Debug] > │ y2="75"/>                                                                    │

02:09:03 #9462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:09:03 #9463 [Debug] > │ y2="75"/>                                                                    │

02:09:03 #9464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:09:03 #9465 [Debug] > │ x2="109" y2="75"/>                                                           │

02:09:03 #9466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:09:03 #9467 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:03 #9468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:09:03 #9469 [Debug] > │ x2="129" y2="75"/>                                                           │

02:09:03 #9470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:03 #9471 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:03 #9472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:09:03 #9473 [Debug] > │ x2="149" y2="75"/>                                                           │

02:09:03 #9474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:09:03 #9475 [Debug] > │ x2="159" y2="75"/>                                                           │

02:09:03 #9476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:03 #9477 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:03 #9478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:09:03 #9479 [Debug] > │ x2="179" y2="75"/>                                                           │

02:09:03 #9480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:09:03 #9481 [Debug] > │ x2="189" y2="75"/>                                                           │

02:09:03 #9482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:03 #9483 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:03 #9484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:09:03 #9485 [Debug] > │ x2="209" y2="75"/>                                                           │

02:09:03 #9486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:09:03 #9487 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:03 #9488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:03 #9489 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:03 #9490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:09:03 #9491 [Debug] > │ x2="239" y2="75"/>                                                           │

02:09:03 #9492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:09:03 #9493 [Debug] > │ x2="249" y2="75"/>                                                           │

02:09:03 #9494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:03 #9495 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:03 #9496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:03 #9497 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:03 #9498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:09:03 #9499 [Debug] > │ x2="279" y2="75"/>                                                           │

02:09:03 #9500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:03 #9501 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:03 #9502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:03 #9503 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:03 #9504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:09:03 #9505 [Debug] > │ x2="309" y2="75"/>                                                           │

02:09:03 #9506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:03 #9507 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:03 #9508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:03 #9509 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:03 #9510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:09:03 #9511 [Debug] > │ x2="339" y2="75"/>                                                           │

02:09:03 #9512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:03 #9513 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:03 #9514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:03 #9515 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:03 #9516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:03 #9517 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:03 #9518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:09:03 #9519 [Debug] > │ x2="379" y2="75"/>                                                           │

02:09:03 #9520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:09:03 #9521 [Debug] > │ x2="389" y2="75"/>                                                           │

02:09:03 #9522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:09:03 #9523 [Debug] > │ x2="399" y2="75"/>                                                           │

02:09:03 #9524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:09:03 #9525 [Debug] > │ x2="409" y2="75"/>                                                           │

02:09:03 #9526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:03 #9527 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:03 #9528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:03 #9529 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:03 #9530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:09:03 #9531 [Debug] > │ x2="439" y2="75"/>                                                           │

02:09:03 #9532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:03 #9533 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:03 #9534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:03 #9535 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:03 #9536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:03 #9537 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:03 #9538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:03 #9539 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:03 #9540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:03 #9541 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:03 #9542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:03 #9543 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:03 #9544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:03 #9545 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:04 #9546 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:09:04 #9547 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:04 #9548 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:04 #9549 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:04 #9550 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:04 #9551 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:04 #9552 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:09:04 #9553 [Debug] > │ x2="549" y2="75"/>                                                           │

02:09:04 #9554 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:04 #9555 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:04 #9556 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:04 #9557 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:04 #9558 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:04 #9559 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:04 #9560 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:04 #9561 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:04 #9562 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:04 #9563 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:04 #9564 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:04 #9565 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:04 #9566 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="352"         │

02:09:04 #9567 [Debug] > │ x2="584" y2="352"/>                                                          │

02:09:04 #9568 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:04 #9569 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:04 #9570 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:04 #9571 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:04 #9572 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:09:04 #9573 [Debug] > │ x2="584" y2="305"/>                                                          │

02:09:04 #9574 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:04 #9575 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:04 #9576 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="274"         │

02:09:04 #9577 [Debug] > │ x2="584" y2="274"/>                                                          │

02:09:04 #9578 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="258"         │

02:09:04 #9579 [Debug] > │ x2="584" y2="258"/>                                                          │

02:09:04 #9580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="242"         │

02:09:04 #9581 [Debug] > │ x2="584" y2="242"/>                                                          │

02:09:04 #9582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:09:04 #9583 [Debug] > │ x2="584" y2="227"/>                                                          │

02:09:04 #9584 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:09:04 #9585 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:04 #9586 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:09:04 #9587 [Debug] > │ x2="584" y2="195"/>                                                          │

02:09:04 #9588 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:04 #9589 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:04 #9590 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="164"         │

02:09:04 #9591 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:04 #9592 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="148"         │

02:09:04 #9593 [Debug] > │ x2="584" y2="148"/>                                                          │

02:09:04 #9594 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:04 #9595 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:04 #9596 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:09:04 #9597 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:04 #9598 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:04 #9599 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:04 #9600 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="86" x2="584" │

02:09:04 #9601 [Debug] > │ y2="86"/>                                                                    │

02:09:04 #9602 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:04 #9603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9604 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9605 [Debug] > │ time (years)                                                                 │

02:09:04 #9606 [Debug] > │ </text>                                                                      │

02:09:04 #9607 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:04 #9608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9609 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:04 #9610 [Debug] > │ velocity (multiples of c)                                                    │

02:09:04 #9611 [Debug] > │ </text>                                                                      │

02:09:04 #9612 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:04 #9613 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9614 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9615 [Debug] > │ time (years)                                                                 │

02:09:04 #9616 [Debug] > │ </text>                                                                      │

02:09:04 #9617 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9619 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:04 #9620 [Debug] > │ velocity (multiples of c)                                                    │

02:09:04 #9621 [Debug] > │ </text>                                                                      │

02:09:04 #9622 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:04 #9623 [Debug] > │ y2="75"/>                                                                    │

02:09:04 #9624 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:09:04 #9625 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:04 #9626 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:09:04 #9627 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:04 #9628 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:09:04 #9629 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:04 #9630 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:09:04 #9631 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:04 #9632 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:09:04 #9633 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:04 #9634 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:09:04 #9635 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:04 #9636 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:09:04 #9637 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:04 #9638 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:09:04 #9639 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:04 #9640 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:09:04 #9641 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:04 #9642 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:04 #9643 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:04 #9644 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:09:04 #9645 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:04 #9646 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="352"         │

02:09:04 #9647 [Debug] > │ x2="584" y2="352"/>                                                          │

02:09:04 #9648 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:09:04 #9649 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:04 #9650 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="227"         │

02:09:04 #9651 [Debug] > │ x2="584" y2="227"/>                                                          │

02:09:04 #9652 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="164"         │

02:09:04 #9653 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:04 #9654 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="101"         │

02:09:04 #9655 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:04 #9656 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9657 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:04 #9658 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:04 #9659 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9660 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9661 [Debug] > │ 0.0                                                                          │

02:09:04 #9662 [Debug] > │ </text>                                                                      │

02:09:04 #9663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9664 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:04 #9665 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9667 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9668 [Debug] > │ 0.1                                                                          │

02:09:04 #9669 [Debug] > │ </text>                                                                      │

02:09:04 #9670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9671 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:09:04 #9672 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9674 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9675 [Debug] > │ 0.2                                                                          │

02:09:04 #9676 [Debug] > │ </text>                                                                      │

02:09:04 #9677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9678 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:09:04 #9679 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9682 [Debug] > │ 0.3                                                                          │

02:09:04 #9683 [Debug] > │ </text>                                                                      │

02:09:04 #9684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9685 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:09:04 #9686 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9688 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9689 [Debug] > │ 0.4                                                                          │

02:09:04 #9690 [Debug] > │ </text>                                                                      │

02:09:04 #9691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9692 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:09:04 #9693 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9694 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9695 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9696 [Debug] > │ 0.5                                                                          │

02:09:04 #9697 [Debug] > │ </text>                                                                      │

02:09:04 #9698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9699 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:09:04 #9700 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9702 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9703 [Debug] > │ 0.6                                                                          │

02:09:04 #9704 [Debug] > │ </text>                                                                      │

02:09:04 #9705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9706 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:09:04 #9707 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9709 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9710 [Debug] > │ 0.7                                                                          │

02:09:04 #9711 [Debug] > │ </text>                                                                      │

02:09:04 #9712 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9713 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:09:04 #9714 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9716 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9717 [Debug] > │ 0.8                                                                          │

02:09:04 #9718 [Debug] > │ </text>                                                                      │

02:09:04 #9719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9720 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:09:04 #9721 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9722 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9723 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9724 [Debug] > │ 0.9                                                                          │

02:09:04 #9725 [Debug] > │ </text>                                                                      │

02:09:04 #9726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9727 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:09:04 #9728 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:04 #9729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9730 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9731 [Debug] > │ 1.0                                                                          │

02:09:04 #9732 [Debug] > │ </text>                                                                      │

02:09:04 #9733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9734 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:04 #9735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9736 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:04 #9737 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:04 #9738 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:04 #9739 [Debug] > │ 0.0                                                                          │

02:09:04 #9740 [Debug] > │ </text>                                                                      │

02:09:04 #9741 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9742 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:09:04 #9743 [Debug] > │ <text x="45" y="352" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:04 #9744 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:04 #9745 [Debug] > │ 0.2                                                                          │

02:09:04 #9746 [Debug] > │ </text>                                                                      │

02:09:04 #9747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9748 [Debug] > │ points="49,352 54,352 "/>                                                    │

02:09:04 #9749 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:04 #9750 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:04 #9751 [Debug] > │ 0.4                                                                          │

02:09:04 #9752 [Debug] > │ </text>                                                                      │

02:09:04 #9753 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9754 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:09:04 #9755 [Debug] > │ <text x="45" y="227" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:04 #9756 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:04 #9757 [Debug] > │ 0.6                                                                          │

02:09:04 #9758 [Debug] > │ </text>                                                                      │

02:09:04 #9759 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9760 [Debug] > │ points="49,227 54,227 "/>                                                    │

02:09:04 #9761 [Debug] > │ <text x="45" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:04 #9762 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:04 #9763 [Debug] > │ 0.8                                                                          │

02:09:04 #9764 [Debug] > │ </text>                                                                      │

02:09:04 #9765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9766 [Debug] > │ points="49,164 54,164 "/>                                                    │

02:09:04 #9767 [Debug] > │ <text x="45" y="101" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:04 #9768 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:04 #9769 [Debug] > │ 1.0                                                                          │

02:09:04 #9770 [Debug] > │ </text>                                                                      │

02:09:04 #9771 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9772 [Debug] > │ points="49,101 54,101 "/>                                                    │

02:09:04 #9773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9774 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:04 #9775 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:04 #9776 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9777 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9778 [Debug] > │ 0.0                                                                          │

02:09:04 #9779 [Debug] > │ </text>                                                                      │

02:09:04 #9780 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9781 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:04 #9782 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9783 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9784 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9785 [Debug] > │ 0.1                                                                          │

02:09:04 #9786 [Debug] > │ </text>                                                                      │

02:09:04 #9787 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9788 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:09:04 #9789 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9790 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9791 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9792 [Debug] > │ 0.2                                                                          │

02:09:04 #9793 [Debug] > │ </text>                                                                      │

02:09:04 #9794 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9795 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:09:04 #9796 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9797 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9798 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9799 [Debug] > │ 0.3                                                                          │

02:09:04 #9800 [Debug] > │ </text>                                                                      │

02:09:04 #9801 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9802 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:09:04 #9803 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9804 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9805 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9806 [Debug] > │ 0.4                                                                          │

02:09:04 #9807 [Debug] > │ </text>                                                                      │

02:09:04 #9808 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9809 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:09:04 #9810 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9811 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9812 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9813 [Debug] > │ 0.5                                                                          │

02:09:04 #9814 [Debug] > │ </text>                                                                      │

02:09:04 #9815 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9816 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:09:04 #9817 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9818 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9819 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9820 [Debug] > │ 0.6                                                                          │

02:09:04 #9821 [Debug] > │ </text>                                                                      │

02:09:04 #9822 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9823 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:09:04 #9824 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9825 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9826 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9827 [Debug] > │ 0.7                                                                          │

02:09:04 #9828 [Debug] > │ </text>                                                                      │

02:09:04 #9829 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9830 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:09:04 #9831 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9832 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9833 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9834 [Debug] > │ 0.8                                                                          │

02:09:04 #9835 [Debug] > │ </text>                                                                      │

02:09:04 #9836 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9837 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:09:04 #9838 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9839 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9840 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9841 [Debug] > │ 0.9                                                                          │

02:09:04 #9842 [Debug] > │ </text>                                                                      │

02:09:04 #9843 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9844 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:09:04 #9845 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:04 #9846 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9847 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9848 [Debug] > │ 1.0                                                                          │

02:09:04 #9849 [Debug] > │ </text>                                                                      │

02:09:04 #9850 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9851 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:04 #9852 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9853 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:04 #9854 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:09:04 #9855 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9856 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9857 [Debug] > │ 0.0                                                                          │

02:09:04 #9858 [Debug] > │ </text>                                                                      │

02:09:04 #9859 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9860 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:09:04 #9861 [Debug] > │ <text x="595" y="352" dy="0.5ex" text-anchor="start"                         │

02:09:04 #9862 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9863 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9864 [Debug] > │ 0.2                                                                          │

02:09:04 #9865 [Debug] > │ </text>                                                                      │

02:09:04 #9866 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9867 [Debug] > │ points="585,352 590,352 "/>                                                  │

02:09:04 #9868 [Debug] > │ <text x="595" y="289" dy="0.5ex" text-anchor="start"                         │

02:09:04 #9869 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9870 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9871 [Debug] > │ 0.4                                                                          │

02:09:04 #9872 [Debug] > │ </text>                                                                      │

02:09:04 #9873 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9874 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:09:04 #9875 [Debug] > │ <text x="595" y="227" dy="0.5ex" text-anchor="start"                         │

02:09:04 #9876 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9877 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9878 [Debug] > │ 0.6                                                                          │

02:09:04 #9879 [Debug] > │ </text>                                                                      │

02:09:04 #9880 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9881 [Debug] > │ points="585,227 590,227 "/>                                                  │

02:09:04 #9882 [Debug] > │ <text x="595" y="164" dy="0.5ex" text-anchor="start"                         │

02:09:04 #9883 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9884 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9885 [Debug] > │ 0.8                                                                          │

02:09:04 #9886 [Debug] > │ </text>                                                                      │

02:09:04 #9887 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9888 [Debug] > │ points="585,164 590,164 "/>                                                  │

02:09:04 #9889 [Debug] > │ <text x="595" y="101" dy="0.5ex" text-anchor="start"                         │

02:09:04 #9890 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9891 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9892 [Debug] > │ 1.0                                                                          │

02:09:04 #9893 [Debug] > │ </text>                                                                      │

02:09:04 #9894 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:04 #9895 [Debug] > │ points="585,101 590,101 "/>                                                  │

02:09:04 #9896 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:04 #9897 [Debug] > │ points="69,415 71,414 73,413 74,411 76,410 77,409 79,408 81,407 82,406       │

02:09:04 #9898 [Debug] > │ 84,405 85,404 87,403 88,402 90,401 92,400 93,399 95,398 96,397 98,396        │

02:09:04 #9899 [Debug] > │ 100,395 101,394 103,393 104,392 106,391 107,390 109,388 111,387 112,386      │

02:09:04 #9900 [Debug] > │ 114,385 115,384 117,383 119,382 120,381 122,380 123,379 125,378 127,377      │

02:09:04 #9901 [Debug] > │ 128,376 130,375 131,374 133,373 134,372 136,371 138,370 139,369 141,368      │

02:09:04 #9902 [Debug] > │ 142,367 144,365 146,364 147,363 149,362 150,361 152,360 153,359 155,358      │

02:09:04 #9903 [Debug] > │ 157,357 158,356 160,355 161,354 163,353 165,352 166,351 168,350 169,349      │

02:09:04 #9904 [Debug] > │ 171,348 172,347 174,346 176,345 177,344 179,343 180,341 182,340 184,339      │

02:09:04 #9905 [Debug] > │ 185,338 187,337 188,336 190,335 191,334 193,333 195,332 196,331 198,330      │

02:09:04 #9906 [Debug] > │ 199,329 201,328 203,327 204,326 206,325 207,324 209,323 210,322 212,321      │

02:09:04 #9907 [Debug] > │ 214,320 215,318 217,317 218,316 220,315 222,314 223,313 225,312 226,311      │

02:09:04 #9908 [Debug] > │ 228,310 229,309 231,308 233,307 234,306 236,305 237,304 239,303 241,302      │

02:09:04 #9909 [Debug] > │ 242,301 244,300 245,299 247,298 248,297 250,295 252,294 253,293 255,292      │

02:09:04 #9910 [Debug] > │ 256,291 258,290 260,289 261,288 263,287 264,286 266,285 268,284 269,283      │

02:09:04 #9911 [Debug] > │ 271,282 272,281 274,280 275,279 277,278 279,277 280,276 282,275 283,274      │

02:09:04 #9912 [Debug] > │ 285,272 287,271 288,270 290,269 291,268 293,267 294,266 296,265 298,264      │

02:09:04 #9913 [Debug] > │ 299,263 301,262 302,261 304,260 306,259 307,258 309,257 310,256 312,255      │

02:09:04 #9914 [Debug] > │ 313,254 315,253 317,252 318,251 320,249 321,248 323,247 325,246 326,245      │

02:09:04 #9915 [Debug] > │ 328,244 329,243 331,242 332,241 334,240 336,239 337,238 339,237 340,236      │

02:09:04 #9916 [Debug] > │ 342,235 344,234 345,233 347,232 348,231 350,230 351,229 353,228 355,226      │

02:09:04 #9917 [Debug] > │ 356,225 358,224 359,223 361,222 363,221 364,220 366,219 367,218 369,217      │

02:09:04 #9918 [Debug] > │ 370,216 372,215 374,214 375,213 377,212 378,211 380,210 382,209 383,208      │

02:09:04 #9919 [Debug] > │ 385,207 386,206 388,205 390,203 391,202 393,201 394,200 396,199 397,198      │

02:09:04 #9920 [Debug] > │ 399,197 401,196 402,195 404,194 405,193 407,192 409,191 410,190 412,189      │

02:09:04 #9921 [Debug] > │ 413,188 415,187 416,186 418,185 420,184 421,183 423,182 424,180 426,179      │

02:09:04 #9922 [Debug] > │ 428,178 429,177 431,176 432,175 434,174 435,173 437,172 439,171 440,170      │

02:09:04 #9923 [Debug] > │ 442,169 443,168 445,167 447,166 448,165 450,164 451,163 453,162 454,161      │

02:09:04 #9924 [Debug] > │ 456,160 458,159 459,157 461,156 462,155 464,154 466,153 467,152 469,151      │

02:09:04 #9925 [Debug] > │ 470,150 472,149 473,148 475,147 477,146 478,145 480,144 481,143 483,142      │

02:09:04 #9926 [Debug] > │ 485,141 486,140 488,139 489,138 491,137 492,136 494,135 496,133 497,132      │

02:09:04 #9927 [Debug] > │ 499,131 500,130 502,129 504,128 505,127 507,126 508,125 510,124 511,123      │

02:09:04 #9928 [Debug] > │ 513,122 515,121 516,120 518,119 519,118 521,117 523,116 524,115 526,114      │

02:09:04 #9929 [Debug] > │ 527,113 529,112 531,110 532,109 534,108 535,107 537,106 538,105 540,104      │

02:09:04 #9930 [Debug] > │ 542,103 543,102 545,101 546,100 548,99 550,98 551,97 553,96 554,95 556,94    │

02:09:04 #9931 [Debug] > │ 557,93 559,92 561,91 562,90 564,89 565,87 567,86 569,85 "/>                  │

02:09:04 #9932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:04 #9933 [Debug] > │ points="69,415 71,414 73,413 74,411 76,410 77,409 79,408 81,407 82,406       │

02:09:04 #9934 [Debug] > │ 84,405 85,404 87,403 88,402 90,401 92,400 93,399 95,398 96,397 98,396        │

02:09:04 #9935 [Debug] > │ 100,395 101,394 103,393 104,392 106,391 107,390 109,389 111,388 112,387      │

02:09:04 #9936 [Debug] > │ 114,385 115,384 117,383 119,382 120,381 122,380 123,379 125,378 127,377      │

02:09:04 #9937 [Debug] > │ 128,376 130,375 131,374 133,373 134,372 136,371 138,370 139,369 141,368      │

02:09:04 #9938 [Debug] > │ 142,367 144,366 146,365 147,364 149,363 150,362 152,361 153,360 155,359      │

02:09:04 #9939 [Debug] > │ 157,358 158,357 160,356 161,355 163,354 165,353 166,352 168,351 169,350      │

02:09:04 #9940 [Debug] > │ 171,349 172,348 174,347 176,346 177,345 179,344 180,343 182,342 184,341      │

02:09:04 #9941 [Debug] > │ 185,340 187,340 188,339 190,338 191,337 193,336 195,335 196,334 198,333      │

02:09:04 #9942 [Debug] > │ 199,332 201,331 203,330 204,329 206,328 207,327 209,326 210,325 212,325      │

02:09:04 #9943 [Debug] > │ 214,324 215,323 217,322 218,321 220,320 222,319 223,318 225,317 226,316      │

02:09:04 #9944 [Debug] > │ 228,315 229,315 231,314 233,313 234,312 236,311 237,310 239,309 241,308      │

02:09:04 #9945 [Debug] > │ 242,308 244,307 245,306 247,305 248,304 250,303 252,302 253,302 255,301      │

02:09:04 #9946 [Debug] > │ 256,300 258,299 260,298 261,297 263,297 264,296 266,295 268,294 269,293      │

02:09:04 #9947 [Debug] > │ 271,292 272,292 274,291 275,290 277,289 279,288 280,288 282,287 283,286      │

02:09:04 #9948 [Debug] > │ 285,285 287,284 288,284 290,283 291,282 293,281 294,280 296,280 298,279      │

02:09:04 #9949 [Debug] > │ 299,278 301,277 302,277 304,276 306,275 307,274 309,274 310,273 312,272      │

02:09:04 #9950 [Debug] > │ 313,271 315,271 317,270 318,269 320,269 321,268 323,267 325,266 326,266      │

02:09:04 #9951 [Debug] > │ 328,265 329,264 331,264 332,263 334,262 336,261 337,261 339,260 340,259      │

02:09:04 #9952 [Debug] > │ 342,259 344,258 345,257 347,257 348,256 350,255 351,255 353,254 355,253      │

02:09:04 #9953 [Debug] > │ 356,253 358,252 359,251 361,251 363,250 364,249 366,249 367,248 369,248      │

02:09:04 #9954 [Debug] > │ 370,247 372,246 374,246 375,245 377,244 378,244 380,243 382,243 383,242      │

02:09:04 #9955 [Debug] > │ 385,241 386,241 388,240 390,240 391,239 393,238 394,238 396,237 397,237      │

02:09:04 #9956 [Debug] > │ 399,236 401,235 402,235 404,234 405,234 407,233 409,233 410,232 412,231      │

02:09:04 #9957 [Debug] > │ 413,231 415,230 416,230 418,229 420,229 421,228 423,228 424,227 426,227      │

02:09:04 #9958 [Debug] > │ 428,226 429,225 431,225 432,224 434,224 435,223 437,223 439,222 440,222      │

02:09:04 #9959 [Debug] > │ 442,221 443,221 445,220 447,220 448,219 450,219 451,218 453,218 454,217      │

02:09:04 #9960 [Debug] > │ 456,217 458,216 459,216 461,215 462,215 464,214 466,214 467,213 469,213      │

02:09:04 #9961 [Debug] > │ 470,213 472,212 473,212 475,211 477,211 478,210 480,210 481,209 483,209      │

02:09:04 #9962 [Debug] > │ 485,208 486,208 488,208 489,207 491,207 492,206 494,206 496,205 497,205      │

02:09:04 #9963 [Debug] > │ 499,204 500,204 502,204 504,203 505,203 507,202 508,202 510,202 511,201      │

02:09:04 #9964 [Debug] > │ 513,201 515,200 516,200 518,200 519,199 521,199 523,198 524,198 526,198      │

02:09:04 #9965 [Debug] > │ 527,197 529,197 531,196 532,196 534,196 535,195 537,195 538,194 540,194      │

02:09:04 #9966 [Debug] > │ 542,194 543,193 545,193 546,193 548,192 550,192 551,192 553,191 554,191      │

02:09:04 #9967 [Debug] > │ 556,190 557,190 559,190 561,189 562,189 564,189 565,188 567,188 569,188 "/>  │

02:09:04 #9968 [Debug] > │ <rect x="464" y="227" width="116" height="45" opacity="1" fill="none"        │

02:09:04 #9969 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:04 #9970 [Debug] > │ <text x="504" y="237" dy="0.76em" text-anchor="start"                        │

02:09:04 #9971 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9972 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9973 [Debug] > │ newtonian                                                                    │

02:09:04 #9974 [Debug] > │ </text>                                                                      │

02:09:04 #9975 [Debug] > │ <text x="504" y="252" dy="0.76em" text-anchor="start"                        │

02:09:04 #9976 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:04 #9977 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:04 #9978 [Debug] > │ relativistic                                                                 │

02:09:04 #9979 [Debug] > │ </text>                                                                      │

02:09:04 #9980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:04 #9981 [Debug] > │ points="474,242 494,242 "/>                                                  │

02:09:04 #9982 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:04 #9983 [Debug] > │ points="474,257 494,257 "/>                                                  │

02:09:04 #9984 [Debug] > │ </svg>                                                                       │

02:09:04 #9985 [Debug] > │                                                                              │

02:09:04 #9986 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:04 #9987 [Debug] >

02:09:04 #9988 [Debug] > ╭─[ 746.36ms - stdout ]────────────────────────────────────────────────────────╮

02:09:04 #9989 [Debug] > │ type UH0 =                                                                   │

02:09:04 #9990 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:09:04 #9991 [Debug] > │ * float * UH0                                                                │

02:09:04 #9992 [Debug] > │     | UH0_1                                                                  │

02:09:04 #9993 [Debug] > │ and UH1 =                                                                    │

02:09:04 #9994 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:09:04 #9995 [Debug] > │     | UH1_1                                                                  │

02:09:04 #9996 [Debug] > │ and UH2 =                                                                    │

02:09:04 #9997 [Debug] > │     | UH2_0 of float * UH2                                                   │

02:09:04 #9998 [Debug] > │     | UH2_1                                                                  │

02:09:04 #9999 [Debug] > │ let rec closure1 (v0 : (struct (float * float * float * float * float *      │

02:09:04 #10000 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:09:04 #10001 [Debug] > │ float * float * float * float * float))) struct (v1 : float, v2 : float, v3  │

02:09:04 #10002 [Debug] > │ : float, v4 : float, v5 : float, v6 : float, v7 : float, v8 : float, v9 :    │

02:09:04 #10003 [Debug] > │ float) : struct (float * float * float * float * float * float * float *     │

02:09:04 #10004 [Debug] > │ float * float) =                                                             │

02:09:04 #10005 [Debug] > │     let struct (v10 : float, v11 : float, v12 : float, v13 : float, v14 :    │

02:09:04 #10006 [Debug] > │ float, v15 : float, v16 : float, v17 : float, v18 : float) = v0 struct (v1,  │

02:09:04 #10007 [Debug] > │ v2, v3, v4, v5, v6, v7, v8, v9)                                              │

02:09:04 #10008 [Debug] > │     let v19 : float = v15 * 50000.0                                          │

02:09:04 #10009 [Debug] > │     let v20 : float = v6 + v19                                               │

02:09:04 #10010 [Debug] > │     let v21 : float = 50000.0 * v12                                          │

02:09:04 #10011 [Debug] > │     let v22 : float = 50000.0 * v13                                          │

02:09:04 #10012 [Debug] > │     let v23 : float = 50000.0 * v14                                          │

02:09:04 #10013 [Debug] > │     let v24 : float = v3 + v21                                               │

02:09:04 #10014 [Debug] > │     let v25 : float = v4 + v22                                               │

02:09:04 #10015 [Debug] > │     let v26 : float = v5 + v23                                               │

02:09:04 #10016 [Debug] > │     let v27 : float = 50000.0 * v16                                          │

02:09:04 #10017 [Debug] > │     let v28 : float = 50000.0 * v17                                          │

02:09:04 #10018 [Debug] > │     let v29 : float = 50000.0 * v18                                          │

02:09:04 #10019 [Debug] > │     let v30 : float = v7 + v27                                               │

02:09:04 #10020 [Debug] > │     let v31 : float = v8 + v28                                               │

02:09:04 #10021 [Debug] > │     let v32 : float = v9 + v29                                               │

02:09:04 #10022 [Debug] > │     let struct (v33 : float, v34 : float, v35 : float, v36 : float, v37 :    │

02:09:04 #10023 [Debug] > │ float, v38 : float, v39 : float, v40 : float, v41 : float) = v0 struct (v1,  │

02:09:04 #10024 [Debug] > │ v2, v24, v25, v26, v20, v30, v31, v32)                                       │

02:09:04 #10025 [Debug] > │     let v42 : float = v38 * 50000.0                                          │

02:09:04 #10026 [Debug] > │     let v43 : float = v6 + v42                                               │

02:09:04 #10027 [Debug] > │     let v44 : float = 50000.0 * v35                                          │

02:09:04 #10028 [Debug] > │     let v45 : float = 50000.0 * v36                                          │

02:09:04 #10029 [Debug] > │     let v46 : float = 50000.0 * v37                                          │

02:09:04 #10030 [Debug] > │     let v47 : float = v3 + v44                                               │

02:09:04 #10031 [Debug] > │     let v48 : float = v4 + v45                                               │

02:09:04 #10032 [Debug] > │     let v49 : float = v5 + v46                                               │

02:09:04 #10033 [Debug] > │     let v50 : float = 50000.0 * v39                                          │

02:09:04 #10034 [Debug] > │     let v51 : float = 50000.0 * v40                                          │

02:09:04 #10035 [Debug] > │     let v52 : float = 50000.0 * v41                                          │

02:09:04 #10036 [Debug] > │     let v53 : float = v7 + v50                                               │

02:09:04 #10037 [Debug] > │     let v54 : float = v8 + v51                                               │

02:09:04 #10038 [Debug] > │     let v55 : float = v9 + v52                                               │

02:09:04 #10039 [Debug] > │     let struct (v56 : float, v57 : float, v58 : float, v59 : float, v60 :    │

02:09:04 #10040 [Debug] > │ float, v61 : float, v62 : float, v63 : float, v64 : float) = v0 struct (v1,  │

02:09:04 #10041 [Debug] > │ v2, v47, v48, v49, v43, v53, v54, v55)                                       │

02:09:04 #10042 [Debug] > │     let v65 : float = v61 * 100000.0                                         │

02:09:04 #10043 [Debug] > │     let v66 : float = v6 + v65                                               │

02:09:04 #10044 [Debug] > │     let v67 : float = 100000.0 * v58                                         │

02:09:04 #10045 [Debug] > │     let v68 : float = 100000.0 * v59                                         │

02:09:04 #10046 [Debug] > │     let v69 : float = 100000.0 * v60                                         │

02:09:04 #10047 [Debug] > │     let v70 : float = v3 + v67                                               │

02:09:04 #10048 [Debug] > │     let v71 : float = v4 + v68                                               │

02:09:04 #10049 [Debug] > │     let v72 : float = v5 + v69                                               │

02:09:04 #10050 [Debug] > │     let v73 : float = 100000.0 * v62                                         │

02:09:04 #10051 [Debug] > │     let v74 : float = 100000.0 * v63                                         │

02:09:04 #10052 [Debug] > │     let v75 : float = 100000.0 * v64                                         │

02:09:04 #10053 [Debug] > │     let v76 : float = v7 + v73                                               │

02:09:04 #10054 [Debug] > │     let v77 : float = v8 + v74                                               │

02:09:04 #10055 [Debug] > │     let v78 : float = v9 + v75                                               │

02:09:04 #10056 [Debug] > │     let struct (v79 : float, v80 : float, v81 : float, v82 : float, v83 :    │

02:09:04 #10057 [Debug] > │ float, v84 : float, v85 : float, v86 : float, v87 : float) = v0 struct (v1,  │

02:09:04 #10058 [Debug] > │ v2, v70, v71, v72, v66, v76, v77, v78)                                       │

02:09:04 #10059 [Debug] > │     let v88 : float = v10 + v33                                              │

02:09:04 #10060 [Debug] > │     let v89 : float = v11 + v34                                              │

02:09:04 #10061 [Debug] > │     let v90 : float = v15 + v38                                              │

02:09:04 #10062 [Debug] > │     let v91 : float = v12 + v35                                              │

02:09:04 #10063 [Debug] > │     let v92 : float = v13 + v36                                              │

02:09:04 #10064 [Debug] > │     let v93 : float = v14 + v37                                              │

02:09:04 #10065 [Debug] > │     let v94 : float = v16 + v39                                              │

02:09:04 #10066 [Debug] > │     let v95 : float = v17 + v40                                              │

02:09:04 #10067 [Debug] > │     let v96 : float = v18 + v41                                              │

02:09:04 #10068 [Debug] > │     let v97 : float = v88 + v33                                              │

02:09:04 #10069 [Debug] > │     let v98 : float = v89 + v34                                              │

02:09:04 #10070 [Debug] > │     let v99 : float = v90 + v38                                              │

02:09:04 #10071 [Debug] > │     let v100 : float = v91 + v35                                             │

02:09:04 #10072 [Debug] > │     let v101 : float = v92 + v36                                             │

02:09:04 #10073 [Debug] > │     let v102 : float = v93 + v37                                             │

02:09:04 #10074 [Debug] > │     let v103 : float = v94 + v39                                             │

02:09:04 #10075 [Debug] > │     let v104 : float = v95 + v40                                             │

02:09:04 #10076 [Debug] > │     let v105 : float = v96 + v41                                             │

02:09:04 #10077 [Debug] > │     let v106 : float = v97 + v56                                             │

02:09:04 #10078 [Debug] > │     let v107 : float = v98 + v57                                             │

02:09:04 #10079 [Debug] > │     let v108 : float = v99 + v61                                             │

02:09:04 #10080 [Debug] > │     let v109 : float = v100 + v58                                            │

02:09:04 #10081 [Debug] > │     let v110 : float = v101 + v59                                            │

02:09:04 #10082 [Debug] > │     let v111 : float = v102 + v60                                            │

02:09:04 #10083 [Debug] > │     let v112 : float = v103 + v62                                            │

02:09:04 #10084 [Debug] > │     let v113 : float = v104 + v63                                            │

02:09:04 #10085 [Debug] > │     let v114 : float = v105 + v64                                            │

02:09:04 #10086 [Debug] > │     let v115 : float = v106 + v56                                            │

02:09:04 #10087 [Debug] > │     let v116 : float = v107 + v57                                            │

02:09:04 #10088 [Debug] > │     let v117 : float = v108 + v61                                            │

02:09:04 #10089 [Debug] > │     let v118 : float = v109 + v58                                            │

02:09:04 #10090 [Debug] > │     let v119 : float = v110 + v59                                            │

02:09:04 #10091 [Debug] > │     let v120 : float = v111 + v60                                            │

02:09:04 #10092 [Debug] > │     let v121 : float = v112 + v62                                            │

02:09:04 #10093 [Debug] > │     let v122 : float = v113 + v63                                            │

02:09:04 #10094 [Debug] > │     let v123 : float = v114 + v64                                            │

02:09:04 #10095 [Debug] > │     let v124 : float = v115 + v79                                            │

02:09:04 #10096 [Debug] > │     let v125 : float = v116 + v80                                            │

02:09:04 #10097 [Debug] > │     let v126 : float = v117 + v84                                            │

02:09:04 #10098 [Debug] > │     let v127 : float = v118 + v81                                            │

02:09:04 #10099 [Debug] > │     let v128 : float = v119 + v82                                            │

02:09:04 #10100 [Debug] > │     let v129 : float = v120 + v83                                            │

02:09:04 #10101 [Debug] > │     let v130 : float = v121 + v85                                            │

02:09:04 #10102 [Debug] > │     let v131 : float = v122 + v86                                            │

02:09:04 #10103 [Debug] > │     let v132 : float = v123 + v87                                            │

02:09:04 #10104 [Debug] > │     let v133 : float = v126 * 16666.666666666668                             │

02:09:04 #10105 [Debug] > │     let v134 : float = v6 + v133                                             │

02:09:04 #10106 [Debug] > │     let v135 : float = 16666.666666666668 * v127                             │

02:09:04 #10107 [Debug] > │     let v136 : float = 16666.666666666668 * v128                             │

02:09:04 #10108 [Debug] > │     let v137 : float = 16666.666666666668 * v129                             │

02:09:04 #10109 [Debug] > │     let v138 : float = v3 + v135                                             │

02:09:04 #10110 [Debug] > │     let v139 : float = v4 + v136                                             │

02:09:04 #10111 [Debug] > │     let v140 : float = v5 + v137                                             │

02:09:04 #10112 [Debug] > │     let v141 : float = 16666.666666666668 * v130                             │

02:09:04 #10113 [Debug] > │     let v142 : float = 16666.666666666668 * v131                             │

02:09:04 #10114 [Debug] > │     let v143 : float = 16666.666666666668 * v132                             │

02:09:04 #10115 [Debug] > │     let v144 : float = v7 + v141                                             │

02:09:04 #10116 [Debug] > │     let v145 : float = v8 + v142                                             │

02:09:04 #10117 [Debug] > │     let v146 : float = v9 + v143                                             │

02:09:04 #10118 [Debug] > │     struct (v1, v2, v138, v139, v140, v134, v144, v145, v146)                │

02:09:04 #10119 [Debug] > │ and closure0 () (v0 : (struct (float * float * float * float * float * float │

02:09:04 #10120 [Debug] > │ * float * float * float) -> struct (float * float * float * float * float *  │

02:09:04 #10121 [Debug] > │ float * float * float * float))) : (struct (float * float * float * float *  │

02:09:04 #10122 [Debug] > │ float * float * float * float * float) -> struct (float * float * float *    │

02:09:04 #10123 [Debug] > │ float * float * float * float * float * float)) =                            │

02:09:04 #10124 [Debug] > │     closure1(v0)                                                             │

02:09:04 #10125 [Debug] > │ and closure2 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:09:04 #10126 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:09:04 #10127 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:09:04 #10128 [Debug] > │     let v9 : float = 10.0 / v1                                               │

02:09:04 #10129 [Debug] > │     let v10 : float = 0.0 / v1                                               │

02:09:04 #10130 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v9, v10, v10)                         │

02:09:04 #10131 [Debug] > │ and closure3 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:09:04 #10132 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:09:04 #10133 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:09:04 #10134 [Debug] > │     let v9 : float = v6 / 299792458.0                                        │

02:09:04 #10135 [Debug] > │     let v10 : float = v7 / 299792458.0                                       │

02:09:04 #10136 [Debug] > │     let v11 : float = v8 / 299792458.0                                       │

02:09:04 #10137 [Debug] > │     let v12 : float = v9 * v9                                                │

02:09:04 #10138 [Debug] > │     let v13 : float = v10 * v10                                              │

02:09:04 #10139 [Debug] > │     let v14 : float = v12 + v13                                              │

02:09:04 #10140 [Debug] > │     let v15 : float = v11 * v11                                              │

02:09:04 #10141 [Debug] > │     let v16 : float = v14 + v15                                              │

02:09:04 #10142 [Debug] > │     let v17 : float = 1.0 - v16                                              │

02:09:04 #10143 [Debug] > │     let v18 : float = sqrt v17                                               │

02:09:04 #10144 [Debug] > │     let v19 : float = 10.0 * v9                                              │

02:09:04 #10145 [Debug] > │     let v20 : float = 0.0 * v10                                              │

02:09:04 #10146 [Debug] > │     let v21 : float = v19 + v20                                              │

02:09:04 #10147 [Debug] > │     let v22 : float = 0.0 * v11                                              │

02:09:04 #10148 [Debug] > │     let v23 : float = v21 + v22                                              │

02:09:04 #10149 [Debug] > │     let v24 : float = v23 * v9                                               │

02:09:04 #10150 [Debug] > │     let v25 : float = v23 * v10                                              │

02:09:04 #10151 [Debug] > │     let v26 : float = v23 * v11                                              │

02:09:04 #10152 [Debug] > │     let v27 : float = -1.0 * v24                                             │

02:09:04 #10153 [Debug] > │     let v28 : float = -1.0 * v25                                             │

02:09:04 #10154 [Debug] > │     let v29 : float = -1.0 * v26                                             │

02:09:04 #10155 [Debug] > │     let v30 : float = 10.0 + v27                                             │

02:09:04 #10156 [Debug] > │     let v31 : float = v18 * v30                                              │

02:09:04 #10157 [Debug] > │     let v32 : float = v18 * v28                                              │

02:09:04 #10158 [Debug] > │     let v33 : float = v18 * v29                                              │

02:09:04 #10159 [Debug] > │     let v34 : float = v31 / v1                                               │

02:09:04 #10160 [Debug] > │     let v35 : float = v32 / v1                                               │

02:09:04 #10161 [Debug] > │     let v36 : float = v33 / v1                                               │

02:09:04 #10162 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v34, v35, v36)                        │

02:09:04 #10163 [Debug] > │ and method2 (v0 : (struct (float * float * float * float * float * float *   │

02:09:04 #10164 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:09:04 #10165 [Debug] > │ float * float * float * float)), v1 : float, v2 : float, v3 : float, v4 :    │

02:09:04 #10166 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float, v9 : float, v10 :     │

02:09:04 #10167 [Debug] > │ int32) : struct (float * float * float * float * float * float * float *     │

02:09:04 #10168 [Debug] > │ float * float) =                                                             │

02:09:04 #10169 [Debug] > │     let v11 : bool = v10 <= 0                                                │

02:09:04 #10170 [Debug] > │     if v11 then                                                              │

02:09:04 #10171 [Debug] > │         struct (v1, v2, v3, v4, v5, v6, v7, v8, v9)                          │

02:09:04 #10172 [Debug] > │     else                                                                     │

02:09:04 #10173 [Debug] > │         let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:09:04 #10174 [Debug] > │ : float, v17 : float, v18 : float, v19 : float, v20 : float) = v0 struct     │

02:09:04 #10175 [Debug] > │ (v1, v2, v3, v4, v5, v6, v7, v8, v9)                                         │

02:09:04 #10176 [Debug] > │         let v21 : int32 = v10 - 1                                            │

02:09:04 #10177 [Debug] > │         method2(v0, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)        │

02:09:04 #10178 [Debug] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:09:04 #10179 [Debug] > │     match v0 with                                                            │

02:09:04 #10180 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:04 #10181 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:09:04 #10182 [Debug] > │         method3(v11, v12)                                                    │

02:09:04 #10183 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:04 #10184 [Debug] > │         v1                                                                   │

02:09:04 #10185 [Debug] > │ and method1 (v0 : (struct (float * float * float * float * float * float *   │

02:09:04 #10186 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:09:04 #10187 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:09:04 #10188 [Debug] > │     let v3 : float = 0.0                                                     │

02:09:04 #10189 [Debug] > │     let v4 : float = 1.0                                                     │

02:09:04 #10190 [Debug] > │     let v5 : float = 0.0                                                     │

02:09:04 #10191 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:04 #10192 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:04 #10193 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:04 #10194 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:04 #10195 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:04 #10196 [Debug] > │     let v11 : float = 0.0                                                    │

02:09:04 #10197 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:09:04 #10198 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:09:04 #10199 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:09:04 #10200 [Debug] > │     let v21 : bool = v17 <= 31557600.0                                       │

02:09:04 #10201 [Debug] > │     if v21 then                                                              │

02:09:04 #10202 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:09:04 #10203 [Debug] > │ v1)                                                                          │

02:09:04 #10204 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:09:04 #10205 [Debug] > │         method1(v0, v22, v23)                                                │

02:09:04 #10206 [Debug] > │     else                                                                     │

02:09:04 #10207 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:09:04 #10208 [Debug] > │         method3(v1, v25)                                                     │

02:09:04 #10209 [Debug] > │ and method4 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:04 #10210 [Debug] > │     match v0 with                                                            │

02:09:04 #10211 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:04 #10212 [Debug] > │         let v12 : UH1 = method4(v11, v1)                                     │

02:09:04 #10213 [Debug] > │         let v13 : float = v7 / 31557600.0                                    │

02:09:04 #10214 [Debug] > │         let v14 : float = v8 / 299792458.0                                   │

02:09:04 #10215 [Debug] > │         UH1_0(v13, v14, v12)                                                 │

02:09:04 #10216 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:04 #10217 [Debug] > │         v1                                                                   │

02:09:04 #10218 [Debug] > │ and method5 (v0 : UH1, v1 : UH2, v2 : UH2) : struct (UH2 * UH2) =            │

02:09:04 #10219 [Debug] > │     match v0 with                                                            │

02:09:04 #10220 [Debug] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

02:09:04 #10221 [Debug] > │         let v6 : UH2 = UH2_0(v3, v1)                                         │

02:09:04 #10222 [Debug] > │         let v7 : UH2 = UH2_0(v4, v2)                                         │

02:09:04 #10223 [Debug] > │         method5(v5, v6, v7)                                                  │

02:09:04 #10224 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:04 #10225 [Debug] > │         struct (v1, v2)                                                      │

02:09:04 #10226 [Debug] > │ and method6 (v0 : UH2, v1 : UH2) : UH2 =                                     │

02:09:04 #10227 [Debug] > │     match v0 with                                                            │

02:09:04 #10228 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:09:04 #10229 [Debug] > │         let v4 : UH2 = UH2_0(v2, v1)                                         │

02:09:04 #10230 [Debug] > │         method6(v3, v4)                                                      │

02:09:04 #10231 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:04 #10232 [Debug] > │         v1                                                                   │

02:09:04 #10233 [Debug] > │ and method7 (v0 : (struct (float * float * float * float * float * float *   │

02:09:04 #10234 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:09:04 #10235 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:09:04 #10236 [Debug] > │     let v3 : float = 0.0                                                     │

02:09:04 #10237 [Debug] > │     let v4 : float = 1.0                                                     │

02:09:04 #10238 [Debug] > │     let v5 : float = 0.0                                                     │

02:09:04 #10239 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:04 #10240 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:04 #10241 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:04 #10242 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:04 #10243 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:04 #10244 [Debug] > │     let v11 : float = 0.0                                                    │

02:09:04 #10245 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:09:04 #10246 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:09:04 #10247 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:09:04 #10248 [Debug] > │     let v21 : bool = v17 <= 31557600.0                                       │

02:09:04 #10249 [Debug] > │     if v21 then                                                              │

02:09:04 #10250 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:09:04 #10251 [Debug] > │ v1)                                                                          │

02:09:04 #10252 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:09:04 #10253 [Debug] > │         method7(v0, v22, v23)                                                │

02:09:04 #10254 [Debug] > │     else                                                                     │

02:09:04 #10255 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:09:04 #10256 [Debug] > │         method3(v1, v25)                                                     │

02:09:04 #10257 [Debug] > │ and method8 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:04 #10258 [Debug] > │     match v0 with                                                            │

02:09:04 #10259 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:04 #10260 [Debug] > │         let v12 : UH1 = method8(v11, v1)                                     │

02:09:04 #10261 [Debug] > │         let v13 : float = v7 / 31557600.0                                    │

02:09:04 #10262 [Debug] > │         let v14 : float = v8 / 299792458.0                                   │

02:09:04 #10263 [Debug] > │         UH1_0(v13, v14, v12)                                                 │

02:09:04 #10264 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:04 #10265 [Debug] > │         v1                                                                   │

02:09:04 #10266 [Debug] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

02:09:04 #10267 [Debug] > │     match v0 with                                                            │

02:09:04 #10268 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:09:04 #10269 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:09:04 #10270 [Debug] > │         method10(v3, v4)                                                     │

02:09:04 #10271 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:04 #10272 [Debug] > │         v1                                                                   │

02:09:04 #10273 [Debug] > │ and method11 (v0 : (float []), v1 : UH2, v2 : int32) : int32 =               │

02:09:04 #10274 [Debug] > │     match v1 with                                                            │

02:09:04 #10275 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:09:04 #10276 [Debug] > │         v0.[int v2] <- v3                                                    │

02:09:04 #10277 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:09:04 #10278 [Debug] > │         method11(v0, v4, v5)                                                 │

02:09:04 #10279 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:04 #10280 [Debug] > │         v2                                                                   │

02:09:04 #10281 [Debug] > │ and method9 (v0 : UH2) : (float []) =                                        │

02:09:04 #10282 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:04 #10283 [Debug] > │     let v2 : int32 = method10(v0, v1)                                        │

02:09:04 #10284 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:09:04 #10285 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:04 #10286 [Debug] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

02:09:04 #10287 [Debug] > │     v3                                                                       │

02:09:04 #10288 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:09:04 #10289 [Debug] > │ []) * (float [])) [])) =                                                     │

02:09:04 #10290 [Debug] > │     let v0 : ((struct (float * float * float * float * float * float * float │

02:09:04 #10291 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:04 #10292 [Debug] > │ float * float * float)) -> (struct (float * float * float * float * float *  │

02:09:04 #10293 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:09:04 #10294 [Debug] > │ float * float * float * float * float))) = closure0()                        │

02:09:04 #10295 [Debug] > │     let v1 : (struct (float * float * float * float * float * float * float  │

02:09:04 #10296 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:04 #10297 [Debug] > │ float * float * float)) = closure2()                                         │

02:09:04 #10298 [Debug] > │     let v2 : (struct (float * float * float * float * float * float * float  │

02:09:04 #10299 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:04 #10300 [Debug] > │ float * float * float)) = v0 v1                                              │

02:09:04 #10301 [Debug] > │     let v3 : (struct (float * float * float * float * float * float * float  │

02:09:04 #10302 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:04 #10303 [Debug] > │ float * float * float)) = closure3()                                         │

02:09:04 #10304 [Debug] > │     let v4 : (struct (float * float * float * float * float * float * float  │

02:09:04 #10305 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:04 #10306 [Debug] > │ float * float * float)) = v0 v3                                              │

02:09:04 #10307 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:09:04 #10308 [Debug] > │     let v6 : int32 = 0                                                       │

02:09:04 #10309 [Debug] > │     let v7 : UH0 = method1(v2, v5, v6)                                       │

02:09:04 #10310 [Debug] > │     let v8 : UH1 = UH1_1                                                     │

02:09:04 #10311 [Debug] > │     let v9 : UH1 = method4(v7, v8)                                           │

02:09:04 #10312 [Debug] > │     let v10 : UH2 = UH2_1                                                    │

02:09:04 #10313 [Debug] > │     let v11 : UH2 = UH2_1                                                    │

02:09:04 #10314 [Debug] > │     let struct (v12 : UH2, v13 : UH2) = method5(v9, v10, v11)                │

02:09:04 #10315 [Debug] > │     let v14 : UH2 = UH2_1                                                    │

02:09:04 #10316 [Debug] > │     let v15 : UH2 = method6(v12, v14)                                        │

02:09:04 #10317 [Debug] > │     let v16 : UH2 = UH2_1                                                    │

02:09:04 #10318 [Debug] > │     let v17 : UH2 = method6(v13, v16)                                        │

02:09:04 #10319 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:09:04 #10320 [Debug] > │     let v19 : int32 = 0                                                      │

02:09:04 #10321 [Debug] > │     let v20 : UH0 = method7(v4, v18, v19)                                    │

02:09:04 #10322 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:09:04 #10323 [Debug] > │     let v22 : UH1 = method8(v20, v21)                                        │

02:09:04 #10324 [Debug] > │     let v23 : UH2 = UH2_1                                                    │

02:09:04 #10325 [Debug] > │     let v24 : UH2 = UH2_1                                                    │

02:09:04 #10326 [Debug] > │     let struct (v25 : UH2, v26 : UH2) = method5(v22, v23, v24)               │

02:09:04 #10327 [Debug] > │     let v27 : UH2 = UH2_1                                                    │

02:09:04 #10328 [Debug] > │     let v28 : UH2 = method6(v25, v27)                                        │

02:09:04 #10329 [Debug] > │     let v29 : UH2 = UH2_1                                                    │

02:09:04 #10330 [Debug] > │     let v30 : UH2 = method6(v26, v29)                                        │

02:09:04 #10331 [Debug] > │     let v31 : (float []) = method9(v15)                                      │

02:09:04 #10332 [Debug] > │     let v32 : (float []) = method9(v17)                                      │

02:09:04 #10333 [Debug] > │     let v33 : (float []) = method9(v30)                                      │

02:09:04 #10334 [Debug] > │     let v34 : string = "newtonian"                                           │

02:09:04 #10335 [Debug] > │     let v35 : string = "relativistic"                                        │

02:09:04 #10336 [Debug] > │     let v36 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:09:04 #10337 [Debug] > │ (v34, v31, v32); struct (v35, v31, v33)|]                                    │

02:09:04 #10338 [Debug] > │     let v37 : string = "response to a constant force"                        │

02:09:04 #10339 [Debug] > │     let v38 : string = "time (years)"                                        │

02:09:04 #10340 [Debug] > │     let v39 : string = "velocity (multiples of c)"                           │

02:09:04 #10341 [Debug] > │     struct (v37, v38, v39, v36)                                              │

02:09:04 #10342 [Debug] > │ method0()                                                                    │

02:09:04 #10343 [Debug] > │                                                                              │

02:09:04 #10344 [Debug] > │                                                                              │

02:09:04 #10345 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:04 #10346 [Debug] >

02:09:04 #10347 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:04 #10348 [Debug] > inl uniform_lorentz_force v_e v_b (st : particle_state) =

02:09:04 #10349 [Debug] >     st.charge *^ (v_e ^+^ st.velocity >< v_b)

02:09:04 #10350 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0430-3035-3584a3571375\main.spi

02:09:04 #10351 [Debug] >

02:09:04 #10352 [Debug] > ╭─[ 212.51ms - stdout ]────────────────────────────────────────────────────────╮

02:09:04 #10353 [Debug] > │ ()                                                                           │

02:09:04 #10354 [Debug] > │                                                                              │

02:09:04 #10355 [Debug] > │                                                                              │

02:09:04 #10356 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:04 #10357 [Debug] >

02:09:04 #10358 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:04 #10359 [Debug] > // // test

02:09:04 #10360 [Debug] >

02:09:04 #10361 [Debug] > inl c : f64 = 299792458

02:09:04 #10362 [Debug] > inl ~method = runge_kutta_4 0.000000001

02:09:04 #10363 [Debug] > inl forces = [[ uniform_lorentz_force (zero_vec ()) (k_hat ()) ]]

02:09:04 #10364 [Debug] > inl (particle_state default_particle_state') = default_particle_state ()

02:09:04 #10365 [Debug] > inl initial_state =

02:09:04 #10366 [Debug] >     particle_state { default_particle_state' with

02:09:04 #10367 [Debug] >         mass = 0.000000000000000000000000001672621898

02:09:04 #10368 [Debug] >         charge = 0.0000000000000000001602176621

02:09:04 #10369 [Debug] >         velocity = 0.8 *^ (c *^ j_hat ())

02:09:04 #10370 [Debug] >     }

02:09:04 #10371 [Debug] >

02:09:04 #10372 [Debug] > inl newton_states = solver_ method (newton_second_ps forces) initial_state

02:09:04 #10373 [Debug] > inl relativity_states = solver_ method (relativity_ps forces) initial_state

02:09:04 #10374 [Debug] >

02:09:04 #10375 [Debug] > inl newton_x, newton_y =

02:09:04 #10376 [Debug] >     newton_states

02:09:04 #10377 [Debug] >     >> Some

02:09:04 #10378 [Debug] >     |> seq.take_while_ (fun (particle_state st) i => i < 100i32)

02:09:04 #10379 [Debug] >     |> listm.map (fun (particle_state st) => st.pos_vec.x, st.pos_vec.y)

02:09:04 #10380 [Debug] >     |> listm'.unzip

02:09:04 #10381 [Debug] >

02:09:04 #10382 [Debug] > inl relativity_x, relativity_y =

02:09:04 #10383 [Debug] >     relativity_states

02:09:04 #10384 [Debug] >     >> Some

02:09:04 #10385 [Debug] >     |> seq.take_while_ (fun (particle_state st) i => i < 165i32)

02:09:04 #10386 [Debug] >     |> listm.map (fun (particle_state st) => st.pos_vec.x, st.pos_vec.y)

02:09:04 #10387 [Debug] >     |> listm'.unzip

02:09:04 #10388 [Debug] >

02:09:04 #10389 [Debug] > inl newton_x : a i32 _ = newton_x |> listm.toArray

02:09:04 #10390 [Debug] > inl newton_y : a i32 _ = newton_y |> listm.toArray

02:09:04 #10391 [Debug] >

02:09:04 #10392 [Debug] > inl relativity_x : a i32 _ = relativity_x |> listm.toArray

02:09:04 #10393 [Debug] > inl relativity_y : a i32 _ = relativity_y |> listm.toArray

02:09:04 #10394 [Debug] >

02:09:04 #10395 [Debug] > "proton in a 1-t magnetic field",

02:09:04 #10396 [Debug] > "x (m)",

02:09:04 #10397 [Debug] > "y (m)",

02:09:04 #10398 [Debug] > ;[[

02:09:04 #10399 [Debug] >     "newtonian", newton_x, newton_y

02:09:04 #10400 [Debug] >     "relativistic", relativity_x, relativity_y

02:09:04 #10401 [Debug] > ]]

02:09:04 #10402 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0451-5169-595528873636\main.spi

02:09:05 #10403 [Debug] >

02:09:05 #10404 [Debug] > ╭─[ 524.10ms - return value ]──────────────────────────────────────────────────╮

02:09:05 #10405 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:09:05 #10406 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:05 #10407 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:05 #10408 [Debug] > │ stroke="none"/>                                                              │

02:09:05 #10409 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:05 #10410 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10411 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10412 [Debug] > │ proton in a 1-t magnetic field                                               │

02:09:05 #10413 [Debug] > │ </text>                                                                      │

02:09:05 #10414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="58" y1="424" x2="58" │

02:09:05 #10415 [Debug] > │ y2="75"/>                                                                    │

02:09:05 #10416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:05 #10417 [Debug] > │ y2="75"/>                                                                    │

02:09:05 #10418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="81" y1="424" x2="81" │

02:09:05 #10419 [Debug] > │ y2="75"/>                                                                    │

02:09:05 #10420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:05 #10421 [Debug] > │ y2="75"/>                                                                    │

02:09:05 #10422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="105" y1="424"        │

02:09:05 #10423 [Debug] > │ x2="105" y2="75"/>                                                           │

02:09:05 #10424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="117" y1="424"        │

02:09:05 #10425 [Debug] > │ x2="117" y2="75"/>                                                           │

02:09:05 #10426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:09:05 #10427 [Debug] > │ x2="129" y2="75"/>                                                           │

02:09:05 #10428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="141" y1="424"        │

02:09:05 #10429 [Debug] > │ x2="141" y2="75"/>                                                           │

02:09:05 #10430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:05 #10431 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:05 #10432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="165" y1="424"        │

02:09:05 #10433 [Debug] > │ x2="165" y2="75"/>                                                           │

02:09:05 #10434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:05 #10435 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:05 #10436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:09:05 #10437 [Debug] > │ x2="189" y2="75"/>                                                           │

02:09:05 #10438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="201" y1="424"        │

02:09:05 #10439 [Debug] > │ x2="201" y2="75"/>                                                           │

02:09:05 #10440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:05 #10441 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:05 #10442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="225" y1="424"        │

02:09:05 #10443 [Debug] > │ x2="225" y2="75"/>                                                           │

02:09:05 #10444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:05 #10445 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:05 #10446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:09:05 #10447 [Debug] > │ x2="249" y2="75"/>                                                           │

02:09:05 #10448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:05 #10449 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:05 #10450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="273" y1="424"        │

02:09:05 #10451 [Debug] > │ x2="273" y2="75"/>                                                           │

02:09:05 #10452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="285" y1="424"        │

02:09:05 #10453 [Debug] > │ x2="285" y2="75"/>                                                           │

02:09:05 #10454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:05 #10455 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:05 #10456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:09:05 #10457 [Debug] > │ x2="309" y2="75"/>                                                           │

02:09:05 #10458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:09:05 #10459 [Debug] > │ x2="321" y2="75"/>                                                           │

02:09:05 #10460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="333" y1="424"        │

02:09:05 #10461 [Debug] > │ x2="333" y2="75"/>                                                           │

02:09:05 #10462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:05 #10463 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:05 #10464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="356" y1="424"        │

02:09:05 #10465 [Debug] > │ x2="356" y2="75"/>                                                           │

02:09:05 #10466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:05 #10467 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:05 #10468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:05 #10469 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:05 #10470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:05 #10471 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:05 #10472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="404" y1="424"        │

02:09:05 #10473 [Debug] > │ x2="404" y2="75"/>                                                           │

02:09:05 #10474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="416" y1="424"        │

02:09:05 #10475 [Debug] > │ x2="416" y2="75"/>                                                           │

02:09:05 #10476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:05 #10477 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:05 #10478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:05 #10479 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:05 #10480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:09:05 #10481 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:05 #10482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:05 #10483 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:05 #10484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:05 #10485 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:05 #10486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="488" y1="424"        │

02:09:05 #10487 [Debug] > │ x2="488" y2="75"/>                                                           │

02:09:05 #10488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="500" y1="424"        │

02:09:05 #10489 [Debug] > │ x2="500" y2="75"/>                                                           │

02:09:05 #10490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:05 #10491 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:05 #10492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:05 #10493 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:05 #10494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:09:05 #10495 [Debug] > │ x2="536" y2="75"/>                                                           │

02:09:05 #10496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="548" y1="424"        │

02:09:05 #10497 [Debug] > │ x2="548" y2="75"/>                                                           │

02:09:05 #10498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:09:05 #10499 [Debug] > │ x2="560" y2="75"/>                                                           │

02:09:05 #10500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="408"         │

02:09:05 #10501 [Debug] > │ x2="584" y2="408"/>                                                          │

02:09:05 #10502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="388"         │

02:09:05 #10503 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:05 #10504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:05 #10505 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:05 #10506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:05 #10507 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:05 #10508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:09:05 #10509 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:05 #10510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:05 #10511 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:05 #10512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:05 #10513 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:05 #10514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:05 #10515 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:05 #10516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:05 #10517 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:05 #10518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="230"         │

02:09:05 #10519 [Debug] > │ x2="584" y2="230"/>                                                          │

02:09:05 #10520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:09:05 #10521 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:05 #10522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="191"         │

02:09:05 #10523 [Debug] > │ x2="584" y2="191"/>                                                          │

02:09:05 #10524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:09:05 #10525 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:05 #10526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:05 #10527 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:05 #10528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:09:05 #10529 [Debug] > │ x2="584" y2="132"/>                                                          │

02:09:05 #10530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:05 #10531 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:05 #10532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:05 #10533 [Debug] > │ y2="92"/>                                                                    │

02:09:05 #10534 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:05 #10535 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10536 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10537 [Debug] > │ x (m)                                                                        │

02:09:05 #10538 [Debug] > │ </text>                                                                      │

02:09:05 #10539 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:05 #10540 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10541 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:05 #10542 [Debug] > │ y (m)                                                                        │

02:09:05 #10543 [Debug] > │ </text>                                                                      │

02:09:05 #10544 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:05 #10545 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10546 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10547 [Debug] > │ x (m)                                                                        │

02:09:05 #10548 [Debug] > │ </text>                                                                      │

02:09:05 #10549 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10550 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10551 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:05 #10552 [Debug] > │ y (m)                                                                        │

02:09:05 #10553 [Debug] > │ </text>                                                                      │

02:09:05 #10554 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:05 #10555 [Debug] > │ y2="75"/>                                                                    │

02:09:05 #10556 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="99" y1="424" x2="99" │

02:09:05 #10557 [Debug] > │ y2="75"/>                                                                    │

02:09:05 #10558 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="129" y1="424"        │

02:09:05 #10559 [Debug] > │ x2="129" y2="75"/>                                                           │

02:09:05 #10560 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="159" y1="424"        │

02:09:05 #10561 [Debug] > │ x2="159" y2="75"/>                                                           │

02:09:05 #10562 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="189" y1="424"        │

02:09:05 #10563 [Debug] > │ x2="189" y2="75"/>                                                           │

02:09:05 #10564 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:09:05 #10565 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:05 #10566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="249" y1="424"        │

02:09:05 #10567 [Debug] > │ x2="249" y2="75"/>                                                           │

02:09:05 #10568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="279" y1="424"        │

02:09:05 #10569 [Debug] > │ x2="279" y2="75"/>                                                           │

02:09:05 #10570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="309" y1="424"        │

02:09:05 #10571 [Debug] > │ x2="309" y2="75"/>                                                           │

02:09:05 #10572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="339" y1="424"        │

02:09:05 #10573 [Debug] > │ x2="339" y2="75"/>                                                           │

02:09:05 #10574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="368" y1="424"        │

02:09:05 #10575 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:05 #10576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="398" y1="424"        │

02:09:05 #10577 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:05 #10578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="428" y1="424"        │

02:09:05 #10579 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:05 #10580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="458" y1="424"        │

02:09:05 #10581 [Debug] > │ x2="458" y2="75"/>                                                           │

02:09:05 #10582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="488" y1="424"        │

02:09:05 #10583 [Debug] > │ x2="488" y2="75"/>                                                           │

02:09:05 #10584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="518" y1="424"        │

02:09:05 #10585 [Debug] > │ x2="518" y2="75"/>                                                           │

02:09:05 #10586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="548" y1="424"        │

02:09:05 #10587 [Debug] > │ x2="548" y2="75"/>                                                           │

02:09:05 #10588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="578" y1="424"        │

02:09:05 #10589 [Debug] > │ x2="578" y2="75"/>                                                           │

02:09:05 #10590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="408"         │

02:09:05 #10591 [Debug] > │ x2="584" y2="408"/>                                                          │

02:09:05 #10592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="368"         │

02:09:05 #10593 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:05 #10594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="329"         │

02:09:05 #10595 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:05 #10596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:09:05 #10597 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:05 #10598 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:05 #10599 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:05 #10600 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="211"         │

02:09:05 #10601 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:05 #10602 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="171"         │

02:09:05 #10603 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:05 #10604 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="132"         │

02:09:05 #10605 [Debug] > │ x2="584" y2="132"/>                                                          │

02:09:05 #10606 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:05 #10607 [Debug] > │ y2="92"/>                                                                    │

02:09:05 #10608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10609 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:05 #10610 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:05 #10611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10612 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10613 [Debug] > │ 0.0                                                                          │

02:09:05 #10614 [Debug] > │ </text>                                                                      │

02:09:05 #10615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10616 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:05 #10617 [Debug] > │ <text x="99" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:05 #10618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10619 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10620 [Debug] > │ 0.5                                                                          │

02:09:05 #10621 [Debug] > │ </text>                                                                      │

02:09:05 #10622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10623 [Debug] > │ points="99,69 99,74 "/>                                                      │

02:09:05 #10624 [Debug] > │ <text x="129" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10626 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10627 [Debug] > │ 1.0                                                                          │

02:09:05 #10628 [Debug] > │ </text>                                                                      │

02:09:05 #10629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10630 [Debug] > │ points="129,69 129,74 "/>                                                    │

02:09:05 #10631 [Debug] > │ <text x="159" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10633 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10634 [Debug] > │ 1.5                                                                          │

02:09:05 #10635 [Debug] > │ </text>                                                                      │

02:09:05 #10636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10637 [Debug] > │ points="159,69 159,74 "/>                                                    │

02:09:05 #10638 [Debug] > │ <text x="189" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10641 [Debug] > │ 2.0                                                                          │

02:09:05 #10642 [Debug] > │ </text>                                                                      │

02:09:05 #10643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10644 [Debug] > │ points="189,69 189,74 "/>                                                    │

02:09:05 #10645 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10647 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10648 [Debug] > │ 2.5                                                                          │

02:09:05 #10649 [Debug] > │ </text>                                                                      │

02:09:05 #10650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10651 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:09:05 #10652 [Debug] > │ <text x="249" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10654 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10655 [Debug] > │ 3.0                                                                          │

02:09:05 #10656 [Debug] > │ </text>                                                                      │

02:09:05 #10657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10658 [Debug] > │ points="249,69 249,74 "/>                                                    │

02:09:05 #10659 [Debug] > │ <text x="279" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10661 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10662 [Debug] > │ 3.5                                                                          │

02:09:05 #10663 [Debug] > │ </text>                                                                      │

02:09:05 #10664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10665 [Debug] > │ points="279,69 279,74 "/>                                                    │

02:09:05 #10666 [Debug] > │ <text x="309" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10668 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10669 [Debug] > │ 4.0                                                                          │

02:09:05 #10670 [Debug] > │ </text>                                                                      │

02:09:05 #10671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10672 [Debug] > │ points="309,69 309,74 "/>                                                    │

02:09:05 #10673 [Debug] > │ <text x="339" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10675 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10676 [Debug] > │ 4.5                                                                          │

02:09:05 #10677 [Debug] > │ </text>                                                                      │

02:09:05 #10678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10679 [Debug] > │ points="339,69 339,74 "/>                                                    │

02:09:05 #10680 [Debug] > │ <text x="368" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10682 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10683 [Debug] > │ 5.0                                                                          │

02:09:05 #10684 [Debug] > │ </text>                                                                      │

02:09:05 #10685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10686 [Debug] > │ points="368,69 368,74 "/>                                                    │

02:09:05 #10687 [Debug] > │ <text x="398" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10689 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10690 [Debug] > │ 5.5                                                                          │

02:09:05 #10691 [Debug] > │ </text>                                                                      │

02:09:05 #10692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10693 [Debug] > │ points="398,69 398,74 "/>                                                    │

02:09:05 #10694 [Debug] > │ <text x="428" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10696 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10697 [Debug] > │ 6.0                                                                          │

02:09:05 #10698 [Debug] > │ </text>                                                                      │

02:09:05 #10699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10700 [Debug] > │ points="428,69 428,74 "/>                                                    │

02:09:05 #10701 [Debug] > │ <text x="458" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10703 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10704 [Debug] > │ 6.5                                                                          │

02:09:05 #10705 [Debug] > │ </text>                                                                      │

02:09:05 #10706 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10707 [Debug] > │ points="458,69 458,74 "/>                                                    │

02:09:05 #10708 [Debug] > │ <text x="488" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10709 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10710 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10711 [Debug] > │ 7.0                                                                          │

02:09:05 #10712 [Debug] > │ </text>                                                                      │

02:09:05 #10713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10714 [Debug] > │ points="488,69 488,74 "/>                                                    │

02:09:05 #10715 [Debug] > │ <text x="518" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10716 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10717 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10718 [Debug] > │ 7.5                                                                          │

02:09:05 #10719 [Debug] > │ </text>                                                                      │

02:09:05 #10720 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10721 [Debug] > │ points="518,69 518,74 "/>                                                    │

02:09:05 #10722 [Debug] > │ <text x="548" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10723 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10724 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10725 [Debug] > │ 8.0                                                                          │

02:09:05 #10726 [Debug] > │ </text>                                                                      │

02:09:05 #10727 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10728 [Debug] > │ points="548,69 548,74 "/>                                                    │

02:09:05 #10729 [Debug] > │ <text x="578" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:05 #10730 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10731 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10732 [Debug] > │ 8.5                                                                          │

02:09:05 #10733 [Debug] > │ </text>                                                                      │

02:09:05 #10734 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10735 [Debug] > │ points="578,69 578,74 "/>                                                    │

02:09:05 #10736 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10737 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:05 #10738 [Debug] > │ <text x="45" y="408" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10739 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10740 [Debug] > │ -4.0                                                                         │

02:09:05 #10741 [Debug] > │ </text>                                                                      │

02:09:05 #10742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10743 [Debug] > │ points="49,408 54,408 "/>                                                    │

02:09:05 #10744 [Debug] > │ <text x="45" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10745 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10746 [Debug] > │ -3.0                                                                         │

02:09:05 #10747 [Debug] > │ </text>                                                                      │

02:09:05 #10748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10749 [Debug] > │ points="49,368 54,368 "/>                                                    │

02:09:05 #10750 [Debug] > │ <text x="45" y="329" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10751 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10752 [Debug] > │ -2.0                                                                         │

02:09:05 #10753 [Debug] > │ </text>                                                                      │

02:09:05 #10754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10755 [Debug] > │ points="49,329 54,329 "/>                                                    │

02:09:05 #10756 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10757 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10758 [Debug] > │ -1.0                                                                         │

02:09:05 #10759 [Debug] > │ </text>                                                                      │

02:09:05 #10760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10761 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:09:05 #10762 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10763 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10764 [Debug] > │ 0.0                                                                          │

02:09:05 #10765 [Debug] > │ </text>                                                                      │

02:09:05 #10766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10767 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:05 #10768 [Debug] > │ <text x="45" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10769 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10770 [Debug] > │ 1.0                                                                          │

02:09:05 #10771 [Debug] > │ </text>                                                                      │

02:09:05 #10772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10773 [Debug] > │ points="49,211 54,211 "/>                                                    │

02:09:05 #10774 [Debug] > │ <text x="45" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10775 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10776 [Debug] > │ 2.0                                                                          │

02:09:05 #10777 [Debug] > │ </text>                                                                      │

02:09:05 #10778 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10779 [Debug] > │ points="49,171 54,171 "/>                                                    │

02:09:05 #10780 [Debug] > │ <text x="45" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10781 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10782 [Debug] > │ 3.0                                                                          │

02:09:05 #10783 [Debug] > │ </text>                                                                      │

02:09:05 #10784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10785 [Debug] > │ points="49,132 54,132 "/>                                                    │

02:09:05 #10786 [Debug] > │ <text x="45" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:05 #10787 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10788 [Debug] > │ 4.0                                                                          │

02:09:05 #10789 [Debug] > │ </text>                                                                      │

02:09:05 #10790 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10791 [Debug] > │ points="49,92 54,92 "/>                                                      │

02:09:05 #10792 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10793 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:05 #10794 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:05 #10795 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10796 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10797 [Debug] > │ 0.0                                                                          │

02:09:05 #10798 [Debug] > │ </text>                                                                      │

02:09:05 #10799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10800 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:05 #10801 [Debug] > │ <text x="99" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:05 #10802 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10803 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10804 [Debug] > │ 0.5                                                                          │

02:09:05 #10805 [Debug] > │ </text>                                                                      │

02:09:05 #10806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10807 [Debug] > │ points="99,425 99,430 "/>                                                    │

02:09:05 #10808 [Debug] > │ <text x="129" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10809 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10810 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10811 [Debug] > │ 1.0                                                                          │

02:09:05 #10812 [Debug] > │ </text>                                                                      │

02:09:05 #10813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10814 [Debug] > │ points="129,425 129,430 "/>                                                  │

02:09:05 #10815 [Debug] > │ <text x="159" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10816 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10817 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10818 [Debug] > │ 1.5                                                                          │

02:09:05 #10819 [Debug] > │ </text>                                                                      │

02:09:05 #10820 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10821 [Debug] > │ points="159,425 159,430 "/>                                                  │

02:09:05 #10822 [Debug] > │ <text x="189" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10823 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10824 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10825 [Debug] > │ 2.0                                                                          │

02:09:05 #10826 [Debug] > │ </text>                                                                      │

02:09:05 #10827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10828 [Debug] > │ points="189,425 189,430 "/>                                                  │

02:09:05 #10829 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10831 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10832 [Debug] > │ 2.5                                                                          │

02:09:05 #10833 [Debug] > │ </text>                                                                      │

02:09:05 #10834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10835 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:09:05 #10836 [Debug] > │ <text x="249" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10838 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10839 [Debug] > │ 3.0                                                                          │

02:09:05 #10840 [Debug] > │ </text>                                                                      │

02:09:05 #10841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10842 [Debug] > │ points="249,425 249,430 "/>                                                  │

02:09:05 #10843 [Debug] > │ <text x="279" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10845 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10846 [Debug] > │ 3.5                                                                          │

02:09:05 #10847 [Debug] > │ </text>                                                                      │

02:09:05 #10848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10849 [Debug] > │ points="279,425 279,430 "/>                                                  │

02:09:05 #10850 [Debug] > │ <text x="309" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10852 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10853 [Debug] > │ 4.0                                                                          │

02:09:05 #10854 [Debug] > │ </text>                                                                      │

02:09:05 #10855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10856 [Debug] > │ points="309,425 309,430 "/>                                                  │

02:09:05 #10857 [Debug] > │ <text x="339" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10859 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10860 [Debug] > │ 4.5                                                                          │

02:09:05 #10861 [Debug] > │ </text>                                                                      │

02:09:05 #10862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10863 [Debug] > │ points="339,425 339,430 "/>                                                  │

02:09:05 #10864 [Debug] > │ <text x="368" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10866 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10867 [Debug] > │ 5.0                                                                          │

02:09:05 #10868 [Debug] > │ </text>                                                                      │

02:09:05 #10869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10870 [Debug] > │ points="368,425 368,430 "/>                                                  │

02:09:05 #10871 [Debug] > │ <text x="398" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10872 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10873 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10874 [Debug] > │ 5.5                                                                          │

02:09:05 #10875 [Debug] > │ </text>                                                                      │

02:09:05 #10876 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10877 [Debug] > │ points="398,425 398,430 "/>                                                  │

02:09:05 #10878 [Debug] > │ <text x="428" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10880 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10881 [Debug] > │ 6.0                                                                          │

02:09:05 #10882 [Debug] > │ </text>                                                                      │

02:09:05 #10883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10884 [Debug] > │ points="428,425 428,430 "/>                                                  │

02:09:05 #10885 [Debug] > │ <text x="458" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10886 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10887 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10888 [Debug] > │ 6.5                                                                          │

02:09:05 #10889 [Debug] > │ </text>                                                                      │

02:09:05 #10890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10891 [Debug] > │ points="458,425 458,430 "/>                                                  │

02:09:05 #10892 [Debug] > │ <text x="488" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10893 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10894 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10895 [Debug] > │ 7.0                                                                          │

02:09:05 #10896 [Debug] > │ </text>                                                                      │

02:09:05 #10897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10898 [Debug] > │ points="488,425 488,430 "/>                                                  │

02:09:05 #10899 [Debug] > │ <text x="518" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10901 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10902 [Debug] > │ 7.5                                                                          │

02:09:05 #10903 [Debug] > │ </text>                                                                      │

02:09:05 #10904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10905 [Debug] > │ points="518,425 518,430 "/>                                                  │

02:09:05 #10906 [Debug] > │ <text x="548" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10907 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10908 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10909 [Debug] > │ 8.0                                                                          │

02:09:05 #10910 [Debug] > │ </text>                                                                      │

02:09:05 #10911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10912 [Debug] > │ points="548,425 548,430 "/>                                                  │

02:09:05 #10913 [Debug] > │ <text x="578" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:05 #10914 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10915 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10916 [Debug] > │ 8.5                                                                          │

02:09:05 #10917 [Debug] > │ </text>                                                                      │

02:09:05 #10918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10919 [Debug] > │ points="578,425 578,430 "/>                                                  │

02:09:05 #10920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10921 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:05 #10922 [Debug] > │ <text x="595" y="408" dy="0.5ex" text-anchor="start"                         │

02:09:05 #10923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10924 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10925 [Debug] > │ -4.0                                                                         │

02:09:05 #10926 [Debug] > │ </text>                                                                      │

02:09:05 #10927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10928 [Debug] > │ points="585,408 590,408 "/>                                                  │

02:09:05 #10929 [Debug] > │ <text x="595" y="368" dy="0.5ex" text-anchor="start"                         │

02:09:05 #10930 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10931 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10932 [Debug] > │ -3.0                                                                         │

02:09:05 #10933 [Debug] > │ </text>                                                                      │

02:09:05 #10934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10935 [Debug] > │ points="585,368 590,368 "/>                                                  │

02:09:05 #10936 [Debug] > │ <text x="595" y="329" dy="0.5ex" text-anchor="start"                         │

02:09:05 #10937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10938 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10939 [Debug] > │ -2.0                                                                         │

02:09:05 #10940 [Debug] > │ </text>                                                                      │

02:09:05 #10941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10942 [Debug] > │ points="585,329 590,329 "/>                                                  │

02:09:05 #10943 [Debug] > │ <text x="595" y="289" dy="0.5ex" text-anchor="start"                         │

02:09:05 #10944 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #10945 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #10946 [Debug] > │ -1.0                                                                         │

02:09:05 #10947 [Debug] > │ </text>                                                                      │

02:09:05 #10948 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10949 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:09:05 #10950 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:05 #10951 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10952 [Debug] > │ 0.0                                                                          │

02:09:05 #10953 [Debug] > │ </text>                                                                      │

02:09:05 #10954 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10955 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:05 #10956 [Debug] > │ <text x="617" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:05 #10957 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10958 [Debug] > │ 1.0                                                                          │

02:09:05 #10959 [Debug] > │ </text>                                                                      │

02:09:05 #10960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10961 [Debug] > │ points="585,211 590,211 "/>                                                  │

02:09:05 #10962 [Debug] > │ <text x="617" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:05 #10963 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10964 [Debug] > │ 2.0                                                                          │

02:09:05 #10965 [Debug] > │ </text>                                                                      │

02:09:05 #10966 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10967 [Debug] > │ points="585,171 590,171 "/>                                                  │

02:09:05 #10968 [Debug] > │ <text x="617" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:05 #10969 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10970 [Debug] > │ 3.0                                                                          │

02:09:05 #10971 [Debug] > │ </text>                                                                      │

02:09:05 #10972 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10973 [Debug] > │ points="585,132 590,132 "/>                                                  │

02:09:05 #10974 [Debug] > │ <text x="617" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:05 #10975 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:05 #10976 [Debug] > │ 4.0                                                                          │

02:09:05 #10977 [Debug] > │ </text>                                                                      │

02:09:05 #10978 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:05 #10979 [Debug] > │ points="585,92 590,92 "/>                                                    │

02:09:05 #10980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:05 #10981 [Debug] > │ points="69,250 70,241 72,231 76,222 80,213 86,204 94,196 102,189 111,181     │

02:09:05 #10982 [Debug] > │ 122,175 133,169 145,164 158,160 171,156 185,154 199,152 213,151 228,151      │

02:09:05 #10983 [Debug] > │ 242,152 256,154 270,157 283,161 296,165 308,170 319,176 329,183 338,190      │

02:09:05 #10984 [Debug] > │ 346,198 353,206 359,215 364,224 367,233 368,242 369,252 368,261 366,271      │

02:09:05 #10985 [Debug] > │ 362,280 357,289 351,297 343,305 335,313 325,320 314,326 303,332 291,337      │

02:09:05 #10986 [Debug] > │ 278,341 264,344 250,347 236,348 222,349 208,348 193,347 179,345 166,342      │

02:09:05 #10987 [Debug] > │ 153,338 140,334 128,329 117,322 107,316 98,308 90,300 84,292 78,283 74,274   │

02:09:05 #10988 [Debug] > │ 71,265 70,256 70,246 71,237 73,227 77,218 83,210 89,201 97,193 106,186       │

02:09:05 #10989 [Debug] > │ 115,179 126,173 138,167 150,162 163,158 177,155 191,153 205,152 219,151      │

02:09:05 #10990 [Debug] > │ 234,152 248,153 262,155 275,158 288,162 301,167 312,173 323,179 333,186      │

02:09:05 #10991 [Debug] > │ 342,193 349,201 356,210 361,218 365,228 368,237 369,246 369,256 "/>          │

02:09:05 #10992 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:05 #10993 [Debug] > │ points="69,250 70,241 71,231 73,222 76,212 80,203 84,194 89,186 95,177       │

02:09:05 #10994 [Debug] > │ 102,169 110,160 118,153 127,145 136,138 146,131 157,125 168,119 179,114      │

02:09:05 #10995 [Debug] > │ 192,108 204,104 217,100 230,96 244,93 258,90 272,88 286,87 300,86 314,85     │

02:09:05 #10996 [Debug] > │ 329,85 343,86 357,87 371,89 385,91 399,94 412,97 425,101 438,105 451,110     │

02:09:05 #10997 [Debug] > │ 463,115 474,121 485,127 495,134 505,140 515,148 523,155 531,163 538,171      │

02:09:05 #10998 [Debug] > │ 545,180 550,188 555,197 560,206 563,216 566,225 567,234 568,244 568,253      │

02:09:05 #10999 [Debug] > │ 568,263 566,272 564,281 561,291 557,300 552,309 547,317 540,326 533,334      │

02:09:05 #11000 [Debug] > │ 526,342 517,350 508,357 499,364 488,371 478,377 466,383 455,388 442,393      │

02:09:05 #11001 [Debug] > │ 430,398 417,402 403,405 390,408 376,410 362,412 348,414 333,414 319,415      │

02:09:05 #11002 [Debug] > │ 305,414 290,414 276,412 262,410 248,408 235,405 221,401 208,397 196,393      │

02:09:05 #11003 [Debug] > │ 183,388 171,383 160,377 149,371 139,364 129,357 120,350 112,342 104,334      │

02:09:05 #11004 [Debug] > │ 97,326 91,317 86,309 81,300 77,290 74,281 72,272 70,263 70,253 70,244 71,234 │

02:09:05 #11005 [Debug] > │ 72,225 75,215 78,206 83,197 88,188 93,180 100,171 107,163 115,155 124,148    │

02:09:05 #11006 [Debug] > │ 133,140 143,133 153,127 164,121 176,115 188,110 200,105 213,101 226,97       │

02:09:05 #11007 [Debug] > │ 239,94 253,91 267,89 281,87 295,86 310,85 324,85 338,86 353,87 367,88 381,90 │

02:09:05 #11008 [Debug] > │ 394,93 408,96 421,100 434,104 447,109 459,114 470,119 482,125 492,131        │

02:09:05 #11009 [Debug] > │ 502,138 512,145 520,153 529,161 536,169 543,177 549,186 554,194 558,203      │

02:09:05 #11010 [Debug] > │ 562,213 565,222 567,231 568,241 569,250 "/>                                  │

02:09:05 #11011 [Debug] > │ <rect x="464" y="227" width="116" height="45" opacity="1" fill="none"        │

02:09:05 #11012 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:05 #11013 [Debug] > │ <text x="504" y="237" dy="0.76em" text-anchor="start"                        │

02:09:05 #11014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #11015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #11016 [Debug] > │ newtonian                                                                    │

02:09:05 #11017 [Debug] > │ </text>                                                                      │

02:09:05 #11018 [Debug] > │ <text x="504" y="252" dy="0.76em" text-anchor="start"                        │

02:09:05 #11019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:05 #11020 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:05 #11021 [Debug] > │ relativistic                                                                 │

02:09:05 #11022 [Debug] > │ </text>                                                                      │

02:09:05 #11023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:05 #11024 [Debug] > │ points="474,242 494,242 "/>                                                  │

02:09:05 #11025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:05 #11026 [Debug] > │ points="474,257 494,257 "/>                                                  │

02:09:05 #11027 [Debug] > │ </svg>                                                                       │

02:09:05 #11028 [Debug] > │                                                                              │

02:09:05 #11029 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:05 #11030 [Debug] >

02:09:05 #11031 [Debug] > ╭─[ 751.90ms - stdout ]────────────────────────────────────────────────────────╮

02:09:05 #11032 [Debug] > │ type UH0 =                                                                   │

02:09:05 #11033 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:09:05 #11034 [Debug] > │ * float * UH0                                                                │

02:09:05 #11035 [Debug] > │     | UH0_1                                                                  │

02:09:05 #11036 [Debug] > │ and UH1 =                                                                    │

02:09:05 #11037 [Debug] > │     | UH1_0 of float * float * UH1                                           │

02:09:05 #11038 [Debug] > │     | UH1_1                                                                  │

02:09:05 #11039 [Debug] > │ and UH2 =                                                                    │

02:09:05 #11040 [Debug] > │     | UH2_0 of float * UH2                                                   │

02:09:05 #11041 [Debug] > │     | UH2_1                                                                  │

02:09:05 #11042 [Debug] > │ let rec closure1 (v0 : (struct (float * float * float * float * float *      │

02:09:05 #11043 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:09:05 #11044 [Debug] > │ float * float * float * float * float))) struct (v1 : float, v2 : float, v3  │

02:09:05 #11045 [Debug] > │ : float, v4 : float, v5 : float, v6 : float, v7 : float, v8 : float, v9 :    │

02:09:05 #11046 [Debug] > │ float) : struct (float * float * float * float * float * float * float *     │

02:09:05 #11047 [Debug] > │ float * float) =                                                             │

02:09:05 #11048 [Debug] > │     let struct (v10 : float, v11 : float, v12 : float, v13 : float, v14 :    │

02:09:05 #11049 [Debug] > │ float, v15 : float, v16 : float, v17 : float, v18 : float) = v0 struct (v1,  │

02:09:05 #11050 [Debug] > │ v2, v3, v4, v5, v6, v7, v8, v9)                                              │

02:09:05 #11051 [Debug] > │     let v19 : float = v15 * 5E-10                                            │

02:09:05 #11052 [Debug] > │     let v20 : float = v6 + v19                                               │

02:09:05 #11053 [Debug] > │     let v21 : float = 5E-10 * v12                                            │

02:09:05 #11054 [Debug] > │     let v22 : float = 5E-10 * v13                                            │

02:09:05 #11055 [Debug] > │     let v23 : float = 5E-10 * v14                                            │

02:09:05 #11056 [Debug] > │     let v24 : float = v3 + v21                                               │

02:09:05 #11057 [Debug] > │     let v25 : float = v4 + v22                                               │

02:09:05 #11058 [Debug] > │     let v26 : float = v5 + v23                                               │

02:09:05 #11059 [Debug] > │     let v27 : float = 5E-10 * v16                                            │

02:09:05 #11060 [Debug] > │     let v28 : float = 5E-10 * v17                                            │

02:09:05 #11061 [Debug] > │     let v29 : float = 5E-10 * v18                                            │

02:09:05 #11062 [Debug] > │     let v30 : float = v7 + v27                                               │

02:09:05 #11063 [Debug] > │     let v31 : float = v8 + v28                                               │

02:09:05 #11064 [Debug] > │     let v32 : float = v9 + v29                                               │

02:09:05 #11065 [Debug] > │     let struct (v33 : float, v34 : float, v35 : float, v36 : float, v37 :    │

02:09:05 #11066 [Debug] > │ float, v38 : float, v39 : float, v40 : float, v41 : float) = v0 struct (v1,  │

02:09:05 #11067 [Debug] > │ v2, v24, v25, v26, v20, v30, v31, v32)                                       │

02:09:05 #11068 [Debug] > │     let v42 : float = v38 * 5E-10                                            │

02:09:05 #11069 [Debug] > │     let v43 : float = v6 + v42                                               │

02:09:05 #11070 [Debug] > │     let v44 : float = 5E-10 * v35                                            │

02:09:05 #11071 [Debug] > │     let v45 : float = 5E-10 * v36                                            │

02:09:05 #11072 [Debug] > │     let v46 : float = 5E-10 * v37                                            │

02:09:05 #11073 [Debug] > │     let v47 : float = v3 + v44                                               │

02:09:05 #11074 [Debug] > │     let v48 : float = v4 + v45                                               │

02:09:05 #11075 [Debug] > │     let v49 : float = v5 + v46                                               │

02:09:05 #11076 [Debug] > │     let v50 : float = 5E-10 * v39                                            │

02:09:05 #11077 [Debug] > │     let v51 : float = 5E-10 * v40                                            │

02:09:05 #11078 [Debug] > │     let v52 : float = 5E-10 * v41                                            │

02:09:05 #11079 [Debug] > │     let v53 : float = v7 + v50                                               │

02:09:05 #11080 [Debug] > │     let v54 : float = v8 + v51                                               │

02:09:05 #11081 [Debug] > │     let v55 : float = v9 + v52                                               │

02:09:05 #11082 [Debug] > │     let struct (v56 : float, v57 : float, v58 : float, v59 : float, v60 :    │

02:09:05 #11083 [Debug] > │ float, v61 : float, v62 : float, v63 : float, v64 : float) = v0 struct (v1,  │

02:09:05 #11084 [Debug] > │ v2, v47, v48, v49, v43, v53, v54, v55)                                       │

02:09:05 #11085 [Debug] > │     let v65 : float = v61 * 1E-09                                            │

02:09:05 #11086 [Debug] > │     let v66 : float = v6 + v65                                               │

02:09:05 #11087 [Debug] > │     let v67 : float = 1E-09 * v58                                            │

02:09:05 #11088 [Debug] > │     let v68 : float = 1E-09 * v59                                            │

02:09:05 #11089 [Debug] > │     let v69 : float = 1E-09 * v60                                            │

02:09:05 #11090 [Debug] > │     let v70 : float = v3 + v67                                               │

02:09:05 #11091 [Debug] > │     let v71 : float = v4 + v68                                               │

02:09:05 #11092 [Debug] > │     let v72 : float = v5 + v69                                               │

02:09:05 #11093 [Debug] > │     let v73 : float = 1E-09 * v62                                            │

02:09:05 #11094 [Debug] > │     let v74 : float = 1E-09 * v63                                            │

02:09:05 #11095 [Debug] > │     let v75 : float = 1E-09 * v64                                            │

02:09:05 #11096 [Debug] > │     let v76 : float = v7 + v73                                               │

02:09:05 #11097 [Debug] > │     let v77 : float = v8 + v74                                               │

02:09:05 #11098 [Debug] > │     let v78 : float = v9 + v75                                               │

02:09:05 #11099 [Debug] > │     let struct (v79 : float, v80 : float, v81 : float, v82 : float, v83 :    │

02:09:05 #11100 [Debug] > │ float, v84 : float, v85 : float, v86 : float, v87 : float) = v0 struct (v1,  │

02:09:05 #11101 [Debug] > │ v2, v70, v71, v72, v66, v76, v77, v78)                                       │

02:09:05 #11102 [Debug] > │     let v88 : float = v10 + v33                                              │

02:09:05 #11103 [Debug] > │     let v89 : float = v11 + v34                                              │

02:09:05 #11104 [Debug] > │     let v90 : float = v15 + v38                                              │

02:09:05 #11105 [Debug] > │     let v91 : float = v12 + v35                                              │

02:09:05 #11106 [Debug] > │     let v92 : float = v13 + v36                                              │

02:09:05 #11107 [Debug] > │     let v93 : float = v14 + v37                                              │

02:09:05 #11108 [Debug] > │     let v94 : float = v16 + v39                                              │

02:09:05 #11109 [Debug] > │     let v95 : float = v17 + v40                                              │

02:09:05 #11110 [Debug] > │     let v96 : float = v18 + v41                                              │

02:09:05 #11111 [Debug] > │     let v97 : float = v88 + v33                                              │

02:09:05 #11112 [Debug] > │     let v98 : float = v89 + v34                                              │

02:09:05 #11113 [Debug] > │     let v99 : float = v90 + v38                                              │

02:09:05 #11114 [Debug] > │     let v100 : float = v91 + v35                                             │

02:09:05 #11115 [Debug] > │     let v101 : float = v92 + v36                                             │

02:09:05 #11116 [Debug] > │     let v102 : float = v93 + v37                                             │

02:09:05 #11117 [Debug] > │     let v103 : float = v94 + v39                                             │

02:09:05 #11118 [Debug] > │     let v104 : float = v95 + v40                                             │

02:09:05 #11119 [Debug] > │     let v105 : float = v96 + v41                                             │

02:09:05 #11120 [Debug] > │     let v106 : float = v97 + v56                                             │

02:09:05 #11121 [Debug] > │     let v107 : float = v98 + v57                                             │

02:09:05 #11122 [Debug] > │     let v108 : float = v99 + v61                                             │

02:09:05 #11123 [Debug] > │     let v109 : float = v100 + v58                                            │

02:09:05 #11124 [Debug] > │     let v110 : float = v101 + v59                                            │

02:09:05 #11125 [Debug] > │     let v111 : float = v102 + v60                                            │

02:09:05 #11126 [Debug] > │     let v112 : float = v103 + v62                                            │

02:09:05 #11127 [Debug] > │     let v113 : float = v104 + v63                                            │

02:09:05 #11128 [Debug] > │     let v114 : float = v105 + v64                                            │

02:09:05 #11129 [Debug] > │     let v115 : float = v106 + v56                                            │

02:09:05 #11130 [Debug] > │     let v116 : float = v107 + v57                                            │

02:09:05 #11131 [Debug] > │     let v117 : float = v108 + v61                                            │

02:09:05 #11132 [Debug] > │     let v118 : float = v109 + v58                                            │

02:09:05 #11133 [Debug] > │     let v119 : float = v110 + v59                                            │

02:09:05 #11134 [Debug] > │     let v120 : float = v111 + v60                                            │

02:09:05 #11135 [Debug] > │     let v121 : float = v112 + v62                                            │

02:09:05 #11136 [Debug] > │     let v122 : float = v113 + v63                                            │

02:09:05 #11137 [Debug] > │     let v123 : float = v114 + v64                                            │

02:09:05 #11138 [Debug] > │     let v124 : float = v115 + v79                                            │

02:09:05 #11139 [Debug] > │     let v125 : float = v116 + v80                                            │

02:09:05 #11140 [Debug] > │     let v126 : float = v117 + v84                                            │

02:09:05 #11141 [Debug] > │     let v127 : float = v118 + v81                                            │

02:09:05 #11142 [Debug] > │     let v128 : float = v119 + v82                                            │

02:09:05 #11143 [Debug] > │     let v129 : float = v120 + v83                                            │

02:09:05 #11144 [Debug] > │     let v130 : float = v121 + v85                                            │

02:09:05 #11145 [Debug] > │     let v131 : float = v122 + v86                                            │

02:09:05 #11146 [Debug] > │     let v132 : float = v123 + v87                                            │

02:09:05 #11147 [Debug] > │     let v133 : float = v126 * 1.6666666666666669E-10                         │

02:09:05 #11148 [Debug] > │     let v134 : float = v6 + v133                                             │

02:09:05 #11149 [Debug] > │     let v135 : float = 1.6666666666666669E-10 * v127                         │

02:09:05 #11150 [Debug] > │     let v136 : float = 1.6666666666666669E-10 * v128                         │

02:09:05 #11151 [Debug] > │     let v137 : float = 1.6666666666666669E-10 * v129                         │

02:09:05 #11152 [Debug] > │     let v138 : float = v3 + v135                                             │

02:09:05 #11153 [Debug] > │     let v139 : float = v4 + v136                                             │

02:09:05 #11154 [Debug] > │     let v140 : float = v5 + v137                                             │

02:09:05 #11155 [Debug] > │     let v141 : float = 1.6666666666666669E-10 * v130                         │

02:09:05 #11156 [Debug] > │     let v142 : float = 1.6666666666666669E-10 * v131                         │

02:09:05 #11157 [Debug] > │     let v143 : float = 1.6666666666666669E-10 * v132                         │

02:09:05 #11158 [Debug] > │     let v144 : float = v7 + v141                                             │

02:09:05 #11159 [Debug] > │     let v145 : float = v8 + v142                                             │

02:09:05 #11160 [Debug] > │     let v146 : float = v9 + v143                                             │

02:09:05 #11161 [Debug] > │     struct (v1, v2, v138, v139, v140, v134, v144, v145, v146)                │

02:09:05 #11162 [Debug] > │ and closure0 () (v0 : (struct (float * float * float * float * float * float │

02:09:05 #11163 [Debug] > │ * float * float * float) -> struct (float * float * float * float * float *  │

02:09:05 #11164 [Debug] > │ float * float * float * float))) : (struct (float * float * float * float *  │

02:09:05 #11165 [Debug] > │ float * float * float * float * float) -> struct (float * float * float *    │

02:09:05 #11166 [Debug] > │ float * float * float * float * float * float)) =                            │

02:09:05 #11167 [Debug] > │     closure1(v0)                                                             │

02:09:05 #11168 [Debug] > │ and closure2 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:09:05 #11169 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:09:05 #11170 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:09:05 #11171 [Debug] > │     let v9 : float = v8 * 0.0                                                │

02:09:05 #11172 [Debug] > │     let v10 : float = v7 - v9                                                │

02:09:05 #11173 [Debug] > │     let v11 : float = v9 - v6                                                │

02:09:05 #11174 [Debug] > │     let v12 : float = v6 * 0.0                                               │

02:09:05 #11175 [Debug] > │     let v13 : float = v7 * 0.0                                               │

02:09:05 #11176 [Debug] > │     let v14 : float = v12 - v13                                              │

02:09:05 #11177 [Debug] > │     let v15 : float = v0 * v10                                               │

02:09:05 #11178 [Debug] > │     let v16 : float = v0 * v11                                               │

02:09:05 #11179 [Debug] > │     let v17 : float = v0 * v14                                               │

02:09:05 #11180 [Debug] > │     let v18 : float = v15 / v1                                               │

02:09:05 #11181 [Debug] > │     let v19 : float = v16 / v1                                               │

02:09:05 #11182 [Debug] > │     let v20 : float = v17 / v1                                               │

02:09:05 #11183 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v18, v19, v20)                        │

02:09:05 #11184 [Debug] > │ and closure3 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:09:05 #11185 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:09:05 #11186 [Debug] > │ float * float * float * float * float * float * float * float) =             │

02:09:05 #11187 [Debug] > │     let v9 : float = v8 * 0.0                                                │

02:09:05 #11188 [Debug] > │     let v10 : float = v7 - v9                                                │

02:09:05 #11189 [Debug] > │     let v11 : float = v9 - v6                                                │

02:09:05 #11190 [Debug] > │     let v12 : float = v6 * 0.0                                               │

02:09:05 #11191 [Debug] > │     let v13 : float = v7 * 0.0                                               │

02:09:05 #11192 [Debug] > │     let v14 : float = v12 - v13                                              │

02:09:05 #11193 [Debug] > │     let v15 : float = v0 * v10                                               │

02:09:05 #11194 [Debug] > │     let v16 : float = v0 * v11                                               │

02:09:05 #11195 [Debug] > │     let v17 : float = v0 * v14                                               │

02:09:05 #11196 [Debug] > │     let v18 : float = v6 / 299792458.0                                       │

02:09:05 #11197 [Debug] > │     let v19 : float = v7 / 299792458.0                                       │

02:09:05 #11198 [Debug] > │     let v20 : float = v8 / 299792458.0                                       │

02:09:05 #11199 [Debug] > │     let v21 : float = v18 * v18                                              │

02:09:05 #11200 [Debug] > │     let v22 : float = v19 * v19                                              │

02:09:05 #11201 [Debug] > │     let v23 : float = v21 + v22                                              │

02:09:05 #11202 [Debug] > │     let v24 : float = v20 * v20                                              │

02:09:05 #11203 [Debug] > │     let v25 : float = v23 + v24                                              │

02:09:05 #11204 [Debug] > │     let v26 : float = 1.0 - v25                                              │

02:09:05 #11205 [Debug] > │     let v27 : float = sqrt v26                                               │

02:09:05 #11206 [Debug] > │     let v28 : float = v15 * v18                                              │

02:09:05 #11207 [Debug] > │     let v29 : float = v16 * v19                                              │

02:09:05 #11208 [Debug] > │     let v30 : float = v28 + v29                                              │

02:09:05 #11209 [Debug] > │     let v31 : float = v17 * v20                                              │

02:09:05 #11210 [Debug] > │     let v32 : float = v30 + v31                                              │

02:09:05 #11211 [Debug] > │     let v33 : float = v32 * v18                                              │

02:09:05 #11212 [Debug] > │     let v34 : float = v32 * v19                                              │

02:09:05 #11213 [Debug] > │     let v35 : float = v32 * v20                                              │

02:09:05 #11214 [Debug] > │     let v36 : float = -1.0 * v33                                             │

02:09:05 #11215 [Debug] > │     let v37 : float = -1.0 * v34                                             │

02:09:05 #11216 [Debug] > │     let v38 : float = -1.0 * v35                                             │

02:09:05 #11217 [Debug] > │     let v39 : float = v15 + v36                                              │

02:09:05 #11218 [Debug] > │     let v40 : float = v16 + v37                                              │

02:09:05 #11219 [Debug] > │     let v41 : float = v17 + v38                                              │

02:09:05 #11220 [Debug] > │     let v42 : float = v27 * v39                                              │

02:09:05 #11221 [Debug] > │     let v43 : float = v27 * v40                                              │

02:09:05 #11222 [Debug] > │     let v44 : float = v27 * v41                                              │

02:09:05 #11223 [Debug] > │     let v45 : float = v42 / v1                                               │

02:09:05 #11224 [Debug] > │     let v46 : float = v43 / v1                                               │

02:09:05 #11225 [Debug] > │     let v47 : float = v44 / v1                                               │

02:09:05 #11226 [Debug] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v45, v46, v47)                        │

02:09:05 #11227 [Debug] > │ and method2 (v0 : (struct (float * float * float * float * float * float *   │

02:09:05 #11228 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:09:05 #11229 [Debug] > │ float * float * float * float)), v1 : float, v2 : float, v3 : float, v4 :    │

02:09:05 #11230 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float, v9 : float, v10 :     │

02:09:05 #11231 [Debug] > │ int32) : struct (float * float * float * float * float * float * float *     │

02:09:05 #11232 [Debug] > │ float * float) =                                                             │

02:09:05 #11233 [Debug] > │     let v11 : bool = v10 <= 0                                                │

02:09:05 #11234 [Debug] > │     if v11 then                                                              │

02:09:05 #11235 [Debug] > │         struct (v1, v2, v3, v4, v5, v6, v7, v8, v9)                          │

02:09:05 #11236 [Debug] > │     else                                                                     │

02:09:05 #11237 [Debug] > │         let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:09:05 #11238 [Debug] > │ : float, v17 : float, v18 : float, v19 : float, v20 : float) = v0 struct     │

02:09:05 #11239 [Debug] > │ (v1, v2, v3, v4, v5, v6, v7, v8, v9)                                         │

02:09:05 #11240 [Debug] > │         let v21 : int32 = v10 - 1                                            │

02:09:05 #11241 [Debug] > │         method2(v0, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)        │

02:09:05 #11242 [Debug] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

02:09:05 #11243 [Debug] > │     match v0 with                                                            │

02:09:05 #11244 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:05 #11245 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:09:05 #11246 [Debug] > │         method3(v11, v12)                                                    │

02:09:05 #11247 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:05 #11248 [Debug] > │         v1                                                                   │

02:09:05 #11249 [Debug] > │ and method1 (v0 : (struct (float * float * float * float * float * float *   │

02:09:05 #11250 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:09:05 #11251 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:09:05 #11252 [Debug] > │     let v3 : float = 1.602176621E-19                                         │

02:09:05 #11253 [Debug] > │     let v4 : float = 1.672621898E-27                                         │

02:09:05 #11254 [Debug] > │     let v5 : float = 0.0                                                     │

02:09:05 #11255 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:05 #11256 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:05 #11257 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:05 #11258 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:05 #11259 [Debug] > │     let v10 : float = 239833966.4                                            │

02:09:05 #11260 [Debug] > │     let v11 : float = 0.0                                                    │

02:09:05 #11261 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:09:05 #11262 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:09:05 #11263 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:09:05 #11264 [Debug] > │     let v21 : bool = v2 < 100                                                │

02:09:05 #11265 [Debug] > │     if v21 then                                                              │

02:09:05 #11266 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:09:05 #11267 [Debug] > │ v1)                                                                          │

02:09:05 #11268 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:09:05 #11269 [Debug] > │         method1(v0, v22, v23)                                                │

02:09:05 #11270 [Debug] > │     else                                                                     │

02:09:05 #11271 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:09:05 #11272 [Debug] > │         method3(v1, v25)                                                     │

02:09:05 #11273 [Debug] > │ and method4 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:05 #11274 [Debug] > │     match v0 with                                                            │

02:09:05 #11275 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:05 #11276 [Debug] > │         let v12 : UH1 = method4(v11, v1)                                     │

02:09:05 #11277 [Debug] > │         UH1_0(v4, v5, v12)                                                   │

02:09:05 #11278 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:05 #11279 [Debug] > │         v1                                                                   │

02:09:05 #11280 [Debug] > │ and method5 (v0 : UH1, v1 : UH2, v2 : UH2) : struct (UH2 * UH2) =            │

02:09:05 #11281 [Debug] > │     match v0 with                                                            │

02:09:05 #11282 [Debug] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

02:09:05 #11283 [Debug] > │         let v6 : UH2 = UH2_0(v3, v1)                                         │

02:09:05 #11284 [Debug] > │         let v7 : UH2 = UH2_0(v4, v2)                                         │

02:09:05 #11285 [Debug] > │         method5(v5, v6, v7)                                                  │

02:09:05 #11286 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:05 #11287 [Debug] > │         struct (v1, v2)                                                      │

02:09:05 #11288 [Debug] > │ and method6 (v0 : UH2, v1 : UH2) : UH2 =                                     │

02:09:05 #11289 [Debug] > │     match v0 with                                                            │

02:09:05 #11290 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:09:05 #11291 [Debug] > │         let v4 : UH2 = UH2_0(v2, v1)                                         │

02:09:05 #11292 [Debug] > │         method6(v3, v4)                                                      │

02:09:05 #11293 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:05 #11294 [Debug] > │         v1                                                                   │

02:09:05 #11295 [Debug] > │ and method7 (v0 : (struct (float * float * float * float * float * float *   │

02:09:05 #11296 [Debug] > │ float * float * float) -> struct (float * float * float * float * float *    │

02:09:05 #11297 [Debug] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

02:09:05 #11298 [Debug] > │     let v3 : float = 1.602176621E-19                                         │

02:09:05 #11299 [Debug] > │     let v4 : float = 1.672621898E-27                                         │

02:09:05 #11300 [Debug] > │     let v5 : float = 0.0                                                     │

02:09:05 #11301 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:05 #11302 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:05 #11303 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:05 #11304 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:05 #11305 [Debug] > │     let v10 : float = 239833966.4                                            │

02:09:05 #11306 [Debug] > │     let v11 : float = 0.0                                                    │

02:09:05 #11307 [Debug] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

02:09:05 #11308 [Debug] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

02:09:05 #11309 [Debug] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

02:09:05 #11310 [Debug] > │     let v21 : bool = v2 < 165                                                │

02:09:05 #11311 [Debug] > │     if v21 then                                                              │

02:09:05 #11312 [Debug] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

02:09:05 #11313 [Debug] > │ v1)                                                                          │

02:09:05 #11314 [Debug] > │         let v23 : int32 = v2 + 1                                             │

02:09:05 #11315 [Debug] > │         method7(v0, v22, v23)                                                │

02:09:05 #11316 [Debug] > │     else                                                                     │

02:09:05 #11317 [Debug] > │         let v25 : UH0 = UH0_1                                                │

02:09:05 #11318 [Debug] > │         method3(v1, v25)                                                     │

02:09:05 #11319 [Debug] > │ and method8 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:05 #11320 [Debug] > │     match v0 with                                                            │

02:09:05 #11321 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:05 #11322 [Debug] > │         let v12 : UH1 = method8(v11, v1)                                     │

02:09:05 #11323 [Debug] > │         UH1_0(v4, v5, v12)                                                   │

02:09:05 #11324 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:05 #11325 [Debug] > │         v1                                                                   │

02:09:05 #11326 [Debug] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

02:09:05 #11327 [Debug] > │     match v0 with                                                            │

02:09:05 #11328 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:09:05 #11329 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:09:05 #11330 [Debug] > │         method10(v3, v4)                                                     │

02:09:05 #11331 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:05 #11332 [Debug] > │         v1                                                                   │

02:09:05 #11333 [Debug] > │ and method11 (v0 : (float []), v1 : UH2, v2 : int32) : int32 =               │

02:09:05 #11334 [Debug] > │     match v1 with                                                            │

02:09:05 #11335 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:09:05 #11336 [Debug] > │         v0.[int v2] <- v3                                                    │

02:09:05 #11337 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:09:05 #11338 [Debug] > │         method11(v0, v4, v5)                                                 │

02:09:05 #11339 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:05 #11340 [Debug] > │         v2                                                                   │

02:09:05 #11341 [Debug] > │ and method9 (v0 : UH2) : (float []) =                                        │

02:09:05 #11342 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:05 #11343 [Debug] > │     let v2 : int32 = method10(v0, v1)                                        │

02:09:05 #11344 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:09:05 #11345 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:05 #11346 [Debug] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

02:09:05 #11347 [Debug] > │     v3                                                                       │

02:09:05 #11348 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:09:05 #11349 [Debug] > │ []) * (float [])) [])) =                                                     │

02:09:05 #11350 [Debug] > │     let v0 : ((struct (float * float * float * float * float * float * float │

02:09:05 #11351 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:05 #11352 [Debug] > │ float * float * float)) -> (struct (float * float * float * float * float *  │

02:09:05 #11353 [Debug] > │ float * float * float * float) -> struct (float * float * float * float *    │

02:09:05 #11354 [Debug] > │ float * float * float * float * float))) = closure0()                        │

02:09:05 #11355 [Debug] > │     let v1 : (struct (float * float * float * float * float * float * float  │

02:09:05 #11356 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:05 #11357 [Debug] > │ float * float * float)) = closure2()                                         │

02:09:05 #11358 [Debug] > │     let v2 : (struct (float * float * float * float * float * float * float  │

02:09:05 #11359 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:05 #11360 [Debug] > │ float * float * float)) = v0 v1                                              │

02:09:05 #11361 [Debug] > │     let v3 : (struct (float * float * float * float * float * float * float  │

02:09:05 #11362 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:05 #11363 [Debug] > │ float * float * float)) = closure3()                                         │

02:09:05 #11364 [Debug] > │     let v4 : (struct (float * float * float * float * float * float * float  │

02:09:05 #11365 [Debug] > │ * float * float) -> struct (float * float * float * float * float * float *  │

02:09:05 #11366 [Debug] > │ float * float * float)) = v0 v3                                              │

02:09:05 #11367 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:09:05 #11368 [Debug] > │     let v6 : int32 = 0                                                       │

02:09:05 #11369 [Debug] > │     let v7 : UH0 = method1(v2, v5, v6)                                       │

02:09:05 #11370 [Debug] > │     let v8 : UH1 = UH1_1                                                     │

02:09:05 #11371 [Debug] > │     let v9 : UH1 = method4(v7, v8)                                           │

02:09:05 #11372 [Debug] > │     let v10 : UH2 = UH2_1                                                    │

02:09:05 #11373 [Debug] > │     let v11 : UH2 = UH2_1                                                    │

02:09:05 #11374 [Debug] > │     let struct (v12 : UH2, v13 : UH2) = method5(v9, v10, v11)                │

02:09:05 #11375 [Debug] > │     let v14 : UH2 = UH2_1                                                    │

02:09:05 #11376 [Debug] > │     let v15 : UH2 = method6(v12, v14)                                        │

02:09:05 #11377 [Debug] > │     let v16 : UH2 = UH2_1                                                    │

02:09:05 #11378 [Debug] > │     let v17 : UH2 = method6(v13, v16)                                        │

02:09:05 #11379 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:09:05 #11380 [Debug] > │     let v19 : int32 = 0                                                      │

02:09:05 #11381 [Debug] > │     let v20 : UH0 = method7(v4, v18, v19)                                    │

02:09:05 #11382 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:09:05 #11383 [Debug] > │     let v22 : UH1 = method8(v20, v21)                                        │

02:09:05 #11384 [Debug] > │     let v23 : UH2 = UH2_1                                                    │

02:09:05 #11385 [Debug] > │     let v24 : UH2 = UH2_1                                                    │

02:09:05 #11386 [Debug] > │     let struct (v25 : UH2, v26 : UH2) = method5(v22, v23, v24)               │

02:09:05 #11387 [Debug] > │     let v27 : UH2 = UH2_1                                                    │

02:09:05 #11388 [Debug] > │     let v28 : UH2 = method6(v25, v27)                                        │

02:09:05 #11389 [Debug] > │     let v29 : UH2 = UH2_1                                                    │

02:09:05 #11390 [Debug] > │     let v30 : UH2 = method6(v26, v29)                                        │

02:09:05 #11391 [Debug] > │     let v31 : (float []) = method9(v15)                                      │

02:09:05 #11392 [Debug] > │     let v32 : (float []) = method9(v17)                                      │

02:09:05 #11393 [Debug] > │     let v33 : (float []) = method9(v28)                                      │

02:09:05 #11394 [Debug] > │     let v34 : (float []) = method9(v30)                                      │

02:09:05 #11395 [Debug] > │     let v35 : string = "newtonian"                                           │

02:09:05 #11396 [Debug] > │     let v36 : string = "relativistic"                                        │

02:09:05 #11397 [Debug] > │     let v37 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:09:05 #11398 [Debug] > │ (v35, v31, v32); struct (v36, v33, v34)|]                                    │

02:09:05 #11399 [Debug] > │     let v38 : string = "proton in a 1-t magnetic field"                      │

02:09:05 #11400 [Debug] > │     let v39 : string = "x (m)"                                               │

02:09:05 #11401 [Debug] > │     let v40 : string = "y (m)"                                               │

02:09:05 #11402 [Debug] > │     struct (v38, v39, v40, v37)                                              │

02:09:05 #11403 [Debug] > │ method0()                                                                    │

02:09:05 #11404 [Debug] > │                                                                              │

02:09:05 #11405 [Debug] > │                                                                              │

02:09:05 #11406 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:05 #11407 [Debug] >

02:09:05 #11408 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:05 #11409 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:05 #11410 [Debug] > │ ### system kinetic energy versus time 1                                      │

02:09:05 #11411 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:05 #11412 [Debug] >

02:09:05 #11413 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:05 #11414 [Debug] > // // test

02:09:05 #11415 [Debug] >

02:09:05 #11416 [Debug] > inl central_force f (particle_state st1) (particle_state st2) =

02:09:05 #11417 [Debug] >     inl r1 = st1.pos_vec

02:09:05 #11418 [Debug] >     inl r2 = st2.pos_vec

02:09:05 #11419 [Debug] >     inl r21 = r2 ^-^ r1

02:09:05 #11420 [Debug] >     inl r21mag = magnitude r21

02:09:05 #11421 [Debug] >     f r21mag *^ r21 ^/ r21mag

02:09:05 #11422 [Debug] >

02:09:05 #11423 [Debug] > inl billiard_force k re =

02:09:05 #11424 [Debug] >     inl f r =

02:09:05 #11425 [Debug] >         if r >= re

02:09:05 #11426 [Debug] >         then 0

02:09:05 #11427 [Debug] >         else -k * (r - re)

02:09:05 #11428 [Debug] >     central_force f

02:09:05 #11429 [Debug] >

02:09:05 #11430 [Debug] > type force_vector = vec

02:09:05 #11431 [Debug] > type two_body_force = particle_state -> particle_state -> force_vector

02:09:05 #11432 [Debug] >

02:09:05 #11433 [Debug] > union force =

02:09:05 #11434 [Debug] >     | ExternalForce : i32 * one_body_force

02:09:05 #11435 [Debug] >     | InternalForce : i32 * i32 * two_body_force

02:09:05 #11436 [Debug] >

02:09:05 #11437 [Debug] > nominal multi_particle_state = list particle_state

02:09:05 #11438 [Debug] >

02:09:05 #11439 [Debug] > nominal d_multi_particle_state = list d_particle_state

02:09:05 #11440 [Debug] >

02:09:05 #11441 [Debug] > inl force_on n sts force =

02:09:05 #11442 [Debug] >     match force with

02:09:05 #11443 [Debug] >     | ExternalForce (n0, f_one_body) =>

02:09:05 #11444 [Debug] >         if n = n0

02:09:05 #11445 [Debug] >         then f_one_body

02:09:05 #11446 [Debug] >         else fun _ => zero_vec ()

02:09:05 #11447 [Debug] >     | InternalForce (n0, n1, f_two_body) =>

02:09:05 #11448 [Debug] >         if n = n0

02:09:05 #11449 [Debug] >         then f_two_body (sts |> listm'.item n1)

02:09:05 #11450 [Debug] >         elif n = n1

02:09:05 #11451 [Debug] >         then f_two_body (sts |> listm'.item n0)

02:09:05 #11452 [Debug] >         else fun _ => zero_vec ()

02:09:05 #11453 [Debug] >

02:09:05 #11454 [Debug] > inl forces_on n (multi_particle_state sts) fs =

02:09:05 #11455 [Debug] >     fs |> listm.map (force_on n sts)

02:09:05 #11456 [Debug] >

02:09:05 #11457 [Debug] > inl newton_second_mps fs (multi_particle_state sts) : d_multi_particle_state =

02:09:05 #11458 [Debug] >     inl deriv (n, st) =

02:09:05 #11459 [Debug] >         newton_second_ps (forces_on n (multi_particle_state sts) fs) st

02:09:05 #11460 [Debug] >     sts |> listm'.indexed |> listm.map deriv |> d_multi_particle_state

02:09:05 #11461 [Debug] >

02:09:05 #11462 [Debug] > instance (+++) d_multi_particle_state = fun (d_multi_particle_state dsts1)

02:09:05 #11463 [Debug] > (d_multi_particle_state dsts2) =>

02:09:05 #11464 [Debug] >     d_multi_particle_state (listm'.zip_with_ (+++) dsts1 dsts2)

02:09:05 #11465 [Debug] >

02:09:05 #11466 [Debug] > instance scale d_multi_particle_state = fun w (d_multi_particle_state dsts) =>

02:09:05 #11467 [Debug] >     d_multi_particle_state (dsts |> listm.map (scale w))

02:09:05 #11468 [Debug] >

02:09:05 #11469 [Debug] > instance shift multi_particle_state = fun dt dsts (multi_particle_state sts) =>

02:09:05 #11470 [Debug] >     inl (d_multi_particle_state dsts) =

02:09:05 #11471 [Debug] >         real

02:09:05 #11472 [Debug] >             match dsts with

02:09:05 #11473 [Debug] >             | d_multi_particle_state _ => dsts

02:09:05 #11474 [Debug] >     listm'.zip_with_ (shift dt) dsts sts |> multi_particle_state

02:09:05 #11475 [Debug] >

02:09:05 #11476 [Debug] > inl euler_cromer_mps dt : numerical_method multi_particle_state

02:09:05 #11477 [Debug] > d_multi_particle_state =

02:09:05 #11478 [Debug] >     fun deriv mpst0 =>

02:09:05 #11479 [Debug] >         inl mpst1 = euler dt deriv mpst0

02:09:05 #11480 [Debug] >         inl (multi_particle_state sts0) = mpst0

02:09:05 #11481 [Debug] >         inl (multi_particle_state sts1) = mpst1

02:09:05 #11482 [Debug] >         sts1

02:09:05 #11483 [Debug] >         |> listm'.zip_ sts0

02:09:05 #11484 [Debug] >         |> listm.map (fun ((particle_state st0), (particle_state st1)) =>

02:09:05 #11485 [Debug] >             particle_state {

02:09:05 #11486 [Debug] >                 st1 with

02:09:05 #11487 [Debug] >                     pos_vec = st0.pos_vec ^+^ st1.velocity ^* dt

02:09:05 #11488 [Debug] >             }

02:09:05 #11489 [Debug] >         )

02:09:05 #11490 [Debug] >         |> multi_particle_state

02:09:05 #11491 [Debug] >

02:09:05 #11492 [Debug] > inl update_mps (method : numerical_method multi_particle_state

02:09:05 #11493 [Debug] > d_multi_particle_state) =

02:09:05 #11494 [Debug] >     newton_second_mps >> method

02:09:05 #11495 [Debug] >

02:09:05 #11496 [Debug] > inl states_mps (method : numerical_method multi_particle_state

02:09:05 #11497 [Debug] > d_multi_particle_state) =

02:09:05 #11498 [Debug] >     newton_second_mps >> method >> seq.iterate_

02:09:05 #11499 [Debug] >

02:09:05 #11500 [Debug] >

02:09:05 #11501 [Debug] > inl kinetic_energy (particle_state st) =

02:09:05 #11502 [Debug] >     inl m = st.mass

02:09:05 #11503 [Debug] >     inl v = magnitude st.velocity

02:09:05 #11504 [Debug] >     0.5 * m * v ** 2

02:09:05 #11505 [Debug] >

02:09:05 #11506 [Debug] > inl system_ke (multi_particle_state sts) =

02:09:05 #11507 [Debug] >     sts |> listm.map kinetic_energy |> listm'.sum

02:09:05 #11508 [Debug] >

02:09:05 #11509 [Debug] > inl linear_spring_pe k re (particle_state st1) (particle_state st2) =

02:09:05 #11510 [Debug] >     inl r1 = st1.pos_vec

02:09:05 #11511 [Debug] >     inl r2 = st2.pos_vec

02:09:05 #11512 [Debug] >     inl r21 = r2 ^-^ r1

02:09:05 #11513 [Debug] >     inl r21mag = magnitude r21

02:09:05 #11514 [Debug] >     k * (r21mag - re) ** 2 / 2

02:09:05 #11515 [Debug] >

02:09:05 #11516 [Debug] > inl earth_surface_gravity_pe (particle_state st) =

02:09:05 #11517 [Debug] >     inl g = 9.80665

02:09:05 #11518 [Debug] >     inl m = st.mass

02:09:05 #11519 [Debug] >     inl z = st.pos_vec.z

02:09:05 #11520 [Debug] >     m * g * z

02:09:05 #11521 [Debug] >

02:09:05 #11522 [Debug] > inl two_springs_pe (multi_particle_state sts) =

02:09:05 #11523 [Debug] >     inl st0 = sts |> listm'.item 0i32

02:09:05 #11524 [Debug] >     inl st1 = sts |> listm'.item 1i32

02:09:05 #11525 [Debug] >     linear_spring_pe 100 0.5 (default_particle_state ()) st0

02:09:05 #11526 [Debug] >     + linear_spring_pe 100 0.5 st0 st1

02:09:05 #11527 [Debug] >     + earth_surface_gravity_pe st0

02:09:05 #11528 [Debug] >     + earth_surface_gravity_pe st1

02:09:05 #11529 [Debug] >

02:09:05 #11530 [Debug] > inl two_springs_me mpst =

02:09:05 #11531 [Debug] >     system_ke mpst + two_springs_pe mpst

02:09:05 #11532 [Debug] >

02:09:05 #11533 [Debug] > inl ball_radius () = 0.03

02:09:05 #11534 [Debug] >

02:09:05 #11535 [Debug] > inl billiard_forces k =

02:09:05 #11536 [Debug] >     [[ InternalForce (0, 1, billiard_force k (2 * ball_radius ())) ]]

02:09:05 #11537 [Debug] >

02:09:05 #11538 [Debug] > inl billiard_update n_method k dt =

02:09:05 #11539 [Debug] >     update_mps (n_method dt) (billiard_forces k)

02:09:05 #11540 [Debug] >

02:09:05 #11541 [Debug] > inl billiard_initial () =

02:09:05 #11542 [Debug] >     inl ball_mass = 0.160

02:09:05 #11543 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:05 #11544 [Debug] >     multi_particle_state [[

02:09:05 #11545 [Debug] >         particle_state {

02:09:05 #11546 [Debug] >             default_particle_state' with

02:09:05 #11547 [Debug] >                 mass = ball_mass

02:09:05 #11548 [Debug] >                 pos_vec = zero_vec ()

02:09:05 #11549 [Debug] >                 velocity = 0.2 *^ i_hat ()

02:09:05 #11550 [Debug] >         }

02:09:05 #11551 [Debug] >         particle_state {

02:09:05 #11552 [Debug] >             default_particle_state' with

02:09:05 #11553 [Debug] >                 mass = ball_mass

02:09:05 #11554 [Debug] >                 pos_vec = i_hat () ^+^ 0.02 *^ j_hat ()

02:09:05 #11555 [Debug] >                 velocity = zero_vec ()

02:09:05 #11556 [Debug] >         }

02:09:05 #11557 [Debug] >     ]]

02:09:05 #11558 [Debug] >

02:09:05 #11559 [Debug] > inl billiard_states ~n_method k dt =

02:09:05 #11560 [Debug] >     states_mps (n_method dt) (billiard_forces k) (billiard_initial ())

02:09:05 #11561 [Debug] >

02:09:05 #11562 [Debug] > inl billiard_states_finite n_method k dt =

02:09:05 #11563 [Debug] >     billiard_states n_method k dt

02:09:05 #11564 [Debug] >     >> Some

02:09:05 #11565 [Debug] >     |> seq.take_while_ (fun (multi_particle_state mpst) (_ : i32) =>

02:09:05 #11566 [Debug] >         (mpst |> listm'.item 0i32).time <= 10

02:09:05 #11567 [Debug] >     )

02:09:05 #11568 [Debug] >

02:09:05 #11569 [Debug] > inl momentum (particle_state st) =

02:09:05 #11570 [Debug] >     inl m = st.mass

02:09:05 #11571 [Debug] >     inl v = st.velocity

02:09:05 #11572 [Debug] >     m *^ v

02:09:05 #11573 [Debug] >

02:09:05 #11574 [Debug] > inl system_p (multi_particle_state sts) =

02:09:05 #11575 [Debug] >     sts |> listm.map momentum |> sum_vec

02:09:05 #11576 [Debug] >

02:09:05 #11577 [Debug] >

02:09:05 #11578 [Debug] > inl time_ke_ec_x, time_ke_ec_y =

02:09:05 #11579 [Debug] >     billiard_states_finite euler_cromer_mps 30 0.03

02:09:05 #11580 [Debug] >     |> listm.map (fun (multi_particle_state mpst) =>

02:09:05 #11581 [Debug] >         (mpst |> listm'.item 0i32).time, system_ke (multi_particle_state mpst)

02:09:05 #11582 [Debug] >     )

02:09:05 #11583 [Debug] >     |> listm'.unzip

02:09:05 #11584 [Debug] >

02:09:05 #11585 [Debug] > inl time_ke_rk4_x, time_ke_rk4_y =

02:09:05 #11586 [Debug] >     billiard_states_finite runge_kutta_4 30 0.03

02:09:05 #11587 [Debug] >     |> listm.map (fun (multi_particle_state mpst) =>

02:09:05 #11588 [Debug] >         (mpst |> listm'.item 0i32).time, system_ke (multi_particle_state mpst)

02:09:05 #11589 [Debug] >     )

02:09:05 #11590 [Debug] >     |> listm'.unzip

02:09:05 #11591 [Debug] >

02:09:05 #11592 [Debug] > inl time_ke_ec_x : a i32 _ = time_ke_ec_x |> listm.toArray

02:09:05 #11593 [Debug] > inl time_ke_ec_y : a i32 _ = time_ke_ec_y |> listm.toArray

02:09:05 #11594 [Debug] >

02:09:05 #11595 [Debug] > inl time_ke_rk4_x : a i32 _ = time_ke_rk4_x |> listm.toArray

02:09:05 #11596 [Debug] > inl time_ke_rk4_y : a i32 _ = time_ke_rk4_y |> listm.toArray

02:09:05 #11597 [Debug] >

02:09:05 #11598 [Debug] > "system kinetic energy versus time",

02:09:05 #11599 [Debug] > "time (s)",

02:09:05 #11600 [Debug] > "system kinetic energy (j)",

02:09:05 #11601 [Debug] > ;[[

02:09:05 #11602 [Debug] >     "euler-cromer", time_ke_ec_x, time_ke_ec_y

02:09:05 #11603 [Debug] >     "runge-kutta 4", time_ke_rk4_x, time_ke_rk4_y

02:09:05 #11604 [Debug] > ]]

02:09:05 #11605 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0544-4461-40d8b3f4263a\main.spi

02:09:07 #11606 [Debug] >

02:09:07 #11607 [Debug] > ╭─[ 1.63s - return value ]─────────────────────────────────────────────────────╮

02:09:07 #11608 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:09:07 #11609 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:07 #11610 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:07 #11611 [Debug] > │ stroke="none"/>                                                              │

02:09:07 #11612 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:07 #11613 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11614 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11615 [Debug] > │ system kinetic energy versus time                                            │

02:09:07 #11616 [Debug] > │ </text>                                                                      │

02:09:07 #11617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:09:07 #11618 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #11619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:07 #11620 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #11621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:09:07 #11622 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #11623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:09:07 #11624 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #11625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:09:07 #11626 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #11627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:09:07 #11628 [Debug] > │ x2="109" y2="75"/>                                                           │

02:09:07 #11629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:09:07 #11630 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:07 #11631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:09:07 #11632 [Debug] > │ x2="129" y2="75"/>                                                           │

02:09:07 #11633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:07 #11634 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:07 #11635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:09:07 #11636 [Debug] > │ x2="149" y2="75"/>                                                           │

02:09:07 #11637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:09:07 #11638 [Debug] > │ x2="159" y2="75"/>                                                           │

02:09:07 #11639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:07 #11640 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:07 #11641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:09:07 #11642 [Debug] > │ x2="179" y2="75"/>                                                           │

02:09:07 #11643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:09:07 #11644 [Debug] > │ x2="189" y2="75"/>                                                           │

02:09:07 #11645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:07 #11646 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:07 #11647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:09:07 #11648 [Debug] > │ x2="209" y2="75"/>                                                           │

02:09:07 #11649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:09:07 #11650 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:07 #11651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:07 #11652 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:07 #11653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:09:07 #11654 [Debug] > │ x2="239" y2="75"/>                                                           │

02:09:07 #11655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:09:07 #11656 [Debug] > │ x2="249" y2="75"/>                                                           │

02:09:07 #11657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:07 #11658 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:07 #11659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:07 #11660 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:07 #11661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:09:07 #11662 [Debug] > │ x2="279" y2="75"/>                                                           │

02:09:07 #11663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:07 #11664 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:07 #11665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:07 #11666 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:07 #11667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:09:07 #11668 [Debug] > │ x2="309" y2="75"/>                                                           │

02:09:07 #11669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:07 #11670 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:07 #11671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:07 #11672 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:07 #11673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:09:07 #11674 [Debug] > │ x2="339" y2="75"/>                                                           │

02:09:07 #11675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:07 #11676 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:07 #11677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:07 #11678 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:07 #11679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:07 #11680 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:07 #11681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:09:07 #11682 [Debug] > │ x2="379" y2="75"/>                                                           │

02:09:07 #11683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:09:07 #11684 [Debug] > │ x2="389" y2="75"/>                                                           │

02:09:07 #11685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:09:07 #11686 [Debug] > │ x2="399" y2="75"/>                                                           │

02:09:07 #11687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:09:07 #11688 [Debug] > │ x2="409" y2="75"/>                                                           │

02:09:07 #11689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:07 #11690 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:07 #11691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:07 #11692 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:07 #11693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:09:07 #11694 [Debug] > │ x2="439" y2="75"/>                                                           │

02:09:07 #11695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:07 #11696 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:07 #11697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:07 #11698 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:07 #11699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:07 #11700 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:07 #11701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:07 #11702 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:07 #11703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:07 #11704 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:07 #11705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:07 #11706 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:07 #11707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:07 #11708 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:07 #11709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:09:07 #11710 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:07 #11711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:07 #11712 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:07 #11713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:07 #11714 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:07 #11715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:09:07 #11716 [Debug] > │ x2="549" y2="75"/>                                                           │

02:09:07 #11717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:07 #11718 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:07 #11719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:07 #11720 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:07 #11721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:09:07 #11722 [Debug] > │ x2="579" y2="75"/>                                                           │

02:09:07 #11723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:07 #11724 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:07 #11725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:09:07 #11726 [Debug] > │ x2="584" y2="404"/>                                                          │

02:09:07 #11727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:07 #11728 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:07 #11729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:09:07 #11730 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:07 #11731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:07 #11732 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:07 #11733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="356"         │

02:09:07 #11734 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:07 #11735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:09:07 #11736 [Debug] > │ x2="584" y2="344"/>                                                          │

02:09:07 #11737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:09:07 #11738 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:07 #11739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:07 #11740 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:07 #11741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:07 #11742 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:07 #11743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="297"         │

02:09:07 #11744 [Debug] > │ x2="584" y2="297"/>                                                          │

02:09:07 #11745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:07 #11746 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:07 #11747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:09:07 #11748 [Debug] > │ x2="584" y2="273"/>                                                          │

02:09:07 #11749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="261"         │

02:09:07 #11750 [Debug] > │ x2="584" y2="261"/>                                                          │

02:09:07 #11751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="249"         │

02:09:07 #11752 [Debug] > │ x2="584" y2="249"/>                                                          │

02:09:07 #11753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="237"         │

02:09:07 #11754 [Debug] > │ x2="584" y2="237"/>                                                          │

02:09:07 #11755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="225"         │

02:09:07 #11756 [Debug] > │ x2="584" y2="225"/>                                                          │

02:09:07 #11757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:07 #11758 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:07 #11759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:07 #11760 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:07 #11761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:09:07 #11762 [Debug] > │ x2="584" y2="189"/>                                                          │

02:09:07 #11763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:09:07 #11764 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:07 #11765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:07 #11766 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:07 #11767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="153"         │

02:09:07 #11768 [Debug] > │ x2="584" y2="153"/>                                                          │

02:09:07 #11769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:07 #11770 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:07 #11771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:09:07 #11772 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:07 #11773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:07 #11774 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:07 #11775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:07 #11776 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:07 #11777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:07 #11778 [Debug] > │ y2="94"/>                                                                    │

02:09:07 #11779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:07 #11780 [Debug] > │ y2="82"/>                                                                    │

02:09:07 #11781 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:07 #11782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11783 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11784 [Debug] > │ time (s)                                                                     │

02:09:07 #11785 [Debug] > │ </text>                                                                      │

02:09:07 #11786 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:07 #11787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11788 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:07 #11789 [Debug] > │ system kinetic energy (j)                                                    │

02:09:07 #11790 [Debug] > │ </text>                                                                      │

02:09:07 #11791 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:07 #11792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11793 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11794 [Debug] > │ time (s)                                                                     │

02:09:07 #11795 [Debug] > │ </text>                                                                      │

02:09:07 #11796 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:07 #11797 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11798 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:07 #11799 [Debug] > │ system kinetic energy (j)                                                    │

02:09:07 #11800 [Debug] > │ </text>                                                                      │

02:09:07 #11801 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:07 #11802 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #11803 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:09:07 #11804 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:07 #11805 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:09:07 #11806 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:07 #11807 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:09:07 #11808 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:07 #11809 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:09:07 #11810 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:07 #11811 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:09:07 #11812 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:07 #11813 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:09:07 #11814 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:07 #11815 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:09:07 #11816 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:07 #11817 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:09:07 #11818 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:07 #11819 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:09:07 #11820 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:07 #11821 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:07 #11822 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:07 #11823 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="380"         │

02:09:07 #11824 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:07 #11825 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:09:07 #11826 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:07 #11827 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="285"         │

02:09:07 #11828 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:07 #11829 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="237"         │

02:09:07 #11830 [Debug] > │ x2="584" y2="237"/>                                                          │

02:09:07 #11831 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="189"         │

02:09:07 #11832 [Debug] > │ x2="584" y2="189"/>                                                          │

02:09:07 #11833 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="142"         │

02:09:07 #11834 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:07 #11835 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:07 #11836 [Debug] > │ y2="94"/>                                                                    │

02:09:07 #11837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11838 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:07 #11839 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:07 #11840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11842 [Debug] > │ 0.0                                                                          │

02:09:07 #11843 [Debug] > │ </text>                                                                      │

02:09:07 #11844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11845 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:07 #11846 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11848 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11849 [Debug] > │ 1.0                                                                          │

02:09:07 #11850 [Debug] > │ </text>                                                                      │

02:09:07 #11851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11852 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:09:07 #11853 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11854 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11855 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11856 [Debug] > │ 2.0                                                                          │

02:09:07 #11857 [Debug] > │ </text>                                                                      │

02:09:07 #11858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11859 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:09:07 #11860 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11862 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11863 [Debug] > │ 3.0                                                                          │

02:09:07 #11864 [Debug] > │ </text>                                                                      │

02:09:07 #11865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11866 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:09:07 #11867 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11868 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11869 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11870 [Debug] > │ 4.0                                                                          │

02:09:07 #11871 [Debug] > │ </text>                                                                      │

02:09:07 #11872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11873 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:09:07 #11874 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11876 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11877 [Debug] > │ 5.0                                                                          │

02:09:07 #11878 [Debug] > │ </text>                                                                      │

02:09:07 #11879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11880 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:09:07 #11881 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11883 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11884 [Debug] > │ 6.0                                                                          │

02:09:07 #11885 [Debug] > │ </text>                                                                      │

02:09:07 #11886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11887 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:09:07 #11888 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11890 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11891 [Debug] > │ 7.0                                                                          │

02:09:07 #11892 [Debug] > │ </text>                                                                      │

02:09:07 #11893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11894 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:09:07 #11895 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11897 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11898 [Debug] > │ 8.0                                                                          │

02:09:07 #11899 [Debug] > │ </text>                                                                      │

02:09:07 #11900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11901 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:09:07 #11902 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11904 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11905 [Debug] > │ 9.0                                                                          │

02:09:07 #11906 [Debug] > │ </text>                                                                      │

02:09:07 #11907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11908 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:09:07 #11909 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:07 #11910 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11911 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11912 [Debug] > │ 10.0                                                                         │

02:09:07 #11913 [Debug] > │ </text>                                                                      │

02:09:07 #11914 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11915 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:07 #11916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11917 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:07 #11918 [Debug] > │ <text x="45" y="380" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:07 #11919 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11920 [Debug] > │ 0.0                                                                          │

02:09:07 #11921 [Debug] > │ </text>                                                                      │

02:09:07 #11922 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11923 [Debug] > │ points="49,380 54,380 "/>                                                    │

02:09:07 #11924 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:07 #11925 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11926 [Debug] > │ 0.0                                                                          │

02:09:07 #11927 [Debug] > │ </text>                                                                      │

02:09:07 #11928 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11929 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:09:07 #11930 [Debug] > │ <text x="45" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:07 #11931 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11932 [Debug] > │ 0.0                                                                          │

02:09:07 #11933 [Debug] > │ </text>                                                                      │

02:09:07 #11934 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11935 [Debug] > │ points="49,285 54,285 "/>                                                    │

02:09:07 #11936 [Debug] > │ <text x="45" y="237" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:07 #11937 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11938 [Debug] > │ 0.0                                                                          │

02:09:07 #11939 [Debug] > │ </text>                                                                      │

02:09:07 #11940 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11941 [Debug] > │ points="49,237 54,237 "/>                                                    │

02:09:07 #11942 [Debug] > │ <text x="45" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:07 #11943 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11944 [Debug] > │ 0.0                                                                          │

02:09:07 #11945 [Debug] > │ </text>                                                                      │

02:09:07 #11946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11947 [Debug] > │ points="49,189 54,189 "/>                                                    │

02:09:07 #11948 [Debug] > │ <text x="45" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:07 #11949 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11950 [Debug] > │ 0.0                                                                          │

02:09:07 #11951 [Debug] > │ </text>                                                                      │

02:09:07 #11952 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11953 [Debug] > │ points="49,142 54,142 "/>                                                    │

02:09:07 #11954 [Debug] > │ <text x="45" y="94" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:07 #11955 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #11956 [Debug] > │ 0.0                                                                          │

02:09:07 #11957 [Debug] > │ </text>                                                                      │

02:09:07 #11958 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11959 [Debug] > │ points="49,94 54,94 "/>                                                      │

02:09:07 #11960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11961 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:07 #11962 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:07 #11963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11964 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11965 [Debug] > │ 0.0                                                                          │

02:09:07 #11966 [Debug] > │ </text>                                                                      │

02:09:07 #11967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11968 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:07 #11969 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #11970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11972 [Debug] > │ 1.0                                                                          │

02:09:07 #11973 [Debug] > │ </text>                                                                      │

02:09:07 #11974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11975 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:09:07 #11976 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #11977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11979 [Debug] > │ 2.0                                                                          │

02:09:07 #11980 [Debug] > │ </text>                                                                      │

02:09:07 #11981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11982 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:09:07 #11983 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #11984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11986 [Debug] > │ 3.0                                                                          │

02:09:07 #11987 [Debug] > │ </text>                                                                      │

02:09:07 #11988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11989 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:09:07 #11990 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #11991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #11993 [Debug] > │ 4.0                                                                          │

02:09:07 #11994 [Debug] > │ </text>                                                                      │

02:09:07 #11995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #11996 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:09:07 #11997 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #11998 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #11999 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12000 [Debug] > │ 5.0                                                                          │

02:09:07 #12001 [Debug] > │ </text>                                                                      │

02:09:07 #12002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12003 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:09:07 #12004 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #12005 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12006 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12007 [Debug] > │ 6.0                                                                          │

02:09:07 #12008 [Debug] > │ </text>                                                                      │

02:09:07 #12009 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12010 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:09:07 #12011 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #12012 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12013 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12014 [Debug] > │ 7.0                                                                          │

02:09:07 #12015 [Debug] > │ </text>                                                                      │

02:09:07 #12016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12017 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:09:07 #12018 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #12019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12020 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12021 [Debug] > │ 8.0                                                                          │

02:09:07 #12022 [Debug] > │ </text>                                                                      │

02:09:07 #12023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12024 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:09:07 #12025 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #12026 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12027 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12028 [Debug] > │ 9.0                                                                          │

02:09:07 #12029 [Debug] > │ </text>                                                                      │

02:09:07 #12030 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12031 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:09:07 #12032 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:07 #12033 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12034 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12035 [Debug] > │ 10.0                                                                         │

02:09:07 #12036 [Debug] > │ </text>                                                                      │

02:09:07 #12037 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12038 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:07 #12039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12040 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:07 #12041 [Debug] > │ <text x="595" y="380" dy="0.5ex" text-anchor="start"                         │

02:09:07 #12042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12043 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12044 [Debug] > │ 0.0                                                                          │

02:09:07 #12045 [Debug] > │ </text>                                                                      │

02:09:07 #12046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12047 [Debug] > │ points="585,380 590,380 "/>                                                  │

02:09:07 #12048 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:09:07 #12049 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12050 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12051 [Debug] > │ 0.0                                                                          │

02:09:07 #12052 [Debug] > │ </text>                                                                      │

02:09:07 #12053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12054 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:09:07 #12055 [Debug] > │ <text x="595" y="285" dy="0.5ex" text-anchor="start"                         │

02:09:07 #12056 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12057 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12058 [Debug] > │ 0.0                                                                          │

02:09:07 #12059 [Debug] > │ </text>                                                                      │

02:09:07 #12060 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12061 [Debug] > │ points="585,285 590,285 "/>                                                  │

02:09:07 #12062 [Debug] > │ <text x="595" y="237" dy="0.5ex" text-anchor="start"                         │

02:09:07 #12063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12064 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12065 [Debug] > │ 0.0                                                                          │

02:09:07 #12066 [Debug] > │ </text>                                                                      │

02:09:07 #12067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12068 [Debug] > │ points="585,237 590,237 "/>                                                  │

02:09:07 #12069 [Debug] > │ <text x="595" y="189" dy="0.5ex" text-anchor="start"                         │

02:09:07 #12070 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12071 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12072 [Debug] > │ 0.0                                                                          │

02:09:07 #12073 [Debug] > │ </text>                                                                      │

02:09:07 #12074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12075 [Debug] > │ points="585,189 590,189 "/>                                                  │

02:09:07 #12076 [Debug] > │ <text x="595" y="142" dy="0.5ex" text-anchor="start"                         │

02:09:07 #12077 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12078 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12079 [Debug] > │ 0.0                                                                          │

02:09:07 #12080 [Debug] > │ </text>                                                                      │

02:09:07 #12081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12082 [Debug] > │ points="585,142 590,142 "/>                                                  │

02:09:07 #12083 [Debug] > │ <text x="595" y="94" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:09:07 #12084 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:07 #12085 [Debug] > │ 0.0                                                                          │

02:09:07 #12086 [Debug] > │ </text>                                                                      │

02:09:07 #12087 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:07 #12088 [Debug] > │ points="585,94 590,94 "/>                                                    │

02:09:07 #12089 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:07 #12090 [Debug] > │ points="69,94 71,94 72,94 74,94 75,94 77,94 78,94 80,94 81,94 83,94 84,94    │

02:09:07 #12091 [Debug] > │ 86,94 87,94 89,94 90,94 92,94 93,94 95,94 96,94 98,94 99,94 101,94 102,94    │

02:09:07 #12092 [Debug] > │ 104,94 105,94 107,94 108,94 110,94 111,94 113,94 114,94 116,94 117,94 119,94 │

02:09:07 #12093 [Debug] > │ 120,94 122,94 123,94 125,94 126,94 128,94 129,94 131,94 132,94 134,94 135,94 │

02:09:07 #12094 [Debug] > │ 137,94 138,94 140,94 141,94 143,94 144,94 146,94 147,94 149,94 150,94 152,94 │

02:09:07 #12095 [Debug] > │ 153,94 155,94 156,94 158,94 159,94 161,94 162,94 164,94 165,94 167,94 168,94 │

02:09:07 #12096 [Debug] > │ 170,94 171,94 173,94 174,94 176,94 177,94 179,94 180,94 182,94 183,94 185,94 │

02:09:07 #12097 [Debug] > │ 186,94 188,94 189,94 191,94 192,94 194,94 195,94 197,94 198,94 200,94 201,94 │

02:09:07 #12098 [Debug] > │ 203,94 204,94 206,94 207,94 209,94 210,94 212,94 213,94 215,94 216,94 218,94 │

02:09:07 #12099 [Debug] > │ 219,94 221,94 222,94 224,94 225,94 227,94 228,94 230,94 231,94 233,94 234,94 │

02:09:07 #12100 [Debug] > │ 236,94 237,94 239,94 240,94 242,94 243,94 245,94 246,94 248,94 249,94 251,94 │

02:09:07 #12101 [Debug] > │ 252,94 254,94 255,94 257,94 258,94 260,94 261,94 263,94 264,94 266,94 267,94 │

02:09:07 #12102 [Debug] > │ 269,94 270,94 272,94 273,94 275,94 276,94 278,94 279,94 281,94 282,94 284,94 │

02:09:07 #12103 [Debug] > │ 285,94 287,94 288,94 290,94 291,94 293,94 294,94 296,94 297,94 299,94 300,94 │

02:09:07 #12104 [Debug] > │ 302,94 303,94 305,94 306,94 308,243 309,402 311,368 312,185 314,85 315,85    │

02:09:07 #12105 [Debug] > │ 317,85 318,85 320,85 321,85 323,85 324,85 326,85 327,85 329,85 330,85 332,85 │

02:09:07 #12106 [Debug] > │ 333,85 335,85 336,85 338,85 339,85 341,85 342,85 344,85 345,85 347,85 348,85 │

02:09:07 #12107 [Debug] > │ 350,85 351,85 353,85 354,85 356,85 357,85 359,85 360,85 362,85 363,85 365,85 │

02:09:07 #12108 [Debug] > │ 366,85 368,85 369,85 371,85 372,85 374,85 375,85 377,85 378,85 380,85 381,85 │

02:09:07 #12109 [Debug] > │ 383,85 384,85 386,85 387,85 389,85 390,85 392,85 393,85 395,85 396,85 398,85 │

02:09:07 #12110 [Debug] > │ 399,85 401,85 402,85 404,85 405,85 407,85 408,85 410,85 411,85 413,85 414,85 │

02:09:07 #12111 [Debug] > │ 416,85 417,85 419,85 420,85 422,85 423,85 425,85 426,85 428,85 429,85 431,85 │

02:09:07 #12112 [Debug] > │ 432,85 434,85 435,85 437,85 438,85 440,85 441,85 443,85 444,85 446,85 447,85 │

02:09:07 #12113 [Debug] > │ 449,85 450,85 452,85 453,85 455,85 456,85 458,85 459,85 461,85 462,85 464,85 │

02:09:07 #12114 [Debug] > │ 465,85 467,85 468,85 470,85 471,85 473,85 474,85 476,85 477,85 479,85 480,85 │

02:09:07 #12115 [Debug] > │ 482,85 483,85 485,85 486,85 488,85 489,85 491,85 492,85 494,85 495,85 497,85 │

02:09:07 #12116 [Debug] > │ 498,85 500,85 501,85 503,85 504,85 506,85 507,85 509,85 510,85 512,85 513,85 │

02:09:07 #12117 [Debug] > │ 515,85 516,85 518,85 519,85 521,85 522,85 524,85 525,85 527,85 528,85 530,85 │

02:09:07 #12118 [Debug] > │ 531,85 533,85 534,85 536,85 537,85 539,85 540,85 542,85 543,85 545,85 546,85 │

02:09:07 #12119 [Debug] > │ 548,85 549,85 551,85 552,85 554,85 555,85 557,85 558,85 560,85 561,85 563,85 │

02:09:07 #12120 [Debug] > │ 564,85 566,85 567,85 569,85 "/>                                              │

02:09:07 #12121 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:07 #12122 [Debug] > │ points="69,94 71,94 72,94 74,94 75,94 77,94 78,94 80,94 81,94 83,94 84,94    │

02:09:07 #12123 [Debug] > │ 86,94 87,94 89,94 90,94 92,94 93,94 95,94 96,94 98,94 99,94 101,94 102,94    │

02:09:07 #12124 [Debug] > │ 104,94 105,94 107,94 108,94 110,94 111,94 113,94 114,94 116,94 117,94 119,94 │

02:09:07 #12125 [Debug] > │ 120,94 122,94 123,94 125,94 126,94 128,94 129,94 131,94 132,94 134,94 135,94 │

02:09:07 #12126 [Debug] > │ 137,94 138,94 140,94 141,94 143,94 144,94 146,94 147,94 149,94 150,94 152,94 │

02:09:07 #12127 [Debug] > │ 153,94 155,94 156,94 158,94 159,94 161,94 162,94 164,94 165,94 167,94 168,94 │

02:09:07 #12128 [Debug] > │ 170,94 171,94 173,94 174,94 176,94 177,94 179,94 180,94 182,94 183,94 185,94 │

02:09:07 #12129 [Debug] > │ 186,94 188,94 189,94 191,94 192,94 194,94 195,94 197,94 198,94 200,94 201,94 │

02:09:07 #12130 [Debug] > │ 203,94 204,94 206,94 207,94 209,94 210,94 212,94 213,94 215,94 216,94 218,94 │

02:09:07 #12131 [Debug] > │ 219,94 221,94 222,94 224,94 225,94 227,94 228,94 230,94 231,94 233,94 234,94 │

02:09:07 #12132 [Debug] > │ 236,94 237,94 239,94 240,94 242,94 243,94 245,94 246,94 248,94 249,94 251,94 │

02:09:07 #12133 [Debug] > │ 252,94 254,94 255,94 257,94 258,94 260,94 261,94 263,94 264,94 266,94 267,94 │

02:09:07 #12134 [Debug] > │ 269,94 270,94 272,94 273,94 275,94 276,94 278,94 279,94 281,94 282,94 284,94 │

02:09:07 #12135 [Debug] > │ 285,94 287,94 288,94 290,94 291,94 293,94 294,94 296,94 297,94 299,94 300,94 │

02:09:07 #12136 [Debug] > │ 302,94 303,94 305,94 306,157 308,335 309,415 311,298 312,130 314,104 315,104 │

02:09:07 #12137 [Debug] > │ 317,104 318,104 320,104 321,104 323,104 324,104 326,104 327,104 329,104      │

02:09:07 #12138 [Debug] > │ 330,104 332,104 333,104 335,104 336,104 338,104 339,104 341,104 342,104      │

02:09:07 #12139 [Debug] > │ 344,104 345,104 347,104 348,104 350,104 351,104 353,104 354,104 356,104      │

02:09:07 #12140 [Debug] > │ 357,104 359,104 360,104 362,104 363,104 365,104 366,104 368,104 369,104      │

02:09:07 #12141 [Debug] > │ 371,104 372,104 374,104 375,104 377,104 378,104 380,104 381,104 383,104      │

02:09:07 #12142 [Debug] > │ 384,104 386,104 387,104 389,104 390,104 392,104 393,104 395,104 396,104      │

02:09:07 #12143 [Debug] > │ 398,104 399,104 401,104 402,104 404,104 405,104 407,104 408,104 410,104      │

02:09:07 #12144 [Debug] > │ 411,104 413,104 414,104 416,104 417,104 419,104 420,104 422,104 423,104      │

02:09:07 #12145 [Debug] > │ 425,104 426,104 428,104 429,104 431,104 432,104 434,104 435,104 437,104      │

02:09:07 #12146 [Debug] > │ 438,104 440,104 441,104 443,104 444,104 446,104 447,104 449,104 450,104      │

02:09:07 #12147 [Debug] > │ 452,104 453,104 455,104 456,104 458,104 459,104 461,104 462,104 464,104      │

02:09:07 #12148 [Debug] > │ 465,104 467,104 468,104 470,104 471,104 473,104 474,104 476,104 477,104      │

02:09:07 #12149 [Debug] > │ 479,104 480,104 482,104 483,104 485,104 486,104 488,104 489,104 491,104      │

02:09:07 #12150 [Debug] > │ 492,104 494,104 495,104 497,104 498,104 500,104 501,104 503,104 504,104      │

02:09:07 #12151 [Debug] > │ 506,104 507,104 509,104 510,104 512,104 513,104 515,104 516,104 518,104      │

02:09:07 #12152 [Debug] > │ 519,104 521,104 522,104 524,104 525,104 527,104 528,104 530,104 531,104      │

02:09:07 #12153 [Debug] > │ 533,104 534,104 536,104 537,104 539,104 540,104 542,104 543,104 545,104      │

02:09:07 #12154 [Debug] > │ 546,104 548,104 549,104 551,104 552,104 554,104 555,104 557,104 558,104      │

02:09:07 #12155 [Debug] > │ 560,104 561,104 563,104 564,104 566,104 567,104 569,104 "/>                  │

02:09:07 #12156 [Debug] > │ <rect x="459" y="227" width="121" height="45" opacity="1" fill="none"        │

02:09:07 #12157 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:07 #12158 [Debug] > │ <text x="499" y="237" dy="0.76em" text-anchor="start"                        │

02:09:07 #12159 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12160 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12161 [Debug] > │ euler-cromer                                                                 │

02:09:07 #12162 [Debug] > │ </text>                                                                      │

02:09:07 #12163 [Debug] > │ <text x="499" y="252" dy="0.76em" text-anchor="start"                        │

02:09:07 #12164 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12165 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12166 [Debug] > │ runge-kutta 4                                                                │

02:09:07 #12167 [Debug] > │ </text>                                                                      │

02:09:07 #12168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:07 #12169 [Debug] > │ points="469,242 489,242 "/>                                                  │

02:09:07 #12170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:07 #12171 [Debug] > │ points="469,257 489,257 "/>                                                  │

02:09:07 #12172 [Debug] > │ </svg>                                                                       │

02:09:07 #12173 [Debug] > │                                                                              │

02:09:07 #12174 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:07 #12175 [Debug] >

02:09:07 #12176 [Debug] > ╭─[ 1.83s - stdout ]───────────────────────────────────────────────────────────╮

02:09:07 #12177 [Debug] > │ type UH0 =                                                                   │

02:09:07 #12178 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:09:07 #12179 [Debug] > │ * float * UH0                                                                │

02:09:07 #12180 [Debug] > │     | UH0_1                                                                  │

02:09:07 #12181 [Debug] > │ and UH1 =                                                                    │

02:09:07 #12182 [Debug] > │     | UH1_0 of float * float * float * float * float * float * float * float │

02:09:07 #12183 [Debug] > │ * float * UH1                                                                │

02:09:07 #12184 [Debug] > │     | UH1_1                                                                  │

02:09:07 #12185 [Debug] > │ and UH2 =                                                                    │

02:09:07 #12186 [Debug] > │     | UH2_0 of float * float * float * float * float * float * float * float │

02:09:07 #12187 [Debug] > │ * float * float * float * float * float * float * float * float * float *    │

02:09:07 #12188 [Debug] > │ float * UH2                                                                  │

02:09:07 #12189 [Debug] > │     | UH2_1                                                                  │

02:09:07 #12190 [Debug] > │ and UH3 =                                                                    │

02:09:07 #12191 [Debug] > │     | UH3_0 of int32 * float * float * float * float * float * float * float │

02:09:07 #12192 [Debug] > │ * float * float * UH3                                                        │

02:09:07 #12193 [Debug] > │     | UH3_1                                                                  │

02:09:07 #12194 [Debug] > │ and [<Struct>] US0 =                                                         │

02:09:07 #12195 [Debug] > │     | US0_0                                                                  │

02:09:07 #12196 [Debug] > │     | US0_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

02:09:07 #12197 [Debug] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

02:09:07 #12198 [Debug] > │ and UH4 =                                                                    │

02:09:07 #12199 [Debug] > │     | UH4_0 of UH0 * UH4                                                     │

02:09:07 #12200 [Debug] > │     | UH4_1                                                                  │

02:09:07 #12201 [Debug] > │ and UH5 =                                                                    │

02:09:07 #12202 [Debug] > │     | UH5_0 of float * float * UH5                                           │

02:09:07 #12203 [Debug] > │     | UH5_1                                                                  │

02:09:07 #12204 [Debug] > │ and UH6 =                                                                    │

02:09:07 #12205 [Debug] > │     | UH6_0 of float * UH6                                                   │

02:09:07 #12206 [Debug] > │     | UH6_1                                                                  │

02:09:07 #12207 [Debug] > │ let rec method2 (v0 : UH0, v1 : UH0) : UH0 =                                 │

02:09:07 #12208 [Debug] > │     match v0 with                                                            │

02:09:07 #12209 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:07 #12210 [Debug] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:09:07 #12211 [Debug] > │         method2(v11, v12)                                                    │

02:09:07 #12212 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:07 #12213 [Debug] > │         v1                                                                   │

02:09:07 #12214 [Debug] > │ and method1 (v0 : float, v1 : UH0, v2 : UH1, v3 : UH0) : UH0 =               │

02:09:07 #12215 [Debug] > │     match v2 with                                                            │

02:09:07 #12216 [Debug] > │     | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* Cons *)        │

02:09:07 #12217 [Debug] > │         match v3 with                                                        │

02:09:07 #12218 [Debug] > │         | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (* Cons │

02:09:07 #12219 [Debug] > │ *)                                                                           │

02:09:07 #12220 [Debug] > │             let v24 : float = v9 * v0                                        │

02:09:07 #12221 [Debug] > │             let v25 : float = v19 + v24                                      │

02:09:07 #12222 [Debug] > │             let v26 : float = v0 * v6                                        │

02:09:07 #12223 [Debug] > │             let v27 : float = v0 * v7                                        │

02:09:07 #12224 [Debug] > │             let v28 : float = v0 * v8                                        │

02:09:07 #12225 [Debug] > │             let v29 : float = v16 + v26                                      │

02:09:07 #12226 [Debug] > │             let v30 : float = v17 + v27                                      │

02:09:07 #12227 [Debug] > │             let v31 : float = v18 + v28                                      │

02:09:07 #12228 [Debug] > │             let v32 : float = v0 * v10                                       │

02:09:07 #12229 [Debug] > │             let v33 : float = v0 * v11                                       │

02:09:07 #12230 [Debug] > │             let v34 : float = v0 * v12                                       │

02:09:07 #12231 [Debug] > │             let v35 : float = v20 + v32                                      │

02:09:07 #12232 [Debug] > │             let v36 : float = v21 + v33                                      │

02:09:07 #12233 [Debug] > │             let v37 : float = v22 + v34                                      │

02:09:07 #12234 [Debug] > │             let v38 : UH0 = UH0_0(v14, v15, v29, v30, v31, v25, v35, v36,    │

02:09:07 #12235 [Debug] > │ v37, v1)                                                                     │

02:09:07 #12236 [Debug] > │             method1(v0, v38, v13, v23)                                       │

02:09:07 #12237 [Debug] > │         | _ ->                                                               │

02:09:07 #12238 [Debug] > │             let v40 : UH0 = UH0_1                                            │

02:09:07 #12239 [Debug] > │             method2(v1, v40)                                                 │

02:09:07 #12240 [Debug] > │     | _ ->                                                                   │

02:09:07 #12241 [Debug] > │         let v43 : UH0 = UH0_1                                                │

02:09:07 #12242 [Debug] > │         method2(v1, v43)                                                     │

02:09:07 #12243 [Debug] > │ and method4 (v0 : UH2, v1 : UH2) : UH2 =                                     │

02:09:07 #12244 [Debug] > │     match v0 with                                                            │

02:09:07 #12245 [Debug] > │     | UH2_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15,    │

02:09:07 #12246 [Debug] > │ v16, v17, v18, v19, v20) -> (* Cons *)                                       │

02:09:07 #12247 [Debug] > │         let v21 : UH2 = UH2_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, │

02:09:07 #12248 [Debug] > │ v13, v14, v15, v16, v17, v18, v19, v1)                                       │

02:09:07 #12249 [Debug] > │         method4(v20, v21)                                                    │

02:09:07 #12250 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:07 #12251 [Debug] > │         v1                                                                   │

02:09:07 #12252 [Debug] > │ and method3 (v0 : UH2, v1 : UH0, v2 : UH0) : UH2 =                           │

02:09:07 #12253 [Debug] > │     match v1 with                                                            │

02:09:07 #12254 [Debug] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

02:09:07 #12255 [Debug] > │         match v2 with                                                        │

02:09:07 #12256 [Debug] > │         | UH0_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (* Cons │

02:09:07 #12257 [Debug] > │ *)                                                                           │

02:09:07 #12258 [Debug] > │             let v23 : UH2 = UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v13, │

02:09:07 #12259 [Debug] > │ v14, v15, v16, v17, v18, v19, v20, v21, v0)                                  │

02:09:07 #12260 [Debug] > │             method3(v23, v12, v22)                                           │

02:09:07 #12261 [Debug] > │         | _ ->                                                               │

02:09:07 #12262 [Debug] > │             let v25 : UH2 = UH2_1                                            │

02:09:07 #12263 [Debug] > │             method4(v0, v25)                                                 │

02:09:07 #12264 [Debug] > │     | _ ->                                                                   │

02:09:07 #12265 [Debug] > │         let v28 : UH2 = UH2_1                                                │

02:09:07 #12266 [Debug] > │         method4(v0, v28)                                                     │

02:09:07 #12267 [Debug] > │ and method5 (v0 : float, v1 : UH2, v2 : UH0) : UH0 =                         │

02:09:07 #12268 [Debug] > │     match v1 with                                                            │

02:09:07 #12269 [Debug] > │     | UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16,   │

02:09:07 #12270 [Debug] > │ v17, v18, v19, v20, v21) -> (* Cons *)                                       │

02:09:07 #12271 [Debug] > │         let v22 : UH0 = method5(v0, v21, v2)                                 │

02:09:07 #12272 [Debug] > │         let v23 : float = v0 * v18                                           │

02:09:07 #12273 [Debug] > │         let v24 : float = v0 * v19                                           │

02:09:07 #12274 [Debug] > │         let v25 : float = v0 * v20                                           │

02:09:07 #12275 [Debug] > │         let v26 : float = v5 + v23                                           │

02:09:07 #12276 [Debug] > │         let v27 : float = v6 + v24                                           │

02:09:07 #12277 [Debug] > │         let v28 : float = v7 + v25                                           │

02:09:07 #12278 [Debug] > │         UH0_0(v12, v13, v26, v27, v28, v17, v18, v19, v20, v22)              │

02:09:07 #12279 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:09:07 #12280 [Debug] > │         v2                                                                   │

02:09:07 #12281 [Debug] > │ and closure2 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

02:09:07 #12282 [Debug] > │     let v3 : UH1 = v1 v2                                                     │

02:09:07 #12283 [Debug] > │     let v4 : UH0 = UH0_1                                                     │

02:09:07 #12284 [Debug] > │     let v5 : UH0 = method1(v0, v4, v3, v2)                                   │

02:09:07 #12285 [Debug] > │     let v6 : UH2 = UH2_1                                                     │

02:09:07 #12286 [Debug] > │     let v7 : UH2 = method3(v6, v2, v5)                                       │

02:09:07 #12287 [Debug] > │     let v8 : UH0 = UH0_1                                                     │

02:09:07 #12288 [Debug] > │     let v9 : UH0 = method5(v0, v7, v8)                                       │

02:09:07 #12289 [Debug] > │     v9                                                                       │

02:09:07 #12290 [Debug] > │ and closure1 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

02:09:07 #12291 [Debug] > │     closure2(v0, v1)                                                         │

02:09:07 #12292 [Debug] > │ and closure0 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

02:09:07 #12293 [Debug] > │     closure1(v0)                                                             │

02:09:07 #12294 [Debug] > │ and method6 (v0 : UH0, v1 : UH3, v2 : int32) : struct (UH3 * int32) =        │

02:09:07 #12295 [Debug] > │     match v0 with                                                            │

02:09:07 #12296 [Debug] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

02:09:07 #12297 [Debug] > │         let v13 : int32 = v2 + 1                                             │

02:09:07 #12298 [Debug] > │         let v14 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v1)  │

02:09:07 #12299 [Debug] > │         method6(v12, v14, v13)                                               │

02:09:07 #12300 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:07 #12301 [Debug] > │         struct (v1, v2)                                                      │

02:09:07 #12302 [Debug] > │ and method7 (v0 : UH3, v1 : UH3) : UH3 =                                     │

02:09:07 #12303 [Debug] > │     match v0 with                                                            │

02:09:07 #12304 [Debug] > │     | UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)     │

02:09:07 #12305 [Debug] > │         let v13 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v1)  │

02:09:07 #12306 [Debug] > │         method7(v12, v13)                                                    │

02:09:07 #12307 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:09:07 #12308 [Debug] > │         v1                                                                   │

02:09:07 #12309 [Debug] > │ and closure4 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5 │

02:09:07 #12310 [Debug] > │ : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :       │

02:09:07 #12311 [Debug] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:09:07 #12312 [Debug] > │ : float, v17 : float) : struct (float * float * float) =                     │

02:09:07 #12313 [Debug] > │     let v18 : float = -1.0 * v2                                              │

02:09:07 #12314 [Debug] > │     let v19 : float = -1.0 * v3                                              │

02:09:07 #12315 [Debug] > │     let v20 : float = -1.0 * v4                                              │

02:09:07 #12316 [Debug] > │     let v21 : float = v11 + v18                                              │

02:09:07 #12317 [Debug] > │     let v22 : float = v12 + v19                                              │

02:09:07 #12318 [Debug] > │     let v23 : float = v13 + v20                                              │

02:09:07 #12319 [Debug] > │     let v24 : float = v21 * v21                                              │

02:09:07 #12320 [Debug] > │     let v25 : float = v22 * v22                                              │

02:09:07 #12321 [Debug] > │     let v26 : float = v24 + v25                                              │

02:09:07 #12322 [Debug] > │     let v27 : float = v23 * v23                                              │

02:09:07 #12323 [Debug] > │     let v28 : float = v26 + v27                                              │

02:09:07 #12324 [Debug] > │     let v29 : float = sqrt v28                                               │

02:09:07 #12325 [Debug] > │     let v30 : bool = v29 >= 0.06                                             │

02:09:07 #12326 [Debug] > │     let v33 : float =                                                        │

02:09:07 #12327 [Debug] > │         if v30 then                                                          │

02:09:07 #12328 [Debug] > │             0.0                                                              │

02:09:07 #12329 [Debug] > │         else                                                                 │

02:09:07 #12330 [Debug] > │             let v31 : float = v29 - 0.06                                     │

02:09:07 #12331 [Debug] > │             let v32 : float = -30.0 * v31                                    │

02:09:07 #12332 [Debug] > │             v32                                                              │

02:09:07 #12333 [Debug] > │     let v34 : float = v33 * v21                                              │

02:09:07 #12334 [Debug] > │     let v35 : float = v33 * v22                                              │

02:09:07 #12335 [Debug] > │     let v36 : float = v33 * v23                                              │

02:09:07 #12336 [Debug] > │     let v37 : float = v34 / v29                                              │

02:09:07 #12337 [Debug] > │     let v38 : float = v35 / v29                                              │

02:09:07 #12338 [Debug] > │     let v39 : float = v36 / v29                                              │

02:09:07 #12339 [Debug] > │     struct (v37, v38, v39)                                                   │

02:09:07 #12340 [Debug] > │ and closure5 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

02:09:07 #12341 [Debug] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

02:09:07 #12342 [Debug] > │ float * float) =                                                             │

02:09:07 #12343 [Debug] > │     struct (0.0, 0.0, 0.0)                                                   │

02:09:07 #12344 [Debug] > │ and method8 (v0 : UH0, v1 : UH3, v2 : UH1) : UH1 =                           │

02:09:07 #12345 [Debug] > │     match v1 with                                                            │

02:09:07 #12346 [Debug] > │     | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* Cons *)    │

02:09:07 #12347 [Debug] > │         let v14 : UH1 = method8(v0, v13, v2)                                 │

02:09:07 #12348 [Debug] > │         let v15 : bool = v3 = 0                                              │

02:09:07 #12349 [Debug] > │         let v134 : (struct (float * float * float * float * float * float *  │

02:09:07 #12350 [Debug] > │ float * float * float) -> struct (float * float * float)) =                  │

02:09:07 #12351 [Debug] > │             if v15 then                                                      │

02:09:07 #12352 [Debug] > │                 let v42 : US0 =                                              │

02:09:07 #12353 [Debug] > │                     match v0 with                                            │

02:09:07 #12354 [Debug] > │                     | UH0_0(v16, v17, v18, v19, v20, v21, v22, v23, v24,     │

02:09:07 #12355 [Debug] > │ v25) -> (* Cons *)                                                           │

02:09:07 #12356 [Debug] > │                         match v25 with                                       │

02:09:07 #12357 [Debug] > │                         | UH0_0(v26, v27, v28, v29, v30, v31, v32, v33, v34, │

02:09:07 #12358 [Debug] > │ v35) -> (* Cons *)                                                           │

02:09:07 #12359 [Debug] > │                             US0_1(v26, v27, v28, v29, v30, v31, v32, v33,    │

02:09:07 #12360 [Debug] > │ v34)                                                                         │

02:09:07 #12361 [Debug] > │                         | UH0_1 -> (* Nil *)                                 │

02:09:07 #12362 [Debug] > │                             US0_0                                            │

02:09:07 #12363 [Debug] > │                     | UH0_1 -> (* Nil *)                                     │

02:09:07 #12364 [Debug] > │                         US0_0                                                │

02:09:07 #12365 [Debug] > │                 let struct (v70 : float, v71 : float, v72 : float, v73 :     │

02:09:07 #12366 [Debug] > │ float, v74 : float, v75 : float, v76 : float, v77 : float, v78 : float) =    │

02:09:07 #12367 [Debug] > │                     match v42 with                                           │

02:09:07 #12368 [Debug] > │                     | US0_0 -> (* None *)                                    │

02:09:07 #12369 [Debug] > │                         failwith<struct (float * float * float * float *     │

02:09:07 #12370 [Debug] > │ float * float * float * float * float)> "Option does not have a value."      │

02:09:07 #12371 [Debug] > │                     | US0_1(v43, v44, v45, v46, v47, v48, v49, v50, v51) ->  │

02:09:07 #12372 [Debug] > │ (* Some *)                                                                   │

02:09:07 #12373 [Debug] > │                         struct (v43, v44, v45, v46, v47, v48, v49, v50, v51) │

02:09:07 #12374 [Debug] > │                 closure4(v70, v71, v72, v73, v74, v75, v76, v77, v78)        │

02:09:07 #12375 [Debug] > │             else                                                             │

02:09:07 #12376 [Debug] > │                 let v80 : bool = v3 = 1                                      │

02:09:07 #12377 [Debug] > │                 if v80 then                                                  │

02:09:07 #12378 [Debug] > │                     let v94 : US0 =                                          │

02:09:07 #12379 [Debug] > │                         match v0 with                                        │

02:09:07 #12380 [Debug] > │                         | UH0_0(v81, v82, v83, v84, v85, v86, v87, v88, v89, │

02:09:07 #12381 [Debug] > │ v90) -> (* Cons *)                                                           │

02:09:07 #12382 [Debug] > │                             US0_1(v81, v82, v83, v84, v85, v86, v87, v88,    │

02:09:07 #12383 [Debug] > │ v89)                                                                         │

02:09:07 #12384 [Debug] > │                         | UH0_1 -> (* Nil *)                                 │

02:09:07 #12385 [Debug] > │                             US0_0                                            │

02:09:07 #12386 [Debug] > │                     let struct (v122 : float, v123 : float, v124 : float,    │

02:09:07 #12387 [Debug] > │ v125 : float, v126 : float, v127 : float, v128 : float, v129 : float, v130 : │

02:09:07 #12388 [Debug] > │ float) =                                                                     │

02:09:07 #12389 [Debug] > │                         match v94 with                                       │

02:09:07 #12390 [Debug] > │                         | US0_0 -> (* None *)                                │

02:09:07 #12391 [Debug] > │                             failwith<struct (float * float * float * float * │

02:09:07 #12392 [Debug] > │ float * float * float * float * float)> "Option does not have a value."      │

02:09:07 #12393 [Debug] > │                         | US0_1(v95, v96, v97, v98, v99, v100, v101, v102,   │

02:09:07 #12394 [Debug] > │ v103) -> (* Some *)                                                          │

02:09:07 #12395 [Debug] > │                             struct (v95, v96, v97, v98, v99, v100, v101,     │

02:09:07 #12396 [Debug] > │ v102, v103)                                                                  │

02:09:07 #12397 [Debug] > │                     closure4(v122, v123, v124, v125, v126, v127, v128, v129, │

02:09:07 #12398 [Debug] > │ v130)                                                                        │

02:09:07 #12399 [Debug] > │                 else                                                         │

02:09:07 #12400 [Debug] > │                     closure5()                                               │

02:09:07 #12401 [Debug] > │         let struct (v135 : float, v136 : float, v137 : float) = v134 struct  │

02:09:07 #12402 [Debug] > │ (v4, v5, v6, v7, v8, v9, v10, v11, v12)                                      │

02:09:07 #12403 [Debug] > │         let v138 : float = v135 / v5                                         │

02:09:07 #12404 [Debug] > │         let v139 : float = v136 / v5                                         │

02:09:07 #12405 [Debug] > │         let v140 : float = v137 / v5                                         │

02:09:07 #12406 [Debug] > │         UH1_0(0.0, 0.0, v10, v11, v12, 1.0, v138, v139, v140, v14)           │

02:09:07 #12407 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:09:07 #12408 [Debug] > │         v2                                                                   │

02:09:07 #12409 [Debug] > │ and closure3 () (v0 : UH0) : UH1 =                                           │

02:09:07 #12410 [Debug] > │     let v1 : UH3 = UH3_1                                                     │

02:09:07 #12411 [Debug] > │     let v2 : int32 = 0                                                       │

02:09:07 #12412 [Debug] > │     let struct (v3 : UH3, v4 : int32) = method6(v0, v1, v2)                  │

02:09:07 #12413 [Debug] > │     let v5 : UH3 = UH3_1                                                     │

02:09:07 #12414 [Debug] > │     let v6 : UH3 = method7(v3, v5)                                           │

02:09:07 #12415 [Debug] > │     let v7 : UH1 = UH1_1                                                     │

02:09:07 #12416 [Debug] > │     let v8 : UH1 = method8(v0, v6, v7)                                       │

02:09:07 #12417 [Debug] > │     v8                                                                       │

02:09:07 #12418 [Debug] > │ and method10 (v0 : (UH0 -> UH0), v1 : UH0, v2 : int32) : UH0 =               │

02:09:07 #12419 [Debug] > │     let v3 : bool = v2 <= 0                                                  │

02:09:07 #12420 [Debug] > │     if v3 then                                                               │

02:09:07 #12421 [Debug] > │         v1                                                                   │

02:09:07 #12422 [Debug] > │     else                                                                     │

02:09:07 #12423 [Debug] > │         let v4 : UH0 = v0 v1                                                 │

02:09:07 #12424 [Debug] > │         let v5 : int32 = v2 - 1                                              │

02:09:07 #12425 [Debug] > │         method10(v0, v4, v5)                                                 │

02:09:07 #12426 [Debug] > │ and method11 (v0 : UH4, v1 : UH4) : UH4 =                                    │

02:09:07 #12427 [Debug] > │     match v0 with                                                            │

02:09:07 #12428 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:09:07 #12429 [Debug] > │         let v4 : UH4 = UH4_0(v2, v1)                                         │

02:09:07 #12430 [Debug] > │         method11(v3, v4)                                                     │

02:09:07 #12431 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:07 #12432 [Debug] > │         v1                                                                   │

02:09:07 #12433 [Debug] > │ and method9 (v0 : (UH0 -> UH0), v1 : UH4, v2 : int32) : UH4 =                │

02:09:07 #12434 [Debug] > │     let v3 : float = 0.0                                                     │

02:09:07 #12435 [Debug] > │     let v4 : float = 0.16                                                    │

02:09:07 #12436 [Debug] > │     let v5 : float = 0.0                                                     │

02:09:07 #12437 [Debug] > │     let v6 : float = 0.0                                                     │

02:09:07 #12438 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:07 #12439 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:07 #12440 [Debug] > │     let v9 : float = 0.2                                                     │

02:09:07 #12441 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:07 #12442 [Debug] > │     let v11 : float = 0.0                                                    │

02:09:07 #12443 [Debug] > │     let v12 : float = 1.0                                                    │

02:09:07 #12444 [Debug] > │     let v13 : float = 0.02                                                   │

02:09:07 #12445 [Debug] > │     let v14 : float = 0.0                                                    │

02:09:07 #12446 [Debug] > │     let v15 : float = 0.0                                                    │

02:09:07 #12447 [Debug] > │     let v16 : float = 0.0                                                    │

02:09:07 #12448 [Debug] > │     let v17 : float = 0.0                                                    │

02:09:07 #12449 [Debug] > │     let v18 : UH0 = UH0_1                                                    │

02:09:07 #12450 [Debug] > │     let v19 : UH0 = UH0_0(v3, v4, v12, v13, v14, v8, v15, v16, v17, v18)     │

02:09:07 #12451 [Debug] > │     let v20 : UH0 = UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v19)         │

02:09:07 #12452 [Debug] > │     let v21 : UH0 = method10(v0, v20, v2)                                    │

02:09:07 #12453 [Debug] > │     let v35 : US0 =                                                          │

02:09:07 #12454 [Debug] > │         match v21 with                                                       │

02:09:07 #12455 [Debug] > │         | UH0_0(v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) -> (* Cons │

02:09:07 #12456 [Debug] > │ *)                                                                           │

02:09:07 #12457 [Debug] > │             US0_1(v22, v23, v24, v25, v26, v27, v28, v29, v30)               │

02:09:07 #12458 [Debug] > │         | UH0_1 -> (* Nil *)                                                 │

02:09:07 #12459 [Debug] > │             US0_0                                                            │

02:09:07 #12460 [Debug] > │     let struct (v63 : float, v64 : float, v65 : float, v66 : float, v67 :    │

02:09:07 #12461 [Debug] > │ float, v68 : float, v69 : float, v70 : float, v71 : float) =                 │

02:09:07 #12462 [Debug] > │         match v35 with                                                       │

02:09:07 #12463 [Debug] > │         | US0_0 -> (* None *)                                                │

02:09:07 #12464 [Debug] > │             failwith<struct (float * float * float * float * float * float * │

02:09:07 #12465 [Debug] > │ float * float * float)> "Option does not have a value."                      │

02:09:07 #12466 [Debug] > │         | US0_1(v36, v37, v38, v39, v40, v41, v42, v43, v44) -> (* Some *)   │

02:09:07 #12467 [Debug] > │             struct (v36, v37, v38, v39, v40, v41, v42, v43, v44)             │

02:09:07 #12468 [Debug] > │     let v72 : bool = v68 <= 10.0                                             │

02:09:07 #12469 [Debug] > │     if v72 then                                                              │

02:09:07 #12470 [Debug] > │         let v73 : UH4 = UH4_0(v21, v1)                                       │

02:09:07 #12471 [Debug] > │         let v74 : int32 = v2 + 1                                             │

02:09:07 #12472 [Debug] > │         method9(v0, v73, v74)                                                │

02:09:07 #12473 [Debug] > │     else                                                                     │

02:09:07 #12474 [Debug] > │         let v76 : UH4 = UH4_1                                                │

02:09:07 #12475 [Debug] > │         method11(v1, v76)                                                    │

02:09:07 #12476 [Debug] > │ and method13 (v0 : UH0, v1 : UH6) : UH6 =                                    │

02:09:07 #12477 [Debug] > │     match v0 with                                                            │

02:09:07 #12478 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:07 #12479 [Debug] > │         let v12 : UH6 = method13(v11, v1)                                    │

02:09:07 #12480 [Debug] > │         let v13 : float = v8 * v8                                            │

02:09:07 #12481 [Debug] > │         let v14 : float = v9 * v9                                            │

02:09:07 #12482 [Debug] > │         let v15 : float = v13 + v14                                          │

02:09:07 #12483 [Debug] > │         let v16 : float = v10 * v10                                          │

02:09:07 #12484 [Debug] > │         let v17 : float = v15 + v16                                          │

02:09:07 #12485 [Debug] > │         let v18 : float = sqrt v17                                           │

02:09:07 #12486 [Debug] > │         let v19 : float = 0.5 * v3                                           │

02:09:07 #12487 [Debug] > │         let v20 : float = v18 ** 2.0                                         │

02:09:07 #12488 [Debug] > │         let v21 : float = v19 * v20                                          │

02:09:07 #12489 [Debug] > │         UH6_0(v21, v12)                                                      │

02:09:07 #12490 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:07 #12491 [Debug] > │         v1                                                                   │

02:09:07 #12492 [Debug] > │ and method14 (v0 : UH6, v1 : float) : float =                                │

02:09:07 #12493 [Debug] > │     match v0 with                                                            │

02:09:07 #12494 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:09:07 #12495 [Debug] > │         let v4 : float = v1 + v2                                             │

02:09:07 #12496 [Debug] > │         method14(v3, v4)                                                     │

02:09:07 #12497 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:09:07 #12498 [Debug] > │         v1                                                                   │

02:09:07 #12499 [Debug] > │ and method12 (v0 : UH4, v1 : UH5) : UH5 =                                    │

02:09:07 #12500 [Debug] > │     match v0 with                                                            │

02:09:07 #12501 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:09:07 #12502 [Debug] > │         let v4 : UH5 = method12(v3, v1)                                      │

02:09:07 #12503 [Debug] > │         let v18 : US0 =                                                      │

02:09:07 #12504 [Debug] > │             match v2 with                                                    │

02:09:07 #12505 [Debug] > │             | UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* Cons  │

02:09:07 #12506 [Debug] > │ *)                                                                           │

02:09:07 #12507 [Debug] > │                 US0_1(v5, v6, v7, v8, v9, v10, v11, v12, v13)                │

02:09:07 #12508 [Debug] > │             | UH0_1 -> (* Nil *)                                             │

02:09:07 #12509 [Debug] > │                 US0_0                                                        │

02:09:07 #12510 [Debug] > │         let struct (v46 : float, v47 : float, v48 : float, v49 : float, v50  │

02:09:07 #12511 [Debug] > │ : float, v51 : float, v52 : float, v53 : float, v54 : float) =               │

02:09:07 #12512 [Debug] > │             match v18 with                                                   │

02:09:07 #12513 [Debug] > │             | US0_0 -> (* None *)                                            │

02:09:07 #12514 [Debug] > │                 failwith<struct (float * float * float * float * float *     │

02:09:07 #12515 [Debug] > │ float * float * float * float)> "Option does not have a value."              │

02:09:07 #12516 [Debug] > │             | US0_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some  │

02:09:07 #12517 [Debug] > │ *)                                                                           │

02:09:07 #12518 [Debug] > │                 struct (v19, v20, v21, v22, v23, v24, v25, v26, v27)         │

02:09:07 #12519 [Debug] > │         let v55 : UH6 = UH6_1                                                │

02:09:07 #12520 [Debug] > │         let v56 : UH6 = method13(v2, v55)                                    │

02:09:07 #12521 [Debug] > │         let v57 : float = 0.0                                                │

02:09:07 #12522 [Debug] > │         let v58 : float = method14(v56, v57)                                 │

02:09:07 #12523 [Debug] > │         UH5_0(v51, v58, v4)                                                  │

02:09:07 #12524 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:07 #12525 [Debug] > │         v1                                                                   │

02:09:07 #12526 [Debug] > │ and method15 (v0 : UH5, v1 : UH6, v2 : UH6) : struct (UH6 * UH6) =           │

02:09:07 #12527 [Debug] > │     match v0 with                                                            │

02:09:07 #12528 [Debug] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

02:09:07 #12529 [Debug] > │         let v6 : UH6 = UH6_0(v3, v1)                                         │

02:09:07 #12530 [Debug] > │         let v7 : UH6 = UH6_0(v4, v2)                                         │

02:09:07 #12531 [Debug] > │         method15(v5, v6, v7)                                                 │

02:09:07 #12532 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:09:07 #12533 [Debug] > │         struct (v1, v2)                                                      │

02:09:07 #12534 [Debug] > │ and method16 (v0 : UH6, v1 : UH6) : UH6 =                                    │

02:09:07 #12535 [Debug] > │     match v0 with                                                            │

02:09:07 #12536 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:09:07 #12537 [Debug] > │         let v4 : UH6 = UH6_0(v2, v1)                                         │

02:09:07 #12538 [Debug] > │         method16(v3, v4)                                                     │

02:09:07 #12539 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:09:07 #12540 [Debug] > │         v1                                                                   │

02:09:07 #12541 [Debug] > │ and method18 (v0 : UH1, v1 : UH1) : UH1 =                                    │

02:09:07 #12542 [Debug] > │     match v0 with                                                            │

02:09:07 #12543 [Debug] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

02:09:07 #12544 [Debug] > │         let v12 : UH1 = UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

02:09:07 #12545 [Debug] > │         method18(v11, v12)                                                   │

02:09:07 #12546 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:07 #12547 [Debug] > │         v1                                                                   │

02:09:07 #12548 [Debug] > │ and method17 (v0 : UH1, v1 : UH1, v2 : UH1) : UH1 =                          │

02:09:07 #12549 [Debug] > │     match v1 with                                                            │

02:09:07 #12550 [Debug] > │     | UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

02:09:07 #12551 [Debug] > │         match v2 with                                                        │

02:09:07 #12552 [Debug] > │         | UH1_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (* Cons │

02:09:07 #12553 [Debug] > │ *)                                                                           │

02:09:07 #12554 [Debug] > │             let v23 : float = v3 + v13                                       │

02:09:07 #12555 [Debug] > │             let v24 : float = v4 + v14                                       │

02:09:07 #12556 [Debug] > │             let v25 : float = v8 + v18                                       │

02:09:07 #12557 [Debug] > │             let v26 : float = v5 + v15                                       │

02:09:07 #12558 [Debug] > │             let v27 : float = v6 + v16                                       │

02:09:07 #12559 [Debug] > │             let v28 : float = v7 + v17                                       │

02:09:07 #12560 [Debug] > │             let v29 : float = v9 + v19                                       │

02:09:07 #12561 [Debug] > │             let v30 : float = v10 + v20                                      │

02:09:07 #12562 [Debug] > │             let v31 : float = v11 + v21                                      │

02:09:07 #12563 [Debug] > │             let v32 : UH1 = UH1_0(v23, v24, v26, v27, v28, v25, v29, v30,    │

02:09:07 #12564 [Debug] > │ v31, v0)                                                                     │

02:09:07 #12565 [Debug] > │             method17(v32, v12, v22)                                          │

02:09:07 #12566 [Debug] > │         | _ ->                                                               │

02:09:07 #12567 [Debug] > │             let v34 : UH1 = UH1_1                                            │

02:09:07 #12568 [Debug] > │             method18(v0, v34)                                                │

02:09:07 #12569 [Debug] > │     | _ ->                                                                   │

02:09:07 #12570 [Debug] > │         let v37 : UH1 = UH1_1                                                │

02:09:07 #12571 [Debug] > │         method18(v0, v37)                                                    │

02:09:07 #12572 [Debug] > │ and closure8 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

02:09:07 #12573 [Debug] > │     let v3 : UH1 = v1 v2                                                     │

02:09:07 #12574 [Debug] > │     let v4 : float = v0 / 2.0                                                │

02:09:07 #12575 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:09:07 #12576 [Debug] > │     let v6 : UH0 = method1(v4, v5, v3, v2)                                   │

02:09:07 #12577 [Debug] > │     let v7 : UH1 = v1 v6                                                     │

02:09:07 #12578 [Debug] > │     let v8 : UH0 = UH0_1                                                     │

02:09:07 #12579 [Debug] > │     let v9 : UH0 = method1(v4, v8, v7, v2)                                   │

02:09:07 #12580 [Debug] > │     let v10 : UH1 = v1 v9                                                    │

02:09:07 #12581 [Debug] > │     let v11 : UH0 = UH0_1                                                    │

02:09:07 #12582 [Debug] > │     let v12 : UH0 = method1(v0, v11, v10, v2)                                │

02:09:07 #12583 [Debug] > │     let v13 : UH1 = v1 v12                                                   │

02:09:07 #12584 [Debug] > │     let v14 : float = v0 / 6.0                                               │

02:09:07 #12585 [Debug] > │     let v15 : UH1 = UH1_1                                                    │

02:09:07 #12586 [Debug] > │     let v16 : UH1 = method17(v15, v3, v7)                                    │

02:09:07 #12587 [Debug] > │     let v17 : UH1 = UH1_1                                                    │

02:09:07 #12588 [Debug] > │     let v18 : UH1 = method17(v17, v16, v7)                                   │

02:09:07 #12589 [Debug] > │     let v19 : UH1 = UH1_1                                                    │

02:09:07 #12590 [Debug] > │     let v20 : UH1 = method17(v19, v18, v10)                                  │

02:09:07 #12591 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:09:07 #12592 [Debug] > │     let v22 : UH1 = method17(v21, v20, v10)                                  │

02:09:07 #12593 [Debug] > │     let v23 : UH1 = UH1_1                                                    │

02:09:07 #12594 [Debug] > │     let v24 : UH1 = method17(v23, v22, v13)                                  │

02:09:07 #12595 [Debug] > │     let v25 : UH0 = UH0_1                                                    │

02:09:07 #12596 [Debug] > │     let v26 : UH0 = method1(v14, v25, v24, v2)                               │

02:09:07 #12597 [Debug] > │     v26                                                                      │

02:09:07 #12598 [Debug] > │ and closure7 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

02:09:07 #12599 [Debug] > │     closure8(v0, v1)                                                         │

02:09:07 #12600 [Debug] > │ and closure6 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

02:09:07 #12601 [Debug] > │     closure7(v0)                                                             │

02:09:07 #12602 [Debug] > │ and method19 (v0 : UH4, v1 : UH5) : UH5 =                                    │

02:09:07 #12603 [Debug] > │     match v0 with                                                            │

02:09:07 #12604 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:09:07 #12605 [Debug] > │         let v4 : UH5 = method19(v3, v1)                                      │

02:09:07 #12606 [Debug] > │         let v18 : US0 =                                                      │

02:09:07 #12607 [Debug] > │             match v2 with                                                    │

02:09:07 #12608 [Debug] > │             | UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* Cons  │

02:09:07 #12609 [Debug] > │ *)                                                                           │

02:09:07 #12610 [Debug] > │                 US0_1(v5, v6, v7, v8, v9, v10, v11, v12, v13)                │

02:09:07 #12611 [Debug] > │             | UH0_1 -> (* Nil *)                                             │

02:09:07 #12612 [Debug] > │                 US0_0                                                        │

02:09:07 #12613 [Debug] > │         let struct (v46 : float, v47 : float, v48 : float, v49 : float, v50  │

02:09:07 #12614 [Debug] > │ : float, v51 : float, v52 : float, v53 : float, v54 : float) =               │

02:09:07 #12615 [Debug] > │             match v18 with                                                   │

02:09:07 #12616 [Debug] > │             | US0_0 -> (* None *)                                            │

02:09:07 #12617 [Debug] > │                 failwith<struct (float * float * float * float * float *     │

02:09:07 #12618 [Debug] > │ float * float * float * float)> "Option does not have a value."              │

02:09:07 #12619 [Debug] > │             | US0_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some  │

02:09:07 #12620 [Debug] > │ *)                                                                           │

02:09:07 #12621 [Debug] > │                 struct (v19, v20, v21, v22, v23, v24, v25, v26, v27)         │

02:09:07 #12622 [Debug] > │         let v55 : UH6 = UH6_1                                                │

02:09:07 #12623 [Debug] > │         let v56 : UH6 = method13(v2, v55)                                    │

02:09:07 #12624 [Debug] > │         let v57 : float = 0.0                                                │

02:09:07 #12625 [Debug] > │         let v58 : float = method14(v56, v57)                                 │

02:09:07 #12626 [Debug] > │         UH5_0(v51, v58, v4)                                                  │

02:09:07 #12627 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:07 #12628 [Debug] > │         v1                                                                   │

02:09:07 #12629 [Debug] > │ and method21 (v0 : UH6, v1 : int32) : int32 =                                │

02:09:07 #12630 [Debug] > │     match v0 with                                                            │

02:09:07 #12631 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:09:07 #12632 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:09:07 #12633 [Debug] > │         method21(v3, v4)                                                     │

02:09:07 #12634 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:09:07 #12635 [Debug] > │         v1                                                                   │

02:09:07 #12636 [Debug] > │ and method22 (v0 : (float []), v1 : UH6, v2 : int32) : int32 =               │

02:09:07 #12637 [Debug] > │     match v1 with                                                            │

02:09:07 #12638 [Debug] > │     | UH6_0(v3, v4) -> (* Cons *)                                            │

02:09:07 #12639 [Debug] > │         v0.[int v2] <- v3                                                    │

02:09:07 #12640 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:09:07 #12641 [Debug] > │         method22(v0, v4, v5)                                                 │

02:09:07 #12642 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:09:07 #12643 [Debug] > │         v2                                                                   │

02:09:07 #12644 [Debug] > │ and method20 (v0 : UH6) : (float []) =                                       │

02:09:07 #12645 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:07 #12646 [Debug] > │     let v2 : int32 = method21(v0, v1)                                        │

02:09:07 #12647 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:09:07 #12648 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:07 #12649 [Debug] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

02:09:07 #12650 [Debug] > │     v3                                                                       │

02:09:07 #12651 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:09:07 #12652 [Debug] > │ []) * (float [])) [])) =                                                     │

02:09:07 #12653 [Debug] > │     let v0 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure0()          │

02:09:07 #12654 [Debug] > │     let v1 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v0 0.03                        │

02:09:07 #12655 [Debug] > │     let v2 : (UH0 -> UH1) = closure3()                                       │

02:09:07 #12656 [Debug] > │     let v3 : (UH0 -> UH0) = v1 v2                                            │

02:09:07 #12657 [Debug] > │     let v4 : UH4 = UH4_1                                                     │

02:09:07 #12658 [Debug] > │     let v5 : int32 = 0                                                       │

02:09:07 #12659 [Debug] > │     let v6 : UH4 = method9(v3, v4, v5)                                       │

02:09:07 #12660 [Debug] > │     let v7 : UH5 = UH5_1                                                     │

02:09:07 #12661 [Debug] > │     let v8 : UH5 = method12(v6, v7)                                          │

02:09:07 #12662 [Debug] > │     let v9 : UH6 = UH6_1                                                     │

02:09:07 #12663 [Debug] > │     let v10 : UH6 = UH6_1                                                    │

02:09:07 #12664 [Debug] > │     let struct (v11 : UH6, v12 : UH6) = method15(v8, v9, v10)                │

02:09:07 #12665 [Debug] > │     let v13 : UH6 = UH6_1                                                    │

02:09:07 #12666 [Debug] > │     let v14 : UH6 = method16(v11, v13)                                       │

02:09:07 #12667 [Debug] > │     let v15 : UH6 = UH6_1                                                    │

02:09:07 #12668 [Debug] > │     let v16 : UH6 = method16(v12, v15)                                       │

02:09:07 #12669 [Debug] > │     let v17 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure6()         │

02:09:07 #12670 [Debug] > │     let v18 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v17 0.03                      │

02:09:07 #12671 [Debug] > │     let v19 : (UH0 -> UH0) = v18 v2                                          │

02:09:07 #12672 [Debug] > │     let v20 : UH4 = UH4_1                                                    │

02:09:07 #12673 [Debug] > │     let v21 : int32 = 0                                                      │

02:09:07 #12674 [Debug] > │     let v22 : UH4 = method9(v19, v20, v21)                                   │

02:09:07 #12675 [Debug] > │     let v23 : UH5 = UH5_1                                                    │

02:09:07 #12676 [Debug] > │     let v24 : UH5 = method19(v22, v23)                                       │

02:09:07 #12677 [Debug] > │     let v25 : UH6 = UH6_1                                                    │

02:09:07 #12678 [Debug] > │     let v26 : UH6 = UH6_1                                                    │

02:09:07 #12679 [Debug] > │     let struct (v27 : UH6, v28 : UH6) = method15(v24, v25, v26)              │

02:09:07 #12680 [Debug] > │     let v29 : UH6 = UH6_1                                                    │

02:09:07 #12681 [Debug] > │     let v30 : UH6 = method16(v27, v29)                                       │

02:09:07 #12682 [Debug] > │     let v31 : UH6 = UH6_1                                                    │

02:09:07 #12683 [Debug] > │     let v32 : UH6 = method16(v28, v31)                                       │

02:09:07 #12684 [Debug] > │     let v33 : (float []) = method20(v14)                                     │

02:09:07 #12685 [Debug] > │     let v34 : (float []) = method20(v16)                                     │

02:09:07 #12686 [Debug] > │     let v35 : (float []) = method20(v30)                                     │

02:09:07 #12687 [Debug] > │     let v36 : (float []) = method20(v32)                                     │

02:09:07 #12688 [Debug] > │     let v37 : string = "euler-cromer"                                        │

02:09:07 #12689 [Debug] > │     let v38 : string = "runge-kutta 4"                                       │

02:09:07 #12690 [Debug] > │     let v39 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:09:07 #12691 [Debug] > │ (v37, v33, v34); struct (v38, v35, v36)|]                                    │

02:09:07 #12692 [Debug] > │     let v40 : string = "system kinetic energy versus time"                   │

02:09:07 #12693 [Debug] > │     let v41 : string = "time (s)"                                            │

02:09:07 #12694 [Debug] > │     let v42 : string = "system kinetic energy (j)"                           │

02:09:07 #12695 [Debug] > │     struct (v40, v41, v42, v39)                                              │

02:09:07 #12696 [Debug] > │ method0()                                                                    │

02:09:07 #12697 [Debug] > │                                                                              │

02:09:07 #12698 [Debug] > │                                                                              │

02:09:07 #12699 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:07 #12700 [Debug] >

02:09:07 #12701 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:07 #12702 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:07 #12703 [Debug] > │ ### wave 1                                                                   │

02:09:07 #12704 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:07 #12705 [Debug] >

02:09:07 #12706 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:07 #12707 [Debug] > // // test

02:09:07 #12708 [Debug] >

02:09:07 #12709 [Debug] > inl linear_spring k re (particle_state st1) (particle_state st2) =

02:09:07 #12710 [Debug] >     inl r1 = st1.pos_vec

02:09:07 #12711 [Debug] >     inl r2 = st2.pos_vec

02:09:07 #12712 [Debug] >     inl r21 = r2 ^-^ r1

02:09:07 #12713 [Debug] >     inl r21mag = magnitude r21

02:09:07 #12714 [Debug] >     -k * (r21mag - re) *^ r21 ^/ r21mag

02:09:07 #12715 [Debug] >

02:09:07 #12716 [Debug] > inl fixed_linear_spring k re r1 =

02:09:07 #12717 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:07 #12718 [Debug] >     linear_spring k re (particle_state { default_particle_state' with pos_vec =

02:09:07 #12719 [Debug] > r1 })

02:09:07 #12720 [Debug] >

02:09:07 #12721 [Debug] > inl forces_string () =

02:09:07 #12722 [Debug] >     [[

02:09:07 #12723 [Debug] >         ExternalForce (0, fixed_linear_spring 5384 0 (zero_vec ()))

02:09:07 #12724 [Debug] >         ExternalForce (63, fixed_linear_spring 5384 0 (0.65 *^ i_hat ()))

02:09:07 #12725 [Debug] >     ]] /@ (

02:09:07 #12726 [Debug] >         listm'.init_series 0 59 1

02:09:07 #12727 [Debug] >         |> listm.map (fun n => InternalForce (n, n + 1, linear_spring 5384 0))

02:09:07 #12728 [Debug] >     )

02:09:07 #12729 [Debug] >

02:09:07 #12730 [Debug] > inl string_update dt =

02:09:07 #12731 [Debug] >     update_mps (runge_kutta_4 dt) (forces_string ())

02:09:07 #12732 [Debug] >

02:09:07 #12733 [Debug] > inl string_initial_overtone n =

02:09:07 #12734 [Debug] >     inl ball_mass = 0.0008293 * 0.65 / 64

02:09:07 #12735 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:07 #12736 [Debug] >     listm'.init_series 0.01 0.64 0.01

02:09:07 #12737 [Debug] >     |> listm.map (fun x =>

02:09:07 #12738 [Debug] >         inl y = 0.005 * sin (conv n * pi * x / 0.65)

02:09:07 #12739 [Debug] >         particle_state {

02:09:07 #12740 [Debug] >             default_particle_state' with

02:09:07 #12741 [Debug] >                 mass = ball_mass

02:09:07 #12742 [Debug] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

02:09:07 #12743 [Debug] >                 velocity = zero_vec ()

02:09:07 #12744 [Debug] >         }

02:09:07 #12745 [Debug] >     )

02:09:07 #12746 [Debug] >     |> multi_particle_state

02:09:07 #12747 [Debug] >

02:09:07 #12748 [Debug] > inl string_initial_pluck () =

02:09:07 #12749 [Debug] >     inl ball_mass = 0.0008293 * 0.65 / 64

02:09:07 #12750 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:07 #12751 [Debug] >     listm'.init_series 0.01 0.64 0.01

02:09:07 #12752 [Debug] >     |> listm.map (fun x =>

02:09:07 #12753 [Debug] >         inl y =

02:09:07 #12754 [Debug] >             inl n = if x <= 0.51 then 0 else 0.65

02:09:07 #12755 [Debug] >             0.005 / (0.51 - n) * (x - n)

02:09:07 #12756 [Debug] >         particle_state {

02:09:07 #12757 [Debug] >             default_particle_state' with

02:09:07 #12758 [Debug] >                 mass = ball_mass

02:09:07 #12759 [Debug] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

02:09:07 #12760 [Debug] >                 velocity = zero_vec ()

02:09:07 #12761 [Debug] >         }

02:09:07 #12762 [Debug] >     )

02:09:07 #12763 [Debug] >     |> multi_particle_state

02:09:07 #12764 [Debug] >

02:09:07 #12765 [Debug] > let main () =

02:09:07 #12766 [Debug] >     inl ~frames = listm'.init_series 0 9 1f64

02:09:07 #12767 [Debug] >     inl initial_state = string_initial_overtone 3i32

02:09:07 #12768 [Debug] >     inl frames =

02:09:07 #12769 [Debug] >         frames

02:09:07 #12770 [Debug] >         |> listm.map (fun n =>

02:09:07 #12771 [Debug] >             inl (multi_particle_state sts) =

02:09:07 #12772 [Debug] >                 seq.iterate' (string_update 0.000025) initial_state |> fun f =>

02:09:07 #12773 [Debug] > f 0f64

02:09:07 #12774 [Debug] >             inl rs =

02:09:07 #12775 [Debug] >                 [[ zero_vec () ]]

02:09:07 #12776 [Debug] >                 /@ (sts |> listm.map (fun (particle_state st) => st.pos_vec))

02:09:07 #12777 [Debug] >                 /@ [[ 0.65 *^ i_hat () ]]

02:09:07 #12778 [Debug] >             inl x, y =

02:09:07 #12779 [Debug] >                 rs

02:09:07 #12780 [Debug] >                 |> listm.map (fun r => r.x, r.y)

02:09:07 #12781 [Debug] >                 |> listm'.unzip

02:09:07 #12782 [Debug] >             inl x : a i32 _ = x |> listm.toArray

02:09:07 #12783 [Debug] >             inl y : a i32 _ = y |> listm.toArray

02:09:07 #12784 [Debug] >             x, y

02:09:07 #12785 [Debug] >         )

02:09:07 #12786 [Debug] >         |> listm.toArray : a i32 _

02:09:07 #12787 [Debug] >

02:09:07 #12788 [Debug] >     inl n = 0i32

02:09:07 #12789 [Debug] >

02:09:07 #12790 [Debug] >     inl x, y = index frames n

02:09:07 #12791 [Debug] >

02:09:07 #12792 [Debug] >     "wave",

02:09:07 #12793 [Debug] >     "position (m)",

02:09:07 #12794 [Debug] >     "displacement (m)",

02:09:07 #12795 [Debug] >     ;[[

02:09:07 #12796 [Debug] >         ($"$\"{!n}\"" : string), x, y

02:09:07 #12797 [Debug] >     ]]

02:09:07 #12798 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0750-5008-53f5b0703400\main.spi

02:09:07 #12799 [Debug] >

02:09:07 #12800 [Debug] > ╭─[ 435.25ms - return value ]──────────────────────────────────────────────────╮

02:09:07 #12801 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:09:07 #12802 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:07 #12803 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:07 #12804 [Debug] > │ stroke="none"/>                                                              │

02:09:07 #12805 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:07 #12806 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:07 #12807 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:07 #12808 [Debug] > │ wave                                                                         │

02:09:07 #12809 [Debug] > │ </text>                                                                      │

02:09:07 #12810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:07 #12811 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #12812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:07 #12813 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #12814 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:07 #12815 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #12816 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:07 #12817 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #12818 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:07 #12819 [Debug] > │ y2="75"/>                                                                    │

02:09:07 #12820 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:07 #12821 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:07 #12822 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:07 #12823 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:07 #12824 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:07 #12825 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:07 #12826 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:07 #12827 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:07 #12828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:07 #12829 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:07 #12830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:07 #12831 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:07 #12832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:07 #12833 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:07 #12834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:07 #12835 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:07 #12836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:07 #12837 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:07 #12838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:07 #12839 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:07 #12840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:07 #12841 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:07 #12842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:07 #12843 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:07 #12844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:07 #12845 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:07 #12846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:07 #12847 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:07 #12848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:07 #12849 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:07 #12850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:07 #12851 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:07 #12852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:07 #12853 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:07 #12854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:07 #12855 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:07 #12856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:07 #12857 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:07 #12858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:07 #12859 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:07 #12860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:07 #12861 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:07 #12862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:07 #12863 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:07 #12864 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:07 #12865 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:07 #12866 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:07 #12867 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:07 #12868 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:07 #12869 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:07 #12870 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:07 #12871 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:07 #12872 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:07 #12873 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:07 #12874 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:07 #12875 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:07 #12876 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:07 #12877 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:07 #12878 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:07 #12879 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:07 #12880 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:07 #12881 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:07 #12882 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:07 #12883 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:07 #12884 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:07 #12885 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:07 #12886 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:07 #12887 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:07 #12888 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:07 #12889 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:07 #12890 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:07 #12891 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:07 #12892 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:07 #12893 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:07 #12894 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:07 #12895 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:07 #12896 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:07 #12897 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:07 #12898 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:07 #12899 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:07 #12900 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:07 #12901 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:07 #12902 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:07 #12903 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:07 #12904 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:07 #12905 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:07 #12906 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:07 #12907 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:07 #12908 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:07 #12909 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:07 #12910 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:07 #12911 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:07 #12912 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:07 #12913 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:07 #12914 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:07 #12915 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:07 #12916 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:07 #12917 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:07 #12918 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:07 #12919 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:07 #12920 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:07 #12921 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:07 #12922 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:07 #12923 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:07 #12924 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:07 #12925 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:07 #12926 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:07 #12927 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:07 #12928 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:07 #12929 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:07 #12930 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:07 #12931 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:07 #12932 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:07 #12933 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:07 #12934 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:07 #12935 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:07 #12936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:07 #12937 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:07 #12938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:07 #12939 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:07 #12940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:07 #12941 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:07 #12942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:07 #12943 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:07 #12944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:07 #12945 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:07 #12946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:07 #12947 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:07 #12948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:07 #12949 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:07 #12950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:07 #12951 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:07 #12952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:07 #12953 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:07 #12954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:07 #12955 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:07 #12956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:07 #12957 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:07 #12958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:07 #12959 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:07 #12960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:07 #12961 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:07 #12962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:07 #12963 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:07 #12964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:07 #12965 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:07 #12966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:07 #12967 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:07 #12968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:07 #12969 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:07 #12970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:07 #12971 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:07 #12972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:07 #12973 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:07 #12974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:09:07 #12975 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:07 #12976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:07 #12977 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:07 #12978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:09:07 #12979 [Debug] > │ x2="584" y2="135"/>                                                          │

02:09:07 #12980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:07 #12981 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:07 #12982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:09:07 #12983 [Debug] > │ x2="584" y2="102"/>                                                          │

02:09:07 #12984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:08 #12985 [Debug] > │ y2="85"/>                                                                    │

02:09:08 #12986 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:08 #12987 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #12988 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #12989 [Debug] > │ position (m)                                                                 │

02:09:08 #12990 [Debug] > │ </text>                                                                      │

02:09:08 #12991 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:08 #12992 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #12993 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:08 #12994 [Debug] > │ displacement (m)                                                             │

02:09:08 #12995 [Debug] > │ </text>                                                                      │

02:09:08 #12996 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:08 #12997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #12998 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #12999 [Debug] > │ position (m)                                                                 │

02:09:08 #13000 [Debug] > │ </text>                                                                      │

02:09:08 #13001 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13002 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13003 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:08 #13004 [Debug] > │ displacement (m)                                                             │

02:09:08 #13005 [Debug] > │ </text>                                                                      │

02:09:08 #13006 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:08 #13007 [Debug] > │ y2="75"/>                                                                    │

02:09:08 #13008 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:08 #13009 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:08 #13010 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:08 #13011 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:08 #13012 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:08 #13013 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:08 #13014 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:08 #13015 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:08 #13016 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:08 #13017 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:08 #13018 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:08 #13019 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:08 #13020 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:08 #13021 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:08 #13022 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:08 #13023 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:08 #13024 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:08 #13025 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:08 #13026 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:08 #13027 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:08 #13028 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:08 #13029 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:08 #13030 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:08 #13031 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:08 #13032 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:08 #13033 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:08 #13034 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="382"         │

02:09:08 #13035 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:08 #13036 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:08 #13037 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:08 #13038 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:08 #13039 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:08 #13040 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:08 #13041 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:08 #13042 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:08 #13043 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:08 #13044 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13045 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:08 #13046 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:08 #13047 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13048 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13049 [Debug] > │ 0.0                                                                          │

02:09:08 #13050 [Debug] > │ </text>                                                                      │

02:09:08 #13051 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13052 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:08 #13053 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13054 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13055 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13056 [Debug] > │ 0.1                                                                          │

02:09:08 #13057 [Debug] > │ </text>                                                                      │

02:09:08 #13058 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13059 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:08 #13060 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13061 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13062 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13063 [Debug] > │ 0.1                                                                          │

02:09:08 #13064 [Debug] > │ </text>                                                                      │

02:09:08 #13065 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13066 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:08 #13067 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13068 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13069 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13070 [Debug] > │ 0.2                                                                          │

02:09:08 #13071 [Debug] > │ </text>                                                                      │

02:09:08 #13072 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13073 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:08 #13074 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13075 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13076 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13077 [Debug] > │ 0.2                                                                          │

02:09:08 #13078 [Debug] > │ </text>                                                                      │

02:09:08 #13079 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13080 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:08 #13081 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13082 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13083 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13084 [Debug] > │ 0.2                                                                          │

02:09:08 #13085 [Debug] > │ </text>                                                                      │

02:09:08 #13086 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13087 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:08 #13088 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13089 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13090 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13091 [Debug] > │ 0.3                                                                          │

02:09:08 #13092 [Debug] > │ </text>                                                                      │

02:09:08 #13093 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13094 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:08 #13095 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13096 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13097 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13098 [Debug] > │ 0.3                                                                          │

02:09:08 #13099 [Debug] > │ </text>                                                                      │

02:09:08 #13100 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13101 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:08 #13102 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13103 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13104 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13105 [Debug] > │ 0.4                                                                          │

02:09:08 #13106 [Debug] > │ </text>                                                                      │

02:09:08 #13107 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13108 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:08 #13109 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13110 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13111 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13112 [Debug] > │ 0.4                                                                          │

02:09:08 #13113 [Debug] > │ </text>                                                                      │

02:09:08 #13114 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13115 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:08 #13116 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13117 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13118 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13119 [Debug] > │ 0.5                                                                          │

02:09:08 #13120 [Debug] > │ </text>                                                                      │

02:09:08 #13121 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13122 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:08 #13123 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13124 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13125 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13126 [Debug] > │ 0.5                                                                          │

02:09:08 #13127 [Debug] > │ </text>                                                                      │

02:09:08 #13128 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13129 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:08 #13130 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13131 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13132 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13133 [Debug] > │ 0.6                                                                          │

02:09:08 #13134 [Debug] > │ </text>                                                                      │

02:09:08 #13135 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13136 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:08 #13137 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:08 #13138 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13139 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13140 [Debug] > │ 0.7                                                                          │

02:09:08 #13141 [Debug] > │ </text>                                                                      │

02:09:08 #13142 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13143 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:08 #13144 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13145 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:08 #13146 [Debug] > │ <text x="45" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:08 #13147 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13148 [Debug] > │ -0.0                                                                         │

02:09:08 #13149 [Debug] > │ </text>                                                                      │

02:09:08 #13150 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13151 [Debug] > │ points="49,382 54,382 "/>                                                    │

02:09:08 #13152 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:08 #13153 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13154 [Debug] > │ -0.0                                                                         │

02:09:08 #13155 [Debug] > │ </text>                                                                      │

02:09:08 #13156 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13157 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:08 #13158 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:08 #13159 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13160 [Debug] > │ 0.0                                                                          │

02:09:08 #13161 [Debug] > │ </text>                                                                      │

02:09:08 #13162 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13163 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:08 #13164 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:08 #13165 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13166 [Debug] > │ 0.0                                                                          │

02:09:08 #13167 [Debug] > │ </text>                                                                      │

02:09:08 #13168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13169 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:08 #13170 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:08 #13171 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13172 [Debug] > │ 0.0                                                                          │

02:09:08 #13173 [Debug] > │ </text>                                                                      │

02:09:08 #13174 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13175 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:08 #13176 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13177 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:08 #13178 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:08 #13179 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13180 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13181 [Debug] > │ 0.0                                                                          │

02:09:08 #13182 [Debug] > │ </text>                                                                      │

02:09:08 #13183 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13184 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:08 #13185 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13186 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13187 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13188 [Debug] > │ 0.1                                                                          │

02:09:08 #13189 [Debug] > │ </text>                                                                      │

02:09:08 #13190 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13191 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:08 #13192 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13193 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13194 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13195 [Debug] > │ 0.1                                                                          │

02:09:08 #13196 [Debug] > │ </text>                                                                      │

02:09:08 #13197 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13198 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:08 #13199 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13200 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13201 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13202 [Debug] > │ 0.2                                                                          │

02:09:08 #13203 [Debug] > │ </text>                                                                      │

02:09:08 #13204 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13205 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:08 #13206 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13207 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13208 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13209 [Debug] > │ 0.2                                                                          │

02:09:08 #13210 [Debug] > │ </text>                                                                      │

02:09:08 #13211 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13212 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:08 #13213 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13214 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13215 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13216 [Debug] > │ 0.2                                                                          │

02:09:08 #13217 [Debug] > │ </text>                                                                      │

02:09:08 #13218 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13219 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:08 #13220 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13221 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13222 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13223 [Debug] > │ 0.3                                                                          │

02:09:08 #13224 [Debug] > │ </text>                                                                      │

02:09:08 #13225 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13226 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:08 #13227 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13228 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13229 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13230 [Debug] > │ 0.3                                                                          │

02:09:08 #13231 [Debug] > │ </text>                                                                      │

02:09:08 #13232 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13233 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:08 #13234 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13235 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13236 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13237 [Debug] > │ 0.4                                                                          │

02:09:08 #13238 [Debug] > │ </text>                                                                      │

02:09:08 #13239 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13240 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:08 #13241 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13242 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13243 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13244 [Debug] > │ 0.4                                                                          │

02:09:08 #13245 [Debug] > │ </text>                                                                      │

02:09:08 #13246 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13247 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:08 #13248 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13249 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13250 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13251 [Debug] > │ 0.5                                                                          │

02:09:08 #13252 [Debug] > │ </text>                                                                      │

02:09:08 #13253 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13254 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:08 #13255 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13256 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13257 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13258 [Debug] > │ 0.5                                                                          │

02:09:08 #13259 [Debug] > │ </text>                                                                      │

02:09:08 #13260 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13261 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:08 #13262 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13263 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13264 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13265 [Debug] > │ 0.6                                                                          │

02:09:08 #13266 [Debug] > │ </text>                                                                      │

02:09:08 #13267 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13268 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:08 #13269 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:08 #13270 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13271 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13272 [Debug] > │ 0.7                                                                          │

02:09:08 #13273 [Debug] > │ </text>                                                                      │

02:09:08 #13274 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13275 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:08 #13276 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13277 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:08 #13278 [Debug] > │ <text x="595" y="382" dy="0.5ex" text-anchor="start"                         │

02:09:08 #13279 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13280 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13281 [Debug] > │ -0.0                                                                         │

02:09:08 #13282 [Debug] > │ </text>                                                                      │

02:09:08 #13283 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13284 [Debug] > │ points="585,382 590,382 "/>                                                  │

02:09:08 #13285 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:08 #13286 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13287 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13288 [Debug] > │ -0.0                                                                         │

02:09:08 #13289 [Debug] > │ </text>                                                                      │

02:09:08 #13290 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13291 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:08 #13292 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:08 #13293 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13294 [Debug] > │ 0.0                                                                          │

02:09:08 #13295 [Debug] > │ </text>                                                                      │

02:09:08 #13296 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13297 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:08 #13298 [Debug] > │ <text x="617" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:08 #13299 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13300 [Debug] > │ 0.0                                                                          │

02:09:08 #13301 [Debug] > │ </text>                                                                      │

02:09:08 #13302 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13303 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:08 #13304 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:08 #13305 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:08 #13306 [Debug] > │ 0.0                                                                          │

02:09:08 #13307 [Debug] > │ </text>                                                                      │

02:09:08 #13308 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:08 #13309 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:08 #13310 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:08 #13311 [Debug] > │ points="69,250 77,226 85,203 93,181 100,160 108,141 116,124 123,110 131,99   │

02:09:08 #13312 [Debug] > │ 139,91 146,87 154,85 162,88 169,93 177,102 185,115 192,129 200,147 208,167   │

02:09:08 #13313 [Debug] > │ 215,188 223,211 231,234 238,258 246,282 254,305 261,327 269,347 277,365      │

02:09:08 #13314 [Debug] > │ 284,381 292,394 300,404 307,411 315,415 323,415 331,411 338,404 346,394      │

02:09:08 #13315 [Debug] > │ 354,381 361,365 369,347 377,327 384,305 392,282 400,258 407,234 415,211      │

02:09:08 #13316 [Debug] > │ 423,188 430,167 438,147 446,129 453,115 461,102 469,93 476,88 484,85 492,87  │

02:09:08 #13317 [Debug] > │ 499,91 507,99 515,110 522,124 530,141 538,160 545,181 553,203 561,226        │

02:09:08 #13318 [Debug] > │ 569,250 "/>                                                                  │

02:09:08 #13319 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:08 #13320 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:08 #13321 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:08 #13322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:08 #13323 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:08 #13324 [Debug] > │ 0                                                                            │

02:09:08 #13325 [Debug] > │ </text>                                                                      │

02:09:08 #13326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:08 #13327 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:08 #13328 [Debug] > │ </svg>                                                                       │

02:09:08 #13329 [Debug] > │                                                                              │

02:09:08 #13330 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:08 #13331 [Debug] >

02:09:08 #13332 [Debug] > ╭─[ 628.83ms - stdout ]────────────────────────────────────────────────────────╮

02:09:08 #13333 [Debug] > │ type UH0 =                                                                   │

02:09:08 #13334 [Debug] > │     | UH0_0 of float * UH0                                                   │

02:09:08 #13335 [Debug] > │     | UH0_1                                                                  │

02:09:08 #13336 [Debug] > │ and UH1 =                                                                    │

02:09:08 #13337 [Debug] > │     | UH1_0 of (float []) * (float []) * UH1                                 │

02:09:08 #13338 [Debug] > │     | UH1_1                                                                  │

02:09:08 #13339 [Debug] > │ let rec method3 (v0 : UH0, v1 : int32) : int32 =                             │

02:09:08 #13340 [Debug] > │     match v0 with                                                            │

02:09:08 #13341 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:09:08 #13342 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:09:08 #13343 [Debug] > │         method3(v3, v4)                                                      │

02:09:08 #13344 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:08 #13345 [Debug] > │         v1                                                                   │

02:09:08 #13346 [Debug] > │ and method4 (v0 : (float []), v1 : UH0, v2 : int32) : int32 =                │

02:09:08 #13347 [Debug] > │     match v1 with                                                            │

02:09:08 #13348 [Debug] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

02:09:08 #13349 [Debug] > │         v0.[int v2] <- v3                                                    │

02:09:08 #13350 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:09:08 #13351 [Debug] > │         method4(v0, v4, v5)                                                  │

02:09:08 #13352 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:08 #13353 [Debug] > │         v2                                                                   │

02:09:08 #13354 [Debug] > │ and method2 (v0 : UH0) : (float []) =                                        │

02:09:08 #13355 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:08 #13356 [Debug] > │     let v2 : int32 = method3(v0, v1)                                         │

02:09:08 #13357 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:09:08 #13358 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:08 #13359 [Debug] > │     let v5 : int32 = method4(v3, v0, v4)                                     │

02:09:08 #13360 [Debug] > │     v3                                                                       │

02:09:08 #13361 [Debug] > │ and method1 (v0 : UH0, v1 : UH1) : UH1 =                                     │

02:09:08 #13362 [Debug] > │     match v0 with                                                            │

02:09:08 #13363 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:09:08 #13364 [Debug] > │         let v4 : UH1 = method1(v3, v1)                                       │

02:09:08 #13365 [Debug] > │         let v5 : float = 0.0                                                 │

02:09:08 #13366 [Debug] > │         let v6 : float = 0.01                                                │

02:09:08 #13367 [Debug] > │         let v7 : float = 0.02                                                │

02:09:08 #13368 [Debug] > │         let v8 : float = 0.03                                                │

02:09:08 #13369 [Debug] > │         let v9 : float = 0.04                                                │

02:09:08 #13370 [Debug] > │         let v10 : float = 0.05                                               │

02:09:08 #13371 [Debug] > │         let v11 : float = 0.060000000000000005                               │

02:09:08 #13372 [Debug] > │         let v12 : float = 0.06999999999999999                                │

02:09:08 #13373 [Debug] > │         let v13 : float = 0.08                                               │

02:09:08 #13374 [Debug] > │         let v14 : float = 0.09                                               │

02:09:08 #13375 [Debug] > │         let v15 : float = 0.09999999999999999                                │

02:09:08 #13376 [Debug] > │         let v16 : float = 0.11                                               │

02:09:08 #13377 [Debug] > │         let v17 : float = 0.12                                               │

02:09:08 #13378 [Debug] > │         let v18 : float = 0.13                                               │

02:09:08 #13379 [Debug] > │         let v19 : float = 0.14                                               │

02:09:08 #13380 [Debug] > │         let v20 : float = 0.15000000000000002                                │

02:09:08 #13381 [Debug] > │         let v21 : float = 0.16                                               │

02:09:08 #13382 [Debug] > │         let v22 : float = 0.17                                               │

02:09:08 #13383 [Debug] > │         let v23 : float = 0.18000000000000002                                │

02:09:08 #13384 [Debug] > │         let v24 : float = 0.19                                               │

02:09:08 #13385 [Debug] > │         let v25 : float = 0.2                                                │

02:09:08 #13386 [Debug] > │         let v26 : float = 0.21000000000000002                                │

02:09:08 #13387 [Debug] > │         let v27 : float = 0.22                                               │

02:09:08 #13388 [Debug] > │         let v28 : float = 0.23                                               │

02:09:08 #13389 [Debug] > │         let v29 : float = 0.24000000000000002                                │

02:09:08 #13390 [Debug] > │         let v30 : float = 0.25                                               │

02:09:08 #13391 [Debug] > │         let v31 : float = 0.26                                               │

02:09:08 #13392 [Debug] > │         let v32 : float = 0.27                                               │

02:09:08 #13393 [Debug] > │         let v33 : float = 0.28                                               │

02:09:08 #13394 [Debug] > │         let v34 : float = 0.29000000000000004                                │

02:09:08 #13395 [Debug] > │         let v35 : float = 0.3                                                │

02:09:08 #13396 [Debug] > │         let v36 : float = 0.31                                               │

02:09:08 #13397 [Debug] > │         let v37 : float = 0.32                                               │

02:09:08 #13398 [Debug] > │         let v38 : float = 0.33                                               │

02:09:08 #13399 [Debug] > │         let v39 : float = 0.34                                               │

02:09:08 #13400 [Debug] > │         let v40 : float = 0.35000000000000003                                │

02:09:08 #13401 [Debug] > │         let v41 : float = 0.36000000000000004                                │

02:09:08 #13402 [Debug] > │         let v42 : float = 0.37                                               │

02:09:08 #13403 [Debug] > │         let v43 : float = 0.38                                               │

02:09:08 #13404 [Debug] > │         let v44 : float = 0.39                                               │

02:09:08 #13405 [Debug] > │         let v45 : float = 0.4                                                │

02:09:08 #13406 [Debug] > │         let v46 : float = 0.41000000000000003                                │

02:09:08 #13407 [Debug] > │         let v47 : float = 0.42000000000000004                                │

02:09:08 #13408 [Debug] > │         let v48 : float = 0.43                                               │

02:09:08 #13409 [Debug] > │         let v49 : float = 0.44                                               │

02:09:08 #13410 [Debug] > │         let v50 : float = 0.45                                               │

02:09:08 #13411 [Debug] > │         let v51 : float = 0.46                                               │

02:09:08 #13412 [Debug] > │         let v52 : float = 0.47000000000000003                                │

02:09:08 #13413 [Debug] > │         let v53 : float = 0.48000000000000004                                │

02:09:08 #13414 [Debug] > │         let v54 : float = 0.49                                               │

02:09:08 #13415 [Debug] > │         let v55 : float = 0.5                                                │

02:09:08 #13416 [Debug] > │         let v56 : float = 0.51                                               │

02:09:08 #13417 [Debug] > │         let v57 : float = 0.52                                               │

02:09:08 #13418 [Debug] > │         let v58 : float = 0.53                                               │

02:09:08 #13419 [Debug] > │         let v59 : float = 0.54                                               │

02:09:08 #13420 [Debug] > │         let v60 : float = 0.55                                               │

02:09:08 #13421 [Debug] > │         let v61 : float = 0.56                                               │

02:09:08 #13422 [Debug] > │         let v62 : float = 0.5700000000000001                                 │

02:09:08 #13423 [Debug] > │         let v63 : float = 0.5800000000000001                                 │

02:09:08 #13424 [Debug] > │         let v64 : float = 0.59                                               │

02:09:08 #13425 [Debug] > │         let v65 : float = 0.6                                                │

02:09:08 #13426 [Debug] > │         let v66 : float = 0.61                                               │

02:09:08 #13427 [Debug] > │         let v67 : float = 0.62                                               │

02:09:08 #13428 [Debug] > │         let v68 : float = 0.63                                               │

02:09:08 #13429 [Debug] > │         let v69 : float = 0.64                                               │

02:09:08 #13430 [Debug] > │         let v70 : float = 0.65                                               │

02:09:08 #13431 [Debug] > │         let v71 : UH0 = UH0_1                                                │

02:09:08 #13432 [Debug] > │         let v72 : UH0 = UH0_0(v70, v71)                                      │

02:09:08 #13433 [Debug] > │         let v73 : UH0 = UH0_0(v69, v72)                                      │

02:09:08 #13434 [Debug] > │         let v74 : UH0 = UH0_0(v68, v73)                                      │

02:09:08 #13435 [Debug] > │         let v75 : UH0 = UH0_0(v67, v74)                                      │

02:09:08 #13436 [Debug] > │         let v76 : UH0 = UH0_0(v66, v75)                                      │

02:09:08 #13437 [Debug] > │         let v77 : UH0 = UH0_0(v65, v76)                                      │

02:09:08 #13438 [Debug] > │         let v78 : UH0 = UH0_0(v64, v77)                                      │

02:09:08 #13439 [Debug] > │         let v79 : UH0 = UH0_0(v63, v78)                                      │

02:09:08 #13440 [Debug] > │         let v80 : UH0 = UH0_0(v62, v79)                                      │

02:09:08 #13441 [Debug] > │         let v81 : UH0 = UH0_0(v61, v80)                                      │

02:09:08 #13442 [Debug] > │         let v82 : UH0 = UH0_0(v60, v81)                                      │

02:09:08 #13443 [Debug] > │         let v83 : UH0 = UH0_0(v59, v82)                                      │

02:09:08 #13444 [Debug] > │         let v84 : UH0 = UH0_0(v58, v83)                                      │

02:09:08 #13445 [Debug] > │         let v85 : UH0 = UH0_0(v57, v84)                                      │

02:09:08 #13446 [Debug] > │         let v86 : UH0 = UH0_0(v56, v85)                                      │

02:09:08 #13447 [Debug] > │         let v87 : UH0 = UH0_0(v55, v86)                                      │

02:09:08 #13448 [Debug] > │         let v88 : UH0 = UH0_0(v54, v87)                                      │

02:09:08 #13449 [Debug] > │         let v89 : UH0 = UH0_0(v53, v88)                                      │

02:09:08 #13450 [Debug] > │         let v90 : UH0 = UH0_0(v52, v89)                                      │

02:09:08 #13451 [Debug] > │         let v91 : UH0 = UH0_0(v51, v90)                                      │

02:09:08 #13452 [Debug] > │         let v92 : UH0 = UH0_0(v50, v91)                                      │

02:09:08 #13453 [Debug] > │         let v93 : UH0 = UH0_0(v49, v92)                                      │

02:09:08 #13454 [Debug] > │         let v94 : UH0 = UH0_0(v48, v93)                                      │

02:09:08 #13455 [Debug] > │         let v95 : UH0 = UH0_0(v47, v94)                                      │

02:09:08 #13456 [Debug] > │         let v96 : UH0 = UH0_0(v46, v95)                                      │

02:09:08 #13457 [Debug] > │         let v97 : UH0 = UH0_0(v45, v96)                                      │

02:09:08 #13458 [Debug] > │         let v98 : UH0 = UH0_0(v44, v97)                                      │

02:09:08 #13459 [Debug] > │         let v99 : UH0 = UH0_0(v43, v98)                                      │

02:09:08 #13460 [Debug] > │         let v100 : UH0 = UH0_0(v42, v99)                                     │

02:09:08 #13461 [Debug] > │         let v101 : UH0 = UH0_0(v41, v100)                                    │

02:09:08 #13462 [Debug] > │         let v102 : UH0 = UH0_0(v40, v101)                                    │

02:09:08 #13463 [Debug] > │         let v103 : UH0 = UH0_0(v39, v102)                                    │

02:09:08 #13464 [Debug] > │         let v104 : UH0 = UH0_0(v38, v103)                                    │

02:09:08 #13465 [Debug] > │         let v105 : UH0 = UH0_0(v37, v104)                                    │

02:09:08 #13466 [Debug] > │         let v106 : UH0 = UH0_0(v36, v105)                                    │

02:09:08 #13467 [Debug] > │         let v107 : UH0 = UH0_0(v35, v106)                                    │

02:09:08 #13468 [Debug] > │         let v108 : UH0 = UH0_0(v34, v107)                                    │

02:09:08 #13469 [Debug] > │         let v109 : UH0 = UH0_0(v33, v108)                                    │

02:09:08 #13470 [Debug] > │         let v110 : UH0 = UH0_0(v32, v109)                                    │

02:09:08 #13471 [Debug] > │         let v111 : UH0 = UH0_0(v31, v110)                                    │

02:09:08 #13472 [Debug] > │         let v112 : UH0 = UH0_0(v30, v111)                                    │

02:09:08 #13473 [Debug] > │         let v113 : UH0 = UH0_0(v29, v112)                                    │

02:09:08 #13474 [Debug] > │         let v114 : UH0 = UH0_0(v28, v113)                                    │

02:09:08 #13475 [Debug] > │         let v115 : UH0 = UH0_0(v27, v114)                                    │

02:09:08 #13476 [Debug] > │         let v116 : UH0 = UH0_0(v26, v115)                                    │

02:09:08 #13477 [Debug] > │         let v117 : UH0 = UH0_0(v25, v116)                                    │

02:09:08 #13478 [Debug] > │         let v118 : UH0 = UH0_0(v24, v117)                                    │

02:09:08 #13479 [Debug] > │         let v119 : UH0 = UH0_0(v23, v118)                                    │

02:09:08 #13480 [Debug] > │         let v120 : UH0 = UH0_0(v22, v119)                                    │

02:09:08 #13481 [Debug] > │         let v121 : UH0 = UH0_0(v21, v120)                                    │

02:09:08 #13482 [Debug] > │         let v122 : UH0 = UH0_0(v20, v121)                                    │

02:09:08 #13483 [Debug] > │         let v123 : UH0 = UH0_0(v19, v122)                                    │

02:09:08 #13484 [Debug] > │         let v124 : UH0 = UH0_0(v18, v123)                                    │

02:09:08 #13485 [Debug] > │         let v125 : UH0 = UH0_0(v17, v124)                                    │

02:09:08 #13486 [Debug] > │         let v126 : UH0 = UH0_0(v16, v125)                                    │

02:09:08 #13487 [Debug] > │         let v127 : UH0 = UH0_0(v15, v126)                                    │

02:09:08 #13488 [Debug] > │         let v128 : UH0 = UH0_0(v14, v127)                                    │

02:09:08 #13489 [Debug] > │         let v129 : UH0 = UH0_0(v13, v128)                                    │

02:09:08 #13490 [Debug] > │         let v130 : UH0 = UH0_0(v12, v129)                                    │

02:09:08 #13491 [Debug] > │         let v131 : UH0 = UH0_0(v11, v130)                                    │

02:09:08 #13492 [Debug] > │         let v132 : UH0 = UH0_0(v10, v131)                                    │

02:09:08 #13493 [Debug] > │         let v133 : UH0 = UH0_0(v9, v132)                                     │

02:09:08 #13494 [Debug] > │         let v134 : UH0 = UH0_0(v8, v133)                                     │

02:09:08 #13495 [Debug] > │         let v135 : UH0 = UH0_0(v7, v134)                                     │

02:09:08 #13496 [Debug] > │         let v136 : UH0 = UH0_0(v6, v135)                                     │

02:09:08 #13497 [Debug] > │         let v137 : UH0 = UH0_0(v5, v136)                                     │

02:09:08 #13498 [Debug] > │         let v138 : (float []) = method2(v137)                                │

02:09:08 #13499 [Debug] > │         let v139 : float = 0.0                                               │

02:09:08 #13500 [Debug] > │         let v140 : float = 0.0007224452478461068                             │

02:09:08 #13501 [Debug] > │         let v141 : float = 0.0014297283919934465                             │

02:09:08 #13502 [Debug] > │         let v142 : float = 0.0021070055388626454                             │

02:09:08 #13503 [Debug] > │         let v143 : float = 0.00274006253677335                               │

02:09:08 #13504 [Debug] > │         let v144 : float = 0.0033156132912039757                             │

02:09:08 #13505 [Debug] > │         let v145 : float = 0.0038215786027292415                             │

02:09:08 #13506 [Debug] > │         let v146 : float = 0.004247339675607605                              │

02:09:08 #13507 [Debug] > │         let v147 : float = 0.004583960976582912                              │

02:09:08 #13508 [Debug] > │         let v148 : float = 0.004824377766717757                              │

02:09:08 #13509 [Debug] > │         let v149 : float = 0.00496354437049027                               │

02:09:08 #13510 [Debug] > │         let v150 : float = 0.004998540070400965                              │

02:09:08 #13511 [Debug] > │         let v151 : float = 0.004928630404658255                              │

02:09:08 #13512 [Debug] > │         let v152 : float = 0.004755282581475768                              │

02:09:08 #13513 [Debug] > │         let v153 : float = 0.004482134686478519                              │

02:09:08 #13514 [Debug] > │         let v154 : float = 0.0041149193294682815                             │

02:09:08 #13515 [Debug] > │         let v155 : float = 0.0036613433329888666                             │

02:09:08 #13516 [Debug] > │         let v156 : float = 0.0031309259876915697                             │

02:09:08 #13517 [Debug] > │         let v157 : float = 0.002534799269067951                              │

02:09:08 #13518 [Debug] > │         let v158 : float = 0.0018854742084416015                             │

02:09:08 #13519 [Debug] > │         let v159 : float = 0.0011965783214377905                             │

02:09:08 #13520 [Debug] > │         let v160 : float = 0.00048256960457257535                            │

02:09:08 #13521 [Debug] > │         let v161 : float = -0.00024156689762753317                           │

02:09:08 #13522 [Debug] > │         let v162 : float = -0.0009606335867685418                            │

02:09:08 #13523 [Debug] > │         let v163 : float = -0.001659539265642642                             │

02:09:08 #13524 [Debug] > │         let v164 : float = -0.002323615860218842                             │

02:09:08 #13525 [Debug] > │         let v165 : float = -0.0029389262614623636                            │

02:09:08 #13526 [Debug] > │         let v166 : float = -0.003492556826244686                             │

02:09:08 #13527 [Debug] > │         let v167 : float = -0.003972888398568771                             │

02:09:08 #13528 [Debug] > │         let v168 : float = -0.00436984016313259                              │

02:09:08 #13529 [Debug] > │         let v169 : float = -0.004675081213427074                             │

02:09:08 #13530 [Debug] > │         let v170 : float = -0.004882205394146359                             │

02:09:08 #13531 [Debug] > │         let v171 : float = -0.004986865748457456                             │

02:09:08 #13532 [Debug] > │         let v172 : float = -0.004986865748457456                             │

02:09:08 #13533 [Debug] > │         let v173 : float = -0.004882205394146361                             │

02:09:08 #13534 [Debug] > │         let v174 : float = -0.004675081213427074                             │

02:09:08 #13535 [Debug] > │         let v175 : float = -0.004369840163132589                             │

02:09:08 #13536 [Debug] > │         let v176 : float = -0.003972888398568774                             │

02:09:08 #13537 [Debug] > │         let v177 : float = -0.0034925568262446837                            │

02:09:08 #13538 [Debug] > │         let v178 : float = -0.002938926261462367                             │

02:09:08 #13539 [Debug] > │         let v179 : float = -0.002323615860218846                             │

02:09:08 #13540 [Debug] > │         let v180 : float = -0.0016595392656426435                            │

02:09:08 #13541 [Debug] > │         let v181 : float = -0.0009606335867685414                            │

02:09:08 #13542 [Debug] > │         let v182 : float = -0.00024156689762753724                           │

02:09:08 #13543 [Debug] > │         let v183 : float = 0.0004825696045725713                             │

02:09:08 #13544 [Debug] > │         let v184 : float = 0.0011965783214377866                             │

02:09:08 #13545 [Debug] > │         let v185 : float = 0.0018854742084416021                             │

02:09:08 #13546 [Debug] > │         let v186 : float = 0.002534799269067953                              │

02:09:08 #13547 [Debug] > │         let v187 : float = 0.003130925987691568                              │

02:09:08 #13548 [Debug] > │         let v188 : float = 0.0036613433329888622                             │

02:09:08 #13549 [Debug] > │         let v189 : float = 0.0041149193294682815                             │

02:09:08 #13550 [Debug] > │         let v190 : float = 0.0044821346864785195                             │

02:09:08 #13551 [Debug] > │         let v191 : float = 0.004755282581475766                              │

02:09:08 #13552 [Debug] > │         let v192 : float = 0.004928630404658255                              │

02:09:08 #13553 [Debug] > │         let v193 : float = 0.004998540070400965                              │

02:09:08 #13554 [Debug] > │         let v194 : float = 0.004963544370490271                              │

02:09:08 #13555 [Debug] > │         let v195 : float = 0.004824377766717758                              │

02:09:08 #13556 [Debug] > │         let v196 : float = 0.004583960976582912                              │

02:09:08 #13557 [Debug] > │         let v197 : float = 0.004247339675607605                              │

02:09:08 #13558 [Debug] > │         let v198 : float = 0.003821578602729245                              │

02:09:08 #13559 [Debug] > │         let v199 : float = 0.0033156132912039783                             │

02:09:08 #13560 [Debug] > │         let v200 : float = 0.0027400625367733585                             │

02:09:08 #13561 [Debug] > │         let v201 : float = 0.0021070055388626528                             │

02:09:08 #13562 [Debug] > │         let v202 : float = 0.001429728391993452                              │

02:09:08 #13563 [Debug] > │         let v203 : float = 0.0007224452478461016                             │

02:09:08 #13564 [Debug] > │         let v204 : float = 0.0                                               │

02:09:08 #13565 [Debug] > │         let v205 : UH0 = UH0_1                                               │

02:09:08 #13566 [Debug] > │         let v206 : UH0 = UH0_0(v204, v205)                                   │

02:09:08 #13567 [Debug] > │         let v207 : UH0 = UH0_0(v203, v206)                                   │

02:09:08 #13568 [Debug] > │         let v208 : UH0 = UH0_0(v202, v207)                                   │

02:09:08 #13569 [Debug] > │         let v209 : UH0 = UH0_0(v201, v208)                                   │

02:09:08 #13570 [Debug] > │         let v210 : UH0 = UH0_0(v200, v209)                                   │

02:09:08 #13571 [Debug] > │         let v211 : UH0 = UH0_0(v199, v210)                                   │

02:09:08 #13572 [Debug] > │         let v212 : UH0 = UH0_0(v198, v211)                                   │

02:09:08 #13573 [Debug] > │         let v213 : UH0 = UH0_0(v197, v212)                                   │

02:09:08 #13574 [Debug] > │         let v214 : UH0 = UH0_0(v196, v213)                                   │

02:09:08 #13575 [Debug] > │         let v215 : UH0 = UH0_0(v195, v214)                                   │

02:09:08 #13576 [Debug] > │         let v216 : UH0 = UH0_0(v194, v215)                                   │

02:09:08 #13577 [Debug] > │         let v217 : UH0 = UH0_0(v193, v216)                                   │

02:09:08 #13578 [Debug] > │         let v218 : UH0 = UH0_0(v192, v217)                                   │

02:09:08 #13579 [Debug] > │         let v219 : UH0 = UH0_0(v191, v218)                                   │

02:09:08 #13580 [Debug] > │         let v220 : UH0 = UH0_0(v190, v219)                                   │

02:09:08 #13581 [Debug] > │         let v221 : UH0 = UH0_0(v189, v220)                                   │

02:09:08 #13582 [Debug] > │         let v222 : UH0 = UH0_0(v188, v221)                                   │

02:09:08 #13583 [Debug] > │         let v223 : UH0 = UH0_0(v187, v222)                                   │

02:09:08 #13584 [Debug] > │         let v224 : UH0 = UH0_0(v186, v223)                                   │

02:09:08 #13585 [Debug] > │         let v225 : UH0 = UH0_0(v185, v224)                                   │

02:09:08 #13586 [Debug] > │         let v226 : UH0 = UH0_0(v184, v225)                                   │

02:09:08 #13587 [Debug] > │         let v227 : UH0 = UH0_0(v183, v226)                                   │

02:09:08 #13588 [Debug] > │         let v228 : UH0 = UH0_0(v182, v227)                                   │

02:09:08 #13589 [Debug] > │         let v229 : UH0 = UH0_0(v181, v228)                                   │

02:09:08 #13590 [Debug] > │         let v230 : UH0 = UH0_0(v180, v229)                                   │

02:09:08 #13591 [Debug] > │         let v231 : UH0 = UH0_0(v179, v230)                                   │

02:09:08 #13592 [Debug] > │         let v232 : UH0 = UH0_0(v178, v231)                                   │

02:09:08 #13593 [Debug] > │         let v233 : UH0 = UH0_0(v177, v232)                                   │

02:09:08 #13594 [Debug] > │         let v234 : UH0 = UH0_0(v176, v233)                                   │

02:09:08 #13595 [Debug] > │         let v235 : UH0 = UH0_0(v175, v234)                                   │

02:09:08 #13596 [Debug] > │         let v236 : UH0 = UH0_0(v174, v235)                                   │

02:09:08 #13597 [Debug] > │         let v237 : UH0 = UH0_0(v173, v236)                                   │

02:09:08 #13598 [Debug] > │         let v238 : UH0 = UH0_0(v172, v237)                                   │

02:09:08 #13599 [Debug] > │         let v239 : UH0 = UH0_0(v171, v238)                                   │

02:09:08 #13600 [Debug] > │         let v240 : UH0 = UH0_0(v170, v239)                                   │

02:09:08 #13601 [Debug] > │         let v241 : UH0 = UH0_0(v169, v240)                                   │

02:09:08 #13602 [Debug] > │         let v242 : UH0 = UH0_0(v168, v241)                                   │

02:09:08 #13603 [Debug] > │         let v243 : UH0 = UH0_0(v167, v242)                                   │

02:09:08 #13604 [Debug] > │         let v244 : UH0 = UH0_0(v166, v243)                                   │

02:09:08 #13605 [Debug] > │         let v245 : UH0 = UH0_0(v165, v244)                                   │

02:09:08 #13606 [Debug] > │         let v246 : UH0 = UH0_0(v164, v245)                                   │

02:09:08 #13607 [Debug] > │         let v247 : UH0 = UH0_0(v163, v246)                                   │

02:09:08 #13608 [Debug] > │         let v248 : UH0 = UH0_0(v162, v247)                                   │

02:09:08 #13609 [Debug] > │         let v249 : UH0 = UH0_0(v161, v248)                                   │

02:09:08 #13610 [Debug] > │         let v250 : UH0 = UH0_0(v160, v249)                                   │

02:09:08 #13611 [Debug] > │         let v251 : UH0 = UH0_0(v159, v250)                                   │

02:09:08 #13612 [Debug] > │         let v252 : UH0 = UH0_0(v158, v251)                                   │

02:09:08 #13613 [Debug] > │         let v253 : UH0 = UH0_0(v157, v252)                                   │

02:09:08 #13614 [Debug] > │         let v254 : UH0 = UH0_0(v156, v253)                                   │

02:09:08 #13615 [Debug] > │         let v255 : UH0 = UH0_0(v155, v254)                                   │

02:09:08 #13616 [Debug] > │         let v256 : UH0 = UH0_0(v154, v255)                                   │

02:09:08 #13617 [Debug] > │         let v257 : UH0 = UH0_0(v153, v256)                                   │

02:09:08 #13618 [Debug] > │         let v258 : UH0 = UH0_0(v152, v257)                                   │

02:09:08 #13619 [Debug] > │         let v259 : UH0 = UH0_0(v151, v258)                                   │

02:09:08 #13620 [Debug] > │         let v260 : UH0 = UH0_0(v150, v259)                                   │

02:09:08 #13621 [Debug] > │         let v261 : UH0 = UH0_0(v149, v260)                                   │

02:09:08 #13622 [Debug] > │         let v262 : UH0 = UH0_0(v148, v261)                                   │

02:09:08 #13623 [Debug] > │         let v263 : UH0 = UH0_0(v147, v262)                                   │

02:09:08 #13624 [Debug] > │         let v264 : UH0 = UH0_0(v146, v263)                                   │

02:09:08 #13625 [Debug] > │         let v265 : UH0 = UH0_0(v145, v264)                                   │

02:09:08 #13626 [Debug] > │         let v266 : UH0 = UH0_0(v144, v265)                                   │

02:09:08 #13627 [Debug] > │         let v267 : UH0 = UH0_0(v143, v266)                                   │

02:09:08 #13628 [Debug] > │         let v268 : UH0 = UH0_0(v142, v267)                                   │

02:09:08 #13629 [Debug] > │         let v269 : UH0 = UH0_0(v141, v268)                                   │

02:09:08 #13630 [Debug] > │         let v270 : UH0 = UH0_0(v140, v269)                                   │

02:09:08 #13631 [Debug] > │         let v271 : UH0 = UH0_0(v139, v270)                                   │

02:09:08 #13632 [Debug] > │         let v272 : (float []) = method2(v271)                                │

02:09:08 #13633 [Debug] > │         UH1_0(v138, v272, v4)                                                │

02:09:08 #13634 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:09:08 #13635 [Debug] > │         v1                                                                   │

02:09:08 #13636 [Debug] > │ and method6 (v0 : UH1, v1 : int32) : int32 =                                 │

02:09:08 #13637 [Debug] > │     match v0 with                                                            │

02:09:08 #13638 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:09:08 #13639 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:09:08 #13640 [Debug] > │         method6(v4, v5)                                                      │

02:09:08 #13641 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:08 #13642 [Debug] > │         v1                                                                   │

02:09:08 #13643 [Debug] > │ and method7 (v0 : (struct ((float []) * (float [])) []), v1 : UH1, v2 :      │

02:09:08 #13644 [Debug] > │ int32) : int32 =                                                             │

02:09:08 #13645 [Debug] > │     match v1 with                                                            │

02:09:08 #13646 [Debug] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

02:09:08 #13647 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:09:08 #13648 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:09:08 #13649 [Debug] > │         method7(v0, v5, v6)                                                  │

02:09:08 #13650 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:09:08 #13651 [Debug] > │         v2                                                                   │

02:09:08 #13652 [Debug] > │ and method5 (v0 : UH1) : (struct ((float []) * (float [])) []) =             │

02:09:08 #13653 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:08 #13654 [Debug] > │     let v2 : int32 = method6(v0, v1)                                         │

02:09:08 #13655 [Debug] > │     let v3 : (struct ((float []) * (float [])) []) = Array.zeroCreate<struct │

02:09:08 #13656 [Debug] > │ ((float []) * (float []))> (v2)                                              │

02:09:08 #13657 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:08 #13658 [Debug] > │     let v5 : int32 = method7(v3, v0, v4)                                     │

02:09:08 #13659 [Debug] > │     v3                                                                       │

02:09:08 #13660 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:09:08 #13661 [Debug] > │ []) * (float [])) [])) =                                                     │

02:09:08 #13662 [Debug] > │     let v0 : float = 0.0                                                     │

02:09:08 #13663 [Debug] > │     let v1 : float = 1.0                                                     │

02:09:08 #13664 [Debug] > │     let v2 : float = 2.0                                                     │

02:09:08 #13665 [Debug] > │     let v3 : float = 3.0                                                     │

02:09:08 #13666 [Debug] > │     let v4 : float = 4.0                                                     │

02:09:08 #13667 [Debug] > │     let v5 : float = 5.0                                                     │

02:09:08 #13668 [Debug] > │     let v6 : float = 6.0                                                     │

02:09:08 #13669 [Debug] > │     let v7 : float = 7.0                                                     │

02:09:08 #13670 [Debug] > │     let v8 : float = 8.0                                                     │

02:09:08 #13671 [Debug] > │     let v9 : float = 9.0                                                     │

02:09:08 #13672 [Debug] > │     let v10 : UH0 = UH0_1                                                    │

02:09:08 #13673 [Debug] > │     let v11 : UH0 = UH0_0(v9, v10)                                           │

02:09:08 #13674 [Debug] > │     let v12 : UH0 = UH0_0(v8, v11)                                           │

02:09:08 #13675 [Debug] > │     let v13 : UH0 = UH0_0(v7, v12)                                           │

02:09:08 #13676 [Debug] > │     let v14 : UH0 = UH0_0(v6, v13)                                           │

02:09:08 #13677 [Debug] > │     let v15 : UH0 = UH0_0(v5, v14)                                           │

02:09:08 #13678 [Debug] > │     let v16 : UH0 = UH0_0(v4, v15)                                           │

02:09:08 #13679 [Debug] > │     let v17 : UH0 = UH0_0(v3, v16)                                           │

02:09:08 #13680 [Debug] > │     let v18 : UH0 = UH0_0(v2, v17)                                           │

02:09:08 #13681 [Debug] > │     let v19 : UH0 = UH0_0(v1, v18)                                           │

02:09:08 #13682 [Debug] > │     let v20 : UH0 = UH0_0(v0, v19)                                           │

02:09:08 #13683 [Debug] > │     let v21 : UH1 = UH1_1                                                    │

02:09:08 #13684 [Debug] > │     let v22 : UH1 = method1(v20, v21)                                        │

02:09:08 #13685 [Debug] > │     let v23 : (struct ((float []) * (float [])) []) = method5(v22)           │

02:09:08 #13686 [Debug] > │     let struct (v24 : (float []), v25 : (float [])) = v23.[int 0]            │

02:09:08 #13687 [Debug] > │     let v26 : string = $"{0}"                                                │

02:09:08 #13688 [Debug] > │     let v27 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:09:08 #13689 [Debug] > │ (v26, v24, v25)|]                                                            │

02:09:08 #13690 [Debug] > │     let v28 : string = "wave"                                                │

02:09:08 #13691 [Debug] > │     let v29 : string = "position (m)"                                        │

02:09:08 #13692 [Debug] > │     let v30 : string = "displacement (m)"                                    │

02:09:08 #13693 [Debug] > │     struct (v28, v29, v30, v27)                                              │

02:09:08 #13694 [Debug] > │ method0()                                                                    │

02:09:08 #13695 [Debug] > │                                                                              │

02:09:08 #13696 [Debug] > │                                                                              │

02:09:08 #13697 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:08 #13698 [Debug] >

02:09:08 #13699 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:08 #13700 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:08 #13701 [Debug] > │ ### system kinetic energy versus time 2                                      │

02:09:08 #13702 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:08 #13703 [Debug] >

02:09:08 #13704 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:08 #13705 [Debug] > // // test

02:09:08 #13706 [Debug] >

02:09:08 #13707 [Debug] > inl central_force f (particle_state st1) (particle_state st2) =

02:09:08 #13708 [Debug] >     inl r1 = st1.pos_vec

02:09:08 #13709 [Debug] >     inl r2 = st2.pos_vec

02:09:08 #13710 [Debug] >     inl r21 = r2 ^-^ r1

02:09:08 #13711 [Debug] >     inl r21mag = magnitude r21

02:09:08 #13712 [Debug] >     f r21mag *^ r21 ^/ r21mag

02:09:08 #13713 [Debug] >

02:09:08 #13714 [Debug] > inl billiard_force k re =

02:09:08 #13715 [Debug] >     inl f r =

02:09:08 #13716 [Debug] >         if r >= re

02:09:08 #13717 [Debug] >         then 0

02:09:08 #13718 [Debug] >         else -k * (r - re)

02:09:08 #13719 [Debug] >     central_force f

02:09:08 #13720 [Debug] >

02:09:08 #13721 [Debug] > type force_vector = vec

02:09:08 #13722 [Debug] > type two_body_force = particle_state -> particle_state -> force_vector

02:09:08 #13723 [Debug] >

02:09:08 #13724 [Debug] > union force t =

02:09:08 #13725 [Debug] >     | ExternalForce : t * one_body_force

02:09:08 #13726 [Debug] >     | InternalForce : t * t * two_body_force

02:09:08 #13727 [Debug] >

02:09:08 #13728 [Debug] > nominal multi_particle_state = stream.stream particle_state

02:09:08 #13729 [Debug] >

02:09:08 #13730 [Debug] > nominal d_multi_particle_state = stream.stream d_particle_state

02:09:08 #13731 [Debug] >

02:09:08 #13732 [Debug] > inl force_on n s force =

02:09:08 #13733 [Debug] >     match force with

02:09:08 #13734 [Debug] >     | ExternalForce (n0, f_one_body) =>

02:09:08 #13735 [Debug] >         if n = n0

02:09:08 #13736 [Debug] >         then f_one_body

02:09:08 #13737 [Debug] >         else fun _ => zero_vec ()

02:09:08 #13738 [Debug] >     | InternalForce (n0, n1, f_two_body) =>

02:09:08 #13739 [Debug] >         if n = n0

02:09:08 #13740 [Debug] >         then s |> stream.try_item n1 |> optionm.map f_two_body

02:09:08 #13741 [Debug] >         elif n = n1

02:09:08 #13742 [Debug] >         then s |> stream.try_item n0 |> optionm.map f_two_body

02:09:08 #13743 [Debug] >         else None

02:09:08 #13744 [Debug] >         |> optionm'.default_value (fun _ => zero_vec ())

02:09:08 #13745 [Debug] >

02:09:08 #13746 [Debug] > inl forces_on n (multi_particle_state sts) fs =

02:09:08 #13747 [Debug] >     fs

02:09:08 #13748 [Debug] >     |> listm.map (force_on n sts)

02:09:08 #13749 [Debug] >

02:09:08 #13750 [Debug] > inl newton_second_mps fs ((multi_particle_state sts) as mpst) =

02:09:08 #13751 [Debug] >     inl deriv (n, st) =

02:09:08 #13752 [Debug] >         newton_second_ps (forces_on n mpst fs) st

02:09:08 #13753 [Debug] >     sts |> stream.indexed |> stream.map deriv |> d_multi_particle_state

02:09:08 #13754 [Debug] >

02:09:08 #13755 [Debug] > instance (+++) d_multi_particle_state =

02:09:08 #13756 [Debug] >     fun (d_multi_particle_state dsts1) (d_multi_particle_state dsts2) =>

02:09:08 #13757 [Debug] >         (dsts1, dsts2)

02:09:08 #13758 [Debug] >         ||> stream.zip_with (+++)

02:09:08 #13759 [Debug] >         |> d_multi_particle_state

02:09:08 #13760 [Debug] >

02:09:08 #13761 [Debug] > instance scale d_multi_particle_state = fun w (d_multi_particle_state dsts) =>

02:09:08 #13762 [Debug] >     dsts

02:09:08 #13763 [Debug] >     |> stream.map (scale w)

02:09:08 #13764 [Debug] >     |> d_multi_particle_state

02:09:08 #13765 [Debug] >

02:09:08 #13766 [Debug] > instance shift multi_particle_state = fun dt dsts (multi_particle_state sts) =>

02:09:08 #13767 [Debug] >     inl (d_multi_particle_state dsts) =

02:09:08 #13768 [Debug] >         real

02:09:08 #13769 [Debug] >             match dsts with

02:09:08 #13770 [Debug] >             | d_multi_particle_state _ => dsts

02:09:08 #13771 [Debug] >     (dsts, sts)

02:09:08 #13772 [Debug] >     ||> stream.zip_with (shift dt)

02:09:08 #13773 [Debug] >     |> stream.memoize

02:09:08 #13774 [Debug] >     |> fun x => x ()

02:09:08 #13775 [Debug] >     |> multi_particle_state

02:09:08 #13776 [Debug] >

02:09:08 #13777 [Debug] > inl euler_cromer_mps dt : numerical_method multi_particle_state

02:09:08 #13778 [Debug] > d_multi_particle_state =

02:09:08 #13779 [Debug] >     fun deriv ((multi_particle_state sts0) as mpst0) =>

02:09:08 #13780 [Debug] >         inl (multi_particle_state sts1) = euler dt deriv mpst0

02:09:08 #13781 [Debug] >         (sts0, sts1)

02:09:08 #13782 [Debug] >         ||> stream.zip

02:09:08 #13783 [Debug] >         |> stream.map (fun ((particle_state st0), (particle_state st1)) =>

02:09:08 #13784 [Debug] >             particle_state {

02:09:08 #13785 [Debug] >                 st1 with

02:09:08 #13786 [Debug] >                     pos_vec = st0.pos_vec ^+^ st1.velocity ^* dt

02:09:08 #13787 [Debug] >             }

02:09:08 #13788 [Debug] >         )

02:09:08 #13789 [Debug] >         |> multi_particle_state

02:09:08 #13790 [Debug] >

02:09:08 #13791 [Debug] > inl update_mps (method : numerical_method multi_particle_state

02:09:08 #13792 [Debug] > d_multi_particle_state) =

02:09:08 #13793 [Debug] >     newton_second_mps >> method

02:09:08 #13794 [Debug] >

02:09:08 #13795 [Debug] > inl states_mps (method : numerical_method multi_particle_state

02:09:08 #13796 [Debug] > d_multi_particle_state) =

02:09:08 #13797 [Debug] >     newton_second_mps

02:09:08 #13798 [Debug] >     >> method

02:09:08 #13799 [Debug] >     >> (fun x (multi_particle_state y) =>

02:09:08 #13800 [Debug] >         y

02:09:08 #13801 [Debug] >         |> stream.memoize

02:09:08 #13802 [Debug] >         |> (fun x => x ())

02:09:08 #13803 [Debug] >         |> multi_particle_state |> x

02:09:08 #13804 [Debug] >     )

02:09:08 #13805 [Debug] >     // >> stream.iterate

02:09:08 #13806 [Debug] >     >> seq.iterate'

02:09:08 #13807 [Debug] >

02:09:08 #13808 [Debug] > inl kinetic_energy (particle_state st) =

02:09:08 #13809 [Debug] >     inl m = st.mass

02:09:08 #13810 [Debug] >     inl v = magnitude st.velocity

02:09:08 #13811 [Debug] >     0.5 * m * v ** 2

02:09:08 #13812 [Debug] >

02:09:08 #13813 [Debug] > inl system_ke (multi_particle_state sts) =

02:09:08 #13814 [Debug] >     sts

02:09:08 #13815 [Debug] >     |> stream.map kinetic_energy

02:09:08 #13816 [Debug] >     |> stream.sum

02:09:08 #13817 [Debug] >

02:09:08 #13818 [Debug] > inl linear_spring_pe k re (particle_state st1) (particle_state st2) =

02:09:08 #13819 [Debug] >     inl r1 = st1.pos_vec

02:09:08 #13820 [Debug] >     inl r2 = st2.pos_vec

02:09:08 #13821 [Debug] >     inl r21 = r2 ^-^ r1

02:09:08 #13822 [Debug] >     inl r21mag = magnitude r21

02:09:08 #13823 [Debug] >     k * (r21mag - re) ** 2 / 2

02:09:08 #13824 [Debug] >

02:09:08 #13825 [Debug] > inl earth_surface_gravity_pe (particle_state st) =

02:09:08 #13826 [Debug] >     inl g = 9.80665

02:09:08 #13827 [Debug] >     inl m = st.mass

02:09:08 #13828 [Debug] >     inl z = st.pos_vec.z

02:09:08 #13829 [Debug] >     m * g * z

02:09:08 #13830 [Debug] >

02:09:08 #13831 [Debug] > inl ball_radius () = 0.03

02:09:08 #13832 [Debug] >

02:09:08 #13833 [Debug] > inl billiard_forces k =

02:09:08 #13834 [Debug] >     [[ InternalForce (0i32, 1, billiard_force k (2 * ball_radius ())) ]]

02:09:08 #13835 [Debug] >

02:09:08 #13836 [Debug] > inl billiard_initial () =

02:09:08 #13837 [Debug] >     inl ball_mass = 0.160

02:09:08 #13838 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:08 #13839 [Debug] >     [[

02:09:08 #13840 [Debug] >         particle_state {

02:09:08 #13841 [Debug] >             default_particle_state' with

02:09:08 #13842 [Debug] >                 mass = ball_mass

02:09:08 #13843 [Debug] >                 pos_vec = zero_vec ()

02:09:08 #13844 [Debug] >                 velocity = 0.2 *^ i_hat ()

02:09:08 #13845 [Debug] >         }

02:09:08 #13846 [Debug] >         particle_state {

02:09:08 #13847 [Debug] >             default_particle_state' with

02:09:08 #13848 [Debug] >                 mass = ball_mass

02:09:08 #13849 [Debug] >                 pos_vec = i_hat () ^+^ 0.02 *^ j_hat ()

02:09:08 #13850 [Debug] >                 velocity = zero_vec ()

02:09:08 #13851 [Debug] >         }

02:09:08 #13852 [Debug] >     ]]

02:09:08 #13853 [Debug] >     |> stream.from_list

02:09:08 #13854 [Debug] >     |> multi_particle_state

02:09:08 #13855 [Debug] >

02:09:08 #13856 [Debug] > inl billiard_states ~n_method k dt =

02:09:08 #13857 [Debug] >     states_mps (n_method dt) (billiard_forces k) (billiard_initial ())

02:09:08 #13858 [Debug] >

02:09:08 #13859 [Debug] > inl billiard_states_finite n_method k dt =

02:09:08 #13860 [Debug] >     billiard_states n_method k dt

02:09:08 #13861 [Debug] >     >> Some

02:09:08 #13862 [Debug] >     |> seq.take_while_ (fun (multi_particle_state mpst) (_ : i32) =>

02:09:08 #13863 [Debug] >         match mpst |> stream.try_item 0i32 with

02:09:08 #13864 [Debug] >         | Some st =>

02:09:08 #13865 [Debug] >             st.time <= 10

02:09:08 #13866 [Debug] >         | None => false

02:09:08 #13867 [Debug] >     )

02:09:08 #13868 [Debug] >

02:09:08 #13869 [Debug] > inl momentum (particle_state st) =

02:09:08 #13870 [Debug] >     inl m = st.mass

02:09:08 #13871 [Debug] >     inl v = st.velocity

02:09:08 #13872 [Debug] >     m *^ v

02:09:08 #13873 [Debug] >

02:09:08 #13874 [Debug] > inl system_p (multi_particle_state sts) =

02:09:08 #13875 [Debug] >     sts

02:09:08 #13876 [Debug] >     |> stream.map momentum

02:09:08 #13877 [Debug] >     |> stream.fold (^+^) (zero_vec ())

02:09:08 #13878 [Debug] >

02:09:08 #13879 [Debug] > inl time_ke_ec_x, time_ke_ec_y =

02:09:08 #13880 [Debug] >     billiard_states_finite euler_cromer_mps 30 0.03

02:09:08 #13881 [Debug] >     |> listm.map (fun (multi_particle_state mpst) =>

02:09:08 #13882 [Debug] >         mpst |> stream.try_item 0i32

02:09:08 #13883 [Debug] >         |> optionm.map (fun st =>

02:09:08 #13884 [Debug] >             st.time, system_ke (multi_particle_state mpst)

02:09:08 #13885 [Debug] >         )

02:09:08 #13886 [Debug] >     )

02:09:08 #13887 [Debug] >     // |> stream.to_list

02:09:08 #13888 [Debug] >     |> listm'.choose id

02:09:08 #13889 [Debug] >     |> listm'.unzip

02:09:08 #13890 [Debug] >

02:09:08 #13891 [Debug] > inl time_ke_rk4_x, time_ke_rk4_y =

02:09:08 #13892 [Debug] >     billiard_states_finite runge_kutta_4 30 0.03

02:09:08 #13893 [Debug] >     |> listm.map (fun (multi_particle_state mpst) =>

02:09:08 #13894 [Debug] >         mpst |> stream.try_item 0i32

02:09:08 #13895 [Debug] >         |> optionm.map (fun st =>

02:09:08 #13896 [Debug] >             st.time, system_ke (multi_particle_state mpst)

02:09:08 #13897 [Debug] >         )

02:09:08 #13898 [Debug] >     )

02:09:08 #13899 [Debug] >     // |> stream.to_list

02:09:08 #13900 [Debug] >     |> listm'.choose id

02:09:08 #13901 [Debug] >     |> listm'.unzip

02:09:08 #13902 [Debug] >

02:09:08 #13903 [Debug] > inl time_ke_ec_x : a i32 _ = time_ke_ec_x |> listm.toArray

02:09:08 #13904 [Debug] > inl time_ke_ec_y : a i32 _ = time_ke_ec_y |> listm.toArray

02:09:08 #13905 [Debug] >

02:09:08 #13906 [Debug] > inl time_ke_rk4_x : a i32 _ = time_ke_rk4_x |> listm.toArray

02:09:08 #13907 [Debug] > inl time_ke_rk4_y : a i32 _ = time_ke_rk4_y |> listm.toArray

02:09:08 #13908 [Debug] >

02:09:08 #13909 [Debug] > "system kinetic energy versus time",

02:09:08 #13910 [Debug] > "time (s)",

02:09:08 #13911 [Debug] > "system kinetic energy (j)",

02:09:08 #13912 [Debug] > ;[[

02:09:08 #13913 [Debug] >     "euler-cromer", time_ke_ec_x, time_ke_ec_y

02:09:08 #13914 [Debug] >     "runge-kutta 4", time_ke_rk4_x, time_ke_rk4_y

02:09:08 #13915 [Debug] > ]]

02:09:08 #13916 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-0829-2984-2a1e10129dd1\main.spi

02:09:10 #13917 [Debug] >

02:09:10 #13918 [Debug] > ╭─[ 2.23s - return value ]─────────────────────────────────────────────────────╮

02:09:10 #13919 [Debug] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

02:09:10 #13920 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:10 #13921 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:10 #13922 [Debug] > │ stroke="none"/>                                                              │

02:09:10 #13923 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:10 #13924 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #13925 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #13926 [Debug] > │ system kinetic energy versus time                                            │

02:09:10 #13927 [Debug] > │ </text>                                                                      │

02:09:10 #13928 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

02:09:10 #13929 [Debug] > │ y2="75"/>                                                                    │

02:09:10 #13930 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:10 #13931 [Debug] > │ y2="75"/>                                                                    │

02:09:10 #13932 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

02:09:10 #13933 [Debug] > │ y2="75"/>                                                                    │

02:09:10 #13934 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

02:09:10 #13935 [Debug] > │ y2="75"/>                                                                    │

02:09:10 #13936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="424" x2="99" │

02:09:10 #13937 [Debug] > │ y2="75"/>                                                                    │

02:09:10 #13938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="109" y1="424"        │

02:09:10 #13939 [Debug] > │ x2="109" y2="75"/>                                                           │

02:09:10 #13940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="119" y1="424"        │

02:09:10 #13941 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:10 #13942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="129" y1="424"        │

02:09:10 #13943 [Debug] > │ x2="129" y2="75"/>                                                           │

02:09:10 #13944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:10 #13945 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:10 #13946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="149" y1="424"        │

02:09:10 #13947 [Debug] > │ x2="149" y2="75"/>                                                           │

02:09:10 #13948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="159" y1="424"        │

02:09:10 #13949 [Debug] > │ x2="159" y2="75"/>                                                           │

02:09:10 #13950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:10 #13951 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:10 #13952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="179" y1="424"        │

02:09:10 #13953 [Debug] > │ x2="179" y2="75"/>                                                           │

02:09:10 #13954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="189" y1="424"        │

02:09:10 #13955 [Debug] > │ x2="189" y2="75"/>                                                           │

02:09:10 #13956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:10 #13957 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:10 #13958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="209" y1="424"        │

02:09:10 #13959 [Debug] > │ x2="209" y2="75"/>                                                           │

02:09:10 #13960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="219" y1="424"        │

02:09:10 #13961 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:10 #13962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:10 #13963 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:10 #13964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="239" y1="424"        │

02:09:10 #13965 [Debug] > │ x2="239" y2="75"/>                                                           │

02:09:10 #13966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="249" y1="424"        │

02:09:10 #13967 [Debug] > │ x2="249" y2="75"/>                                                           │

02:09:10 #13968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:10 #13969 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:10 #13970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:10 #13971 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:10 #13972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="279" y1="424"        │

02:09:10 #13973 [Debug] > │ x2="279" y2="75"/>                                                           │

02:09:10 #13974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:10 #13975 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:10 #13976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:10 #13977 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:10 #13978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="309" y1="424"        │

02:09:10 #13979 [Debug] > │ x2="309" y2="75"/>                                                           │

02:09:10 #13980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:10 #13981 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:10 #13982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:10 #13983 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:10 #13984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="339" y1="424"        │

02:09:10 #13985 [Debug] > │ x2="339" y2="75"/>                                                           │

02:09:10 #13986 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:10 #13987 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:10 #13988 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:10 #13989 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:10 #13990 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:10 #13991 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:10 #13992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="379" y1="424"        │

02:09:10 #13993 [Debug] > │ x2="379" y2="75"/>                                                           │

02:09:10 #13994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:09:10 #13995 [Debug] > │ x2="389" y2="75"/>                                                           │

02:09:10 #13996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:09:10 #13997 [Debug] > │ x2="399" y2="75"/>                                                           │

02:09:10 #13998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="409" y1="424"        │

02:09:10 #13999 [Debug] > │ x2="409" y2="75"/>                                                           │

02:09:10 #14000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:10 #14001 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:10 #14002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:10 #14003 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:10 #14004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="439" y1="424"        │

02:09:10 #14005 [Debug] > │ x2="439" y2="75"/>                                                           │

02:09:10 #14006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:10 #14007 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:10 #14008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:10 #14009 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:10 #14010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:10 #14011 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:10 #14012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:10 #14013 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:10 #14014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:10 #14015 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:10 #14016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:10 #14017 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:10 #14018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:10 #14019 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:10 #14020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:09:10 #14021 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:10 #14022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:10 #14023 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:10 #14024 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:10 #14025 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:10 #14026 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="549" y1="424"        │

02:09:10 #14027 [Debug] > │ x2="549" y2="75"/>                                                           │

02:09:10 #14028 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:10 #14029 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:10 #14030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:10 #14031 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:10 #14032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="579" y1="424"        │

02:09:10 #14033 [Debug] > │ x2="579" y2="75"/>                                                           │

02:09:10 #14034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:10 #14035 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:10 #14036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:09:10 #14037 [Debug] > │ x2="584" y2="404"/>                                                          │

02:09:10 #14038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:10 #14039 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:10 #14040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:09:10 #14041 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:10 #14042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:10 #14043 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:10 #14044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="356"         │

02:09:10 #14045 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:10 #14046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:09:10 #14047 [Debug] > │ x2="584" y2="344"/>                                                          │

02:09:10 #14048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:09:10 #14049 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:10 #14050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:10 #14051 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:10 #14052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:10 #14053 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:10 #14054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="297"         │

02:09:10 #14055 [Debug] > │ x2="584" y2="297"/>                                                          │

02:09:10 #14056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:10 #14057 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:10 #14058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:09:10 #14059 [Debug] > │ x2="584" y2="273"/>                                                          │

02:09:10 #14060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="261"         │

02:09:10 #14061 [Debug] > │ x2="584" y2="261"/>                                                          │

02:09:10 #14062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="249"         │

02:09:10 #14063 [Debug] > │ x2="584" y2="249"/>                                                          │

02:09:10 #14064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="237"         │

02:09:10 #14065 [Debug] > │ x2="584" y2="237"/>                                                          │

02:09:10 #14066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="225"         │

02:09:10 #14067 [Debug] > │ x2="584" y2="225"/>                                                          │

02:09:10 #14068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:10 #14069 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:10 #14070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:10 #14071 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:10 #14072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:09:10 #14073 [Debug] > │ x2="584" y2="189"/>                                                          │

02:09:10 #14074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:09:10 #14075 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:10 #14076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:10 #14077 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:10 #14078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="153"         │

02:09:10 #14079 [Debug] > │ x2="584" y2="153"/>                                                          │

02:09:10 #14080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:10 #14081 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:10 #14082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:09:10 #14083 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:10 #14084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:10 #14085 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:10 #14086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:10 #14087 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:10 #14088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:10 #14089 [Debug] > │ y2="94"/>                                                                    │

02:09:10 #14090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:10 #14091 [Debug] > │ y2="82"/>                                                                    │

02:09:10 #14092 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:10 #14093 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14094 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14095 [Debug] > │ time (s)                                                                     │

02:09:10 #14096 [Debug] > │ </text>                                                                      │

02:09:10 #14097 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:10 #14098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14099 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:10 #14100 [Debug] > │ system kinetic energy (j)                                                    │

02:09:10 #14101 [Debug] > │ </text>                                                                      │

02:09:10 #14102 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:10 #14103 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14104 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14105 [Debug] > │ time (s)                                                                     │

02:09:10 #14106 [Debug] > │ </text>                                                                      │

02:09:10 #14107 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14108 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14109 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:10 #14110 [Debug] > │ system kinetic energy (j)                                                    │

02:09:10 #14111 [Debug] > │ </text>                                                                      │

02:09:10 #14112 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:10 #14113 [Debug] > │ y2="75"/>                                                                    │

02:09:10 #14114 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="119" y1="424"        │

02:09:10 #14115 [Debug] > │ x2="119" y2="75"/>                                                           │

02:09:10 #14116 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="169" y1="424"        │

02:09:10 #14117 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:10 #14118 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="219" y1="424"        │

02:09:10 #14119 [Debug] > │ x2="219" y2="75"/>                                                           │

02:09:10 #14120 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="269" y1="424"        │

02:09:10 #14121 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:10 #14122 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="319" y1="424"        │

02:09:10 #14123 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:10 #14124 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="369" y1="424"        │

02:09:10 #14125 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:10 #14126 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="419" y1="424"        │

02:09:10 #14127 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:10 #14128 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="469" y1="424"        │

02:09:10 #14129 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:10 #14130 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="519" y1="424"        │

02:09:10 #14131 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:10 #14132 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:10 #14133 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:10 #14134 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="380"         │

02:09:10 #14135 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:10 #14136 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="332"         │

02:09:10 #14137 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:10 #14138 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="285"         │

02:09:10 #14139 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:10 #14140 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="237"         │

02:09:10 #14141 [Debug] > │ x2="584" y2="237"/>                                                          │

02:09:10 #14142 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="189"         │

02:09:10 #14143 [Debug] > │ x2="584" y2="189"/>                                                          │

02:09:10 #14144 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="142"         │

02:09:10 #14145 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:10 #14146 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:10 #14147 [Debug] > │ y2="94"/>                                                                    │

02:09:10 #14148 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14149 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:10 #14150 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:10 #14151 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14152 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14153 [Debug] > │ 0.0                                                                          │

02:09:10 #14154 [Debug] > │ </text>                                                                      │

02:09:10 #14155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14156 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:10 #14157 [Debug] > │ <text x="119" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14158 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14159 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14160 [Debug] > │ 1.0                                                                          │

02:09:10 #14161 [Debug] > │ </text>                                                                      │

02:09:10 #14162 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14163 [Debug] > │ points="119,69 119,74 "/>                                                    │

02:09:10 #14164 [Debug] > │ <text x="169" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14165 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14166 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14167 [Debug] > │ 2.0                                                                          │

02:09:10 #14168 [Debug] > │ </text>                                                                      │

02:09:10 #14169 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14170 [Debug] > │ points="169,69 169,74 "/>                                                    │

02:09:10 #14171 [Debug] > │ <text x="219" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14172 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14173 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14174 [Debug] > │ 3.0                                                                          │

02:09:10 #14175 [Debug] > │ </text>                                                                      │

02:09:10 #14176 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14177 [Debug] > │ points="219,69 219,74 "/>                                                    │

02:09:10 #14178 [Debug] > │ <text x="269" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14179 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14180 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14181 [Debug] > │ 4.0                                                                          │

02:09:10 #14182 [Debug] > │ </text>                                                                      │

02:09:10 #14183 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14184 [Debug] > │ points="269,69 269,74 "/>                                                    │

02:09:10 #14185 [Debug] > │ <text x="319" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14186 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14187 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14188 [Debug] > │ 5.0                                                                          │

02:09:10 #14189 [Debug] > │ </text>                                                                      │

02:09:10 #14190 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14191 [Debug] > │ points="319,69 319,74 "/>                                                    │

02:09:10 #14192 [Debug] > │ <text x="369" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14193 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14194 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14195 [Debug] > │ 6.0                                                                          │

02:09:10 #14196 [Debug] > │ </text>                                                                      │

02:09:10 #14197 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14198 [Debug] > │ points="369,69 369,74 "/>                                                    │

02:09:10 #14199 [Debug] > │ <text x="419" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14200 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14201 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14202 [Debug] > │ 7.0                                                                          │

02:09:10 #14203 [Debug] > │ </text>                                                                      │

02:09:10 #14204 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14205 [Debug] > │ points="419,69 419,74 "/>                                                    │

02:09:10 #14206 [Debug] > │ <text x="469" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14207 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14208 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14209 [Debug] > │ 8.0                                                                          │

02:09:10 #14210 [Debug] > │ </text>                                                                      │

02:09:10 #14211 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14212 [Debug] > │ points="469,69 469,74 "/>                                                    │

02:09:10 #14213 [Debug] > │ <text x="519" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14214 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14215 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14216 [Debug] > │ 9.0                                                                          │

02:09:10 #14217 [Debug] > │ </text>                                                                      │

02:09:10 #14218 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14219 [Debug] > │ points="519,69 519,74 "/>                                                    │

02:09:10 #14220 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:10 #14221 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14222 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14223 [Debug] > │ 10.0                                                                         │

02:09:10 #14224 [Debug] > │ </text>                                                                      │

02:09:10 #14225 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14226 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:10 #14227 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14228 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:10 #14229 [Debug] > │ <text x="45" y="380" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:10 #14230 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14231 [Debug] > │ 0.0                                                                          │

02:09:10 #14232 [Debug] > │ </text>                                                                      │

02:09:10 #14233 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14234 [Debug] > │ points="49,380 54,380 "/>                                                    │

02:09:10 #14235 [Debug] > │ <text x="45" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:10 #14236 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14237 [Debug] > │ 0.0                                                                          │

02:09:10 #14238 [Debug] > │ </text>                                                                      │

02:09:10 #14239 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14240 [Debug] > │ points="49,332 54,332 "/>                                                    │

02:09:10 #14241 [Debug] > │ <text x="45" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:10 #14242 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14243 [Debug] > │ 0.0                                                                          │

02:09:10 #14244 [Debug] > │ </text>                                                                      │

02:09:10 #14245 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14246 [Debug] > │ points="49,285 54,285 "/>                                                    │

02:09:10 #14247 [Debug] > │ <text x="45" y="237" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:10 #14248 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14249 [Debug] > │ 0.0                                                                          │

02:09:10 #14250 [Debug] > │ </text>                                                                      │

02:09:10 #14251 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14252 [Debug] > │ points="49,237 54,237 "/>                                                    │

02:09:10 #14253 [Debug] > │ <text x="45" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:10 #14254 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14255 [Debug] > │ 0.0                                                                          │

02:09:10 #14256 [Debug] > │ </text>                                                                      │

02:09:10 #14257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14258 [Debug] > │ points="49,189 54,189 "/>                                                    │

02:09:10 #14259 [Debug] > │ <text x="45" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:10 #14260 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14261 [Debug] > │ 0.0                                                                          │

02:09:10 #14262 [Debug] > │ </text>                                                                      │

02:09:10 #14263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14264 [Debug] > │ points="49,142 54,142 "/>                                                    │

02:09:10 #14265 [Debug] > │ <text x="45" y="94" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:10 #14266 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14267 [Debug] > │ 0.0                                                                          │

02:09:10 #14268 [Debug] > │ </text>                                                                      │

02:09:10 #14269 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14270 [Debug] > │ points="49,94 54,94 "/>                                                      │

02:09:10 #14271 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14272 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:10 #14273 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:10 #14274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14275 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14276 [Debug] > │ 0.0                                                                          │

02:09:10 #14277 [Debug] > │ </text>                                                                      │

02:09:10 #14278 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14279 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:10 #14280 [Debug] > │ <text x="119" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14281 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14282 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14283 [Debug] > │ 1.0                                                                          │

02:09:10 #14284 [Debug] > │ </text>                                                                      │

02:09:10 #14285 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14286 [Debug] > │ points="119,425 119,430 "/>                                                  │

02:09:10 #14287 [Debug] > │ <text x="169" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14288 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14289 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14290 [Debug] > │ 2.0                                                                          │

02:09:10 #14291 [Debug] > │ </text>                                                                      │

02:09:10 #14292 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14293 [Debug] > │ points="169,425 169,430 "/>                                                  │

02:09:10 #14294 [Debug] > │ <text x="219" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14295 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14296 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14297 [Debug] > │ 3.0                                                                          │

02:09:10 #14298 [Debug] > │ </text>                                                                      │

02:09:10 #14299 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14300 [Debug] > │ points="219,425 219,430 "/>                                                  │

02:09:10 #14301 [Debug] > │ <text x="269" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14302 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14303 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14304 [Debug] > │ 4.0                                                                          │

02:09:10 #14305 [Debug] > │ </text>                                                                      │

02:09:10 #14306 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14307 [Debug] > │ points="269,425 269,430 "/>                                                  │

02:09:10 #14308 [Debug] > │ <text x="319" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14309 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14310 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14311 [Debug] > │ 5.0                                                                          │

02:09:10 #14312 [Debug] > │ </text>                                                                      │

02:09:10 #14313 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14314 [Debug] > │ points="319,425 319,430 "/>                                                  │

02:09:10 #14315 [Debug] > │ <text x="369" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14316 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14317 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14318 [Debug] > │ 6.0                                                                          │

02:09:10 #14319 [Debug] > │ </text>                                                                      │

02:09:10 #14320 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14321 [Debug] > │ points="369,425 369,430 "/>                                                  │

02:09:10 #14322 [Debug] > │ <text x="419" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14323 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14324 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14325 [Debug] > │ 7.0                                                                          │

02:09:10 #14326 [Debug] > │ </text>                                                                      │

02:09:10 #14327 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14328 [Debug] > │ points="419,425 419,430 "/>                                                  │

02:09:10 #14329 [Debug] > │ <text x="469" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14330 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14331 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14332 [Debug] > │ 8.0                                                                          │

02:09:10 #14333 [Debug] > │ </text>                                                                      │

02:09:10 #14334 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14335 [Debug] > │ points="469,425 469,430 "/>                                                  │

02:09:10 #14336 [Debug] > │ <text x="519" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14337 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14338 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14339 [Debug] > │ 9.0                                                                          │

02:09:10 #14340 [Debug] > │ </text>                                                                      │

02:09:10 #14341 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14342 [Debug] > │ points="519,425 519,430 "/>                                                  │

02:09:10 #14343 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:10 #14344 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14345 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14346 [Debug] > │ 10.0                                                                         │

02:09:10 #14347 [Debug] > │ </text>                                                                      │

02:09:10 #14348 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14349 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:10 #14350 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14351 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:10 #14352 [Debug] > │ <text x="595" y="380" dy="0.5ex" text-anchor="start"                         │

02:09:10 #14353 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14354 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14355 [Debug] > │ 0.0                                                                          │

02:09:10 #14356 [Debug] > │ </text>                                                                      │

02:09:10 #14357 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14358 [Debug] > │ points="585,380 590,380 "/>                                                  │

02:09:10 #14359 [Debug] > │ <text x="595" y="332" dy="0.5ex" text-anchor="start"                         │

02:09:10 #14360 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14361 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14362 [Debug] > │ 0.0                                                                          │

02:09:10 #14363 [Debug] > │ </text>                                                                      │

02:09:10 #14364 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14365 [Debug] > │ points="585,332 590,332 "/>                                                  │

02:09:10 #14366 [Debug] > │ <text x="595" y="285" dy="0.5ex" text-anchor="start"                         │

02:09:10 #14367 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14368 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14369 [Debug] > │ 0.0                                                                          │

02:09:10 #14370 [Debug] > │ </text>                                                                      │

02:09:10 #14371 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14372 [Debug] > │ points="585,285 590,285 "/>                                                  │

02:09:10 #14373 [Debug] > │ <text x="595" y="237" dy="0.5ex" text-anchor="start"                         │

02:09:10 #14374 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14375 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14376 [Debug] > │ 0.0                                                                          │

02:09:10 #14377 [Debug] > │ </text>                                                                      │

02:09:10 #14378 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14379 [Debug] > │ points="585,237 590,237 "/>                                                  │

02:09:10 #14380 [Debug] > │ <text x="595" y="189" dy="0.5ex" text-anchor="start"                         │

02:09:10 #14381 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14382 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14383 [Debug] > │ 0.0                                                                          │

02:09:10 #14384 [Debug] > │ </text>                                                                      │

02:09:10 #14385 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14386 [Debug] > │ points="585,189 590,189 "/>                                                  │

02:09:10 #14387 [Debug] > │ <text x="595" y="142" dy="0.5ex" text-anchor="start"                         │

02:09:10 #14388 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14389 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14390 [Debug] > │ 0.0                                                                          │

02:09:10 #14391 [Debug] > │ </text>                                                                      │

02:09:10 #14392 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14393 [Debug] > │ points="585,142 590,142 "/>                                                  │

02:09:10 #14394 [Debug] > │ <text x="595" y="94" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:09:10 #14395 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:10 #14396 [Debug] > │ 0.0                                                                          │

02:09:10 #14397 [Debug] > │ </text>                                                                      │

02:09:10 #14398 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:10 #14399 [Debug] > │ points="585,94 590,94 "/>                                                    │

02:09:10 #14400 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:10 #14401 [Debug] > │ points="69,94 71,94 72,94 74,94 75,94 77,94 78,94 80,94 81,94 83,94 84,94    │

02:09:10 #14402 [Debug] > │ 86,94 87,94 89,94 90,94 92,94 93,94 95,94 96,94 98,94 99,94 101,94 102,94    │

02:09:10 #14403 [Debug] > │ 104,94 105,94 107,94 108,94 110,94 111,94 113,94 114,94 116,94 117,94 119,94 │

02:09:10 #14404 [Debug] > │ 120,94 122,94 123,94 125,94 126,94 128,94 129,94 131,94 132,94 134,94 135,94 │

02:09:10 #14405 [Debug] > │ 137,94 138,94 140,94 141,94 143,94 144,94 146,94 147,94 149,94 150,94 152,94 │

02:09:10 #14406 [Debug] > │ 153,94 155,94 156,94 158,94 159,94 161,94 162,94 164,94 165,94 167,94 168,94 │

02:09:10 #14407 [Debug] > │ 170,94 171,94 173,94 174,94 176,94 177,94 179,94 180,94 182,94 183,94 185,94 │

02:09:10 #14408 [Debug] > │ 186,94 188,94 189,94 191,94 192,94 194,94 195,94 197,94 198,94 200,94 201,94 │

02:09:10 #14409 [Debug] > │ 203,94 204,94 206,94 207,94 209,94 210,94 212,94 213,94 215,94 216,94 218,94 │

02:09:10 #14410 [Debug] > │ 219,94 221,94 222,94 224,94 225,94 227,94 228,94 230,94 231,94 233,94 234,94 │

02:09:10 #14411 [Debug] > │ 236,94 237,94 239,94 240,94 242,94 243,94 245,94 246,94 248,94 249,94 251,94 │

02:09:10 #14412 [Debug] > │ 252,94 254,94 255,94 257,94 258,94 260,94 261,94 263,94 264,94 266,94 267,94 │

02:09:10 #14413 [Debug] > │ 269,94 270,94 272,94 273,94 275,94 276,94 278,94 279,94 281,94 282,94 284,94 │

02:09:10 #14414 [Debug] > │ 285,94 287,94 288,94 290,94 291,94 293,94 294,94 296,94 297,94 299,94 300,94 │

02:09:10 #14415 [Debug] > │ 302,94 303,94 305,94 306,94 308,243 309,402 311,368 312,185 314,85 315,85    │

02:09:10 #14416 [Debug] > │ 317,85 318,85 320,85 321,85 323,85 324,85 326,85 327,85 329,85 330,85 332,85 │

02:09:10 #14417 [Debug] > │ 333,85 335,85 336,85 338,85 339,85 341,85 342,85 344,85 345,85 347,85 348,85 │

02:09:10 #14418 [Debug] > │ 350,85 351,85 353,85 354,85 356,85 357,85 359,85 360,85 362,85 363,85 365,85 │

02:09:10 #14419 [Debug] > │ 366,85 368,85 369,85 371,85 372,85 374,85 375,85 377,85 378,85 380,85 381,85 │

02:09:10 #14420 [Debug] > │ 383,85 384,85 386,85 387,85 389,85 390,85 392,85 393,85 395,85 396,85 398,85 │

02:09:10 #14421 [Debug] > │ 399,85 401,85 402,85 404,85 405,85 407,85 408,85 410,85 411,85 413,85 414,85 │

02:09:10 #14422 [Debug] > │ 416,85 417,85 419,85 420,85 422,85 423,85 425,85 426,85 428,85 429,85 431,85 │

02:09:10 #14423 [Debug] > │ 432,85 434,85 435,85 437,85 438,85 440,85 441,85 443,85 444,85 446,85 447,85 │

02:09:10 #14424 [Debug] > │ 449,85 450,85 452,85 453,85 455,85 456,85 458,85 459,85 461,85 462,85 464,85 │

02:09:10 #14425 [Debug] > │ 465,85 467,85 468,85 470,85 471,85 473,85 474,85 476,85 477,85 479,85 480,85 │

02:09:10 #14426 [Debug] > │ 482,85 483,85 485,85 486,85 488,85 489,85 491,85 492,85 494,85 495,85 497,85 │

02:09:10 #14427 [Debug] > │ 498,85 500,85 501,85 503,85 504,85 506,85 507,85 509,85 510,85 512,85 513,85 │

02:09:10 #14428 [Debug] > │ 515,85 516,85 518,85 519,85 521,85 522,85 524,85 525,85 527,85 528,85 530,85 │

02:09:10 #14429 [Debug] > │ 531,85 533,85 534,85 536,85 537,85 539,85 540,85 542,85 543,85 545,85 546,85 │

02:09:10 #14430 [Debug] > │ 548,85 549,85 551,85 552,85 554,85 555,85 557,85 558,85 560,85 561,85 563,85 │

02:09:10 #14431 [Debug] > │ 564,85 566,85 567,85 569,85 "/>                                              │

02:09:10 #14432 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:10 #14433 [Debug] > │ points="69,94 71,94 72,94 74,94 75,94 77,94 78,94 80,94 81,94 83,94 84,94    │

02:09:10 #14434 [Debug] > │ 86,94 87,94 89,94 90,94 92,94 93,94 95,94 96,94 98,94 99,94 101,94 102,94    │

02:09:10 #14435 [Debug] > │ 104,94 105,94 107,94 108,94 110,94 111,94 113,94 114,94 116,94 117,94 119,94 │

02:09:10 #14436 [Debug] > │ 120,94 122,94 123,94 125,94 126,94 128,94 129,94 131,94 132,94 134,94 135,94 │

02:09:10 #14437 [Debug] > │ 137,94 138,94 140,94 141,94 143,94 144,94 146,94 147,94 149,94 150,94 152,94 │

02:09:10 #14438 [Debug] > │ 153,94 155,94 156,94 158,94 159,94 161,94 162,94 164,94 165,94 167,94 168,94 │

02:09:10 #14439 [Debug] > │ 170,94 171,94 173,94 174,94 176,94 177,94 179,94 180,94 182,94 183,94 185,94 │

02:09:10 #14440 [Debug] > │ 186,94 188,94 189,94 191,94 192,94 194,94 195,94 197,94 198,94 200,94 201,94 │

02:09:10 #14441 [Debug] > │ 203,94 204,94 206,94 207,94 209,94 210,94 212,94 213,94 215,94 216,94 218,94 │

02:09:10 #14442 [Debug] > │ 219,94 221,94 222,94 224,94 225,94 227,94 228,94 230,94 231,94 233,94 234,94 │

02:09:10 #14443 [Debug] > │ 236,94 237,94 239,94 240,94 242,94 243,94 245,94 246,94 248,94 249,94 251,94 │

02:09:10 #14444 [Debug] > │ 252,94 254,94 255,94 257,94 258,94 260,94 261,94 263,94 264,94 266,94 267,94 │

02:09:10 #14445 [Debug] > │ 269,94 270,94 272,94 273,94 275,94 276,94 278,94 279,94 281,94 282,94 284,94 │

02:09:10 #14446 [Debug] > │ 285,94 287,94 288,94 290,94 291,94 293,94 294,94 296,94 297,94 299,94 300,94 │

02:09:10 #14447 [Debug] > │ 302,94 303,94 305,94 306,157 308,335 309,415 311,298 312,130 314,104 315,104 │

02:09:10 #14448 [Debug] > │ 317,104 318,104 320,104 321,104 323,104 324,104 326,104 327,104 329,104      │

02:09:10 #14449 [Debug] > │ 330,104 332,104 333,104 335,104 336,104 338,104 339,104 341,104 342,104      │

02:09:10 #14450 [Debug] > │ 344,104 345,104 347,104 348,104 350,104 351,104 353,104 354,104 356,104      │

02:09:10 #14451 [Debug] > │ 357,104 359,104 360,104 362,104 363,104 365,104 366,104 368,104 369,104      │

02:09:10 #14452 [Debug] > │ 371,104 372,104 374,104 375,104 377,104 378,104 380,104 381,104 383,104      │

02:09:10 #14453 [Debug] > │ 384,104 386,104 387,104 389,104 390,104 392,104 393,104 395,104 396,104      │

02:09:10 #14454 [Debug] > │ 398,104 399,104 401,104 402,104 404,104 405,104 407,104 408,104 410,104      │

02:09:10 #14455 [Debug] > │ 411,104 413,104 414,104 416,104 417,104 419,104 420,104 422,104 423,104      │

02:09:10 #14456 [Debug] > │ 425,104 426,104 428,104 429,104 431,104 432,104 434,104 435,104 437,104      │

02:09:10 #14457 [Debug] > │ 438,104 440,104 441,104 443,104 444,104 446,104 447,104 449,104 450,104      │

02:09:10 #14458 [Debug] > │ 452,104 453,104 455,104 456,104 458,104 459,104 461,104 462,104 464,104      │

02:09:10 #14459 [Debug] > │ 465,104 467,104 468,104 470,104 471,104 473,104 474,104 476,104 477,104      │

02:09:10 #14460 [Debug] > │ 479,104 480,104 482,104 483,104 485,104 486,104 488,104 489,104 491,104      │

02:09:10 #14461 [Debug] > │ 492,104 494,104 495,104 497,104 498,104 500,104 501,104 503,104 504,104      │

02:09:10 #14462 [Debug] > │ 506,104 507,104 509,104 510,104 512,104 513,104 515,104 516,104 518,104      │

02:09:10 #14463 [Debug] > │ 519,104 521,104 522,104 524,104 525,104 527,104 528,104 530,104 531,104      │

02:09:10 #14464 [Debug] > │ 533,104 534,104 536,104 537,104 539,104 540,104 542,104 543,104 545,104      │

02:09:10 #14465 [Debug] > │ 546,104 548,104 549,104 551,104 552,104 554,104 555,104 557,104 558,104      │

02:09:10 #14466 [Debug] > │ 560,104 561,104 563,104 564,104 566,104 567,104 569,104 "/>                  │

02:09:10 #14467 [Debug] > │ <rect x="459" y="227" width="121" height="45" opacity="1" fill="none"        │

02:09:10 #14468 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:10 #14469 [Debug] > │ <text x="499" y="237" dy="0.76em" text-anchor="start"                        │

02:09:10 #14470 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14471 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14472 [Debug] > │ euler-cromer                                                                 │

02:09:10 #14473 [Debug] > │ </text>                                                                      │

02:09:10 #14474 [Debug] > │ <text x="499" y="252" dy="0.76em" text-anchor="start"                        │

02:09:10 #14475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:10 #14476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:10 #14477 [Debug] > │ runge-kutta 4                                                                │

02:09:10 #14478 [Debug] > │ </text>                                                                      │

02:09:10 #14479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:10 #14480 [Debug] > │ points="469,242 489,242 "/>                                                  │

02:09:10 #14481 [Debug] > │ <polyline fill="none" opacity="1" stroke="#0000FF" stroke-width="1"          │

02:09:10 #14482 [Debug] > │ points="469,257 489,257 "/>                                                  │

02:09:10 #14483 [Debug] > │ </svg>                                                                       │

02:09:10 #14484 [Debug] > │                                                                              │

02:09:10 #14485 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:10 #14486 [Debug] >

02:09:10 #14487 [Debug] > ╭─[ 2.43s - stdout ]───────────────────────────────────────────────────────────╮

02:09:10 #14488 [Debug] > │ type UH0 =                                                                   │

02:09:10 #14489 [Debug] > │     | UH0_0 of float * float * float * float * float * float * float * float │

02:09:10 #14490 [Debug] > │ * float * (unit -> UH0)                                                      │

02:09:10 #14491 [Debug] > │     | UH0_1                                                                  │

02:09:10 #14492 [Debug] > │ and UH1 =                                                                    │

02:09:10 #14493 [Debug] > │     | UH1_0 of float * float * float * float * float * float * float * float │

02:09:10 #14494 [Debug] > │ * float * (unit -> UH1)                                                      │

02:09:10 #14495 [Debug] > │     | UH1_1                                                                  │

02:09:10 #14496 [Debug] > │ and [<Struct>] US0 =                                                         │

02:09:10 #14497 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:09:10 #14498 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:09:10 #14499 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:09:10 #14500 [Debug] > │ and UH2 =                                                                    │

02:09:10 #14501 [Debug] > │     | UH2_0 of float * float * float * float * float * float * float * float │

02:09:10 #14502 [Debug] > │ * float * float * float * float * float * float * float * float * float *    │

02:09:10 #14503 [Debug] > │ float * (unit -> UH2)                                                        │

02:09:10 #14504 [Debug] > │     | UH2_1                                                                  │

02:09:10 #14505 [Debug] > │ and UH3 =                                                                    │

02:09:10 #14506 [Debug] > │     | UH3_0 of int32 * float * float * float * float * float * float * float │

02:09:10 #14507 [Debug] > │ * float * float * (unit -> UH3)                                              │

02:09:10 #14508 [Debug] > │     | UH3_1                                                                  │

02:09:10 #14509 [Debug] > │ and [<Struct>] US1 =                                                         │

02:09:10 #14510 [Debug] > │     | US1_0                                                                  │

02:09:10 #14511 [Debug] > │     | US1_1 of f1_0 : (struct (float * float * float * float * float * float │

02:09:10 #14512 [Debug] > │ * float * float * float) -> struct (float * float * float))                  │

02:09:10 #14513 [Debug] > │ and [<Struct>] US2 =                                                         │

02:09:10 #14514 [Debug] > │     | US2_0                                                                  │

02:09:10 #14515 [Debug] > │     | US2_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

02:09:10 #14516 [Debug] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

02:09:10 #14517 [Debug] > │ and UH4 =                                                                    │

02:09:10 #14518 [Debug] > │     | UH4_0 of UH0 * UH4                                                     │

02:09:10 #14519 [Debug] > │     | UH4_1                                                                  │

02:09:10 #14520 [Debug] > │ and UH5 =                                                                    │

02:09:10 #14521 [Debug] > │     | UH5_0 of int32 * UH5                                                   │

02:09:10 #14522 [Debug] > │     | UH5_1                                                                  │

02:09:10 #14523 [Debug] > │ and [<Struct>] US3 =                                                         │

02:09:10 #14524 [Debug] > │     | US3_0                                                                  │

02:09:10 #14525 [Debug] > │     | US3_1 of f1_0 : float * f1_1 : float                                   │

02:09:10 #14526 [Debug] > │ and UH6 =                                                                    │

02:09:10 #14527 [Debug] > │     | UH6_0 of US3 * UH6                                                     │

02:09:10 #14528 [Debug] > │     | UH6_1                                                                  │

02:09:10 #14529 [Debug] > │ and UH7 =                                                                    │

02:09:10 #14530 [Debug] > │     | UH7_0 of float * (unit -> UH7)                                         │

02:09:10 #14531 [Debug] > │     | UH7_1                                                                  │

02:09:10 #14532 [Debug] > │ and UH8 =                                                                    │

02:09:10 #14533 [Debug] > │     | UH8_0 of float * float * UH8                                           │

02:09:10 #14534 [Debug] > │     | UH8_1                                                                  │

02:09:10 #14535 [Debug] > │ and UH9 =                                                                    │

02:09:10 #14536 [Debug] > │     | UH9_0 of float * UH9                                                   │

02:09:10 #14537 [Debug] > │     | UH9_1                                                                  │

02:09:10 #14538 [Debug] > │ let rec closure3 (v0 : float, v1 : (unit -> UH0), v2 : (unit -> UH1)) () :   │

02:09:10 #14539 [Debug] > │ UH0 =                                                                        │

02:09:10 #14540 [Debug] > │     let v3 : UH1 = v2 ()                                                     │

02:09:10 #14541 [Debug] > │     let v4 : UH0 = v1 ()                                                     │

02:09:10 #14542 [Debug] > │     match v3 with                                                            │

02:09:10 #14543 [Debug] > │     | UH1_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* StreamCons *) │

02:09:10 #14544 [Debug] > │         match v4 with                                                        │

02:09:10 #14545 [Debug] > │         | UH0_0(v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) -> (*      │

02:09:10 #14546 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14547 [Debug] > │             let v25 : float = v10 * v0                                       │

02:09:10 #14548 [Debug] > │             let v26 : float = v20 + v25                                      │

02:09:10 #14549 [Debug] > │             let v27 : float = v0 * v7                                        │

02:09:10 #14550 [Debug] > │             let v28 : float = v0 * v8                                        │

02:09:10 #14551 [Debug] > │             let v29 : float = v0 * v9                                        │

02:09:10 #14552 [Debug] > │             let v30 : float = v17 + v27                                      │

02:09:10 #14553 [Debug] > │             let v31 : float = v18 + v28                                      │

02:09:10 #14554 [Debug] > │             let v32 : float = v19 + v29                                      │

02:09:10 #14555 [Debug] > │             let v33 : float = v0 * v11                                       │

02:09:10 #14556 [Debug] > │             let v34 : float = v0 * v12                                       │

02:09:10 #14557 [Debug] > │             let v35 : float = v0 * v13                                       │

02:09:10 #14558 [Debug] > │             let v36 : float = v21 + v33                                      │

02:09:10 #14559 [Debug] > │             let v37 : float = v22 + v34                                      │

02:09:10 #14560 [Debug] > │             let v38 : float = v23 + v35                                      │

02:09:10 #14561 [Debug] > │             let v39 : (unit -> UH0) = closure3(v0, v24, v14)                 │

02:09:10 #14562 [Debug] > │             UH0_0(v15, v16, v30, v31, v32, v26, v36, v37, v38, v39)          │

02:09:10 #14563 [Debug] > │         | UH0_1 -> (* StreamNil *)                                           │

02:09:10 #14564 [Debug] > │             UH0_1                                                            │

02:09:10 #14565 [Debug] > │     | UH1_1 -> (* StreamNil *)                                               │

02:09:10 #14566 [Debug] > │         UH0_1                                                                │

02:09:10 #14567 [Debug] > │ and closure4 (v0 : UH0) () : UH0 =                                           │

02:09:10 #14568 [Debug] > │     v0                                                                       │

02:09:10 #14569 [Debug] > │ and closure5 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

02:09:10 #14570 [Debug] > │     let v2 : US0 = v1.l0                                                     │

02:09:10 #14571 [Debug] > │     match v2 with                                                            │

02:09:10 #14572 [Debug] > │     | US0_0(v3) -> (* Computed *)                                            │

02:09:10 #14573 [Debug] > │         v3                                                                   │

02:09:10 #14574 [Debug] > │     | US0_1(v4) -> (* NotComputed *)                                         │

02:09:10 #14575 [Debug] > │         let v5 : UH0 = v4 ()                                                 │

02:09:10 #14576 [Debug] > │         let v20 : UH0 =                                                      │

02:09:10 #14577 [Debug] > │             match v5 with                                                    │

02:09:10 #14578 [Debug] > │             | UH0_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) -> (*     │

02:09:10 #14579 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14580 [Debug] > │                 let v17 : (unit -> UH0) = method1(v0, v16)                   │

02:09:10 #14581 [Debug] > │                 UH0_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v17)         │

02:09:10 #14582 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:10 #14583 [Debug] > │                 UH0_1                                                        │

02:09:10 #14584 [Debug] > │         let v21 : US0 = US0_0(v20)                                           │

02:09:10 #14585 [Debug] > │         v1.l0 <- v21                                                         │

02:09:10 #14586 [Debug] > │         v20                                                                  │

02:09:10 #14587 [Debug] > │ and method1 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

02:09:10 #14588 [Debug] > │     let v2 : US0 = US0_1(v1)                                                 │

02:09:10 #14589 [Debug] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

02:09:10 #14590 [Debug] > │     closure5(v0, v3)                                                         │

02:09:10 #14591 [Debug] > │ and closure6 (v0 : (unit -> UH0), v1 : (unit -> UH0)) () : UH2 =             │

02:09:10 #14592 [Debug] > │     let v2 : UH0 = v1 ()                                                     │

02:09:10 #14593 [Debug] > │     let v3 : UH0 = v0 ()                                                     │

02:09:10 #14594 [Debug] > │     match v2 with                                                            │

02:09:10 #14595 [Debug] > │     | UH0_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

02:09:10 #14596 [Debug] > │         match v3 with                                                        │

02:09:10 #14597 [Debug] > │         | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

02:09:10 #14598 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14599 [Debug] > │             let v24 : (unit -> UH2) = closure6(v23, v13)                     │

02:09:10 #14600 [Debug] > │             UH2_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v14, v15, v16, v17, │

02:09:10 #14601 [Debug] > │ v18, v19, v20, v21, v22, v24)                                                │

02:09:10 #14602 [Debug] > │         | UH0_1 -> (* StreamNil *)                                           │

02:09:10 #14603 [Debug] > │             UH2_1                                                            │

02:09:10 #14604 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:09:10 #14605 [Debug] > │         UH2_1                                                                │

02:09:10 #14606 [Debug] > │ and closure7 (v0 : UH0) () : UH0 =                                           │

02:09:10 #14607 [Debug] > │     v0                                                                       │

02:09:10 #14608 [Debug] > │ and method2 (v0 : float, v1 : UH2, v2 : UH0) : UH0 =                         │

02:09:10 #14609 [Debug] > │     match v1 with                                                            │

02:09:10 #14610 [Debug] > │     | UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16,   │

02:09:10 #14611 [Debug] > │ v17, v18, v19, v20, v21) -> (* StreamCons *)                                 │

02:09:10 #14612 [Debug] > │         let v22 : UH2 = v21 ()                                               │

02:09:10 #14613 [Debug] > │         let v23 : UH0 = method2(v0, v22, v2)                                 │

02:09:10 #14614 [Debug] > │         let v24 : float = v0 * v18                                           │

02:09:10 #14615 [Debug] > │         let v25 : float = v0 * v19                                           │

02:09:10 #14616 [Debug] > │         let v26 : float = v0 * v20                                           │

02:09:10 #14617 [Debug] > │         let v27 : float = v5 + v24                                           │

02:09:10 #14618 [Debug] > │         let v28 : float = v6 + v25                                           │

02:09:10 #14619 [Debug] > │         let v29 : float = v7 + v26                                           │

02:09:10 #14620 [Debug] > │         let v30 : (unit -> UH0) = closure7(v23)                              │

02:09:10 #14621 [Debug] > │         UH0_0(v12, v13, v27, v28, v29, v17, v18, v19, v20, v30)              │

02:09:10 #14622 [Debug] > │     | UH2_1 -> (* StreamNil *)                                               │

02:09:10 #14623 [Debug] > │         v2                                                                   │

02:09:10 #14624 [Debug] > │ and closure2 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

02:09:10 #14625 [Debug] > │     let v3 : UH1 = v1 v2                                                     │

02:09:10 #14626 [Debug] > │     let v45 : UH0 =                                                          │

02:09:10 #14627 [Debug] > │         match v3 with                                                        │

02:09:10 #14628 [Debug] > │         | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons │

02:09:10 #14629 [Debug] > │ *)                                                                           │

02:09:10 #14630 [Debug] > │             match v2 with                                                    │

02:09:10 #14631 [Debug] > │             | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*  │

02:09:10 #14632 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14633 [Debug] > │                 let v24 : float = v9 * v0                                    │

02:09:10 #14634 [Debug] > │                 let v25 : float = v19 + v24                                  │

02:09:10 #14635 [Debug] > │                 let v26 : float = v0 * v6                                    │

02:09:10 #14636 [Debug] > │                 let v27 : float = v0 * v7                                    │

02:09:10 #14637 [Debug] > │                 let v28 : float = v0 * v8                                    │

02:09:10 #14638 [Debug] > │                 let v29 : float = v16 + v26                                  │

02:09:10 #14639 [Debug] > │                 let v30 : float = v17 + v27                                  │

02:09:10 #14640 [Debug] > │                 let v31 : float = v18 + v28                                  │

02:09:10 #14641 [Debug] > │                 let v32 : float = v0 * v10                                   │

02:09:10 #14642 [Debug] > │                 let v33 : float = v0 * v11                                   │

02:09:10 #14643 [Debug] > │                 let v34 : float = v0 * v12                                   │

02:09:10 #14644 [Debug] > │                 let v35 : float = v20 + v32                                  │

02:09:10 #14645 [Debug] > │                 let v36 : float = v21 + v33                                  │

02:09:10 #14646 [Debug] > │                 let v37 : float = v22 + v34                                  │

02:09:10 #14647 [Debug] > │                 let v38 : (unit -> UH0) = closure3(v0, v23, v13)             │

02:09:10 #14648 [Debug] > │                 UH0_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)      │

02:09:10 #14649 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:10 #14650 [Debug] > │                 UH0_1                                                        │

02:09:10 #14651 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #14652 [Debug] > │             UH0_1                                                            │

02:09:10 #14653 [Debug] > │     let v46 : (unit -> UH0) = closure4(v45)                                  │

02:09:10 #14654 [Debug] > │     let v47 : (unit -> UH0) = method1(v45, v46)                              │

02:09:10 #14655 [Debug] > │     let v48 : UH0 = v47 ()                                                   │

02:09:10 #14656 [Debug] > │     let v76 : UH2 =                                                          │

02:09:10 #14657 [Debug] > │         match v2 with                                                        │

02:09:10 #14658 [Debug] > │         | UH0_0(v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) -> (*      │

02:09:10 #14659 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14660 [Debug] > │             match v48 with                                                   │

02:09:10 #14661 [Debug] > │             | UH0_0(v59, v60, v61, v62, v63, v64, v65, v66, v67, v68) -> (*  │

02:09:10 #14662 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14663 [Debug] > │                 let v69 : (unit -> UH2) = closure6(v68, v58)                 │

02:09:10 #14664 [Debug] > │                 UH2_0(v49, v50, v51, v52, v53, v54, v55, v56, v57, v59, v60, │

02:09:10 #14665 [Debug] > │ v61, v62, v63, v64, v65, v66, v67, v69)                                      │

02:09:10 #14666 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:10 #14667 [Debug] > │                 UH2_1                                                        │

02:09:10 #14668 [Debug] > │         | UH0_1 -> (* StreamNil *)                                           │

02:09:10 #14669 [Debug] > │             UH2_1                                                            │

02:09:10 #14670 [Debug] > │     let v77 : UH0 = UH0_1                                                    │

02:09:10 #14671 [Debug] > │     let v78 : UH0 = method2(v0, v76, v77)                                    │

02:09:10 #14672 [Debug] > │     v78                                                                      │

02:09:10 #14673 [Debug] > │ and closure1 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

02:09:10 #14674 [Debug] > │     closure2(v0, v1)                                                         │

02:09:10 #14675 [Debug] > │ and closure0 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

02:09:10 #14676 [Debug] > │     closure1(v0)                                                             │

02:09:10 #14677 [Debug] > │ and closure9 (v0 : UH3) () : UH3 =                                           │

02:09:10 #14678 [Debug] > │     v0                                                                       │

02:09:10 #14679 [Debug] > │ and method3 (v0 : UH0, v1 : UH3, v2 : int32) : struct (UH3 * int32) =        │

02:09:10 #14680 [Debug] > │     match v0 with                                                            │

02:09:10 #14681 [Debug] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons *)   │

02:09:10 #14682 [Debug] > │         let v13 : int32 = v2 + 1                                             │

02:09:10 #14683 [Debug] > │         let v14 : UH0 = v12 ()                                               │

02:09:10 #14684 [Debug] > │         let v15 : (unit -> UH3) = closure9(v1)                               │

02:09:10 #14685 [Debug] > │         let v16 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v15) │

02:09:10 #14686 [Debug] > │         method3(v14, v16, v13)                                               │

02:09:10 #14687 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:09:10 #14688 [Debug] > │         struct (v1, v2)                                                      │

02:09:10 #14689 [Debug] > │ and closure10 (v0 : UH3) () : UH3 =                                          │

02:09:10 #14690 [Debug] > │     v0                                                                       │

02:09:10 #14691 [Debug] > │ and method4 (v0 : UH3, v1 : UH3) : UH3 =                                     │

02:09:10 #14692 [Debug] > │     match v0 with                                                            │

02:09:10 #14693 [Debug] > │     | UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons  │

02:09:10 #14694 [Debug] > │ *)                                                                           │

02:09:10 #14695 [Debug] > │         let v13 : UH3 = v12 ()                                               │

02:09:10 #14696 [Debug] > │         let v14 : (unit -> UH3) = closure10(v1)                              │

02:09:10 #14697 [Debug] > │         let v15 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v14) │

02:09:10 #14698 [Debug] > │         method4(v13, v15)                                                    │

02:09:10 #14699 [Debug] > │     | UH3_1 -> (* StreamNil *)                                               │

02:09:10 #14700 [Debug] > │         v1                                                                   │

02:09:10 #14701 [Debug] > │ and method6 (v0 : int32, v1 : UH0) : US2 =                                   │

02:09:10 #14702 [Debug] > │     match v1 with                                                            │

02:09:10 #14703 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

02:09:10 #14704 [Debug] > │         let v12 : bool = v0 <= 0                                             │

02:09:10 #14705 [Debug] > │         if v12 then                                                          │

02:09:10 #14706 [Debug] > │             US2_1(v2, v3, v4, v5, v6, v7, v8, v9, v10)                       │

02:09:10 #14707 [Debug] > │         else                                                                 │

02:09:10 #14708 [Debug] > │             let v14 : int32 = v0 - 1                                         │

02:09:10 #14709 [Debug] > │             let v15 : UH0 = v11 ()                                           │

02:09:10 #14710 [Debug] > │             method6(v14, v15)                                                │

02:09:10 #14711 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:09:10 #14712 [Debug] > │         US2_0                                                                │

02:09:10 #14713 [Debug] > │ and closure11 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float,   │

02:09:10 #14714 [Debug] > │ v5 : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :    │

02:09:10 #14715 [Debug] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:09:10 #14716 [Debug] > │ : float, v17 : float) : struct (float * float * float) =                     │

02:09:10 #14717 [Debug] > │     let v18 : float = -1.0 * v2                                              │

02:09:10 #14718 [Debug] > │     let v19 : float = -1.0 * v3                                              │

02:09:10 #14719 [Debug] > │     let v20 : float = -1.0 * v4                                              │

02:09:10 #14720 [Debug] > │     let v21 : float = v11 + v18                                              │

02:09:10 #14721 [Debug] > │     let v22 : float = v12 + v19                                              │

02:09:10 #14722 [Debug] > │     let v23 : float = v13 + v20                                              │

02:09:10 #14723 [Debug] > │     let v24 : float = v21 * v21                                              │

02:09:10 #14724 [Debug] > │     let v25 : float = v22 * v22                                              │

02:09:10 #14725 [Debug] > │     let v26 : float = v24 + v25                                              │

02:09:10 #14726 [Debug] > │     let v27 : float = v23 * v23                                              │

02:09:10 #14727 [Debug] > │     let v28 : float = v26 + v27                                              │

02:09:10 #14728 [Debug] > │     let v29 : float = sqrt v28                                               │

02:09:10 #14729 [Debug] > │     let v30 : bool = v29 >= 0.06                                             │

02:09:10 #14730 [Debug] > │     let v33 : float =                                                        │

02:09:10 #14731 [Debug] > │         if v30 then                                                          │

02:09:10 #14732 [Debug] > │             0.0                                                              │

02:09:10 #14733 [Debug] > │         else                                                                 │

02:09:10 #14734 [Debug] > │             let v31 : float = v29 - 0.06                                     │

02:09:10 #14735 [Debug] > │             let v32 : float = -30.0 * v31                                    │

02:09:10 #14736 [Debug] > │             v32                                                              │

02:09:10 #14737 [Debug] > │     let v34 : float = v33 * v21                                              │

02:09:10 #14738 [Debug] > │     let v35 : float = v33 * v22                                              │

02:09:10 #14739 [Debug] > │     let v36 : float = v33 * v23                                              │

02:09:10 #14740 [Debug] > │     let v37 : float = v34 / v29                                              │

02:09:10 #14741 [Debug] > │     let v38 : float = v35 / v29                                              │

02:09:10 #14742 [Debug] > │     let v39 : float = v36 / v29                                              │

02:09:10 #14743 [Debug] > │     struct (v37, v38, v39)                                                   │

02:09:10 #14744 [Debug] > │ and closure12 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4  │

02:09:10 #14745 [Debug] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

02:09:10 #14746 [Debug] > │ float * float) =                                                             │

02:09:10 #14747 [Debug] > │     struct (0.0, 0.0, 0.0)                                                   │

02:09:10 #14748 [Debug] > │ and closure13 (v0 : UH1) () : UH1 =                                          │

02:09:10 #14749 [Debug] > │     v0                                                                       │

02:09:10 #14750 [Debug] > │ and method5 (v0 : UH0, v1 : UH3, v2 : UH1) : UH1 =                           │

02:09:10 #14751 [Debug] > │     match v1 with                                                            │

02:09:10 #14752 [Debug] > │     | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons │

02:09:10 #14753 [Debug] > │ *)                                                                           │

02:09:10 #14754 [Debug] > │         let v14 : UH3 = v13 ()                                               │

02:09:10 #14755 [Debug] > │         let v15 : UH1 = method5(v0, v14, v2)                                 │

02:09:10 #14756 [Debug] > │         let v16 : bool = v3 = 0                                              │

02:09:10 #14757 [Debug] > │         let v52 : US1 =                                                      │

02:09:10 #14758 [Debug] > │             if v16 then                                                      │

02:09:10 #14759 [Debug] > │                 let v17 : int32 = 1                                          │

02:09:10 #14760 [Debug] > │                 let v18 : US2 = method6(v17, v0)                             │

02:09:10 #14761 [Debug] > │                 match v18 with                                               │

02:09:10 #14762 [Debug] > │                 | US2_0 -> (* None *)                                        │

02:09:10 #14763 [Debug] > │                     US1_0                                                    │

02:09:10 #14764 [Debug] > │                 | US2_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (*   │

02:09:10 #14765 [Debug] > │ Some *)                                                                      │

02:09:10 #14766 [Debug] > │                     let v28 : (struct (float * float * float * float * float │

02:09:10 #14767 [Debug] > │ * float * float * float * float) -> struct (float * float * float)) =        │

02:09:10 #14768 [Debug] > │ closure11(v19, v20, v21, v22, v23, v24, v25, v26, v27)                       │

02:09:10 #14769 [Debug] > │                     US1_1(v28)                                               │

02:09:10 #14770 [Debug] > │             else                                                             │

02:09:10 #14771 [Debug] > │                 let v33 : bool = v3 = 1                                      │

02:09:10 #14772 [Debug] > │                 if v33 then                                                  │

02:09:10 #14773 [Debug] > │                     let v34 : int32 = 0                                      │

02:09:10 #14774 [Debug] > │                     let v35 : US2 = method6(v34, v0)                         │

02:09:10 #14775 [Debug] > │                     match v35 with                                           │

02:09:10 #14776 [Debug] > │                     | US2_0 -> (* None *)                                    │

02:09:10 #14777 [Debug] > │                         US1_0                                                │

02:09:10 #14778 [Debug] > │                     | US2_1(v36, v37, v38, v39, v40, v41, v42, v43, v44) ->  │

02:09:10 #14779 [Debug] > │ (* Some *)                                                                   │

02:09:10 #14780 [Debug] > │                         let v45 : (struct (float * float * float * float *   │

02:09:10 #14781 [Debug] > │ float * float * float * float * float) -> struct (float * float * float)) =  │

02:09:10 #14782 [Debug] > │ closure11(v36, v37, v38, v39, v40, v41, v42, v43, v44)                       │

02:09:10 #14783 [Debug] > │                         US1_1(v45)                                           │

02:09:10 #14784 [Debug] > │                 else                                                         │

02:09:10 #14785 [Debug] > │                     US1_0                                                    │

02:09:10 #14786 [Debug] > │         let v56 : (struct (float * float * float * float * float * float *   │

02:09:10 #14787 [Debug] > │ float * float * float) -> struct (float * float * float)) =                  │

02:09:10 #14788 [Debug] > │             match v52 with                                                   │

02:09:10 #14789 [Debug] > │             | US1_0 -> (* None *)                                            │

02:09:10 #14790 [Debug] > │                 closure12()                                                  │

02:09:10 #14791 [Debug] > │             | US1_1(v53) -> (* Some *)                                       │

02:09:10 #14792 [Debug] > │                 v53                                                          │

02:09:10 #14793 [Debug] > │         let struct (v57 : float, v58 : float, v59 : float) = v56 struct (v4, │

02:09:10 #14794 [Debug] > │ v5, v6, v7, v8, v9, v10, v11, v12)                                           │

02:09:10 #14795 [Debug] > │         let v60 : float = v57 / v5                                           │

02:09:10 #14796 [Debug] > │         let v61 : float = v58 / v5                                           │

02:09:10 #14797 [Debug] > │         let v62 : float = v59 / v5                                           │

02:09:10 #14798 [Debug] > │         let v63 : (unit -> UH1) = closure13(v15)                             │

02:09:10 #14799 [Debug] > │         UH1_0(0.0, 0.0, v10, v11, v12, 1.0, v60, v61, v62, v63)              │

02:09:10 #14800 [Debug] > │     | UH3_1 -> (* StreamNil *)                                               │

02:09:10 #14801 [Debug] > │         v2                                                                   │

02:09:10 #14802 [Debug] > │ and closure8 () (v0 : UH0) : UH1 =                                           │

02:09:10 #14803 [Debug] > │     let v1 : UH3 = UH3_1                                                     │

02:09:10 #14804 [Debug] > │     let v2 : int32 = 0                                                       │

02:09:10 #14805 [Debug] > │     let struct (v3 : UH3, v4 : int32) = method3(v0, v1, v2)                  │

02:09:10 #14806 [Debug] > │     let v5 : UH3 = UH3_1                                                     │

02:09:10 #14807 [Debug] > │     let v6 : UH3 = method4(v3, v5)                                           │

02:09:10 #14808 [Debug] > │     let v7 : UH1 = UH1_1                                                     │

02:09:10 #14809 [Debug] > │     let v8 : UH1 = method5(v0, v6, v7)                                       │

02:09:10 #14810 [Debug] > │     v8                                                                       │

02:09:10 #14811 [Debug] > │ and method8 (v0 : int32, v1 : int32) : UH5 =                                 │

02:09:10 #14812 [Debug] > │     let v2 : bool = v1 < v0                                                  │

02:09:10 #14813 [Debug] > │     if v2 then                                                               │

02:09:10 #14814 [Debug] > │         let v3 : int32 = v1 + 1                                              │

02:09:10 #14815 [Debug] > │         let v4 : UH5 = method8(v0, v3)                                       │

02:09:10 #14816 [Debug] > │         UH5_0(v1, v4)                                                        │

02:09:10 #14817 [Debug] > │     else                                                                     │

02:09:10 #14818 [Debug] > │         UH5_1                                                                │

02:09:10 #14819 [Debug] > │ and closure15 () () : UH0 =                                                  │

02:09:10 #14820 [Debug] > │     UH0_1                                                                    │

02:09:10 #14821 [Debug] > │ and closure14 () () : UH0 =                                                  │

02:09:10 #14822 [Debug] > │     let v0 : (unit -> UH0) = closure15()                                     │

02:09:10 #14823 [Debug] > │     UH0_0(0.0, 0.16, 1.0, 0.02, 0.0, 0.0, 0.0, 0.0, 0.0, v0)                 │

02:09:10 #14824 [Debug] > │ and method9 (v0 : (UH0 -> UH0), v1 : UH5, v2 : UH0) : UH0 =                  │

02:09:10 #14825 [Debug] > │     match v1 with                                                            │

02:09:10 #14826 [Debug] > │     | UH5_0(v3, v4) -> (* Cons *)                                            │

02:09:10 #14827 [Debug] > │         let v5 : (unit -> UH0) = closure4(v2)                                │

02:09:10 #14828 [Debug] > │         let v6 : (unit -> UH0) = method1(v2, v5)                             │

02:09:10 #14829 [Debug] > │         let v7 : UH0 = v6 ()                                                 │

02:09:10 #14830 [Debug] > │         let v8 : UH0 = v0 v7                                                 │

02:09:10 #14831 [Debug] > │         method9(v0, v4, v8)                                                  │

02:09:10 #14832 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:09:10 #14833 [Debug] > │         v2                                                                   │

02:09:10 #14834 [Debug] > │ and method10 (v0 : UH4, v1 : UH4) : UH4 =                                    │

02:09:10 #14835 [Debug] > │     match v0 with                                                            │

02:09:10 #14836 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:09:10 #14837 [Debug] > │         let v4 : UH4 = UH4_0(v2, v1)                                         │

02:09:10 #14838 [Debug] > │         method10(v3, v4)                                                     │

02:09:10 #14839 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:10 #14840 [Debug] > │         v1                                                                   │

02:09:10 #14841 [Debug] > │ and method7 (v0 : (UH0 -> UH0), v1 : UH4, v2 : int32) : UH4 =                │

02:09:10 #14842 [Debug] > │     let v3 : int32 = 0                                                       │

02:09:10 #14843 [Debug] > │     let v4 : UH5 = method8(v2, v3)                                           │

02:09:10 #14844 [Debug] > │     let v5 : float = 0.0                                                     │

02:09:10 #14845 [Debug] > │     let v6 : float = 0.16                                                    │

02:09:10 #14846 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:10 #14847 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:10 #14848 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:10 #14849 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:10 #14850 [Debug] > │     let v11 : float = 0.2                                                    │

02:09:10 #14851 [Debug] > │     let v12 : float = 0.0                                                    │

02:09:10 #14852 [Debug] > │     let v13 : float = 0.0                                                    │

02:09:10 #14853 [Debug] > │     let v14 : (unit -> UH0) = closure14()                                    │

02:09:10 #14854 [Debug] > │     let v15 : UH0 = UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14)       │

02:09:10 #14855 [Debug] > │     let v16 : UH0 = method9(v0, v4, v15)                                     │

02:09:10 #14856 [Debug] > │     let v17 : int32 = 0                                                      │

02:09:10 #14857 [Debug] > │     let v18 : US2 = method6(v17, v16)                                        │

02:09:10 #14858 [Debug] > │     let v30 : bool =                                                         │

02:09:10 #14859 [Debug] > │         match v18 with                                                       │

02:09:10 #14860 [Debug] > │         | US2_0 -> (* None *)                                                │

02:09:10 #14861 [Debug] > │             false                                                            │

02:09:10 #14862 [Debug] > │         | US2_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some *)   │

02:09:10 #14863 [Debug] > │             let v28 : bool = v24 <= 10.0                                     │

02:09:10 #14864 [Debug] > │             v28                                                              │

02:09:10 #14865 [Debug] > │     if v30 then                                                              │

02:09:10 #14866 [Debug] > │         let v31 : UH4 = UH4_0(v16, v1)                                       │

02:09:10 #14867 [Debug] > │         let v32 : int32 = v2 + 1                                             │

02:09:10 #14868 [Debug] > │         method7(v0, v31, v32)                                                │

02:09:10 #14869 [Debug] > │     else                                                                     │

02:09:10 #14870 [Debug] > │         let v34 : UH4 = UH4_1                                                │

02:09:10 #14871 [Debug] > │         method10(v1, v34)                                                    │

02:09:10 #14872 [Debug] > │ and closure16 (v0 : UH7) () : UH7 =                                          │

02:09:10 #14873 [Debug] > │     v0                                                                       │

02:09:10 #14874 [Debug] > │ and method12 (v0 : UH0, v1 : UH7) : UH7 =                                    │

02:09:10 #14875 [Debug] > │     match v0 with                                                            │

02:09:10 #14876 [Debug] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

02:09:10 #14877 [Debug] > │         let v12 : UH0 = v11 ()                                               │

02:09:10 #14878 [Debug] > │         let v13 : UH7 = method12(v12, v1)                                    │

02:09:10 #14879 [Debug] > │         let v14 : float = v8 * v8                                            │

02:09:10 #14880 [Debug] > │         let v15 : float = v9 * v9                                            │

02:09:10 #14881 [Debug] > │         let v16 : float = v14 + v15                                          │

02:09:10 #14882 [Debug] > │         let v17 : float = v10 * v10                                          │

02:09:10 #14883 [Debug] > │         let v18 : float = v16 + v17                                          │

02:09:10 #14884 [Debug] > │         let v19 : float = sqrt v18                                           │

02:09:10 #14885 [Debug] > │         let v20 : float = 0.5 * v3                                           │

02:09:10 #14886 [Debug] > │         let v21 : float = v19 ** 2.0                                         │

02:09:10 #14887 [Debug] > │         let v22 : float = v20 * v21                                          │

02:09:10 #14888 [Debug] > │         let v23 : (unit -> UH7) = closure16(v13)                             │

02:09:10 #14889 [Debug] > │         UH7_0(v22, v23)                                                      │

02:09:10 #14890 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:09:10 #14891 [Debug] > │         v1                                                                   │

02:09:10 #14892 [Debug] > │ and method13 (v0 : UH7, v1 : float) : float =                                │

02:09:10 #14893 [Debug] > │     match v0 with                                                            │

02:09:10 #14894 [Debug] > │     | UH7_0(v2, v3) -> (* StreamCons *)                                      │

02:09:10 #14895 [Debug] > │         let v4 : float = v1 + v2                                             │

02:09:10 #14896 [Debug] > │         let v5 : UH7 = v3 ()                                                 │

02:09:10 #14897 [Debug] > │         method13(v5, v4)                                                     │

02:09:10 #14898 [Debug] > │     | UH7_1 -> (* StreamNil *)                                               │

02:09:10 #14899 [Debug] > │         v1                                                                   │

02:09:10 #14900 [Debug] > │ and method11 (v0 : UH4, v1 : UH6) : UH6 =                                    │

02:09:10 #14901 [Debug] > │     match v0 with                                                            │

02:09:10 #14902 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:09:10 #14903 [Debug] > │         let v4 : UH6 = method11(v3, v1)                                      │

02:09:10 #14904 [Debug] > │         let v5 : int32 = 0                                                   │

02:09:10 #14905 [Debug] > │         let v6 : US2 = method6(v5, v2)                                       │

02:09:10 #14906 [Debug] > │         let v23 : US3 =                                                      │

02:09:10 #14907 [Debug] > │             match v6 with                                                    │

02:09:10 #14908 [Debug] > │             | US2_0 -> (* None *)                                            │

02:09:10 #14909 [Debug] > │                 US3_0                                                        │

02:09:10 #14910 [Debug] > │             | US2_1(v7, v8, v9, v10, v11, v12, v13, v14, v15) -> (* Some *)  │

02:09:10 #14911 [Debug] > │                 let v16 : UH7 = UH7_1                                        │

02:09:10 #14912 [Debug] > │                 let v17 : UH7 = method12(v2, v16)                            │

02:09:10 #14913 [Debug] > │                 let v18 : float = 0.0                                        │

02:09:10 #14914 [Debug] > │                 let v19 : float = method13(v17, v18)                         │

02:09:10 #14915 [Debug] > │                 US3_1(v12, v19)                                              │

02:09:10 #14916 [Debug] > │         UH6_0(v23, v4)                                                       │

02:09:10 #14917 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:10 #14918 [Debug] > │         v1                                                                   │

02:09:10 #14919 [Debug] > │ and method14 (v0 : UH6, v1 : UH8) : UH8 =                                    │

02:09:10 #14920 [Debug] > │     match v0 with                                                            │

02:09:10 #14921 [Debug] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

02:09:10 #14922 [Debug] > │         let v4 : UH8 = method14(v3, v1)                                      │

02:09:10 #14923 [Debug] > │         match v2 with                                                        │

02:09:10 #14924 [Debug] > │         | US3_0 -> (* None *)                                                │

02:09:10 #14925 [Debug] > │             v4                                                               │

02:09:10 #14926 [Debug] > │         | US3_1(v5, v6) -> (* Some *)                                        │

02:09:10 #14927 [Debug] > │             UH8_0(v5, v6, v4)                                                │

02:09:10 #14928 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:09:10 #14929 [Debug] > │         v1                                                                   │

02:09:10 #14930 [Debug] > │ and method15 (v0 : UH8, v1 : UH9, v2 : UH9) : struct (UH9 * UH9) =           │

02:09:10 #14931 [Debug] > │     match v0 with                                                            │

02:09:10 #14932 [Debug] > │     | UH8_0(v3, v4, v5) -> (* Cons *)                                        │

02:09:10 #14933 [Debug] > │         let v6 : UH9 = UH9_0(v3, v1)                                         │

02:09:10 #14934 [Debug] > │         let v7 : UH9 = UH9_0(v4, v2)                                         │

02:09:10 #14935 [Debug] > │         method15(v5, v6, v7)                                                 │

02:09:10 #14936 [Debug] > │     | UH8_1 -> (* Nil *)                                                     │

02:09:10 #14937 [Debug] > │         struct (v1, v2)                                                      │

02:09:10 #14938 [Debug] > │ and method16 (v0 : UH9, v1 : UH9) : UH9 =                                    │

02:09:10 #14939 [Debug] > │     match v0 with                                                            │

02:09:10 #14940 [Debug] > │     | UH9_0(v2, v3) -> (* Cons *)                                            │

02:09:10 #14941 [Debug] > │         let v4 : UH9 = UH9_0(v2, v1)                                         │

02:09:10 #14942 [Debug] > │         method16(v3, v4)                                                     │

02:09:10 #14943 [Debug] > │     | UH9_1 -> (* Nil *)                                                     │

02:09:10 #14944 [Debug] > │         v1                                                                   │

02:09:10 #14945 [Debug] > │ and closure20 (v0 : (unit -> UH1), v1 : (unit -> UH1)) () : UH1 =            │

02:09:10 #14946 [Debug] > │     let v2 : UH1 = v1 ()                                                     │

02:09:10 #14947 [Debug] > │     let v3 : UH1 = v0 ()                                                     │

02:09:10 #14948 [Debug] > │     match v2 with                                                            │

02:09:10 #14949 [Debug] > │     | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

02:09:10 #14950 [Debug] > │         match v3 with                                                        │

02:09:10 #14951 [Debug] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

02:09:10 #14952 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14953 [Debug] > │             let v24 : float = v4 + v14                                       │

02:09:10 #14954 [Debug] > │             let v25 : float = v5 + v15                                       │

02:09:10 #14955 [Debug] > │             let v26 : float = v9 + v19                                       │

02:09:10 #14956 [Debug] > │             let v27 : float = v6 + v16                                       │

02:09:10 #14957 [Debug] > │             let v28 : float = v7 + v17                                       │

02:09:10 #14958 [Debug] > │             let v29 : float = v8 + v18                                       │

02:09:10 #14959 [Debug] > │             let v30 : float = v10 + v20                                      │

02:09:10 #14960 [Debug] > │             let v31 : float = v11 + v21                                      │

02:09:10 #14961 [Debug] > │             let v32 : float = v12 + v22                                      │

02:09:10 #14962 [Debug] > │             let v33 : (unit -> UH1) = closure20(v23, v13)                    │

02:09:10 #14963 [Debug] > │             UH1_0(v24, v25, v27, v28, v29, v26, v30, v31, v32, v33)          │

02:09:10 #14964 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #14965 [Debug] > │             UH1_1                                                            │

02:09:10 #14966 [Debug] > │     | UH1_1 -> (* StreamNil *)                                               │

02:09:10 #14967 [Debug] > │         UH1_1                                                                │

02:09:10 #14968 [Debug] > │ and closure19 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =             │

02:09:10 #14969 [Debug] > │     let v3 : UH1 = v1 v2                                                     │

02:09:10 #14970 [Debug] > │     let v4 : float = v0 / 2.0                                                │

02:09:10 #14971 [Debug] > │     let v46 : UH0 =                                                          │

02:09:10 #14972 [Debug] > │         match v3 with                                                        │

02:09:10 #14973 [Debug] > │         | UH1_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (*           │

02:09:10 #14974 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14975 [Debug] > │             match v2 with                                                    │

02:09:10 #14976 [Debug] > │             | UH0_0(v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) -> (*  │

02:09:10 #14977 [Debug] > │ StreamCons *)                                                                │

02:09:10 #14978 [Debug] > │                 let v25 : float = v10 * v4                                   │

02:09:10 #14979 [Debug] > │                 let v26 : float = v20 + v25                                  │

02:09:10 #14980 [Debug] > │                 let v27 : float = v4 * v7                                    │

02:09:10 #14981 [Debug] > │                 let v28 : float = v4 * v8                                    │

02:09:10 #14982 [Debug] > │                 let v29 : float = v4 * v9                                    │

02:09:10 #14983 [Debug] > │                 let v30 : float = v17 + v27                                  │

02:09:10 #14984 [Debug] > │                 let v31 : float = v18 + v28                                  │

02:09:10 #14985 [Debug] > │                 let v32 : float = v19 + v29                                  │

02:09:10 #14986 [Debug] > │                 let v33 : float = v4 * v11                                   │

02:09:10 #14987 [Debug] > │                 let v34 : float = v4 * v12                                   │

02:09:10 #14988 [Debug] > │                 let v35 : float = v4 * v13                                   │

02:09:10 #14989 [Debug] > │                 let v36 : float = v21 + v33                                  │

02:09:10 #14990 [Debug] > │                 let v37 : float = v22 + v34                                  │

02:09:10 #14991 [Debug] > │                 let v38 : float = v23 + v35                                  │

02:09:10 #14992 [Debug] > │                 let v39 : (unit -> UH0) = closure3(v4, v24, v14)             │

02:09:10 #14993 [Debug] > │                 UH0_0(v15, v16, v30, v31, v32, v26, v36, v37, v38, v39)      │

02:09:10 #14994 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:10 #14995 [Debug] > │                 UH0_1                                                        │

02:09:10 #14996 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #14997 [Debug] > │             UH0_1                                                            │

02:09:10 #14998 [Debug] > │     let v47 : (unit -> UH0) = closure4(v46)                                  │

02:09:10 #14999 [Debug] > │     let v48 : (unit -> UH0) = method1(v46, v47)                              │

02:09:10 #15000 [Debug] > │     let v49 : UH0 = v48 ()                                                   │

02:09:10 #15001 [Debug] > │     let v50 : UH1 = v1 v49                                                   │

02:09:10 #15002 [Debug] > │     let v92 : UH0 =                                                          │

02:09:10 #15003 [Debug] > │         match v50 with                                                       │

02:09:10 #15004 [Debug] > │         | UH1_0(v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) -> (*      │

02:09:10 #15005 [Debug] > │ StreamCons *)                                                                │

02:09:10 #15006 [Debug] > │             match v2 with                                                    │

02:09:10 #15007 [Debug] > │             | UH0_0(v61, v62, v63, v64, v65, v66, v67, v68, v69, v70) -> (*  │

02:09:10 #15008 [Debug] > │ StreamCons *)                                                                │

02:09:10 #15009 [Debug] > │                 let v71 : float = v56 * v4                                   │

02:09:10 #15010 [Debug] > │                 let v72 : float = v66 + v71                                  │

02:09:10 #15011 [Debug] > │                 let v73 : float = v4 * v53                                   │

02:09:10 #15012 [Debug] > │                 let v74 : float = v4 * v54                                   │

02:09:10 #15013 [Debug] > │                 let v75 : float = v4 * v55                                   │

02:09:10 #15014 [Debug] > │                 let v76 : float = v63 + v73                                  │

02:09:10 #15015 [Debug] > │                 let v77 : float = v64 + v74                                  │

02:09:10 #15016 [Debug] > │                 let v78 : float = v65 + v75                                  │

02:09:10 #15017 [Debug] > │                 let v79 : float = v4 * v57                                   │

02:09:10 #15018 [Debug] > │                 let v80 : float = v4 * v58                                   │

02:09:10 #15019 [Debug] > │                 let v81 : float = v4 * v59                                   │

02:09:10 #15020 [Debug] > │                 let v82 : float = v67 + v79                                  │

02:09:10 #15021 [Debug] > │                 let v83 : float = v68 + v80                                  │

02:09:10 #15022 [Debug] > │                 let v84 : float = v69 + v81                                  │

02:09:10 #15023 [Debug] > │                 let v85 : (unit -> UH0) = closure3(v4, v70, v60)             │

02:09:10 #15024 [Debug] > │                 UH0_0(v61, v62, v76, v77, v78, v72, v82, v83, v84, v85)      │

02:09:10 #15025 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:10 #15026 [Debug] > │                 UH0_1                                                        │

02:09:10 #15027 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #15028 [Debug] > │             UH0_1                                                            │

02:09:10 #15029 [Debug] > │     let v93 : (unit -> UH0) = closure4(v92)                                  │

02:09:10 #15030 [Debug] > │     let v94 : (unit -> UH0) = method1(v92, v93)                              │

02:09:10 #15031 [Debug] > │     let v95 : UH0 = v94 ()                                                   │

02:09:10 #15032 [Debug] > │     let v96 : UH1 = v1 v95                                                   │

02:09:10 #15033 [Debug] > │     let v138 : UH0 =                                                         │

02:09:10 #15034 [Debug] > │         match v96 with                                                       │

02:09:10 #15035 [Debug] > │         | UH1_0(v97, v98, v99, v100, v101, v102, v103, v104, v105, v106) ->  │

02:09:10 #15036 [Debug] > │ (* StreamCons *)                                                             │

02:09:10 #15037 [Debug] > │             match v2 with                                                    │

02:09:10 #15038 [Debug] > │             | UH0_0(v107, v108, v109, v110, v111, v112, v113, v114, v115,    │

02:09:10 #15039 [Debug] > │ v116) -> (* StreamCons *)                                                    │

02:09:10 #15040 [Debug] > │                 let v117 : float = v102 * v0                                 │

02:09:10 #15041 [Debug] > │                 let v118 : float = v112 + v117                               │

02:09:10 #15042 [Debug] > │                 let v119 : float = v0 * v99                                  │

02:09:10 #15043 [Debug] > │                 let v120 : float = v0 * v100                                 │

02:09:10 #15044 [Debug] > │                 let v121 : float = v0 * v101                                 │

02:09:10 #15045 [Debug] > │                 let v122 : float = v109 + v119                               │

02:09:10 #15046 [Debug] > │                 let v123 : float = v110 + v120                               │

02:09:10 #15047 [Debug] > │                 let v124 : float = v111 + v121                               │

02:09:10 #15048 [Debug] > │                 let v125 : float = v0 * v103                                 │

02:09:10 #15049 [Debug] > │                 let v126 : float = v0 * v104                                 │

02:09:10 #15050 [Debug] > │                 let v127 : float = v0 * v105                                 │

02:09:10 #15051 [Debug] > │                 let v128 : float = v113 + v125                               │

02:09:10 #15052 [Debug] > │                 let v129 : float = v114 + v126                               │

02:09:10 #15053 [Debug] > │                 let v130 : float = v115 + v127                               │

02:09:10 #15054 [Debug] > │                 let v131 : (unit -> UH0) = closure3(v0, v116, v106)          │

02:09:10 #15055 [Debug] > │                 UH0_0(v107, v108, v122, v123, v124, v118, v128, v129, v130,  │

02:09:10 #15056 [Debug] > │ v131)                                                                        │

02:09:10 #15057 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:10 #15058 [Debug] > │                 UH0_1                                                        │

02:09:10 #15059 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #15060 [Debug] > │             UH0_1                                                            │

02:09:10 #15061 [Debug] > │     let v139 : (unit -> UH0) = closure4(v138)                                │

02:09:10 #15062 [Debug] > │     let v140 : (unit -> UH0) = method1(v138, v139)                           │

02:09:10 #15063 [Debug] > │     let v141 : UH0 = v140 ()                                                 │

02:09:10 #15064 [Debug] > │     let v142 : UH1 = v1 v141                                                 │

02:09:10 #15065 [Debug] > │     let v143 : float = v0 / 6.0                                              │

02:09:10 #15066 [Debug] > │     let v180 : UH1 =                                                         │

02:09:10 #15067 [Debug] > │         match v3 with                                                        │

02:09:10 #15068 [Debug] > │         | UH1_0(v144, v145, v146, v147, v148, v149, v150, v151, v152, v153)  │

02:09:10 #15069 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:10 #15070 [Debug] > │             match v50 with                                                   │

02:09:10 #15071 [Debug] > │             | UH1_0(v154, v155, v156, v157, v158, v159, v160, v161, v162,    │

02:09:10 #15072 [Debug] > │ v163) -> (* StreamCons *)                                                    │

02:09:10 #15073 [Debug] > │                 let v164 : float = v144 + v154                               │

02:09:10 #15074 [Debug] > │                 let v165 : float = v145 + v155                               │

02:09:10 #15075 [Debug] > │                 let v166 : float = v149 + v159                               │

02:09:10 #15076 [Debug] > │                 let v167 : float = v146 + v156                               │

02:09:10 #15077 [Debug] > │                 let v168 : float = v147 + v157                               │

02:09:10 #15078 [Debug] > │                 let v169 : float = v148 + v158                               │

02:09:10 #15079 [Debug] > │                 let v170 : float = v150 + v160                               │

02:09:10 #15080 [Debug] > │                 let v171 : float = v151 + v161                               │

02:09:10 #15081 [Debug] > │                 let v172 : float = v152 + v162                               │

02:09:10 #15082 [Debug] > │                 let v173 : (unit -> UH1) = closure20(v163, v153)             │

02:09:10 #15083 [Debug] > │                 UH1_0(v164, v165, v167, v168, v169, v166, v170, v171, v172,  │

02:09:10 #15084 [Debug] > │ v173)                                                                        │

02:09:10 #15085 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:10 #15086 [Debug] > │                 UH1_1                                                        │

02:09:10 #15087 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #15088 [Debug] > │             UH1_1                                                            │

02:09:10 #15089 [Debug] > │     let v217 : UH1 =                                                         │

02:09:10 #15090 [Debug] > │         match v180 with                                                      │

02:09:10 #15091 [Debug] > │         | UH1_0(v181, v182, v183, v184, v185, v186, v187, v188, v189, v190)  │

02:09:10 #15092 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:10 #15093 [Debug] > │             match v50 with                                                   │

02:09:10 #15094 [Debug] > │             | UH1_0(v191, v192, v193, v194, v195, v196, v197, v198, v199,    │

02:09:10 #15095 [Debug] > │ v200) -> (* StreamCons *)                                                    │

02:09:10 #15096 [Debug] > │                 let v201 : float = v181 + v191                               │

02:09:10 #15097 [Debug] > │                 let v202 : float = v182 + v192                               │

02:09:10 #15098 [Debug] > │                 let v203 : float = v186 + v196                               │

02:09:10 #15099 [Debug] > │                 let v204 : float = v183 + v193                               │

02:09:10 #15100 [Debug] > │                 let v205 : float = v184 + v194                               │

02:09:10 #15101 [Debug] > │                 let v206 : float = v185 + v195                               │

02:09:10 #15102 [Debug] > │                 let v207 : float = v187 + v197                               │

02:09:10 #15103 [Debug] > │                 let v208 : float = v188 + v198                               │

02:09:10 #15104 [Debug] > │                 let v209 : float = v189 + v199                               │

02:09:10 #15105 [Debug] > │                 let v210 : (unit -> UH1) = closure20(v200, v190)             │

02:09:10 #15106 [Debug] > │                 UH1_0(v201, v202, v204, v205, v206, v203, v207, v208, v209,  │

02:09:10 #15107 [Debug] > │ v210)                                                                        │

02:09:10 #15108 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:10 #15109 [Debug] > │                 UH1_1                                                        │

02:09:10 #15110 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #15111 [Debug] > │             UH1_1                                                            │

02:09:10 #15112 [Debug] > │     let v254 : UH1 =                                                         │

02:09:10 #15113 [Debug] > │         match v217 with                                                      │

02:09:10 #15114 [Debug] > │         | UH1_0(v218, v219, v220, v221, v222, v223, v224, v225, v226, v227)  │

02:09:10 #15115 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:10 #15116 [Debug] > │             match v96 with                                                   │

02:09:10 #15117 [Debug] > │             | UH1_0(v228, v229, v230, v231, v232, v233, v234, v235, v236,    │

02:09:10 #15118 [Debug] > │ v237) -> (* StreamCons *)                                                    │

02:09:10 #15119 [Debug] > │                 let v238 : float = v218 + v228                               │

02:09:10 #15120 [Debug] > │                 let v239 : float = v219 + v229                               │

02:09:10 #15121 [Debug] > │                 let v240 : float = v223 + v233                               │

02:09:10 #15122 [Debug] > │                 let v241 : float = v220 + v230                               │

02:09:10 #15123 [Debug] > │                 let v242 : float = v221 + v231                               │

02:09:10 #15124 [Debug] > │                 let v243 : float = v222 + v232                               │

02:09:10 #15125 [Debug] > │                 let v244 : float = v224 + v234                               │

02:09:10 #15126 [Debug] > │                 let v245 : float = v225 + v235                               │

02:09:10 #15127 [Debug] > │                 let v246 : float = v226 + v236                               │

02:09:10 #15128 [Debug] > │                 let v247 : (unit -> UH1) = closure20(v237, v227)             │

02:09:10 #15129 [Debug] > │                 UH1_0(v238, v239, v241, v242, v243, v240, v244, v245, v246,  │

02:09:10 #15130 [Debug] > │ v247)                                                                        │

02:09:10 #15131 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:10 #15132 [Debug] > │                 UH1_1                                                        │

02:09:10 #15133 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:10 #15134 [Debug] > │             UH1_1                                                            │

02:09:10 #15135 [Debug] > │     let v291 : UH1 =                                                         │

02:09:10 #15136 [Debug] > │         match v254 with                                                      │

02:09:10 #15137 [Debug] > │         | UH1_0(v255, v256, v257, v258, v259, v260, v261, v262, v263, v264)  │

02:09:10 #15138 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:10 #15139 [Debug] > │             match v96 with                                                   │

02:09:10 #15140 [Debug] > │             | UH1_0(v265, v266, v267, v268, v269, v270, v271, v272, v273,    │

02:09:10 #15141 [Debug] > │ v274) -> (* StreamCons *)                                                    │

02:09:10 #15142 [Debug] > │                 let v275 : float = v255 + v265                               │

02:09:10 #15143 [Debug] > │                 let v276 : float = v256 + v266                               │

02:09:10 #15144 [Debug] > │                 let v277 : float = v260 + v270                               │

02:09:10 #15145 [Debug] > │                 let v278 : float = v257 + v267                               │

02:09:10 #15146 [Debug] > │                 let v279 : float = v258 + v268                               │

02:09:10 #15147 [Debug] > │                 let v280 : float = v259 + v269                               │

02:09:10 #15148 [Debug] > │                 let v281 : float = v261 + v271                               │

02:09:11 #15149 [Debug] > │                 let v282 : float = v262 + v272                               │

02:09:11 #15150 [Debug] > │                 let v283 : float = v263 + v273                               │

02:09:11 #15151 [Debug] > │                 let v284 : (unit -> UH1) = closure20(v274, v264)             │

02:09:11 #15152 [Debug] > │                 UH1_0(v275, v276, v278, v279, v280, v277, v281, v282, v283,  │

02:09:11 #15153 [Debug] > │ v284)                                                                        │

02:09:11 #15154 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:11 #15155 [Debug] > │                 UH1_1                                                        │

02:09:11 #15156 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:11 #15157 [Debug] > │             UH1_1                                                            │

02:09:11 #15158 [Debug] > │     let v328 : UH1 =                                                         │

02:09:11 #15159 [Debug] > │         match v291 with                                                      │

02:09:11 #15160 [Debug] > │         | UH1_0(v292, v293, v294, v295, v296, v297, v298, v299, v300, v301)  │

02:09:11 #15161 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:11 #15162 [Debug] > │             match v142 with                                                  │

02:09:11 #15163 [Debug] > │             | UH1_0(v302, v303, v304, v305, v306, v307, v308, v309, v310,    │

02:09:11 #15164 [Debug] > │ v311) -> (* StreamCons *)                                                    │

02:09:11 #15165 [Debug] > │                 let v312 : float = v292 + v302                               │

02:09:11 #15166 [Debug] > │                 let v313 : float = v293 + v303                               │

02:09:11 #15167 [Debug] > │                 let v314 : float = v297 + v307                               │

02:09:11 #15168 [Debug] > │                 let v315 : float = v294 + v304                               │

02:09:11 #15169 [Debug] > │                 let v316 : float = v295 + v305                               │

02:09:11 #15170 [Debug] > │                 let v317 : float = v296 + v306                               │

02:09:11 #15171 [Debug] > │                 let v318 : float = v298 + v308                               │

02:09:11 #15172 [Debug] > │                 let v319 : float = v299 + v309                               │

02:09:11 #15173 [Debug] > │                 let v320 : float = v300 + v310                               │

02:09:11 #15174 [Debug] > │                 let v321 : (unit -> UH1) = closure20(v311, v301)             │

02:09:11 #15175 [Debug] > │                 UH1_0(v312, v313, v315, v316, v317, v314, v318, v319, v320,  │

02:09:11 #15176 [Debug] > │ v321)                                                                        │

02:09:11 #15177 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:11 #15178 [Debug] > │                 UH1_1                                                        │

02:09:11 #15179 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:11 #15180 [Debug] > │             UH1_1                                                            │

02:09:11 #15181 [Debug] > │     let v370 : UH0 =                                                         │

02:09:11 #15182 [Debug] > │         match v328 with                                                      │

02:09:11 #15183 [Debug] > │         | UH1_0(v329, v330, v331, v332, v333, v334, v335, v336, v337, v338)  │

02:09:11 #15184 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:11 #15185 [Debug] > │             match v2 with                                                    │

02:09:11 #15186 [Debug] > │             | UH0_0(v339, v340, v341, v342, v343, v344, v345, v346, v347,    │

02:09:11 #15187 [Debug] > │ v348) -> (* StreamCons *)                                                    │

02:09:11 #15188 [Debug] > │                 let v349 : float = v334 * v143                               │

02:09:11 #15189 [Debug] > │                 let v350 : float = v344 + v349                               │

02:09:11 #15190 [Debug] > │                 let v351 : float = v143 * v331                               │

02:09:11 #15191 [Debug] > │                 let v352 : float = v143 * v332                               │

02:09:11 #15192 [Debug] > │                 let v353 : float = v143 * v333                               │

02:09:11 #15193 [Debug] > │                 let v354 : float = v341 + v351                               │

02:09:11 #15194 [Debug] > │                 let v355 : float = v342 + v352                               │

02:09:11 #15195 [Debug] > │                 let v356 : float = v343 + v353                               │

02:09:11 #15196 [Debug] > │                 let v357 : float = v143 * v335                               │

02:09:11 #15197 [Debug] > │                 let v358 : float = v143 * v336                               │

02:09:11 #15198 [Debug] > │                 let v359 : float = v143 * v337                               │

02:09:11 #15199 [Debug] > │                 let v360 : float = v345 + v357                               │

02:09:11 #15200 [Debug] > │                 let v361 : float = v346 + v358                               │

02:09:11 #15201 [Debug] > │                 let v362 : float = v347 + v359                               │

02:09:11 #15202 [Debug] > │                 let v363 : (unit -> UH0) = closure3(v143, v348, v338)        │

02:09:11 #15203 [Debug] > │                 UH0_0(v339, v340, v354, v355, v356, v350, v360, v361, v362,  │

02:09:11 #15204 [Debug] > │ v363)                                                                        │

02:09:11 #15205 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:09:11 #15206 [Debug] > │                 UH0_1                                                        │

02:09:11 #15207 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:11 #15208 [Debug] > │             UH0_1                                                            │

02:09:11 #15209 [Debug] > │     let v371 : (unit -> UH0) = closure4(v370)                                │

02:09:11 #15210 [Debug] > │     let v372 : (unit -> UH0) = method1(v370, v371)                           │

02:09:11 #15211 [Debug] > │     let v373 : UH0 = v372 ()                                                 │

02:09:11 #15212 [Debug] > │     v373                                                                     │

02:09:11 #15213 [Debug] > │ and closure18 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =              │

02:09:11 #15214 [Debug] > │     closure19(v0, v1)                                                        │

02:09:11 #15215 [Debug] > │ and closure17 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =             │

02:09:11 #15216 [Debug] > │     closure18(v0)                                                            │

02:09:11 #15217 [Debug] > │ and method17 (v0 : UH4, v1 : UH6) : UH6 =                                    │

02:09:11 #15218 [Debug] > │     match v0 with                                                            │

02:09:11 #15219 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:09:11 #15220 [Debug] > │         let v4 : UH6 = method17(v3, v1)                                      │

02:09:11 #15221 [Debug] > │         let v5 : int32 = 0                                                   │

02:09:11 #15222 [Debug] > │         let v6 : US2 = method6(v5, v2)                                       │

02:09:11 #15223 [Debug] > │         let v23 : US3 =                                                      │

02:09:11 #15224 [Debug] > │             match v6 with                                                    │

02:09:11 #15225 [Debug] > │             | US2_0 -> (* None *)                                            │

02:09:11 #15226 [Debug] > │                 US3_0                                                        │

02:09:11 #15227 [Debug] > │             | US2_1(v7, v8, v9, v10, v11, v12, v13, v14, v15) -> (* Some *)  │

02:09:11 #15228 [Debug] > │                 let v16 : UH7 = UH7_1                                        │

02:09:11 #15229 [Debug] > │                 let v17 : UH7 = method12(v2, v16)                            │

02:09:11 #15230 [Debug] > │                 let v18 : float = 0.0                                        │

02:09:11 #15231 [Debug] > │                 let v19 : float = method13(v17, v18)                         │

02:09:11 #15232 [Debug] > │                 US3_1(v12, v19)                                              │

02:09:11 #15233 [Debug] > │         UH6_0(v23, v4)                                                       │

02:09:11 #15234 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:11 #15235 [Debug] > │         v1                                                                   │

02:09:11 #15236 [Debug] > │ and method19 (v0 : UH9, v1 : int32) : int32 =                                │

02:09:11 #15237 [Debug] > │     match v0 with                                                            │

02:09:11 #15238 [Debug] > │     | UH9_0(v2, v3) -> (* Cons *)                                            │

02:09:11 #15239 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:09:11 #15240 [Debug] > │         method19(v3, v4)                                                     │

02:09:11 #15241 [Debug] > │     | UH9_1 -> (* Nil *)                                                     │

02:09:11 #15242 [Debug] > │         v1                                                                   │

02:09:11 #15243 [Debug] > │ and method20 (v0 : (float []), v1 : UH9, v2 : int32) : int32 =               │

02:09:11 #15244 [Debug] > │     match v1 with                                                            │

02:09:11 #15245 [Debug] > │     | UH9_0(v3, v4) -> (* Cons *)                                            │

02:09:11 #15246 [Debug] > │         v0.[int v2] <- v3                                                    │

02:09:11 #15247 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:09:11 #15248 [Debug] > │         method20(v0, v4, v5)                                                 │

02:09:11 #15249 [Debug] > │     | UH9_1 -> (* Nil *)                                                     │

02:09:11 #15250 [Debug] > │         v2                                                                   │

02:09:11 #15251 [Debug] > │ and method18 (v0 : UH9) : (float []) =                                       │

02:09:11 #15252 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:11 #15253 [Debug] > │     let v2 : int32 = method19(v0, v1)                                        │

02:09:11 #15254 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:09:11 #15255 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:11 #15256 [Debug] > │     let v5 : int32 = method20(v3, v0, v4)                                    │

02:09:11 #15257 [Debug] > │     v3                                                                       │

02:09:11 #15258 [Debug] > │ and method0 () : struct (string * string * string * (struct (string * (float │

02:09:11 #15259 [Debug] > │ []) * (float [])) [])) =                                                     │

02:09:11 #15260 [Debug] > │     let v0 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure0()          │

02:09:11 #15261 [Debug] > │     let v1 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v0 0.03                        │

02:09:11 #15262 [Debug] > │     let v2 : (UH0 -> UH1) = closure8()                                       │

02:09:11 #15263 [Debug] > │     let v3 : (UH0 -> UH0) = v1 v2                                            │

02:09:11 #15264 [Debug] > │     let v4 : UH4 = UH4_1                                                     │

02:09:11 #15265 [Debug] > │     let v5 : int32 = 0                                                       │

02:09:11 #15266 [Debug] > │     let v6 : UH4 = method7(v3, v4, v5)                                       │

02:09:11 #15267 [Debug] > │     let v7 : UH6 = UH6_1                                                     │

02:09:11 #15268 [Debug] > │     let v8 : UH6 = method11(v6, v7)                                          │

02:09:11 #15269 [Debug] > │     let v9 : UH8 = UH8_1                                                     │

02:09:11 #15270 [Debug] > │     let v10 : UH8 = method14(v8, v9)                                         │

02:09:11 #15271 [Debug] > │     let v11 : UH9 = UH9_1                                                    │

02:09:11 #15272 [Debug] > │     let v12 : UH9 = UH9_1                                                    │

02:09:11 #15273 [Debug] > │     let struct (v13 : UH9, v14 : UH9) = method15(v10, v11, v12)              │

02:09:11 #15274 [Debug] > │     let v15 : UH9 = UH9_1                                                    │

02:09:11 #15275 [Debug] > │     let v16 : UH9 = method16(v13, v15)                                       │

02:09:11 #15276 [Debug] > │     let v17 : UH9 = UH9_1                                                    │

02:09:11 #15277 [Debug] > │     let v18 : UH9 = method16(v14, v17)                                       │

02:09:11 #15278 [Debug] > │     let v19 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure17()        │

02:09:11 #15279 [Debug] > │     let v20 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v19 0.03                      │

02:09:11 #15280 [Debug] > │     let v21 : (UH0 -> UH0) = v20 v2                                          │

02:09:11 #15281 [Debug] > │     let v22 : UH4 = UH4_1                                                    │

02:09:11 #15282 [Debug] > │     let v23 : int32 = 0                                                      │

02:09:11 #15283 [Debug] > │     let v24 : UH4 = method7(v21, v22, v23)                                   │

02:09:11 #15284 [Debug] > │     let v25 : UH6 = UH6_1                                                    │

02:09:11 #15285 [Debug] > │     let v26 : UH6 = method17(v24, v25)                                       │

02:09:11 #15286 [Debug] > │     let v27 : UH8 = UH8_1                                                    │

02:09:11 #15287 [Debug] > │     let v28 : UH8 = method14(v26, v27)                                       │

02:09:11 #15288 [Debug] > │     let v29 : UH9 = UH9_1                                                    │

02:09:11 #15289 [Debug] > │     let v30 : UH9 = UH9_1                                                    │

02:09:11 #15290 [Debug] > │     let struct (v31 : UH9, v32 : UH9) = method15(v28, v29, v30)              │

02:09:11 #15291 [Debug] > │     let v33 : UH9 = UH9_1                                                    │

02:09:11 #15292 [Debug] > │     let v34 : UH9 = method16(v31, v33)                                       │

02:09:11 #15293 [Debug] > │     let v35 : UH9 = UH9_1                                                    │

02:09:11 #15294 [Debug] > │     let v36 : UH9 = method16(v32, v35)                                       │

02:09:11 #15295 [Debug] > │     let v37 : (float []) = method18(v16)                                     │

02:09:11 #15296 [Debug] > │     let v38 : (float []) = method18(v18)                                     │

02:09:11 #15297 [Debug] > │     let v39 : (float []) = method18(v34)                                     │

02:09:11 #15298 [Debug] > │     let v40 : (float []) = method18(v36)                                     │

02:09:11 #15299 [Debug] > │     let v41 : string = "euler-cromer"                                        │

02:09:11 #15300 [Debug] > │     let v42 : string = "runge-kutta 4"                                       │

02:09:11 #15301 [Debug] > │     let v43 : (struct (string * (float []) * (float [])) []) = [|struct      │

02:09:11 #15302 [Debug] > │ (v41, v37, v38); struct (v42, v39, v40)|]                                    │

02:09:11 #15303 [Debug] > │     let v44 : string = "system kinetic energy versus time"                   │

02:09:11 #15304 [Debug] > │     let v45 : string = "time (s)"                                            │

02:09:11 #15305 [Debug] > │     let v46 : string = "system kinetic energy (j)"                           │

02:09:11 #15306 [Debug] > │     struct (v44, v45, v46, v43)                                              │

02:09:11 #15307 [Debug] > │ method0()                                                                    │

02:09:11 #15308 [Debug] > │                                                                              │

02:09:11 #15309 [Debug] > │                                                                              │

02:09:11 #15310 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:11 #15311 [Debug] >

02:09:11 #15312 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:11 #15313 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:11 #15314 [Debug] > │ ### wave 2                                                                   │

02:09:11 #15315 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:11 #15316 [Debug] >

02:09:11 #15317 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:09:11 #15318 [Debug] > // // test

02:09:11 #15319 [Debug] >

02:09:11 #15320 [Debug] > inl linear_spring k re (particle_state st1) (particle_state st2) =

02:09:11 #15321 [Debug] >     inl r1 = st1.pos_vec

02:09:11 #15322 [Debug] >     inl r2 = st2.pos_vec

02:09:11 #15323 [Debug] >     inl r21 = r2 ^-^ r1

02:09:11 #15324 [Debug] >     inl r21mag = magnitude r21

02:09:11 #15325 [Debug] >     -k * (r21mag - re) *^ r21 ^/ r21mag

02:09:11 #15326 [Debug] >

02:09:11 #15327 [Debug] > inl fixed_linear_spring k re r1 =

02:09:11 #15328 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:11 #15329 [Debug] >     linear_spring k re (particle_state { default_particle_state' with pos_vec =

02:09:11 #15330 [Debug] > r1 })

02:09:11 #15331 [Debug] >

02:09:11 #15332 [Debug] > inl forces_string () =

02:09:11 #15333 [Debug] >     [[

02:09:11 #15334 [Debug] >         ExternalForce (0i32, fixed_linear_spring 5384 0 (zero_vec ()))

02:09:11 #15335 [Debug] >         ExternalForce (63, fixed_linear_spring 5384 0 (0.65 *^ i_hat ()))

02:09:11 #15336 [Debug] >     ]] /@ (

02:09:11 #15337 [Debug] >         listm'.init_series 0 59 1

02:09:11 #15338 [Debug] >         |> listm.map (fun n => InternalForce (n, n + 1, linear_spring 5384 0))

02:09:11 #15339 [Debug] >     )

02:09:11 #15340 [Debug] >

02:09:11 #15341 [Debug] > inl string_update dt =

02:09:11 #15342 [Debug] >     update_mps (join runge_kutta_4 dt) (join forces_string ())

02:09:11 #15343 [Debug] >

02:09:11 #15344 [Debug] > inl string_initial_overtone n =

02:09:11 #15345 [Debug] >     inl ball_mass = 0.0008293 * 0.65 / 64

02:09:11 #15346 [Debug] >     inl (particle_state default_particle_state') = default_particle_state ()

02:09:11 #15347 [Debug] >     listm'.init_series 0.01 0.64 0.01

02:09:11 #15348 [Debug] >     |> listm.map (fun x =>

02:09:11 #15349 [Debug] >         inl y = 0.005 * sin (conv n * pi * x / 0.65)

02:09:11 #15350 [Debug] >         particle_state {

02:09:11 #15351 [Debug] >             default_particle_state' with

02:09:11 #15352 [Debug] >                 mass = ball_mass

02:09:11 #15353 [Debug] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

02:09:11 #15354 [Debug] >                 velocity = zero_vec ()

02:09:11 #15355 [Debug] >         }

02:09:11 #15356 [Debug] >     )

02:09:11 #15357 [Debug] >     |> stream.from_list

02:09:11 #15358 [Debug] >     |> multi_particle_state

02:09:11 #15359 [Debug] >

02:09:11 #15360 [Debug] > let main () =

02:09:11 #15361 [Debug] >     inl ~frames = listm'.init_series 0 65 1f64 |> stream.from_list

02:09:11 #15362 [Debug] >     inl ~initial_state = string_initial_overtone 3i32

02:09:11 #15363 [Debug] >     inl frames =

02:09:11 #15364 [Debug] >         frames

02:09:11 #15365 [Debug] >         |> stream.map (fun n =>

02:09:11 #15366 [Debug] >             inl (multi_particle_state sts) =

02:09:11 #15367 [Debug] >                 stream.iterate (string_update 0.000025) initial_state |>

02:09:11 #15368 [Debug] > stream.item n

02:09:11 #15369 [Debug] >             inl x, y =

02:09:11 #15370 [Debug] >                 [[ zero_vec () ]]

02:09:11 #15371 [Debug] >                 /@ (sts |> stream.map (fun (particle_state st) => st.pos_vec) |>

02:09:11 #15372 [Debug] > stream.to_list)

02:09:11 #15373 [Debug] >                 /@ [[ 0.65 *^ i_hat () ]]

02:09:11 #15374 [Debug] >                 |> listm.map (fun r => r.x, r.y)

02:09:11 #15375 [Debug] >                 |> stream.from_list

02:09:11 #15376 [Debug] >                 |> stream.unzip

02:09:11 #15377 [Debug] >             inl x : a i32 _ = x |> stream.to_list |> listm.toArray

02:09:11 #15378 [Debug] >             inl y : a i32 _ = y |> stream.to_list |> listm.toArray

02:09:11 #15379 [Debug] >             x, y

02:09:11 #15380 [Debug] >         )

02:09:11 #15381 [Debug] >

02:09:11 #15382 [Debug] >     inl plots =

02:09:11 #15383 [Debug] >         frames

02:09:11 #15384 [Debug] >         |> stream.indexed

02:09:11 #15385 [Debug] >         |> stream.map (fun ((n : i32), (x, y)) =>

02:09:11 #15386 [Debug] >             "wave",

02:09:11 #15387 [Debug] >             "position (m)",

02:09:11 #15388 [Debug] >             "displacement (m)",

02:09:11 #15389 [Debug] >             ;[[

02:09:11 #15390 [Debug] >                 ($"$\"{!n}\"" : string), x, y

02:09:11 #15391 [Debug] >             ]]

02:09:11 #15392 [Debug] >         )

02:09:11 #15393 [Debug] >

02:09:11 #15394 [Debug] >     plots |> stream.to_list |> listm.toArray : a i32 _

02:09:11 #15395 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0209-1107-0797-0d9b8f99f66c\main.spi

02:09:16 #15396 [Debug] >

02:09:17 #15397 [Debug] > ╭─[ 5.95s - return value ]─────────────────────────────────────────────────────╮

02:09:17 #15398 [Debug] > │ <table><thead><tr><th><i>index</i></th><th>value</th></tr></thead><tbody><tr │

02:09:17 #15399 [Debug] > │ ><td>0</td><td><svg width="640" height="480" viewBox="0 0 640 480"           │

02:09:17 #15400 [Debug] > │ xmlns="http://www.w3.org/2000/svg">                                          │

02:09:17 #15401 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:17 #15402 [Debug] > │ stroke="none"/>                                                              │

02:09:17 #15403 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:17 #15404 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15405 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15406 [Debug] > │ wave                                                                         │

02:09:17 #15407 [Debug] > │ </text>                                                                      │

02:09:17 #15408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:17 #15409 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:17 #15411 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:17 #15413 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:17 #15415 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:17 #15417 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:17 #15419 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:17 #15420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:17 #15421 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:17 #15422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:17 #15423 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:17 #15424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:17 #15425 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:17 #15426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:17 #15427 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:17 #15428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:17 #15429 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:17 #15430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:17 #15431 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:17 #15432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:17 #15433 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:17 #15434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:17 #15435 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:17 #15436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:17 #15437 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:17 #15438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:17 #15439 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:17 #15440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:17 #15441 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:17 #15442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:17 #15443 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:17 #15444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:17 #15445 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:17 #15446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:17 #15447 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:17 #15448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:17 #15449 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:17 #15450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:17 #15451 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:17 #15452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:17 #15453 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:17 #15454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:17 #15455 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:17 #15456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:17 #15457 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:17 #15458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:17 #15459 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:17 #15460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:17 #15461 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:17 #15462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:17 #15463 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:17 #15464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:17 #15465 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:17 #15466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:17 #15467 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:17 #15468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:17 #15469 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:17 #15470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:17 #15471 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:17 #15472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:17 #15473 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:17 #15474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:17 #15475 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:17 #15476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:17 #15477 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:17 #15478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:17 #15479 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:17 #15480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:17 #15481 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:17 #15482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:17 #15483 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:17 #15484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:17 #15485 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:17 #15486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:17 #15487 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:17 #15488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:17 #15489 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:17 #15490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:17 #15491 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:17 #15492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:17 #15493 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:17 #15494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:17 #15495 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:17 #15496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:17 #15497 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:17 #15498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:17 #15499 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:17 #15500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:17 #15501 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:17 #15502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:17 #15503 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:17 #15504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:17 #15505 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:17 #15506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:17 #15507 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:17 #15508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:17 #15509 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:17 #15510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:17 #15511 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:17 #15512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:17 #15513 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:17 #15514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:17 #15515 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:17 #15516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:17 #15517 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:17 #15518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:17 #15519 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:17 #15520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:17 #15521 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:17 #15522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:17 #15523 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:17 #15524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:17 #15525 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:17 #15526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:17 #15527 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:17 #15528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:17 #15529 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:17 #15530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:17 #15531 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:17 #15532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:17 #15533 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:17 #15534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:17 #15535 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:17 #15536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:17 #15537 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:17 #15538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:17 #15539 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:17 #15540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:17 #15541 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:17 #15542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:17 #15543 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:17 #15544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:17 #15545 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:17 #15546 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:17 #15547 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:17 #15548 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:17 #15549 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:17 #15550 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:17 #15551 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:17 #15552 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:17 #15553 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:17 #15554 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:17 #15555 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:17 #15556 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:17 #15557 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:17 #15558 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:17 #15559 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:17 #15560 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:17 #15561 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:17 #15562 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:17 #15563 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:17 #15564 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:17 #15565 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:17 #15566 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:17 #15567 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:17 #15568 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:17 #15569 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:17 #15570 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:17 #15571 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:17 #15572 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:09:17 #15573 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:17 #15574 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:17 #15575 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:17 #15576 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:09:17 #15577 [Debug] > │ x2="584" y2="135"/>                                                          │

02:09:17 #15578 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:17 #15579 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:17 #15580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:09:17 #15581 [Debug] > │ x2="584" y2="102"/>                                                          │

02:09:17 #15582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:17 #15583 [Debug] > │ y2="85"/>                                                                    │

02:09:17 #15584 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:17 #15585 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15586 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15587 [Debug] > │ position (m)                                                                 │

02:09:17 #15588 [Debug] > │ </text>                                                                      │

02:09:17 #15589 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:17 #15590 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15591 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:17 #15592 [Debug] > │ displacement (m)                                                             │

02:09:17 #15593 [Debug] > │ </text>                                                                      │

02:09:17 #15594 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:17 #15595 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15596 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15597 [Debug] > │ position (m)                                                                 │

02:09:17 #15598 [Debug] > │ </text>                                                                      │

02:09:17 #15599 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15601 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:17 #15602 [Debug] > │ displacement (m)                                                             │

02:09:17 #15603 [Debug] > │ </text>                                                                      │

02:09:17 #15604 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:17 #15605 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15606 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:17 #15607 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:17 #15608 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:17 #15609 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:17 #15610 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:17 #15611 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:17 #15612 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:17 #15613 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:17 #15614 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:17 #15615 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:17 #15616 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:17 #15617 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:17 #15618 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:17 #15619 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:17 #15620 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:17 #15621 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:17 #15622 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:17 #15623 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:17 #15624 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:17 #15625 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:17 #15626 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:17 #15627 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:17 #15628 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:17 #15629 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:17 #15630 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:17 #15631 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:17 #15632 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="382"         │

02:09:17 #15633 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:17 #15634 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:17 #15635 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:17 #15636 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:17 #15637 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:17 #15638 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:17 #15639 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:17 #15640 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:17 #15641 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:17 #15642 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15643 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:17 #15644 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:17 #15645 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15646 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15647 [Debug] > │ 0.0                                                                          │

02:09:17 #15648 [Debug] > │ </text>                                                                      │

02:09:17 #15649 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15650 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:17 #15651 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15652 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15653 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15654 [Debug] > │ 0.1                                                                          │

02:09:17 #15655 [Debug] > │ </text>                                                                      │

02:09:17 #15656 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15657 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:17 #15658 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15659 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15660 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15661 [Debug] > │ 0.1                                                                          │

02:09:17 #15662 [Debug] > │ </text>                                                                      │

02:09:17 #15663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15664 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:17 #15665 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15667 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15668 [Debug] > │ 0.2                                                                          │

02:09:17 #15669 [Debug] > │ </text>                                                                      │

02:09:17 #15670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15671 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:17 #15672 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15674 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15675 [Debug] > │ 0.2                                                                          │

02:09:17 #15676 [Debug] > │ </text>                                                                      │

02:09:17 #15677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15678 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:17 #15679 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15682 [Debug] > │ 0.2                                                                          │

02:09:17 #15683 [Debug] > │ </text>                                                                      │

02:09:17 #15684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15685 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:17 #15686 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15688 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15689 [Debug] > │ 0.3                                                                          │

02:09:17 #15690 [Debug] > │ </text>                                                                      │

02:09:17 #15691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15692 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:17 #15693 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15694 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15695 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15696 [Debug] > │ 0.3                                                                          │

02:09:17 #15697 [Debug] > │ </text>                                                                      │

02:09:17 #15698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15699 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:17 #15700 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15702 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15703 [Debug] > │ 0.4                                                                          │

02:09:17 #15704 [Debug] > │ </text>                                                                      │

02:09:17 #15705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15706 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:17 #15707 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15709 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15710 [Debug] > │ 0.4                                                                          │

02:09:17 #15711 [Debug] > │ </text>                                                                      │

02:09:17 #15712 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15713 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:17 #15714 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15716 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15717 [Debug] > │ 0.5                                                                          │

02:09:17 #15718 [Debug] > │ </text>                                                                      │

02:09:17 #15719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15720 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:17 #15721 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15722 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15723 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15724 [Debug] > │ 0.5                                                                          │

02:09:17 #15725 [Debug] > │ </text>                                                                      │

02:09:17 #15726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15727 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:17 #15728 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15730 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15731 [Debug] > │ 0.6                                                                          │

02:09:17 #15732 [Debug] > │ </text>                                                                      │

02:09:17 #15733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15734 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:17 #15735 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #15736 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15737 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15738 [Debug] > │ 0.7                                                                          │

02:09:17 #15739 [Debug] > │ </text>                                                                      │

02:09:17 #15740 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15741 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:17 #15742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15743 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:17 #15744 [Debug] > │ <text x="45" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #15745 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15746 [Debug] > │ -0.0                                                                         │

02:09:17 #15747 [Debug] > │ </text>                                                                      │

02:09:17 #15748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15749 [Debug] > │ points="49,382 54,382 "/>                                                    │

02:09:17 #15750 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #15751 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15752 [Debug] > │ -0.0                                                                         │

02:09:17 #15753 [Debug] > │ </text>                                                                      │

02:09:17 #15754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15755 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:17 #15756 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #15757 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15758 [Debug] > │ 0.0                                                                          │

02:09:17 #15759 [Debug] > │ </text>                                                                      │

02:09:17 #15760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15761 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:17 #15762 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #15763 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15764 [Debug] > │ 0.0                                                                          │

02:09:17 #15765 [Debug] > │ </text>                                                                      │

02:09:17 #15766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15767 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:17 #15768 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #15769 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15770 [Debug] > │ 0.0                                                                          │

02:09:17 #15771 [Debug] > │ </text>                                                                      │

02:09:17 #15772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15773 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:17 #15774 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15775 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:17 #15776 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:17 #15777 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15778 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15779 [Debug] > │ 0.0                                                                          │

02:09:17 #15780 [Debug] > │ </text>                                                                      │

02:09:17 #15781 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15782 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:17 #15783 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15784 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15785 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15786 [Debug] > │ 0.1                                                                          │

02:09:17 #15787 [Debug] > │ </text>                                                                      │

02:09:17 #15788 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15789 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:17 #15790 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15791 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15792 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15793 [Debug] > │ 0.1                                                                          │

02:09:17 #15794 [Debug] > │ </text>                                                                      │

02:09:17 #15795 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15796 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:17 #15797 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15798 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15799 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15800 [Debug] > │ 0.2                                                                          │

02:09:17 #15801 [Debug] > │ </text>                                                                      │

02:09:17 #15802 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15803 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:17 #15804 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15805 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15806 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15807 [Debug] > │ 0.2                                                                          │

02:09:17 #15808 [Debug] > │ </text>                                                                      │

02:09:17 #15809 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15810 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:17 #15811 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15812 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15813 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15814 [Debug] > │ 0.2                                                                          │

02:09:17 #15815 [Debug] > │ </text>                                                                      │

02:09:17 #15816 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15817 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:17 #15818 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15819 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15820 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15821 [Debug] > │ 0.3                                                                          │

02:09:17 #15822 [Debug] > │ </text>                                                                      │

02:09:17 #15823 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15824 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:17 #15825 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15826 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15827 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15828 [Debug] > │ 0.3                                                                          │

02:09:17 #15829 [Debug] > │ </text>                                                                      │

02:09:17 #15830 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15831 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:17 #15832 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15833 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15834 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15835 [Debug] > │ 0.4                                                                          │

02:09:17 #15836 [Debug] > │ </text>                                                                      │

02:09:17 #15837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15838 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:17 #15839 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15842 [Debug] > │ 0.4                                                                          │

02:09:17 #15843 [Debug] > │ </text>                                                                      │

02:09:17 #15844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15845 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:17 #15846 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15848 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15849 [Debug] > │ 0.5                                                                          │

02:09:17 #15850 [Debug] > │ </text>                                                                      │

02:09:17 #15851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15852 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:17 #15853 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15854 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15855 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15856 [Debug] > │ 0.5                                                                          │

02:09:17 #15857 [Debug] > │ </text>                                                                      │

02:09:17 #15858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15859 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:17 #15860 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15862 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15863 [Debug] > │ 0.6                                                                          │

02:09:17 #15864 [Debug] > │ </text>                                                                      │

02:09:17 #15865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15866 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:17 #15867 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #15868 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15869 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15870 [Debug] > │ 0.7                                                                          │

02:09:17 #15871 [Debug] > │ </text>                                                                      │

02:09:17 #15872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15873 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:17 #15874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15875 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:17 #15876 [Debug] > │ <text x="595" y="382" dy="0.5ex" text-anchor="start"                         │

02:09:17 #15877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15879 [Debug] > │ -0.0                                                                         │

02:09:17 #15880 [Debug] > │ </text>                                                                      │

02:09:17 #15881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15882 [Debug] > │ points="585,382 590,382 "/>                                                  │

02:09:17 #15883 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:17 #15884 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15885 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15886 [Debug] > │ -0.0                                                                         │

02:09:17 #15887 [Debug] > │ </text>                                                                      │

02:09:17 #15888 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15889 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:17 #15890 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:17 #15891 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15892 [Debug] > │ 0.0                                                                          │

02:09:17 #15893 [Debug] > │ </text>                                                                      │

02:09:17 #15894 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15895 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:17 #15896 [Debug] > │ <text x="617" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:17 #15897 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15898 [Debug] > │ 0.0                                                                          │

02:09:17 #15899 [Debug] > │ </text>                                                                      │

02:09:17 #15900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15901 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:17 #15902 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:17 #15903 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #15904 [Debug] > │ 0.0                                                                          │

02:09:17 #15905 [Debug] > │ </text>                                                                      │

02:09:17 #15906 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #15907 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:17 #15908 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:17 #15909 [Debug] > │ points="69,250 77,226 85,203 93,181 100,160 108,141 116,124 123,110 131,99   │

02:09:17 #15910 [Debug] > │ 139,91 146,87 154,85 162,88 169,93 177,102 185,115 192,129 200,147 208,167   │

02:09:17 #15911 [Debug] > │ 215,188 223,211 231,234 238,258 246,282 254,305 261,327 269,347 277,365      │

02:09:17 #15912 [Debug] > │ 284,381 292,394 300,404 307,411 315,415 323,415 331,411 338,404 346,394      │

02:09:17 #15913 [Debug] > │ 354,381 361,365 369,347 377,327 384,305 392,282 400,258 407,234 415,211      │

02:09:17 #15914 [Debug] > │ 423,188 430,167 438,147 446,129 453,115 461,102 469,93 476,88 484,85 492,87  │

02:09:17 #15915 [Debug] > │ 499,91 507,99 515,110 522,124 530,141 538,160 545,181 553,203 561,226        │

02:09:17 #15916 [Debug] > │ 569,250 "/>                                                                  │

02:09:17 #15917 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:17 #15918 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:17 #15919 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:17 #15920 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15921 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15922 [Debug] > │ 0                                                                            │

02:09:17 #15923 [Debug] > │ </text>                                                                      │

02:09:17 #15924 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:17 #15925 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:17 #15926 [Debug] > │ </svg>                                                                       │

02:09:17 #15927 [Debug] > │ </td></tr><tr><td>1</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:17 #15928 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:17 #15929 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:17 #15930 [Debug] > │ stroke="none"/>                                                              │

02:09:17 #15931 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:17 #15932 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #15933 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #15934 [Debug] > │ wave                                                                         │

02:09:17 #15935 [Debug] > │ </text>                                                                      │

02:09:17 #15936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:17 #15937 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:17 #15939 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:17 #15941 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:17 #15943 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:17 #15945 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #15946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:17 #15947 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:17 #15948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:17 #15949 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:17 #15950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:17 #15951 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:17 #15952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:17 #15953 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:17 #15954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:17 #15955 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:17 #15956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:17 #15957 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:17 #15958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:17 #15959 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:17 #15960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:17 #15961 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:17 #15962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:17 #15963 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:17 #15964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:17 #15965 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:17 #15966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:17 #15967 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:17 #15968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:17 #15969 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:17 #15970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:17 #15971 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:17 #15972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:17 #15973 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:17 #15974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:17 #15975 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:17 #15976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:17 #15977 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:17 #15978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:17 #15979 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:17 #15980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:17 #15981 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:17 #15982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:17 #15983 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:17 #15984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:17 #15985 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:17 #15986 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:17 #15987 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:17 #15988 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:17 #15989 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:17 #15990 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:17 #15991 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:17 #15992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:17 #15993 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:17 #15994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:17 #15995 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:17 #15996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:17 #15997 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:17 #15998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:17 #15999 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:17 #16000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:17 #16001 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:17 #16002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:17 #16003 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:17 #16004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:17 #16005 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:17 #16006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:17 #16007 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:17 #16008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:17 #16009 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:17 #16010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:17 #16011 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:17 #16012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:17 #16013 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:17 #16014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:17 #16015 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:17 #16016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:17 #16017 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:17 #16018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:17 #16019 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:17 #16020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:17 #16021 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:17 #16022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:17 #16023 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:17 #16024 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:17 #16025 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:17 #16026 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:17 #16027 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:17 #16028 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:17 #16029 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:17 #16030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:17 #16031 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:17 #16032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:17 #16033 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:17 #16034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:17 #16035 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:17 #16036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:17 #16037 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:17 #16038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:17 #16039 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:17 #16040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:17 #16041 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:17 #16042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:17 #16043 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:17 #16044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:17 #16045 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:17 #16046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:17 #16047 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:17 #16048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:17 #16049 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:17 #16050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:17 #16051 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:17 #16052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:17 #16053 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:17 #16054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:17 #16055 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:17 #16056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:17 #16057 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:17 #16058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:17 #16059 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:17 #16060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:17 #16061 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:17 #16062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:17 #16063 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:17 #16064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:17 #16065 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:17 #16066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:17 #16067 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:17 #16068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:17 #16069 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:17 #16070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:17 #16071 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:17 #16072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:17 #16073 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:17 #16074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:17 #16075 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:17 #16076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:17 #16077 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:17 #16078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:17 #16079 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:17 #16080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:17 #16081 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:17 #16082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:17 #16083 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:17 #16084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:17 #16085 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:17 #16086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:17 #16087 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:17 #16088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:17 #16089 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:17 #16090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:17 #16091 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:17 #16092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:17 #16093 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:17 #16094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:17 #16095 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:17 #16096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:17 #16097 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:17 #16098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:17 #16099 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:17 #16100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:09:17 #16101 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:17 #16102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:17 #16103 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:17 #16104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:17 #16105 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:17 #16106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:17 #16107 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:17 #16108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:17 #16109 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:17 #16110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:17 #16111 [Debug] > │ y2="85"/>                                                                    │

02:09:17 #16112 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:17 #16113 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16114 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16115 [Debug] > │ position (m)                                                                 │

02:09:17 #16116 [Debug] > │ </text>                                                                      │

02:09:17 #16117 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:17 #16118 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16119 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:17 #16120 [Debug] > │ displacement (m)                                                             │

02:09:17 #16121 [Debug] > │ </text>                                                                      │

02:09:17 #16122 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:17 #16123 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16124 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16125 [Debug] > │ position (m)                                                                 │

02:09:17 #16126 [Debug] > │ </text>                                                                      │

02:09:17 #16127 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16128 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16129 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:17 #16130 [Debug] > │ displacement (m)                                                             │

02:09:17 #16131 [Debug] > │ </text>                                                                      │

02:09:17 #16132 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:17 #16133 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #16134 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:17 #16135 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:17 #16136 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:17 #16137 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:17 #16138 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:17 #16139 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:17 #16140 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:17 #16141 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:17 #16142 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:17 #16143 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:17 #16144 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:17 #16145 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:17 #16146 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:17 #16147 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:17 #16148 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:17 #16149 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:17 #16150 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:17 #16151 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:17 #16152 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:17 #16153 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:17 #16154 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:17 #16155 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:17 #16156 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:17 #16157 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:17 #16158 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:17 #16159 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:17 #16160 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="383"         │

02:09:17 #16161 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:17 #16162 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:17 #16163 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:17 #16164 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:17 #16165 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:17 #16166 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:17 #16167 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:17 #16168 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:17 #16169 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:17 #16170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16171 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:17 #16172 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:17 #16173 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16174 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16175 [Debug] > │ 0.0                                                                          │

02:09:17 #16176 [Debug] > │ </text>                                                                      │

02:09:17 #16177 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16178 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:17 #16179 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16181 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16182 [Debug] > │ 0.1                                                                          │

02:09:17 #16183 [Debug] > │ </text>                                                                      │

02:09:17 #16184 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16185 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:17 #16186 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16187 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16188 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16189 [Debug] > │ 0.1                                                                          │

02:09:17 #16190 [Debug] > │ </text>                                                                      │

02:09:17 #16191 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16192 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:17 #16193 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16194 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16195 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16196 [Debug] > │ 0.2                                                                          │

02:09:17 #16197 [Debug] > │ </text>                                                                      │

02:09:17 #16198 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16199 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:17 #16200 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16201 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16202 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16203 [Debug] > │ 0.2                                                                          │

02:09:17 #16204 [Debug] > │ </text>                                                                      │

02:09:17 #16205 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16206 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:17 #16207 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16208 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16209 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16210 [Debug] > │ 0.2                                                                          │

02:09:17 #16211 [Debug] > │ </text>                                                                      │

02:09:17 #16212 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16213 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:17 #16214 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16215 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16216 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16217 [Debug] > │ 0.3                                                                          │

02:09:17 #16218 [Debug] > │ </text>                                                                      │

02:09:17 #16219 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16220 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:17 #16221 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16222 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16223 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16224 [Debug] > │ 0.3                                                                          │

02:09:17 #16225 [Debug] > │ </text>                                                                      │

02:09:17 #16226 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16227 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:17 #16228 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16229 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16230 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16231 [Debug] > │ 0.4                                                                          │

02:09:17 #16232 [Debug] > │ </text>                                                                      │

02:09:17 #16233 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16234 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:17 #16235 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16236 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16237 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16238 [Debug] > │ 0.4                                                                          │

02:09:17 #16239 [Debug] > │ </text>                                                                      │

02:09:17 #16240 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16241 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:17 #16242 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16243 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16244 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16245 [Debug] > │ 0.5                                                                          │

02:09:17 #16246 [Debug] > │ </text>                                                                      │

02:09:17 #16247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16248 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:17 #16249 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16250 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16251 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16252 [Debug] > │ 0.5                                                                          │

02:09:17 #16253 [Debug] > │ </text>                                                                      │

02:09:17 #16254 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16255 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:17 #16256 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16257 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16258 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16259 [Debug] > │ 0.6                                                                          │

02:09:17 #16260 [Debug] > │ </text>                                                                      │

02:09:17 #16261 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16262 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:17 #16263 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:17 #16264 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16265 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16266 [Debug] > │ 0.7                                                                          │

02:09:17 #16267 [Debug] > │ </text>                                                                      │

02:09:17 #16268 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16269 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:17 #16270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16271 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:17 #16272 [Debug] > │ <text x="45" y="383" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #16273 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16274 [Debug] > │ -0.0                                                                         │

02:09:17 #16275 [Debug] > │ </text>                                                                      │

02:09:17 #16276 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16277 [Debug] > │ points="49,383 54,383 "/>                                                    │

02:09:17 #16278 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #16279 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16280 [Debug] > │ -0.0                                                                         │

02:09:17 #16281 [Debug] > │ </text>                                                                      │

02:09:17 #16282 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16283 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:17 #16284 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #16285 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16286 [Debug] > │ 0.0                                                                          │

02:09:17 #16287 [Debug] > │ </text>                                                                      │

02:09:17 #16288 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16289 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:17 #16290 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #16291 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16292 [Debug] > │ 0.0                                                                          │

02:09:17 #16293 [Debug] > │ </text>                                                                      │

02:09:17 #16294 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16295 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:17 #16296 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:17 #16297 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16298 [Debug] > │ 0.0                                                                          │

02:09:17 #16299 [Debug] > │ </text>                                                                      │

02:09:17 #16300 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16301 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:17 #16302 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16303 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:17 #16304 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:17 #16305 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16306 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16307 [Debug] > │ 0.0                                                                          │

02:09:17 #16308 [Debug] > │ </text>                                                                      │

02:09:17 #16309 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16310 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:17 #16311 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16312 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16313 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16314 [Debug] > │ 0.1                                                                          │

02:09:17 #16315 [Debug] > │ </text>                                                                      │

02:09:17 #16316 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16317 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:17 #16318 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16319 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16320 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16321 [Debug] > │ 0.1                                                                          │

02:09:17 #16322 [Debug] > │ </text>                                                                      │

02:09:17 #16323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16324 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:17 #16325 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16326 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16327 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16328 [Debug] > │ 0.2                                                                          │

02:09:17 #16329 [Debug] > │ </text>                                                                      │

02:09:17 #16330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16331 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:17 #16332 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16333 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16334 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16335 [Debug] > │ 0.2                                                                          │

02:09:17 #16336 [Debug] > │ </text>                                                                      │

02:09:17 #16337 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16338 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:17 #16339 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16340 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16341 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16342 [Debug] > │ 0.2                                                                          │

02:09:17 #16343 [Debug] > │ </text>                                                                      │

02:09:17 #16344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16345 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:17 #16346 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16347 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16348 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16349 [Debug] > │ 0.3                                                                          │

02:09:17 #16350 [Debug] > │ </text>                                                                      │

02:09:17 #16351 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16352 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:17 #16353 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16354 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16355 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16356 [Debug] > │ 0.3                                                                          │

02:09:17 #16357 [Debug] > │ </text>                                                                      │

02:09:17 #16358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16359 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:17 #16360 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16362 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16363 [Debug] > │ 0.4                                                                          │

02:09:17 #16364 [Debug] > │ </text>                                                                      │

02:09:17 #16365 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16366 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:17 #16367 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16368 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16369 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16370 [Debug] > │ 0.4                                                                          │

02:09:17 #16371 [Debug] > │ </text>                                                                      │

02:09:17 #16372 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16373 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:17 #16374 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16375 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16376 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16377 [Debug] > │ 0.5                                                                          │

02:09:17 #16378 [Debug] > │ </text>                                                                      │

02:09:17 #16379 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16380 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:17 #16381 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16382 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16383 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16384 [Debug] > │ 0.5                                                                          │

02:09:17 #16385 [Debug] > │ </text>                                                                      │

02:09:17 #16386 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16387 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:17 #16388 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16389 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16390 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16391 [Debug] > │ 0.6                                                                          │

02:09:17 #16392 [Debug] > │ </text>                                                                      │

02:09:17 #16393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16394 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:17 #16395 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:17 #16396 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16397 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16398 [Debug] > │ 0.7                                                                          │

02:09:17 #16399 [Debug] > │ </text>                                                                      │

02:09:17 #16400 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16401 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:17 #16402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16403 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:17 #16404 [Debug] > │ <text x="595" y="383" dy="0.5ex" text-anchor="start"                         │

02:09:17 #16405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16407 [Debug] > │ -0.0                                                                         │

02:09:17 #16408 [Debug] > │ </text>                                                                      │

02:09:17 #16409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16410 [Debug] > │ points="585,383 590,383 "/>                                                  │

02:09:17 #16411 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:17 #16412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16414 [Debug] > │ -0.0                                                                         │

02:09:17 #16415 [Debug] > │ </text>                                                                      │

02:09:17 #16416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16417 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:17 #16418 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:17 #16419 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16420 [Debug] > │ 0.0                                                                          │

02:09:17 #16421 [Debug] > │ </text>                                                                      │

02:09:17 #16422 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16423 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:17 #16424 [Debug] > │ <text x="617" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:17 #16425 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16426 [Debug] > │ 0.0                                                                          │

02:09:17 #16427 [Debug] > │ </text>                                                                      │

02:09:17 #16428 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16429 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:17 #16430 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:17 #16431 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:17 #16432 [Debug] > │ 0.0                                                                          │

02:09:17 #16433 [Debug] > │ </text>                                                                      │

02:09:17 #16434 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:17 #16435 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:17 #16436 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:17 #16437 [Debug] > │ points="69,250 77,226 85,203 93,181 100,160 108,141 116,124 123,110 131,99   │

02:09:17 #16438 [Debug] > │ 139,91 146,87 154,85 162,88 169,93 177,102 185,115 192,129 200,147 208,167   │

02:09:17 #16439 [Debug] > │ 215,188 223,211 231,234 238,258 246,282 254,305 261,327 269,347 277,365      │

02:09:17 #16440 [Debug] > │ 284,381 292,394 300,404 307,411 315,415 323,415 331,411 338,404 346,394      │

02:09:17 #16441 [Debug] > │ 354,381 361,365 369,347 377,327 384,305 392,282 400,258 407,234 415,211      │

02:09:17 #16442 [Debug] > │ 423,188 430,167 438,147 446,129 453,115 461,102 469,93 476,88 484,85 492,87  │

02:09:17 #16443 [Debug] > │ 499,91 507,99 515,110 522,124 530,141 536,156 545,180 553,203 562,231        │

02:09:17 #16444 [Debug] > │ 569,250 "/>                                                                  │

02:09:17 #16445 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:17 #16446 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:17 #16447 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:17 #16448 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16449 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16450 [Debug] > │ 1                                                                            │

02:09:17 #16451 [Debug] > │ </text>                                                                      │

02:09:17 #16452 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:17 #16453 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:17 #16454 [Debug] > │ </svg>                                                                       │

02:09:17 #16455 [Debug] > │ </td></tr><tr><td>2</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:17 #16456 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:17 #16457 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:17 #16458 [Debug] > │ stroke="none"/>                                                              │

02:09:17 #16459 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:17 #16460 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:17 #16461 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:17 #16462 [Debug] > │ wave                                                                         │

02:09:17 #16463 [Debug] > │ </text>                                                                      │

02:09:17 #16464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:17 #16465 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #16466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:17 #16467 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #16468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:17 #16469 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #16470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:17 #16471 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #16472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:17 #16473 [Debug] > │ y2="75"/>                                                                    │

02:09:17 #16474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:17 #16475 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:17 #16476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:17 #16477 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:17 #16478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:17 #16479 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:17 #16480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:17 #16481 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:17 #16482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:17 #16483 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:17 #16484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:17 #16485 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:17 #16486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:17 #16487 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:17 #16488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:17 #16489 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:17 #16490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:17 #16491 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:17 #16492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:17 #16493 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:17 #16494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:17 #16495 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:17 #16496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:17 #16497 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:17 #16498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:17 #16499 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:17 #16500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:17 #16501 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:17 #16502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:17 #16503 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:17 #16504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:17 #16505 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:17 #16506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:17 #16507 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:17 #16508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:17 #16509 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:17 #16510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:17 #16511 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:17 #16512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:17 #16513 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:17 #16514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:17 #16515 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:17 #16516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:17 #16517 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:17 #16518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:17 #16519 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:17 #16520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:17 #16521 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:17 #16522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:17 #16523 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:17 #16524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:17 #16525 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:17 #16526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:17 #16527 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:17 #16528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:17 #16529 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:17 #16530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:17 #16531 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:17 #16532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:17 #16533 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:17 #16534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:17 #16535 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:17 #16536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:17 #16537 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:17 #16538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:17 #16539 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:17 #16540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:17 #16541 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:17 #16542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:17 #16543 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:17 #16544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:17 #16545 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:17 #16546 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:17 #16547 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:17 #16548 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:18 #16549 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:18 #16550 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:18 #16551 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:18 #16552 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:18 #16553 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:18 #16554 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:18 #16555 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:18 #16556 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:18 #16557 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:18 #16558 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:18 #16559 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:18 #16560 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:18 #16561 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:18 #16562 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:18 #16563 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:18 #16564 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:18 #16565 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:18 #16566 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:18 #16567 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:18 #16568 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:18 #16569 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:18 #16570 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:18 #16571 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:18 #16572 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:18 #16573 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:18 #16574 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:18 #16575 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:18 #16576 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:18 #16577 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:18 #16578 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:18 #16579 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:18 #16580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:18 #16581 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:18 #16582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:18 #16583 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:18 #16584 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:18 #16585 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:18 #16586 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:18 #16587 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:18 #16588 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:18 #16589 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:18 #16590 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:18 #16591 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:18 #16592 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:18 #16593 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:18 #16594 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:18 #16595 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:18 #16596 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:18 #16597 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:18 #16598 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:18 #16599 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:18 #16600 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:09:18 #16601 [Debug] > │ x2="584" y2="401"/>                                                          │

02:09:18 #16602 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:09:18 #16603 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:18 #16604 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:18 #16605 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:18 #16606 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:18 #16607 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:18 #16608 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:18 #16609 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:18 #16610 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="317"         │

02:09:18 #16611 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:18 #16612 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:18 #16613 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:18 #16614 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:18 #16615 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:18 #16616 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:18 #16617 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:18 #16618 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:18 #16619 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #16620 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:18 #16621 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:18 #16622 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:18 #16623 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:18 #16624 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:18 #16625 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:18 #16626 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:18 #16627 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:18 #16628 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:18 #16629 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:18 #16630 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:18 #16631 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:18 #16632 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:18 #16633 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:18 #16634 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:09:18 #16635 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:18 #16636 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:18 #16637 [Debug] > │ y2="99"/>                                                                    │

02:09:18 #16638 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:18 #16639 [Debug] > │ y2="83"/>                                                                    │

02:09:18 #16640 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:18 #16641 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16642 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16643 [Debug] > │ position (m)                                                                 │

02:09:18 #16644 [Debug] > │ </text>                                                                      │

02:09:18 #16645 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:18 #16646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16647 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:18 #16648 [Debug] > │ displacement (m)                                                             │

02:09:18 #16649 [Debug] > │ </text>                                                                      │

02:09:18 #16650 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:18 #16651 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16652 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16653 [Debug] > │ position (m)                                                                 │

02:09:18 #16654 [Debug] > │ </text>                                                                      │

02:09:18 #16655 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16656 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16657 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:18 #16658 [Debug] > │ displacement (m)                                                             │

02:09:18 #16659 [Debug] > │ </text>                                                                      │

02:09:18 #16660 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #16661 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #16662 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:18 #16663 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:18 #16664 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:18 #16665 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:18 #16666 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:18 #16667 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:18 #16668 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:18 #16669 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:18 #16670 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:18 #16671 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:18 #16672 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:18 #16673 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:18 #16674 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:18 #16675 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:18 #16676 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:18 #16677 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:18 #16678 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:18 #16679 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:18 #16680 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:18 #16681 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:18 #16682 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:18 #16683 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:18 #16684 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:18 #16685 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:18 #16686 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:18 #16687 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:18 #16688 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="384"         │

02:09:18 #16689 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:18 #16690 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="317"         │

02:09:18 #16691 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:18 #16692 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:18 #16693 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #16694 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:18 #16695 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:18 #16696 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="116"         │

02:09:18 #16697 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:18 #16698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16699 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:18 #16700 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:18 #16701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16702 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16703 [Debug] > │ 0.0                                                                          │

02:09:18 #16704 [Debug] > │ </text>                                                                      │

02:09:18 #16705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16706 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:18 #16707 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16709 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16710 [Debug] > │ 0.1                                                                          │

02:09:18 #16711 [Debug] > │ </text>                                                                      │

02:09:18 #16712 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16713 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:18 #16714 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16716 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16717 [Debug] > │ 0.1                                                                          │

02:09:18 #16718 [Debug] > │ </text>                                                                      │

02:09:18 #16719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16720 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:18 #16721 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16722 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16723 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16724 [Debug] > │ 0.2                                                                          │

02:09:18 #16725 [Debug] > │ </text>                                                                      │

02:09:18 #16726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16727 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:18 #16728 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16730 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16731 [Debug] > │ 0.2                                                                          │

02:09:18 #16732 [Debug] > │ </text>                                                                      │

02:09:18 #16733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16734 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:18 #16735 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16736 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16737 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16738 [Debug] > │ 0.2                                                                          │

02:09:18 #16739 [Debug] > │ </text>                                                                      │

02:09:18 #16740 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16741 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:18 #16742 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16743 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16744 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16745 [Debug] > │ 0.3                                                                          │

02:09:18 #16746 [Debug] > │ </text>                                                                      │

02:09:18 #16747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16748 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:18 #16749 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16750 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16751 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16752 [Debug] > │ 0.3                                                                          │

02:09:18 #16753 [Debug] > │ </text>                                                                      │

02:09:18 #16754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16755 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:18 #16756 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16757 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16758 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16759 [Debug] > │ 0.4                                                                          │

02:09:18 #16760 [Debug] > │ </text>                                                                      │

02:09:18 #16761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16762 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:18 #16763 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16764 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16765 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16766 [Debug] > │ 0.4                                                                          │

02:09:18 #16767 [Debug] > │ </text>                                                                      │

02:09:18 #16768 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16769 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:18 #16770 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16771 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16772 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16773 [Debug] > │ 0.5                                                                          │

02:09:18 #16774 [Debug] > │ </text>                                                                      │

02:09:18 #16775 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16776 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:18 #16777 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16779 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16780 [Debug] > │ 0.5                                                                          │

02:09:18 #16781 [Debug] > │ </text>                                                                      │

02:09:18 #16782 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16783 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:18 #16784 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16785 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16786 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16787 [Debug] > │ 0.6                                                                          │

02:09:18 #16788 [Debug] > │ </text>                                                                      │

02:09:18 #16789 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16790 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:18 #16791 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #16792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16793 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16794 [Debug] > │ 0.7                                                                          │

02:09:18 #16795 [Debug] > │ </text>                                                                      │

02:09:18 #16796 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16797 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:18 #16798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16799 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:18 #16800 [Debug] > │ <text x="45" y="384" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #16801 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16802 [Debug] > │ -0.0                                                                         │

02:09:18 #16803 [Debug] > │ </text>                                                                      │

02:09:18 #16804 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16805 [Debug] > │ points="49,384 54,384 "/>                                                    │

02:09:18 #16806 [Debug] > │ <text x="45" y="317" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #16807 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16808 [Debug] > │ -0.0                                                                         │

02:09:18 #16809 [Debug] > │ </text>                                                                      │

02:09:18 #16810 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16811 [Debug] > │ points="49,317 54,317 "/>                                                    │

02:09:18 #16812 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #16813 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16814 [Debug] > │ 0.0                                                                          │

02:09:18 #16815 [Debug] > │ </text>                                                                      │

02:09:18 #16816 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16817 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:18 #16818 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #16819 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16820 [Debug] > │ 0.0                                                                          │

02:09:18 #16821 [Debug] > │ </text>                                                                      │

02:09:18 #16822 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16823 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:18 #16824 [Debug] > │ <text x="45" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #16825 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16826 [Debug] > │ 0.0                                                                          │

02:09:18 #16827 [Debug] > │ </text>                                                                      │

02:09:18 #16828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16829 [Debug] > │ points="49,116 54,116 "/>                                                    │

02:09:18 #16830 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16831 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:18 #16832 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:18 #16833 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16834 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16835 [Debug] > │ 0.0                                                                          │

02:09:18 #16836 [Debug] > │ </text>                                                                      │

02:09:18 #16837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16838 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:18 #16839 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16842 [Debug] > │ 0.1                                                                          │

02:09:18 #16843 [Debug] > │ </text>                                                                      │

02:09:18 #16844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16845 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:18 #16846 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16848 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16849 [Debug] > │ 0.1                                                                          │

02:09:18 #16850 [Debug] > │ </text>                                                                      │

02:09:18 #16851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16852 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:18 #16853 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16854 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16855 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16856 [Debug] > │ 0.2                                                                          │

02:09:18 #16857 [Debug] > │ </text>                                                                      │

02:09:18 #16858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16859 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:18 #16860 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16862 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16863 [Debug] > │ 0.2                                                                          │

02:09:18 #16864 [Debug] > │ </text>                                                                      │

02:09:18 #16865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16866 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:18 #16867 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16868 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16869 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16870 [Debug] > │ 0.2                                                                          │

02:09:18 #16871 [Debug] > │ </text>                                                                      │

02:09:18 #16872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16873 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:18 #16874 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16876 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16877 [Debug] > │ 0.3                                                                          │

02:09:18 #16878 [Debug] > │ </text>                                                                      │

02:09:18 #16879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16880 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:18 #16881 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16883 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16884 [Debug] > │ 0.3                                                                          │

02:09:18 #16885 [Debug] > │ </text>                                                                      │

02:09:18 #16886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16887 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:18 #16888 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16890 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16891 [Debug] > │ 0.4                                                                          │

02:09:18 #16892 [Debug] > │ </text>                                                                      │

02:09:18 #16893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16894 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:18 #16895 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16897 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16898 [Debug] > │ 0.4                                                                          │

02:09:18 #16899 [Debug] > │ </text>                                                                      │

02:09:18 #16900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16901 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:18 #16902 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16904 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16905 [Debug] > │ 0.5                                                                          │

02:09:18 #16906 [Debug] > │ </text>                                                                      │

02:09:18 #16907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16908 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:18 #16909 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16910 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16911 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16912 [Debug] > │ 0.5                                                                          │

02:09:18 #16913 [Debug] > │ </text>                                                                      │

02:09:18 #16914 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16915 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:18 #16916 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16917 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16918 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16919 [Debug] > │ 0.6                                                                          │

02:09:18 #16920 [Debug] > │ </text>                                                                      │

02:09:18 #16921 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16922 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:18 #16923 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #16924 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16925 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16926 [Debug] > │ 0.7                                                                          │

02:09:18 #16927 [Debug] > │ </text>                                                                      │

02:09:18 #16928 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16929 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:18 #16930 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16931 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:18 #16932 [Debug] > │ <text x="595" y="384" dy="0.5ex" text-anchor="start"                         │

02:09:18 #16933 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16934 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16935 [Debug] > │ -0.0                                                                         │

02:09:18 #16936 [Debug] > │ </text>                                                                      │

02:09:18 #16937 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16938 [Debug] > │ points="585,384 590,384 "/>                                                  │

02:09:18 #16939 [Debug] > │ <text x="595" y="317" dy="0.5ex" text-anchor="start"                         │

02:09:18 #16940 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16941 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16942 [Debug] > │ -0.0                                                                         │

02:09:18 #16943 [Debug] > │ </text>                                                                      │

02:09:18 #16944 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16945 [Debug] > │ points="585,317 590,317 "/>                                                  │

02:09:18 #16946 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #16947 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16948 [Debug] > │ 0.0                                                                          │

02:09:18 #16949 [Debug] > │ </text>                                                                      │

02:09:18 #16950 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16951 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:18 #16952 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #16953 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16954 [Debug] > │ 0.0                                                                          │

02:09:18 #16955 [Debug] > │ </text>                                                                      │

02:09:18 #16956 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16957 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:18 #16958 [Debug] > │ <text x="617" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #16959 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #16960 [Debug] > │ 0.0                                                                          │

02:09:18 #16961 [Debug] > │ </text>                                                                      │

02:09:18 #16962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #16963 [Debug] > │ points="585,116 590,116 "/>                                                  │

02:09:18 #16964 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #16965 [Debug] > │ points="69,250 77,226 85,203 93,181 100,160 108,141 116,124 123,110 131,99   │

02:09:18 #16966 [Debug] > │ 139,91 146,87 154,85 162,88 169,93 177,102 185,115 192,129 200,147 208,167   │

02:09:18 #16967 [Debug] > │ 215,188 223,211 231,234 238,258 246,282 254,305 261,327 269,347 277,365      │

02:09:18 #16968 [Debug] > │ 284,381 292,394 300,404 307,411 315,415 323,415 331,411 338,404 346,394      │

02:09:18 #16969 [Debug] > │ 354,381 361,365 369,347 377,327 384,305 392,282 400,258 407,234 415,211      │

02:09:18 #16970 [Debug] > │ 423,188 430,167 438,147 446,129 453,115 461,102 469,93 476,88 484,85 492,87  │

02:09:18 #16971 [Debug] > │ 499,91 507,99 515,110 522,124 529,139 532,145 545,180 553,202 566,243        │

02:09:18 #16972 [Debug] > │ 569,250 "/>                                                                  │

02:09:18 #16973 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:18 #16974 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:18 #16975 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:18 #16976 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16977 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16978 [Debug] > │ 2                                                                            │

02:09:18 #16979 [Debug] > │ </text>                                                                      │

02:09:18 #16980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #16981 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:18 #16982 [Debug] > │ </svg>                                                                       │

02:09:18 #16983 [Debug] > │ </td></tr><tr><td>3</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:18 #16984 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:18 #16985 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:18 #16986 [Debug] > │ stroke="none"/>                                                              │

02:09:18 #16987 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:18 #16988 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #16989 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #16990 [Debug] > │ wave                                                                         │

02:09:18 #16991 [Debug] > │ </text>                                                                      │

02:09:18 #16992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:18 #16993 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #16994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #16995 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #16996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:18 #16997 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #16998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:18 #16999 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:18 #17001 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:18 #17003 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:18 #17004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:18 #17005 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:18 #17006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:18 #17007 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:18 #17008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:18 #17009 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:18 #17010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:18 #17011 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:18 #17012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:18 #17013 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:18 #17014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:18 #17015 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:18 #17016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:18 #17017 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:18 #17018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:18 #17019 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:18 #17020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:18 #17021 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:18 #17022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:18 #17023 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:18 #17024 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:18 #17025 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:18 #17026 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:18 #17027 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:18 #17028 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:18 #17029 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:18 #17030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:18 #17031 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:18 #17032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:18 #17033 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:18 #17034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:18 #17035 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:18 #17036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:18 #17037 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:18 #17038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:18 #17039 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:18 #17040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:18 #17041 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:18 #17042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:18 #17043 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:18 #17044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:18 #17045 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:18 #17046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:18 #17047 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:18 #17048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:18 #17049 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:18 #17050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:18 #17051 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:18 #17052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:18 #17053 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:18 #17054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:18 #17055 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:18 #17056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:18 #17057 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:18 #17058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:18 #17059 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:18 #17060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:18 #17061 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:18 #17062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:18 #17063 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:18 #17064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:18 #17065 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:18 #17066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:18 #17067 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:18 #17068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:18 #17069 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:18 #17070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:18 #17071 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:18 #17072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:18 #17073 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:18 #17074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:18 #17075 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:18 #17076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:18 #17077 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:18 #17078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:18 #17079 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:18 #17080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:18 #17081 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:18 #17082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:18 #17083 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:18 #17084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:18 #17085 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:18 #17086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:18 #17087 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:18 #17088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:18 #17089 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:18 #17090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="436" y1="424"        │

02:09:18 #17091 [Debug] > │ x2="436" y2="75"/>                                                           │

02:09:18 #17092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:09:18 #17093 [Debug] > │ x2="444" y2="75"/>                                                           │

02:09:18 #17094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:18 #17095 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:18 #17096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:18 #17097 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:18 #17098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="467" y1="424"        │

02:09:18 #17099 [Debug] > │ x2="467" y2="75"/>                                                           │

02:09:18 #17100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="474" y1="424"        │

02:09:18 #17101 [Debug] > │ x2="474" y2="75"/>                                                           │

02:09:18 #17102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="482" y1="424"        │

02:09:18 #17103 [Debug] > │ x2="482" y2="75"/>                                                           │

02:09:18 #17104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:18 #17105 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:18 #17106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:09:18 #17107 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:18 #17108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="505" y1="424"        │

02:09:18 #17109 [Debug] > │ x2="505" y2="75"/>                                                           │

02:09:18 #17110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="513" y1="424"        │

02:09:18 #17111 [Debug] > │ x2="513" y2="75"/>                                                           │

02:09:18 #17112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="520" y1="424"        │

02:09:18 #17113 [Debug] > │ x2="520" y2="75"/>                                                           │

02:09:18 #17114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="528" y1="424"        │

02:09:18 #17115 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:18 #17116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:09:18 #17117 [Debug] > │ x2="536" y2="75"/>                                                           │

02:09:18 #17118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="543" y1="424"        │

02:09:18 #17119 [Debug] > │ x2="543" y2="75"/>                                                           │

02:09:18 #17120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="551" y1="424"        │

02:09:18 #17121 [Debug] > │ x2="551" y2="75"/>                                                           │

02:09:18 #17122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="558" y1="424"        │

02:09:18 #17123 [Debug] > │ x2="558" y2="75"/>                                                           │

02:09:18 #17124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="566" y1="424"        │

02:09:18 #17125 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:18 #17126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="574" y1="424"        │

02:09:18 #17127 [Debug] > │ x2="574" y2="75"/>                                                           │

02:09:18 #17128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="421"         │

02:09:18 #17129 [Debug] > │ x2="584" y2="421"/>                                                          │

02:09:18 #17130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:09:18 #17131 [Debug] > │ x2="584" y2="404"/>                                                          │

02:09:18 #17132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:18 #17133 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:18 #17134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="370"         │

02:09:18 #17135 [Debug] > │ x2="584" y2="370"/>                                                          │

02:09:18 #17136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:18 #17137 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:18 #17138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:18 #17139 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:18 #17140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:18 #17141 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:18 #17142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:18 #17143 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:18 #17144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:18 #17145 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:18 #17146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:18 #17147 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:18 #17148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:18 #17149 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #17150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:18 #17151 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:18 #17152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:18 #17153 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:18 #17154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:09:18 #17155 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:18 #17156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:18 #17157 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:18 #17158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:18 #17159 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:18 #17160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:09:18 #17161 [Debug] > │ x2="584" y2="147"/>                                                          │

02:09:18 #17162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:09:18 #17163 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:18 #17164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="113"         │

02:09:18 #17165 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:18 #17166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="96" x2="584" │

02:09:18 #17167 [Debug] > │ y2="96"/>                                                                    │

02:09:18 #17168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:18 #17169 [Debug] > │ y2="79"/>                                                                    │

02:09:18 #17170 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:18 #17171 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17172 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17173 [Debug] > │ position (m)                                                                 │

02:09:18 #17174 [Debug] > │ </text>                                                                      │

02:09:18 #17175 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:18 #17176 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17177 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:18 #17178 [Debug] > │ displacement (m)                                                             │

02:09:18 #17179 [Debug] > │ </text>                                                                      │

02:09:18 #17180 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:18 #17181 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17182 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17183 [Debug] > │ position (m)                                                                 │

02:09:18 #17184 [Debug] > │ </text>                                                                      │

02:09:18 #17185 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17186 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17187 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:18 #17188 [Debug] > │ displacement (m)                                                             │

02:09:18 #17189 [Debug] > │ </text>                                                                      │

02:09:18 #17190 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #17191 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17192 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:18 #17193 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:18 #17194 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:18 #17195 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:18 #17196 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:18 #17197 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:18 #17198 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:18 #17199 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:18 #17200 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:18 #17201 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:18 #17202 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:18 #17203 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:18 #17204 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:18 #17205 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:18 #17206 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:18 #17207 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:18 #17208 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:18 #17209 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:18 #17210 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:18 #17211 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:18 #17212 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="490" y1="424"        │

02:09:18 #17213 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:18 #17214 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="528" y1="424"        │

02:09:18 #17215 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:18 #17216 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="566" y1="424"        │

02:09:18 #17217 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:18 #17218 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="387"         │

02:09:18 #17219 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:18 #17220 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:09:18 #17221 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:18 #17222 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:18 #17223 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #17224 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="182"         │

02:09:18 #17225 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:18 #17226 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="113"         │

02:09:18 #17227 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:18 #17228 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17229 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:18 #17230 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:18 #17231 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17232 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17233 [Debug] > │ 0.0                                                                          │

02:09:18 #17234 [Debug] > │ </text>                                                                      │

02:09:18 #17235 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17236 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:18 #17237 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17238 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17239 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17240 [Debug] > │ 0.1                                                                          │

02:09:18 #17241 [Debug] > │ </text>                                                                      │

02:09:18 #17242 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17243 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:18 #17244 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17245 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17246 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17247 [Debug] > │ 0.1                                                                          │

02:09:18 #17248 [Debug] > │ </text>                                                                      │

02:09:18 #17249 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17250 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:18 #17251 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17252 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17253 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17254 [Debug] > │ 0.2                                                                          │

02:09:18 #17255 [Debug] > │ </text>                                                                      │

02:09:18 #17256 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17257 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:18 #17258 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17259 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17260 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17261 [Debug] > │ 0.2                                                                          │

02:09:18 #17262 [Debug] > │ </text>                                                                      │

02:09:18 #17263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17264 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:18 #17265 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17267 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17268 [Debug] > │ 0.2                                                                          │

02:09:18 #17269 [Debug] > │ </text>                                                                      │

02:09:18 #17270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17271 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:18 #17272 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17274 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17275 [Debug] > │ 0.3                                                                          │

02:09:18 #17276 [Debug] > │ </text>                                                                      │

02:09:18 #17277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17278 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:18 #17279 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17280 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17281 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17282 [Debug] > │ 0.3                                                                          │

02:09:18 #17283 [Debug] > │ </text>                                                                      │

02:09:18 #17284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17285 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:18 #17286 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17287 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17288 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17289 [Debug] > │ 0.4                                                                          │

02:09:18 #17290 [Debug] > │ </text>                                                                      │

02:09:18 #17291 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17292 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:18 #17293 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17294 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17295 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17296 [Debug] > │ 0.4                                                                          │

02:09:18 #17297 [Debug] > │ </text>                                                                      │

02:09:18 #17298 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17299 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:18 #17300 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17301 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17302 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17303 [Debug] > │ 0.5                                                                          │

02:09:18 #17304 [Debug] > │ </text>                                                                      │

02:09:18 #17305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17306 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:18 #17307 [Debug] > │ <text x="490" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17308 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17309 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17310 [Debug] > │ 0.5                                                                          │

02:09:18 #17311 [Debug] > │ </text>                                                                      │

02:09:18 #17312 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17313 [Debug] > │ points="490,69 490,74 "/>                                                    │

02:09:18 #17314 [Debug] > │ <text x="528" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17316 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17317 [Debug] > │ 0.6                                                                          │

02:09:18 #17318 [Debug] > │ </text>                                                                      │

02:09:18 #17319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17320 [Debug] > │ points="528,69 528,74 "/>                                                    │

02:09:18 #17321 [Debug] > │ <text x="566" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17323 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17324 [Debug] > │ 0.7                                                                          │

02:09:18 #17325 [Debug] > │ </text>                                                                      │

02:09:18 #17326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17327 [Debug] > │ points="566,69 566,74 "/>                                                    │

02:09:18 #17328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17329 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:18 #17330 [Debug] > │ <text x="45" y="387" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17331 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17332 [Debug] > │ -0.0                                                                         │

02:09:18 #17333 [Debug] > │ </text>                                                                      │

02:09:18 #17334 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17335 [Debug] > │ points="49,387 54,387 "/>                                                    │

02:09:18 #17336 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17337 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17338 [Debug] > │ -0.0                                                                         │

02:09:18 #17339 [Debug] > │ </text>                                                                      │

02:09:18 #17340 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17341 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:09:18 #17342 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17343 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17344 [Debug] > │ 0.0                                                                          │

02:09:18 #17345 [Debug] > │ </text>                                                                      │

02:09:18 #17346 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17347 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:18 #17348 [Debug] > │ <text x="45" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17349 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17350 [Debug] > │ 0.0                                                                          │

02:09:18 #17351 [Debug] > │ </text>                                                                      │

02:09:18 #17352 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17353 [Debug] > │ points="49,182 54,182 "/>                                                    │

02:09:18 #17354 [Debug] > │ <text x="45" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17355 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17356 [Debug] > │ 0.0                                                                          │

02:09:18 #17357 [Debug] > │ </text>                                                                      │

02:09:18 #17358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17359 [Debug] > │ points="49,113 54,113 "/>                                                    │

02:09:18 #17360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17361 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:18 #17362 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:18 #17363 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17364 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17365 [Debug] > │ 0.0                                                                          │

02:09:18 #17366 [Debug] > │ </text>                                                                      │

02:09:18 #17367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17368 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:18 #17369 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17371 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17372 [Debug] > │ 0.1                                                                          │

02:09:18 #17373 [Debug] > │ </text>                                                                      │

02:09:18 #17374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17375 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:18 #17376 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17378 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17379 [Debug] > │ 0.1                                                                          │

02:09:18 #17380 [Debug] > │ </text>                                                                      │

02:09:18 #17381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17382 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:18 #17383 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17384 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17385 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17386 [Debug] > │ 0.2                                                                          │

02:09:18 #17387 [Debug] > │ </text>                                                                      │

02:09:18 #17388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17389 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:18 #17390 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17392 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17393 [Debug] > │ 0.2                                                                          │

02:09:18 #17394 [Debug] > │ </text>                                                                      │

02:09:18 #17395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17396 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:18 #17397 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17399 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17400 [Debug] > │ 0.2                                                                          │

02:09:18 #17401 [Debug] > │ </text>                                                                      │

02:09:18 #17402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17403 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:18 #17404 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17407 [Debug] > │ 0.3                                                                          │

02:09:18 #17408 [Debug] > │ </text>                                                                      │

02:09:18 #17409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17410 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:18 #17411 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17414 [Debug] > │ 0.3                                                                          │

02:09:18 #17415 [Debug] > │ </text>                                                                      │

02:09:18 #17416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17417 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:18 #17418 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17420 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17421 [Debug] > │ 0.4                                                                          │

02:09:18 #17422 [Debug] > │ </text>                                                                      │

02:09:18 #17423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17424 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:18 #17425 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17427 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17428 [Debug] > │ 0.4                                                                          │

02:09:18 #17429 [Debug] > │ </text>                                                                      │

02:09:18 #17430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17431 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:18 #17432 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17434 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17435 [Debug] > │ 0.5                                                                          │

02:09:18 #17436 [Debug] > │ </text>                                                                      │

02:09:18 #17437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17438 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:18 #17439 [Debug] > │ <text x="490" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17441 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17442 [Debug] > │ 0.5                                                                          │

02:09:18 #17443 [Debug] > │ </text>                                                                      │

02:09:18 #17444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17445 [Debug] > │ points="490,425 490,430 "/>                                                  │

02:09:18 #17446 [Debug] > │ <text x="528" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17449 [Debug] > │ 0.6                                                                          │

02:09:18 #17450 [Debug] > │ </text>                                                                      │

02:09:18 #17451 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17452 [Debug] > │ points="528,425 528,430 "/>                                                  │

02:09:18 #17453 [Debug] > │ <text x="566" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17454 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17455 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17456 [Debug] > │ 0.7                                                                          │

02:09:18 #17457 [Debug] > │ </text>                                                                      │

02:09:18 #17458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17459 [Debug] > │ points="566,425 566,430 "/>                                                  │

02:09:18 #17460 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17461 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:18 #17462 [Debug] > │ <text x="595" y="387" dy="0.5ex" text-anchor="start"                         │

02:09:18 #17463 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17464 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17465 [Debug] > │ -0.0                                                                         │

02:09:18 #17466 [Debug] > │ </text>                                                                      │

02:09:18 #17467 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17468 [Debug] > │ points="585,387 590,387 "/>                                                  │

02:09:18 #17469 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:09:18 #17470 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17471 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17472 [Debug] > │ -0.0                                                                         │

02:09:18 #17473 [Debug] > │ </text>                                                                      │

02:09:18 #17474 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17475 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:09:18 #17476 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #17477 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17478 [Debug] > │ 0.0                                                                          │

02:09:18 #17479 [Debug] > │ </text>                                                                      │

02:09:18 #17480 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17481 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:18 #17482 [Debug] > │ <text x="617" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #17483 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17484 [Debug] > │ 0.0                                                                          │

02:09:18 #17485 [Debug] > │ </text>                                                                      │

02:09:18 #17486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17487 [Debug] > │ points="585,182 590,182 "/>                                                  │

02:09:18 #17488 [Debug] > │ <text x="617" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #17489 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17490 [Debug] > │ 0.0                                                                          │

02:09:18 #17491 [Debug] > │ </text>                                                                      │

02:09:18 #17492 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17493 [Debug] > │ points="585,113 590,113 "/>                                                  │

02:09:18 #17494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #17495 [Debug] > │ points="69,250 77,226 85,203 92,181 100,160 108,141 115,124 123,110 131,99   │

02:09:18 #17496 [Debug] > │ 138,91 146,87 154,85 161,88 169,93 176,102 184,115 192,129 199,147 207,167   │

02:09:18 #17497 [Debug] > │ 215,188 222,211 230,234 238,258 245,282 253,305 260,327 268,347 276,365      │

02:09:18 #17498 [Debug] > │ 283,381 291,394 299,404 306,411 314,415 322,415 329,411 337,404 345,394      │

02:09:18 #17499 [Debug] > │ 352,381 360,365 367,347 375,327 383,305 390,282 398,258 406,234 413,211      │

02:09:18 #17500 [Debug] > │ 421,188 429,167 436,147 444,129 451,115 459,102 467,93 474,88 482,85 490,87  │

02:09:18 #17501 [Debug] > │ 497,91 505,99 513,110 520,123 525,133 525,130 543,178 551,201 569,258        │

02:09:18 #17502 [Debug] > │ 566,250 "/>                                                                  │

02:09:18 #17503 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:18 #17504 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:18 #17505 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:18 #17506 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17507 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17508 [Debug] > │ 3                                                                            │

02:09:18 #17509 [Debug] > │ </text>                                                                      │

02:09:18 #17510 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #17511 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:18 #17512 [Debug] > │ </svg>                                                                       │

02:09:18 #17513 [Debug] > │ </td></tr><tr><td>4</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:18 #17514 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:18 #17515 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:18 #17516 [Debug] > │ stroke="none"/>                                                              │

02:09:18 #17517 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:18 #17518 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17519 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17520 [Debug] > │ wave                                                                         │

02:09:18 #17521 [Debug] > │ </text>                                                                      │

02:09:18 #17522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:18 #17523 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #17525 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:18 #17527 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:18 #17529 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:18 #17531 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:18 #17533 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:18 #17534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:18 #17535 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:18 #17536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:18 #17537 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:18 #17538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:18 #17539 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:18 #17540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:18 #17541 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:18 #17542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:18 #17543 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:18 #17544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:18 #17545 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:18 #17546 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:18 #17547 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:18 #17548 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:18 #17549 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:18 #17550 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:18 #17551 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:18 #17552 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:18 #17553 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:18 #17554 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:18 #17555 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:18 #17556 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:18 #17557 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:18 #17558 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:18 #17559 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:18 #17560 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:18 #17561 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:18 #17562 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:18 #17563 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:18 #17564 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:18 #17565 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:18 #17566 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:18 #17567 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:18 #17568 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:18 #17569 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:18 #17570 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:18 #17571 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:18 #17572 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:18 #17573 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:18 #17574 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:18 #17575 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:18 #17576 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:18 #17577 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:18 #17578 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:18 #17579 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:18 #17580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:18 #17581 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:18 #17582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:18 #17583 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:18 #17584 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:18 #17585 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:18 #17586 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:18 #17587 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:18 #17588 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:18 #17589 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:18 #17590 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:18 #17591 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:18 #17592 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:18 #17593 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:18 #17594 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:18 #17595 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:18 #17596 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:18 #17597 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:18 #17598 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:18 #17599 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:18 #17600 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:18 #17601 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:18 #17602 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:18 #17603 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:18 #17604 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:18 #17605 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:18 #17606 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:18 #17607 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:18 #17608 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:18 #17609 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:18 #17610 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:18 #17611 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:18 #17612 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:18 #17613 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:18 #17614 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:18 #17615 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:18 #17616 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:18 #17617 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:18 #17618 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:18 #17619 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:18 #17620 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:18 #17621 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:18 #17622 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:18 #17623 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:18 #17624 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:18 #17625 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:18 #17626 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:18 #17627 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:18 #17628 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:18 #17629 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:18 #17630 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:18 #17631 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:18 #17632 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:18 #17633 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:18 #17634 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:18 #17635 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:18 #17636 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:18 #17637 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:18 #17638 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:18 #17639 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:18 #17640 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:18 #17641 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:18 #17642 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:18 #17643 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:18 #17644 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:18 #17645 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:18 #17646 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:18 #17647 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:18 #17648 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:18 #17649 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:18 #17650 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:18 #17651 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:18 #17652 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:18 #17653 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:18 #17654 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:18 #17655 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:18 #17656 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:18 #17657 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:18 #17658 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="409"         │

02:09:18 #17659 [Debug] > │ x2="584" y2="409"/>                                                          │

02:09:18 #17660 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="391"         │

02:09:18 #17661 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:18 #17662 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:18 #17663 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:18 #17664 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="356"         │

02:09:18 #17665 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:18 #17666 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="338"         │

02:09:18 #17667 [Debug] > │ x2="584" y2="338"/>                                                          │

02:09:18 #17668 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:18 #17669 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:18 #17670 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:09:18 #17671 [Debug] > │ x2="584" y2="303"/>                                                          │

02:09:18 #17672 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:18 #17673 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:18 #17674 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:18 #17675 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:18 #17676 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:18 #17677 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #17678 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:18 #17679 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:18 #17680 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:09:18 #17681 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:18 #17682 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="197"         │

02:09:18 #17683 [Debug] > │ x2="584" y2="197"/>                                                          │

02:09:18 #17684 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:18 #17685 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:18 #17686 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:09:18 #17687 [Debug] > │ x2="584" y2="162"/>                                                          │

02:09:18 #17688 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="144"         │

02:09:18 #17689 [Debug] > │ x2="584" y2="144"/>                                                          │

02:09:18 #17690 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="127"         │

02:09:18 #17691 [Debug] > │ x2="584" y2="127"/>                                                          │

02:09:18 #17692 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="109"         │

02:09:18 #17693 [Debug] > │ x2="584" y2="109"/>                                                          │

02:09:18 #17694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="91" x2="584" │

02:09:18 #17695 [Debug] > │ y2="91"/>                                                                    │

02:09:18 #17696 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:18 #17697 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17698 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17699 [Debug] > │ position (m)                                                                 │

02:09:18 #17700 [Debug] > │ </text>                                                                      │

02:09:18 #17701 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:18 #17702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17703 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:18 #17704 [Debug] > │ displacement (m)                                                             │

02:09:18 #17705 [Debug] > │ </text>                                                                      │

02:09:18 #17706 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:18 #17707 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17708 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17709 [Debug] > │ position (m)                                                                 │

02:09:18 #17710 [Debug] > │ </text>                                                                      │

02:09:18 #17711 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17712 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17713 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:18 #17714 [Debug] > │ displacement (m)                                                             │

02:09:18 #17715 [Debug] > │ </text>                                                                      │

02:09:18 #17716 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #17717 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #17718 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:18 #17719 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:18 #17720 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:18 #17721 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:18 #17722 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:18 #17723 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:18 #17724 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:18 #17725 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:18 #17726 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:18 #17727 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:18 #17728 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:18 #17729 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:18 #17730 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:18 #17731 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:18 #17732 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:18 #17733 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:18 #17734 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:18 #17735 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:18 #17736 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:18 #17737 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:18 #17738 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:18 #17739 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:18 #17740 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:18 #17741 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:18 #17742 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:18 #17743 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:18 #17744 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="391"         │

02:09:18 #17745 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:18 #17746 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="356"         │

02:09:18 #17747 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:18 #17748 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:09:18 #17749 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:18 #17750 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="286"         │

02:09:18 #17751 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:18 #17752 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:18 #17753 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #17754 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="215"         │

02:09:18 #17755 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:18 #17756 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="180"         │

02:09:18 #17757 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:18 #17758 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="144"         │

02:09:18 #17759 [Debug] > │ x2="584" y2="144"/>                                                          │

02:09:18 #17760 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="109"         │

02:09:18 #17761 [Debug] > │ x2="584" y2="109"/>                                                          │

02:09:18 #17762 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17763 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:18 #17764 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:18 #17765 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17766 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17767 [Debug] > │ 0.0                                                                          │

02:09:18 #17768 [Debug] > │ </text>                                                                      │

02:09:18 #17769 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17770 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:18 #17771 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17772 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17773 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17774 [Debug] > │ 0.1                                                                          │

02:09:18 #17775 [Debug] > │ </text>                                                                      │

02:09:18 #17776 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17777 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:18 #17778 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17779 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17780 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17781 [Debug] > │ 0.1                                                                          │

02:09:18 #17782 [Debug] > │ </text>                                                                      │

02:09:18 #17783 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17784 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:18 #17785 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17786 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17787 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17788 [Debug] > │ 0.2                                                                          │

02:09:18 #17789 [Debug] > │ </text>                                                                      │

02:09:18 #17790 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17791 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:18 #17792 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17793 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17794 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17795 [Debug] > │ 0.2                                                                          │

02:09:18 #17796 [Debug] > │ </text>                                                                      │

02:09:18 #17797 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17798 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:18 #17799 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17800 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17801 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17802 [Debug] > │ 0.2                                                                          │

02:09:18 #17803 [Debug] > │ </text>                                                                      │

02:09:18 #17804 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17805 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:18 #17806 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17807 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17808 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17809 [Debug] > │ 0.3                                                                          │

02:09:18 #17810 [Debug] > │ </text>                                                                      │

02:09:18 #17811 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17812 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:18 #17813 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17814 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17815 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17816 [Debug] > │ 0.3                                                                          │

02:09:18 #17817 [Debug] > │ </text>                                                                      │

02:09:18 #17818 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17819 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:18 #17820 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17821 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17822 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17823 [Debug] > │ 0.4                                                                          │

02:09:18 #17824 [Debug] > │ </text>                                                                      │

02:09:18 #17825 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17826 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:18 #17827 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17828 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17829 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17830 [Debug] > │ 0.4                                                                          │

02:09:18 #17831 [Debug] > │ </text>                                                                      │

02:09:18 #17832 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17833 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:18 #17834 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17835 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17836 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17837 [Debug] > │ 0.5                                                                          │

02:09:18 #17838 [Debug] > │ </text>                                                                      │

02:09:18 #17839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17840 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:18 #17841 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17842 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17843 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17844 [Debug] > │ 0.5                                                                          │

02:09:18 #17845 [Debug] > │ </text>                                                                      │

02:09:18 #17846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17847 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:18 #17848 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17849 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17850 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17851 [Debug] > │ 0.6                                                                          │

02:09:18 #17852 [Debug] > │ </text>                                                                      │

02:09:18 #17853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17854 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:18 #17855 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #17856 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17857 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17858 [Debug] > │ 0.7                                                                          │

02:09:18 #17859 [Debug] > │ </text>                                                                      │

02:09:18 #17860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17861 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:18 #17862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17863 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:18 #17864 [Debug] > │ <text x="45" y="391" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17865 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17866 [Debug] > │ -0.0                                                                         │

02:09:18 #17867 [Debug] > │ </text>                                                                      │

02:09:18 #17868 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17869 [Debug] > │ points="49,391 54,391 "/>                                                    │

02:09:18 #17870 [Debug] > │ <text x="45" y="356" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17871 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17872 [Debug] > │ -0.0                                                                         │

02:09:18 #17873 [Debug] > │ </text>                                                                      │

02:09:18 #17874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17875 [Debug] > │ points="49,356 54,356 "/>                                                    │

02:09:18 #17876 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17877 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17878 [Debug] > │ -0.0                                                                         │

02:09:18 #17879 [Debug] > │ </text>                                                                      │

02:09:18 #17880 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17881 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:09:18 #17882 [Debug] > │ <text x="45" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17883 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17884 [Debug] > │ -0.0                                                                         │

02:09:18 #17885 [Debug] > │ </text>                                                                      │

02:09:18 #17886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17887 [Debug] > │ points="49,286 54,286 "/>                                                    │

02:09:18 #17888 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17889 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17890 [Debug] > │ 0.0                                                                          │

02:09:18 #17891 [Debug] > │ </text>                                                                      │

02:09:18 #17892 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17893 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:18 #17894 [Debug] > │ <text x="45" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17895 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17896 [Debug] > │ 0.0                                                                          │

02:09:18 #17897 [Debug] > │ </text>                                                                      │

02:09:18 #17898 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17899 [Debug] > │ points="49,215 54,215 "/>                                                    │

02:09:18 #17900 [Debug] > │ <text x="45" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17901 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17902 [Debug] > │ 0.0                                                                          │

02:09:18 #17903 [Debug] > │ </text>                                                                      │

02:09:18 #17904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17905 [Debug] > │ points="49,180 54,180 "/>                                                    │

02:09:18 #17906 [Debug] > │ <text x="45" y="144" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17907 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17908 [Debug] > │ 0.0                                                                          │

02:09:18 #17909 [Debug] > │ </text>                                                                      │

02:09:18 #17910 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17911 [Debug] > │ points="49,144 54,144 "/>                                                    │

02:09:18 #17912 [Debug] > │ <text x="45" y="109" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #17913 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #17914 [Debug] > │ 0.0                                                                          │

02:09:18 #17915 [Debug] > │ </text>                                                                      │

02:09:18 #17916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17917 [Debug] > │ points="49,109 54,109 "/>                                                    │

02:09:18 #17918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17919 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:18 #17920 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:18 #17921 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17922 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17923 [Debug] > │ 0.0                                                                          │

02:09:18 #17924 [Debug] > │ </text>                                                                      │

02:09:18 #17925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17926 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:18 #17927 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17928 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17929 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17930 [Debug] > │ 0.1                                                                          │

02:09:18 #17931 [Debug] > │ </text>                                                                      │

02:09:18 #17932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17933 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:18 #17934 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17935 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17936 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17937 [Debug] > │ 0.1                                                                          │

02:09:18 #17938 [Debug] > │ </text>                                                                      │

02:09:18 #17939 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17940 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:18 #17941 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17942 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17943 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17944 [Debug] > │ 0.2                                                                          │

02:09:18 #17945 [Debug] > │ </text>                                                                      │

02:09:18 #17946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17947 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:18 #17948 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17949 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17950 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17951 [Debug] > │ 0.2                                                                          │

02:09:18 #17952 [Debug] > │ </text>                                                                      │

02:09:18 #17953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17954 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:18 #17955 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17956 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17957 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17958 [Debug] > │ 0.2                                                                          │

02:09:18 #17959 [Debug] > │ </text>                                                                      │

02:09:18 #17960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17961 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:18 #17962 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17964 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17965 [Debug] > │ 0.3                                                                          │

02:09:18 #17966 [Debug] > │ </text>                                                                      │

02:09:18 #17967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17968 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:18 #17969 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17972 [Debug] > │ 0.3                                                                          │

02:09:18 #17973 [Debug] > │ </text>                                                                      │

02:09:18 #17974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17975 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:18 #17976 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17979 [Debug] > │ 0.4                                                                          │

02:09:18 #17980 [Debug] > │ </text>                                                                      │

02:09:18 #17981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17982 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:18 #17983 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17986 [Debug] > │ 0.4                                                                          │

02:09:18 #17987 [Debug] > │ </text>                                                                      │

02:09:18 #17988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17989 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:18 #17990 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #17993 [Debug] > │ 0.5                                                                          │

02:09:18 #17994 [Debug] > │ </text>                                                                      │

02:09:18 #17995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #17996 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:18 #17997 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #17998 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #17999 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18000 [Debug] > │ 0.5                                                                          │

02:09:18 #18001 [Debug] > │ </text>                                                                      │

02:09:18 #18002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18003 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:18 #18004 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18005 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18006 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18007 [Debug] > │ 0.6                                                                          │

02:09:18 #18008 [Debug] > │ </text>                                                                      │

02:09:18 #18009 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18010 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:18 #18011 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18012 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18013 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18014 [Debug] > │ 0.7                                                                          │

02:09:18 #18015 [Debug] > │ </text>                                                                      │

02:09:18 #18016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18017 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:18 #18018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18019 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:18 #18020 [Debug] > │ <text x="595" y="391" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18023 [Debug] > │ -0.0                                                                         │

02:09:18 #18024 [Debug] > │ </text>                                                                      │

02:09:18 #18025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18026 [Debug] > │ points="585,391 590,391 "/>                                                  │

02:09:18 #18027 [Debug] > │ <text x="595" y="356" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18029 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18030 [Debug] > │ -0.0                                                                         │

02:09:18 #18031 [Debug] > │ </text>                                                                      │

02:09:18 #18032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18033 [Debug] > │ points="585,356 590,356 "/>                                                  │

02:09:18 #18034 [Debug] > │ <text x="595" y="321" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18037 [Debug] > │ -0.0                                                                         │

02:09:18 #18038 [Debug] > │ </text>                                                                      │

02:09:18 #18039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18040 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:09:18 #18041 [Debug] > │ <text x="595" y="286" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18043 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18044 [Debug] > │ -0.0                                                                         │

02:09:18 #18045 [Debug] > │ </text>                                                                      │

02:09:18 #18046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18047 [Debug] > │ points="585,286 590,286 "/>                                                  │

02:09:18 #18048 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18049 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18050 [Debug] > │ 0.0                                                                          │

02:09:18 #18051 [Debug] > │ </text>                                                                      │

02:09:18 #18052 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18053 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:18 #18054 [Debug] > │ <text x="617" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18055 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18056 [Debug] > │ 0.0                                                                          │

02:09:18 #18057 [Debug] > │ </text>                                                                      │

02:09:18 #18058 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18059 [Debug] > │ points="585,215 590,215 "/>                                                  │

02:09:18 #18060 [Debug] > │ <text x="617" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18061 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18062 [Debug] > │ 0.0                                                                          │

02:09:18 #18063 [Debug] > │ </text>                                                                      │

02:09:18 #18064 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18065 [Debug] > │ points="585,180 590,180 "/>                                                  │

02:09:18 #18066 [Debug] > │ <text x="617" y="144" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18067 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18068 [Debug] > │ 0.0                                                                          │

02:09:18 #18069 [Debug] > │ </text>                                                                      │

02:09:18 #18070 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18071 [Debug] > │ points="585,144 590,144 "/>                                                  │

02:09:18 #18072 [Debug] > │ <text x="617" y="109" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18073 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18074 [Debug] > │ 0.0                                                                          │

02:09:18 #18075 [Debug] > │ </text>                                                                      │

02:09:18 #18076 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18077 [Debug] > │ points="585,109 590,109 "/>                                                  │

02:09:18 #18078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #18079 [Debug] > │ points="69,250 77,226 85,203 92,181 100,160 107,141 115,124 123,110 130,99   │

02:09:18 #18080 [Debug] > │ 138,91 145,87 153,85 160,88 168,93 176,102 183,115 191,129 198,147 206,167   │

02:09:18 #18081 [Debug] > │ 214,188 221,211 229,234 236,258 244,282 251,305 259,327 267,347 274,365      │

02:09:18 #18082 [Debug] > │ 282,381 289,394 297,404 305,411 312,415 320,415 327,411 335,404 342,394      │

02:09:18 #18083 [Debug] > │ 350,381 358,365 365,347 373,327 380,305 388,282 396,258 403,234 411,211      │

02:09:18 #18084 [Debug] > │ 418,188 426,167 433,147 441,129 449,115 456,102 464,93 471,88 479,85 487,87  │

02:09:18 #18085 [Debug] > │ 494,91 502,99 509,110 515,120 518,121 516,115 540,176 547,200 569,271        │

02:09:18 #18086 [Debug] > │ 562,250 "/>                                                                  │

02:09:18 #18087 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:18 #18088 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:18 #18089 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:18 #18090 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18091 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18092 [Debug] > │ 4                                                                            │

02:09:18 #18093 [Debug] > │ </text>                                                                      │

02:09:18 #18094 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #18095 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:18 #18096 [Debug] > │ </svg>                                                                       │

02:09:18 #18097 [Debug] > │ </td></tr><tr><td>5</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:18 #18098 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:18 #18099 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:18 #18100 [Debug] > │ stroke="none"/>                                                              │

02:09:18 #18101 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:18 #18102 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18103 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18104 [Debug] > │ wave                                                                         │

02:09:18 #18105 [Debug] > │ </text>                                                                      │

02:09:18 #18106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:18 #18107 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #18109 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:18 #18111 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:18 #18113 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:18 #18115 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:18 #18117 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:18 #18118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:18 #18119 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:18 #18120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:18 #18121 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:18 #18122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:18 #18123 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:18 #18124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:18 #18125 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:18 #18126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:18 #18127 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:18 #18128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:18 #18129 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:18 #18130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:18 #18131 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:18 #18132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:18 #18133 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:18 #18134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:18 #18135 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:18 #18136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:18 #18137 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:18 #18138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:18 #18139 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:18 #18140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="190" y1="424"        │

02:09:18 #18141 [Debug] > │ x2="190" y2="75"/>                                                           │

02:09:18 #18142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:18 #18143 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:18 #18144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:18 #18145 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:18 #18146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:18 #18147 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:18 #18148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:18 #18149 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:18 #18150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:18 #18151 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:18 #18152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:18 #18153 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:18 #18154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="243" y1="424"        │

02:09:18 #18155 [Debug] > │ x2="243" y2="75"/>                                                           │

02:09:18 #18156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:18 #18157 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:18 #18158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:18 #18159 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:18 #18160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:18 #18161 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:18 #18162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:18 #18163 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:18 #18164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:18 #18165 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:18 #18166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:18 #18167 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:18 #18168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:18 #18169 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:18 #18170 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:18 #18171 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:18 #18172 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:09:18 #18173 [Debug] > │ x2="311" y2="75"/>                                                           │

02:09:18 #18174 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:18 #18175 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:18 #18176 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:18 #18177 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:18 #18178 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:18 #18179 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:18 #18180 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:18 #18181 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:18 #18182 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:18 #18183 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:18 #18184 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:18 #18185 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:18 #18186 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="364" y1="424"        │

02:09:18 #18187 [Debug] > │ x2="364" y2="75"/>                                                           │

02:09:18 #18188 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:18 #18189 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:18 #18190 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:18 #18191 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:18 #18192 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:18 #18193 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:18 #18194 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:18 #18195 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:18 #18196 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:18 #18197 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:18 #18198 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:18 #18199 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:18 #18200 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="417" y1="424"        │

02:09:18 #18201 [Debug] > │ x2="417" y2="75"/>                                                           │

02:09:18 #18202 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:18 #18203 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:18 #18204 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="432" y1="424"        │

02:09:18 #18205 [Debug] > │ x2="432" y2="75"/>                                                           │

02:09:18 #18206 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:18 #18207 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:18 #18208 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:18 #18209 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:18 #18210 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:18 #18211 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:18 #18212 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:18 #18213 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:18 #18214 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="470" y1="424"        │

02:09:18 #18215 [Debug] > │ x2="470" y2="75"/>                                                           │

02:09:18 #18216 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:18 #18217 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:18 #18218 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:09:18 #18219 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:18 #18220 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:18 #18221 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:18 #18222 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="500" y1="424"        │

02:09:18 #18223 [Debug] > │ x2="500" y2="75"/>                                                           │

02:09:18 #18224 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:18 #18225 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:18 #18226 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:18 #18227 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:18 #18228 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:18 #18229 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:18 #18230 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:18 #18231 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:18 #18232 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:18 #18233 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:18 #18234 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:18 #18235 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:18 #18236 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:18 #18237 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:18 #18238 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:18 #18239 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:18 #18240 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:18 #18241 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:18 #18242 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:18 #18243 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:18 #18244 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="397"         │

02:09:18 #18245 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:18 #18246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:18 #18247 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:18 #18248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="360"         │

02:09:18 #18249 [Debug] > │ x2="584" y2="360"/>                                                          │

02:09:18 #18250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="342"         │

02:09:18 #18251 [Debug] > │ x2="584" y2="342"/>                                                          │

02:09:18 #18252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="324"         │

02:09:18 #18253 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:18 #18254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:09:18 #18255 [Debug] > │ x2="584" y2="305"/>                                                          │

02:09:18 #18256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:09:18 #18257 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:18 #18258 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:18 #18259 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:18 #18260 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:18 #18261 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #18262 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:18 #18263 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:18 #18264 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:18 #18265 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:18 #18266 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:09:18 #18267 [Debug] > │ x2="584" y2="195"/>                                                          │

02:09:18 #18268 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:09:18 #18269 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:18 #18270 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="158"         │

02:09:18 #18271 [Debug] > │ x2="584" y2="158"/>                                                          │

02:09:18 #18272 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:09:18 #18273 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:18 #18274 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="122"         │

02:09:18 #18275 [Debug] > │ x2="584" y2="122"/>                                                          │

02:09:18 #18276 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="103"         │

02:09:18 #18277 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:18 #18278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:18 #18279 [Debug] > │ y2="85"/>                                                                    │

02:09:18 #18280 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:18 #18281 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18282 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18283 [Debug] > │ position (m)                                                                 │

02:09:18 #18284 [Debug] > │ </text>                                                                      │

02:09:18 #18285 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:18 #18286 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18287 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:18 #18288 [Debug] > │ displacement (m)                                                             │

02:09:18 #18289 [Debug] > │ </text>                                                                      │

02:09:18 #18290 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:18 #18291 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18292 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18293 [Debug] > │ position (m)                                                                 │

02:09:18 #18294 [Debug] > │ </text>                                                                      │

02:09:18 #18295 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18296 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18297 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:18 #18298 [Debug] > │ displacement (m)                                                             │

02:09:18 #18299 [Debug] > │ </text>                                                                      │

02:09:18 #18300 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #18301 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18302 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:18 #18303 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:18 #18304 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:18 #18305 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:18 #18306 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:18 #18307 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:18 #18308 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:18 #18309 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:18 #18310 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:18 #18311 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:18 #18312 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:18 #18313 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:18 #18314 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:18 #18315 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:18 #18316 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:18 #18317 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:18 #18318 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:18 #18319 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:18 #18320 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:18 #18321 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:18 #18322 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:09:18 #18323 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:18 #18324 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:18 #18325 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:18 #18326 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:18 #18327 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:18 #18328 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="397"         │

02:09:18 #18329 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:18 #18330 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="360"         │

02:09:18 #18331 [Debug] > │ x2="584" y2="360"/>                                                          │

02:09:18 #18332 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="324"         │

02:09:18 #18333 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:18 #18334 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="287"         │

02:09:18 #18335 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:18 #18336 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:18 #18337 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:18 #18338 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="213"         │

02:09:18 #18339 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:18 #18340 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="177"         │

02:09:18 #18341 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:18 #18342 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="140"         │

02:09:18 #18343 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:18 #18344 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="103"         │

02:09:18 #18345 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:18 #18346 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18347 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:18 #18348 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:18 #18349 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18350 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18351 [Debug] > │ 0.0                                                                          │

02:09:18 #18352 [Debug] > │ </text>                                                                      │

02:09:18 #18353 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18354 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:18 #18355 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18356 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18357 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18358 [Debug] > │ 0.1                                                                          │

02:09:18 #18359 [Debug] > │ </text>                                                                      │

02:09:18 #18360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18361 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:18 #18362 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18363 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18364 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18365 [Debug] > │ 0.1                                                                          │

02:09:18 #18366 [Debug] > │ </text>                                                                      │

02:09:18 #18367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18368 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:18 #18369 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18371 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18372 [Debug] > │ 0.2                                                                          │

02:09:18 #18373 [Debug] > │ </text>                                                                      │

02:09:18 #18374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18375 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:18 #18376 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18378 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18379 [Debug] > │ 0.2                                                                          │

02:09:18 #18380 [Debug] > │ </text>                                                                      │

02:09:18 #18381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18382 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:18 #18383 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18384 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18385 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18386 [Debug] > │ 0.2                                                                          │

02:09:18 #18387 [Debug] > │ </text>                                                                      │

02:09:18 #18388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18389 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:18 #18390 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18392 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18393 [Debug] > │ 0.3                                                                          │

02:09:18 #18394 [Debug] > │ </text>                                                                      │

02:09:18 #18395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18396 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:18 #18397 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18399 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18400 [Debug] > │ 0.3                                                                          │

02:09:18 #18401 [Debug] > │ </text>                                                                      │

02:09:18 #18402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18403 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:18 #18404 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18407 [Debug] > │ 0.4                                                                          │

02:09:18 #18408 [Debug] > │ </text>                                                                      │

02:09:18 #18409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18410 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:18 #18411 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18414 [Debug] > │ 0.4                                                                          │

02:09:18 #18415 [Debug] > │ </text>                                                                      │

02:09:18 #18416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18417 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:18 #18418 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18420 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18421 [Debug] > │ 0.5                                                                          │

02:09:18 #18422 [Debug] > │ </text>                                                                      │

02:09:18 #18423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18424 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:18 #18425 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18427 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18428 [Debug] > │ 0.5                                                                          │

02:09:18 #18429 [Debug] > │ </text>                                                                      │

02:09:18 #18430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18431 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:09:18 #18432 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18434 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18435 [Debug] > │ 0.6                                                                          │

02:09:18 #18436 [Debug] > │ </text>                                                                      │

02:09:18 #18437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18438 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:18 #18439 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18441 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18442 [Debug] > │ 0.7                                                                          │

02:09:18 #18443 [Debug] > │ </text>                                                                      │

02:09:18 #18444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18445 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:18 #18446 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18447 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:18 #18448 [Debug] > │ <text x="45" y="397" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18449 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18450 [Debug] > │ -0.0                                                                         │

02:09:18 #18451 [Debug] > │ </text>                                                                      │

02:09:18 #18452 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18453 [Debug] > │ points="49,397 54,397 "/>                                                    │

02:09:18 #18454 [Debug] > │ <text x="45" y="360" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18455 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18456 [Debug] > │ -0.0                                                                         │

02:09:18 #18457 [Debug] > │ </text>                                                                      │

02:09:18 #18458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18459 [Debug] > │ points="49,360 54,360 "/>                                                    │

02:09:18 #18460 [Debug] > │ <text x="45" y="324" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18461 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18462 [Debug] > │ -0.0                                                                         │

02:09:18 #18463 [Debug] > │ </text>                                                                      │

02:09:18 #18464 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18465 [Debug] > │ points="49,324 54,324 "/>                                                    │

02:09:18 #18466 [Debug] > │ <text x="45" y="287" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18467 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18468 [Debug] > │ -0.0                                                                         │

02:09:18 #18469 [Debug] > │ </text>                                                                      │

02:09:18 #18470 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18471 [Debug] > │ points="49,287 54,287 "/>                                                    │

02:09:18 #18472 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18473 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18474 [Debug] > │ 0.0                                                                          │

02:09:18 #18475 [Debug] > │ </text>                                                                      │

02:09:18 #18476 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18477 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:18 #18478 [Debug] > │ <text x="45" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18479 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18480 [Debug] > │ 0.0                                                                          │

02:09:18 #18481 [Debug] > │ </text>                                                                      │

02:09:18 #18482 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18483 [Debug] > │ points="49,213 54,213 "/>                                                    │

02:09:18 #18484 [Debug] > │ <text x="45" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18485 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18486 [Debug] > │ 0.0                                                                          │

02:09:18 #18487 [Debug] > │ </text>                                                                      │

02:09:18 #18488 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18489 [Debug] > │ points="49,177 54,177 "/>                                                    │

02:09:18 #18490 [Debug] > │ <text x="45" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18491 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18492 [Debug] > │ 0.0                                                                          │

02:09:18 #18493 [Debug] > │ </text>                                                                      │

02:09:18 #18494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18495 [Debug] > │ points="49,140 54,140 "/>                                                    │

02:09:18 #18496 [Debug] > │ <text x="45" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #18497 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18498 [Debug] > │ 0.0                                                                          │

02:09:18 #18499 [Debug] > │ </text>                                                                      │

02:09:18 #18500 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18501 [Debug] > │ points="49,103 54,103 "/>                                                    │

02:09:18 #18502 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18503 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:18 #18504 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:18 #18505 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18506 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18507 [Debug] > │ 0.0                                                                          │

02:09:18 #18508 [Debug] > │ </text>                                                                      │

02:09:18 #18509 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18510 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:18 #18511 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18512 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18513 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18514 [Debug] > │ 0.1                                                                          │

02:09:18 #18515 [Debug] > │ </text>                                                                      │

02:09:18 #18516 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18517 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:18 #18518 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18519 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18520 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18521 [Debug] > │ 0.1                                                                          │

02:09:18 #18522 [Debug] > │ </text>                                                                      │

02:09:18 #18523 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18524 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:18 #18525 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18526 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18527 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18528 [Debug] > │ 0.2                                                                          │

02:09:18 #18529 [Debug] > │ </text>                                                                      │

02:09:18 #18530 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18531 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:18 #18532 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18533 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18534 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18535 [Debug] > │ 0.2                                                                          │

02:09:18 #18536 [Debug] > │ </text>                                                                      │

02:09:18 #18537 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18538 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:18 #18539 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18540 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18541 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18542 [Debug] > │ 0.2                                                                          │

02:09:18 #18543 [Debug] > │ </text>                                                                      │

02:09:18 #18544 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18545 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:18 #18546 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18547 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18548 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18549 [Debug] > │ 0.3                                                                          │

02:09:18 #18550 [Debug] > │ </text>                                                                      │

02:09:18 #18551 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18552 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:18 #18553 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18554 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18555 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18556 [Debug] > │ 0.3                                                                          │

02:09:18 #18557 [Debug] > │ </text>                                                                      │

02:09:18 #18558 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18559 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:18 #18560 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18561 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18562 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18563 [Debug] > │ 0.4                                                                          │

02:09:18 #18564 [Debug] > │ </text>                                                                      │

02:09:18 #18565 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18566 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:18 #18567 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18568 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18569 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18570 [Debug] > │ 0.4                                                                          │

02:09:18 #18571 [Debug] > │ </text>                                                                      │

02:09:18 #18572 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18573 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:18 #18574 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18575 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18576 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18577 [Debug] > │ 0.5                                                                          │

02:09:18 #18578 [Debug] > │ </text>                                                                      │

02:09:18 #18579 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18580 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:18 #18581 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18582 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18583 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18584 [Debug] > │ 0.5                                                                          │

02:09:18 #18585 [Debug] > │ </text>                                                                      │

02:09:18 #18586 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18587 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:09:18 #18588 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18589 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18590 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18591 [Debug] > │ 0.6                                                                          │

02:09:18 #18592 [Debug] > │ </text>                                                                      │

02:09:18 #18593 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18594 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:18 #18595 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18596 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18597 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18598 [Debug] > │ 0.7                                                                          │

02:09:18 #18599 [Debug] > │ </text>                                                                      │

02:09:18 #18600 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18601 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:18 #18602 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18603 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:18 #18604 [Debug] > │ <text x="595" y="397" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18605 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18606 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18607 [Debug] > │ -0.0                                                                         │

02:09:18 #18608 [Debug] > │ </text>                                                                      │

02:09:18 #18609 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18610 [Debug] > │ points="585,397 590,397 "/>                                                  │

02:09:18 #18611 [Debug] > │ <text x="595" y="360" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18612 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18613 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18614 [Debug] > │ -0.0                                                                         │

02:09:18 #18615 [Debug] > │ </text>                                                                      │

02:09:18 #18616 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18617 [Debug] > │ points="585,360 590,360 "/>                                                  │

02:09:18 #18618 [Debug] > │ <text x="595" y="324" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18619 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18620 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18621 [Debug] > │ -0.0                                                                         │

02:09:18 #18622 [Debug] > │ </text>                                                                      │

02:09:18 #18623 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18624 [Debug] > │ points="585,324 590,324 "/>                                                  │

02:09:18 #18625 [Debug] > │ <text x="595" y="287" dy="0.5ex" text-anchor="start"                         │

02:09:18 #18626 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18627 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18628 [Debug] > │ -0.0                                                                         │

02:09:18 #18629 [Debug] > │ </text>                                                                      │

02:09:18 #18630 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18631 [Debug] > │ points="585,287 590,287 "/>                                                  │

02:09:18 #18632 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18633 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18634 [Debug] > │ 0.0                                                                          │

02:09:18 #18635 [Debug] > │ </text>                                                                      │

02:09:18 #18636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18637 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:18 #18638 [Debug] > │ <text x="617" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18639 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18640 [Debug] > │ 0.0                                                                          │

02:09:18 #18641 [Debug] > │ </text>                                                                      │

02:09:18 #18642 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18643 [Debug] > │ points="585,213 590,213 "/>                                                  │

02:09:18 #18644 [Debug] > │ <text x="617" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18645 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18646 [Debug] > │ 0.0                                                                          │

02:09:18 #18647 [Debug] > │ </text>                                                                      │

02:09:18 #18648 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18649 [Debug] > │ points="585,177 590,177 "/>                                                  │

02:09:18 #18650 [Debug] > │ <text x="617" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18651 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18652 [Debug] > │ 0.0                                                                          │

02:09:18 #18653 [Debug] > │ </text>                                                                      │

02:09:18 #18654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18655 [Debug] > │ points="585,140 590,140 "/>                                                  │

02:09:18 #18656 [Debug] > │ <text x="617" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #18657 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #18658 [Debug] > │ 0.0                                                                          │

02:09:18 #18659 [Debug] > │ </text>                                                                      │

02:09:18 #18660 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18661 [Debug] > │ points="585,103 590,103 "/>                                                  │

02:09:18 #18662 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #18663 [Debug] > │ points="69,250 77,226 85,203 92,181 100,160 107,141 115,124 122,110 130,99   │

02:09:18 #18664 [Debug] > │ 138,91 145,87 153,85 160,88 168,93 175,102 183,115 190,129 198,147 206,167   │

02:09:18 #18665 [Debug] > │ 213,188 221,211 228,234 236,258 243,282 251,305 259,327 266,347 274,365      │

02:09:18 #18666 [Debug] > │ 281,381 289,394 296,404 304,411 311,415 319,415 327,411 334,404 342,394      │

02:09:18 #18667 [Debug] > │ 349,381 357,365 364,347 372,327 380,305 387,282 395,258 402,234 410,211      │

02:09:18 #18668 [Debug] > │ 417,188 425,167 432,147 440,129 448,115 455,102 463,93 470,88 478,85 485,87  │

02:09:18 #18669 [Debug] > │ 493,91 500,99 507,108 511,111 511,104 510,99 538,173 546,198 569,277 561,250 │

02:09:18 #18670 [Debug] > │ "/>                                                                          │

02:09:18 #18671 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:18 #18672 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:18 #18673 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:18 #18674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18675 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18676 [Debug] > │ 5                                                                            │

02:09:18 #18677 [Debug] > │ </text>                                                                      │

02:09:18 #18678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #18679 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:18 #18680 [Debug] > │ </svg>                                                                       │

02:09:18 #18681 [Debug] > │ </td></tr><tr><td>6</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:18 #18682 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:18 #18683 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:18 #18684 [Debug] > │ stroke="none"/>                                                              │

02:09:18 #18685 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:18 #18686 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18687 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18688 [Debug] > │ wave                                                                         │

02:09:18 #18689 [Debug] > │ </text>                                                                      │

02:09:18 #18690 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:18 #18691 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18692 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #18693 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:18 #18695 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:18 #18697 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:18 #18699 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:18 #18701 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:18 #18702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:18 #18703 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:18 #18704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:18 #18705 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:18 #18706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:18 #18707 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:18 #18708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:18 #18709 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:18 #18710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:18 #18711 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:18 #18712 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:18 #18713 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:18 #18714 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:18 #18715 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:18 #18716 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:18 #18717 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:18 #18718 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:18 #18719 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:18 #18720 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:18 #18721 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:18 #18722 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:18 #18723 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:18 #18724 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:18 #18725 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:18 #18726 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:18 #18727 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:18 #18728 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:18 #18729 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:18 #18730 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:18 #18731 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:18 #18732 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:18 #18733 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:18 #18734 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:18 #18735 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:18 #18736 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:18 #18737 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:18 #18738 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:18 #18739 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:18 #18740 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:18 #18741 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:18 #18742 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:18 #18743 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:18 #18744 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:18 #18745 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:18 #18746 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:18 #18747 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:18 #18748 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:18 #18749 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:18 #18750 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:18 #18751 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:18 #18752 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:18 #18753 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:18 #18754 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:18 #18755 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:18 #18756 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:18 #18757 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:18 #18758 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:18 #18759 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:18 #18760 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:18 #18761 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:18 #18762 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:18 #18763 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:18 #18764 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="343" y1="424"        │

02:09:18 #18765 [Debug] > │ x2="343" y2="75"/>                                                           │

02:09:18 #18766 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:18 #18767 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:18 #18768 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:18 #18769 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:18 #18770 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:18 #18771 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:18 #18772 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:18 #18773 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:18 #18774 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:18 #18775 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:18 #18776 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:18 #18777 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:18 #18778 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:18 #18779 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:18 #18780 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:18 #18781 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:18 #18782 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:18 #18783 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:18 #18784 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:18 #18785 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:18 #18786 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:18 #18787 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:18 #18788 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="434" y1="424"        │

02:09:18 #18789 [Debug] > │ x2="434" y2="75"/>                                                           │

02:09:18 #18790 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:18 #18791 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:18 #18792 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:18 #18793 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:18 #18794 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:18 #18795 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:18 #18796 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:18 #18797 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:18 #18798 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:18 #18799 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:18 #18800 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:18 #18801 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:18 #18802 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:18 #18803 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:18 #18804 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:18 #18805 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:18 #18806 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:18 #18807 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:18 #18808 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:18 #18809 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:18 #18810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:18 #18811 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:18 #18812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="525" y1="424"        │

02:09:18 #18813 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:18 #18814 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:18 #18815 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:18 #18816 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:18 #18817 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:18 #18818 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:18 #18819 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:18 #18820 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:18 #18821 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:18 #18822 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:18 #18823 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:18 #18824 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:18 #18825 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:18 #18826 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="424"         │

02:09:18 #18827 [Debug] > │ x2="584" y2="424"/>                                                          │

02:09:18 #18828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:18 #18829 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:18 #18830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:18 #18831 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:18 #18832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:09:18 #18833 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:18 #18834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="347"         │

02:09:18 #18835 [Debug] > │ x2="584" y2="347"/>                                                          │

02:09:18 #18836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:09:18 #18837 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:18 #18838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:18 #18839 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:18 #18840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="290"         │

02:09:18 #18841 [Debug] > │ x2="584" y2="290"/>                                                          │

02:09:18 #18842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="271"         │

02:09:18 #18843 [Debug] > │ x2="584" y2="271"/>                                                          │

02:09:18 #18844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="252"         │

02:09:18 #18845 [Debug] > │ x2="584" y2="252"/>                                                          │

02:09:18 #18846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:18 #18847 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:18 #18848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:18 #18849 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:18 #18850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="194"         │

02:09:18 #18851 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:18 #18852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:18 #18853 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:18 #18854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="156"         │

02:09:18 #18855 [Debug] > │ x2="584" y2="156"/>                                                          │

02:09:18 #18856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:09:18 #18857 [Debug] > │ x2="584" y2="137"/>                                                          │

02:09:18 #18858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:18 #18859 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:18 #18860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:18 #18861 [Debug] > │ y2="99"/>                                                                    │

02:09:18 #18862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:18 #18863 [Debug] > │ y2="79"/>                                                                    │

02:09:18 #18864 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:18 #18865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18866 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18867 [Debug] > │ position (m)                                                                 │

02:09:18 #18868 [Debug] > │ </text>                                                                      │

02:09:18 #18869 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:18 #18870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18871 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:18 #18872 [Debug] > │ displacement (m)                                                             │

02:09:18 #18873 [Debug] > │ </text>                                                                      │

02:09:18 #18874 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:18 #18875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18876 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18877 [Debug] > │ position (m)                                                                 │

02:09:18 #18878 [Debug] > │ </text>                                                                      │

02:09:18 #18879 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:18 #18880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18881 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:18 #18882 [Debug] > │ displacement (m)                                                             │

02:09:18 #18883 [Debug] > │ </text>                                                                      │

02:09:18 #18884 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #18885 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #18886 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:18 #18887 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:18 #18888 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:18 #18889 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:18 #18890 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:18 #18891 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:18 #18892 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:18 #18893 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:18 #18894 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:18 #18895 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:18 #18896 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:18 #18897 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:18 #18898 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:18 #18899 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:18 #18900 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:18 #18901 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:18 #18902 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:18 #18903 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:18 #18904 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:18 #18905 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:18 #18906 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:18 #18907 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:18 #18908 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="525" y1="424"        │

02:09:18 #18909 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:18 #18910 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:18 #18911 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:18 #18912 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="405"         │

02:09:18 #18913 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:18 #18914 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="367"         │

02:09:18 #18915 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:18 #18916 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="328"         │

02:09:18 #18917 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:18 #18918 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="290"         │

02:09:18 #18919 [Debug] > │ x2="584" y2="290"/>                                                          │

02:09:18 #18920 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="252"         │

02:09:18 #18921 [Debug] > │ x2="584" y2="252"/>                                                          │

02:09:18 #18922 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="213"         │

02:09:18 #18923 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:18 #18924 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="175"         │

02:09:18 #18925 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:18 #18926 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="137"         │

02:09:18 #18927 [Debug] > │ x2="584" y2="137"/>                                                          │

02:09:18 #18928 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:18 #18929 [Debug] > │ y2="99"/>                                                                    │

02:09:18 #18930 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18931 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:18 #18932 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:18 #18933 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18934 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18935 [Debug] > │ 0.0                                                                          │

02:09:18 #18936 [Debug] > │ </text>                                                                      │

02:09:18 #18937 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18938 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:18 #18939 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18940 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18941 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18942 [Debug] > │ 0.1                                                                          │

02:09:18 #18943 [Debug] > │ </text>                                                                      │

02:09:18 #18944 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18945 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:18 #18946 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18947 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18948 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18949 [Debug] > │ 0.1                                                                          │

02:09:18 #18950 [Debug] > │ </text>                                                                      │

02:09:18 #18951 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18952 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:18 #18953 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18954 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18955 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18956 [Debug] > │ 0.2                                                                          │

02:09:18 #18957 [Debug] > │ </text>                                                                      │

02:09:18 #18958 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18959 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:18 #18960 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18961 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18962 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18963 [Debug] > │ 0.2                                                                          │

02:09:18 #18964 [Debug] > │ </text>                                                                      │

02:09:18 #18965 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18966 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:18 #18967 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18968 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18969 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18970 [Debug] > │ 0.2                                                                          │

02:09:18 #18971 [Debug] > │ </text>                                                                      │

02:09:18 #18972 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18973 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:18 #18974 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18975 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18976 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18977 [Debug] > │ 0.3                                                                          │

02:09:18 #18978 [Debug] > │ </text>                                                                      │

02:09:18 #18979 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18980 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:18 #18981 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18982 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18983 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18984 [Debug] > │ 0.3                                                                          │

02:09:18 #18985 [Debug] > │ </text>                                                                      │

02:09:18 #18986 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18987 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:18 #18988 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18989 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18990 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18991 [Debug] > │ 0.4                                                                          │

02:09:18 #18992 [Debug] > │ </text>                                                                      │

02:09:18 #18993 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #18994 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:18 #18995 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #18996 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #18997 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #18998 [Debug] > │ 0.4                                                                          │

02:09:18 #18999 [Debug] > │ </text>                                                                      │

02:09:18 #19000 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19001 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:18 #19002 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #19003 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19004 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19005 [Debug] > │ 0.5                                                                          │

02:09:18 #19006 [Debug] > │ </text>                                                                      │

02:09:18 #19007 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19008 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:18 #19009 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #19010 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19011 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19012 [Debug] > │ 0.5                                                                          │

02:09:18 #19013 [Debug] > │ </text>                                                                      │

02:09:18 #19014 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19015 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:18 #19016 [Debug] > │ <text x="525" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #19017 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19018 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19019 [Debug] > │ 0.6                                                                          │

02:09:18 #19020 [Debug] > │ </text>                                                                      │

02:09:18 #19021 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19022 [Debug] > │ points="525,69 525,74 "/>                                                    │

02:09:18 #19023 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:18 #19024 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19025 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19026 [Debug] > │ 0.7                                                                          │

02:09:18 #19027 [Debug] > │ </text>                                                                      │

02:09:18 #19028 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19029 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:18 #19030 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19031 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:18 #19032 [Debug] > │ <text x="45" y="405" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19033 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19034 [Debug] > │ -0.0                                                                         │

02:09:18 #19035 [Debug] > │ </text>                                                                      │

02:09:18 #19036 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19037 [Debug] > │ points="49,405 54,405 "/>                                                    │

02:09:18 #19038 [Debug] > │ <text x="45" y="367" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19039 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19040 [Debug] > │ -0.0                                                                         │

02:09:18 #19041 [Debug] > │ </text>                                                                      │

02:09:18 #19042 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19043 [Debug] > │ points="49,367 54,367 "/>                                                    │

02:09:18 #19044 [Debug] > │ <text x="45" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19045 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19046 [Debug] > │ -0.0                                                                         │

02:09:18 #19047 [Debug] > │ </text>                                                                      │

02:09:18 #19048 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19049 [Debug] > │ points="49,328 54,328 "/>                                                    │

02:09:18 #19050 [Debug] > │ <text x="45" y="290" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19051 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19052 [Debug] > │ -0.0                                                                         │

02:09:18 #19053 [Debug] > │ </text>                                                                      │

02:09:18 #19054 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19055 [Debug] > │ points="49,290 54,290 "/>                                                    │

02:09:18 #19056 [Debug] > │ <text x="45" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19057 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19058 [Debug] > │ 0.0                                                                          │

02:09:18 #19059 [Debug] > │ </text>                                                                      │

02:09:18 #19060 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19061 [Debug] > │ points="49,252 54,252 "/>                                                    │

02:09:18 #19062 [Debug] > │ <text x="45" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19063 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19064 [Debug] > │ 0.0                                                                          │

02:09:18 #19065 [Debug] > │ </text>                                                                      │

02:09:18 #19066 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19067 [Debug] > │ points="49,213 54,213 "/>                                                    │

02:09:18 #19068 [Debug] > │ <text x="45" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19069 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19070 [Debug] > │ 0.0                                                                          │

02:09:18 #19071 [Debug] > │ </text>                                                                      │

02:09:18 #19072 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19073 [Debug] > │ points="49,175 54,175 "/>                                                    │

02:09:18 #19074 [Debug] > │ <text x="45" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19075 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19076 [Debug] > │ 0.0                                                                          │

02:09:18 #19077 [Debug] > │ </text>                                                                      │

02:09:18 #19078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19079 [Debug] > │ points="49,137 54,137 "/>                                                    │

02:09:18 #19080 [Debug] > │ <text x="45" y="99" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:18 #19081 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19082 [Debug] > │ 0.0                                                                          │

02:09:18 #19083 [Debug] > │ </text>                                                                      │

02:09:18 #19084 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19085 [Debug] > │ points="49,99 54,99 "/>                                                      │

02:09:18 #19086 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19087 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:18 #19088 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:18 #19089 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19090 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19091 [Debug] > │ 0.0                                                                          │

02:09:18 #19092 [Debug] > │ </text>                                                                      │

02:09:18 #19093 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19094 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:18 #19095 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19096 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19097 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19098 [Debug] > │ 0.1                                                                          │

02:09:18 #19099 [Debug] > │ </text>                                                                      │

02:09:18 #19100 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19101 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:18 #19102 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19103 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19104 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19105 [Debug] > │ 0.1                                                                          │

02:09:18 #19106 [Debug] > │ </text>                                                                      │

02:09:18 #19107 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19108 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:18 #19109 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19110 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19111 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19112 [Debug] > │ 0.2                                                                          │

02:09:18 #19113 [Debug] > │ </text>                                                                      │

02:09:18 #19114 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19115 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:18 #19116 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19117 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19118 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19119 [Debug] > │ 0.2                                                                          │

02:09:18 #19120 [Debug] > │ </text>                                                                      │

02:09:18 #19121 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19122 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:18 #19123 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19124 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19125 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19126 [Debug] > │ 0.2                                                                          │

02:09:18 #19127 [Debug] > │ </text>                                                                      │

02:09:18 #19128 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19129 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:18 #19130 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19131 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19132 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19133 [Debug] > │ 0.3                                                                          │

02:09:18 #19134 [Debug] > │ </text>                                                                      │

02:09:18 #19135 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19136 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:18 #19137 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19138 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19139 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19140 [Debug] > │ 0.3                                                                          │

02:09:18 #19141 [Debug] > │ </text>                                                                      │

02:09:18 #19142 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19143 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:18 #19144 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19145 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19146 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19147 [Debug] > │ 0.4                                                                          │

02:09:18 #19148 [Debug] > │ </text>                                                                      │

02:09:18 #19149 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19150 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:18 #19151 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19152 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19153 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19154 [Debug] > │ 0.4                                                                          │

02:09:18 #19155 [Debug] > │ </text>                                                                      │

02:09:18 #19156 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19157 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:18 #19158 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19159 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19160 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19161 [Debug] > │ 0.5                                                                          │

02:09:18 #19162 [Debug] > │ </text>                                                                      │

02:09:18 #19163 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19164 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:18 #19165 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19166 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19167 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19168 [Debug] > │ 0.5                                                                          │

02:09:18 #19169 [Debug] > │ </text>                                                                      │

02:09:18 #19170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19171 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:18 #19172 [Debug] > │ <text x="525" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19173 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19174 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19175 [Debug] > │ 0.6                                                                          │

02:09:18 #19176 [Debug] > │ </text>                                                                      │

02:09:18 #19177 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19178 [Debug] > │ points="525,425 525,430 "/>                                                  │

02:09:18 #19179 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:18 #19180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19181 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19182 [Debug] > │ 0.7                                                                          │

02:09:18 #19183 [Debug] > │ </text>                                                                      │

02:09:18 #19184 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19185 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:18 #19186 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19187 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:18 #19188 [Debug] > │ <text x="595" y="405" dy="0.5ex" text-anchor="start"                         │

02:09:18 #19189 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19190 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19191 [Debug] > │ -0.0                                                                         │

02:09:18 #19192 [Debug] > │ </text>                                                                      │

02:09:18 #19193 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19194 [Debug] > │ points="585,405 590,405 "/>                                                  │

02:09:18 #19195 [Debug] > │ <text x="595" y="367" dy="0.5ex" text-anchor="start"                         │

02:09:18 #19196 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19197 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19198 [Debug] > │ -0.0                                                                         │

02:09:18 #19199 [Debug] > │ </text>                                                                      │

02:09:18 #19200 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19201 [Debug] > │ points="585,367 590,367 "/>                                                  │

02:09:18 #19202 [Debug] > │ <text x="595" y="328" dy="0.5ex" text-anchor="start"                         │

02:09:18 #19203 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19204 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19205 [Debug] > │ -0.0                                                                         │

02:09:18 #19206 [Debug] > │ </text>                                                                      │

02:09:18 #19207 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19208 [Debug] > │ points="585,328 590,328 "/>                                                  │

02:09:18 #19209 [Debug] > │ <text x="595" y="290" dy="0.5ex" text-anchor="start"                         │

02:09:18 #19210 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19211 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19212 [Debug] > │ -0.0                                                                         │

02:09:18 #19213 [Debug] > │ </text>                                                                      │

02:09:18 #19214 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19215 [Debug] > │ points="585,290 590,290 "/>                                                  │

02:09:18 #19216 [Debug] > │ <text x="617" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #19217 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19218 [Debug] > │ 0.0                                                                          │

02:09:18 #19219 [Debug] > │ </text>                                                                      │

02:09:18 #19220 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19221 [Debug] > │ points="585,252 590,252 "/>                                                  │

02:09:18 #19222 [Debug] > │ <text x="617" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #19223 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19224 [Debug] > │ 0.0                                                                          │

02:09:18 #19225 [Debug] > │ </text>                                                                      │

02:09:18 #19226 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19227 [Debug] > │ points="585,213 590,213 "/>                                                  │

02:09:18 #19228 [Debug] > │ <text x="617" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #19229 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19230 [Debug] > │ 0.0                                                                          │

02:09:18 #19231 [Debug] > │ </text>                                                                      │

02:09:18 #19232 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19233 [Debug] > │ points="585,175 590,175 "/>                                                  │

02:09:18 #19234 [Debug] > │ <text x="617" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:18 #19235 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19236 [Debug] > │ 0.0                                                                          │

02:09:18 #19237 [Debug] > │ </text>                                                                      │

02:09:18 #19238 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19239 [Debug] > │ points="585,137 590,137 "/>                                                  │

02:09:18 #19240 [Debug] > │ <text x="617" y="99" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:18 #19241 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:18 #19242 [Debug] > │ 0.0                                                                          │

02:09:18 #19243 [Debug] > │ </text>                                                                      │

02:09:18 #19244 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:18 #19245 [Debug] > │ points="585,99 590,99 "/>                                                    │

02:09:18 #19246 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #19247 [Debug] > │ points="69,252 77,228 85,205 92,183 100,162 107,143 115,127 123,113 130,102  │

02:09:18 #19248 [Debug] > │ 138,94 145,90 153,88 160,91 168,96 176,105 183,117 191,132 198,149 206,169   │

02:09:18 #19249 [Debug] > │ 214,190 221,213 229,236 236,260 244,283 252,306 259,328 267,348 274,366      │

02:09:18 #19250 [Debug] > │ 282,381 289,394 297,404 305,411 312,415 320,415 327,411 335,404 343,394      │

02:09:18 #19251 [Debug] > │ 350,381 358,366 365,348 373,328 380,306 388,283 396,260 403,236 411,213      │

02:09:18 #19252 [Debug] > │ 418,190 426,169 434,149 441,132 449,117 456,105 464,96 471,91 479,88 487,90  │

02:09:18 #19253 [Debug] > │ 494,94 501,100 507,105 508,99 507,88 507,85 540,171 547,197 569,274 562,252  │

02:09:18 #19254 [Debug] > │ "/>                                                                          │

02:09:18 #19255 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:18 #19256 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:18 #19257 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:18 #19258 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19259 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19260 [Debug] > │ 6                                                                            │

02:09:18 #19261 [Debug] > │ </text>                                                                      │

02:09:18 #19262 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:18 #19263 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:18 #19264 [Debug] > │ </svg>                                                                       │

02:09:18 #19265 [Debug] > │ </td></tr><tr><td>7</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:18 #19266 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:18 #19267 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:18 #19268 [Debug] > │ stroke="none"/>                                                              │

02:09:18 #19269 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:18 #19270 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:18 #19271 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:18 #19272 [Debug] > │ wave                                                                         │

02:09:18 #19273 [Debug] > │ </text>                                                                      │

02:09:18 #19274 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:18 #19275 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #19276 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:18 #19277 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #19278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:18 #19279 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #19280 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:18 #19281 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #19282 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:18 #19283 [Debug] > │ y2="75"/>                                                                    │

02:09:18 #19284 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:18 #19285 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:18 #19286 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:18 #19287 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:18 #19288 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:18 #19289 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:18 #19290 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:18 #19291 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:18 #19292 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:18 #19293 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:18 #19294 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:18 #19295 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:18 #19296 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:18 #19297 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:18 #19298 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:18 #19299 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:18 #19300 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:18 #19301 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:18 #19302 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:18 #19303 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:18 #19304 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:18 #19305 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:18 #19306 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:18 #19307 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:18 #19308 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:18 #19309 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:18 #19310 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:18 #19311 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:18 #19312 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:18 #19313 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:18 #19314 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:18 #19315 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:18 #19316 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:18 #19317 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:18 #19318 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:18 #19319 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:18 #19320 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:18 #19321 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:18 #19322 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:18 #19323 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:18 #19324 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:18 #19325 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:18 #19326 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:18 #19327 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:18 #19328 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:18 #19329 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:18 #19330 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:18 #19331 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:18 #19332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:18 #19333 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:18 #19334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:18 #19335 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:18 #19336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:18 #19337 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:18 #19338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:18 #19339 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:18 #19340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:18 #19341 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:18 #19342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:18 #19343 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:18 #19344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:18 #19345 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:18 #19346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:18 #19347 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:18 #19348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:18 #19349 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:18 #19350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:18 #19351 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:18 #19352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:18 #19353 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:18 #19354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:18 #19355 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:18 #19356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:18 #19357 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:18 #19358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:18 #19359 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:18 #19360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="391" y1="424"        │

02:09:18 #19361 [Debug] > │ x2="391" y2="75"/>                                                           │

02:09:18 #19362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:18 #19363 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:18 #19364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:18 #19365 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:18 #19366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:18 #19367 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:18 #19368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:18 #19369 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:18 #19370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:18 #19371 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:18 #19372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="436" y1="424"        │

02:09:18 #19373 [Debug] > │ x2="436" y2="75"/>                                                           │

02:09:18 #19374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:09:18 #19375 [Debug] > │ x2="444" y2="75"/>                                                           │

02:09:18 #19376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:09:18 #19377 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:18 #19378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:18 #19379 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:18 #19380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="467" y1="424"        │

02:09:18 #19381 [Debug] > │ x2="467" y2="75"/>                                                           │

02:09:18 #19382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="475" y1="424"        │

02:09:18 #19383 [Debug] > │ x2="475" y2="75"/>                                                           │

02:09:18 #19384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="482" y1="424"        │

02:09:18 #19385 [Debug] > │ x2="482" y2="75"/>                                                           │

02:09:18 #19386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:18 #19387 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:18 #19388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="498" y1="424"        │

02:09:18 #19389 [Debug] > │ x2="498" y2="75"/>                                                           │

02:09:18 #19390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="505" y1="424"        │

02:09:18 #19391 [Debug] > │ x2="505" y2="75"/>                                                           │

02:09:18 #19392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="513" y1="424"        │

02:09:18 #19393 [Debug] > │ x2="513" y2="75"/>                                                           │

02:09:18 #19394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="520" y1="424"        │

02:09:18 #19395 [Debug] > │ x2="520" y2="75"/>                                                           │

02:09:18 #19396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="528" y1="424"        │

02:09:18 #19397 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:18 #19398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:09:18 #19399 [Debug] > │ x2="536" y2="75"/>                                                           │

02:09:18 #19400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="543" y1="424"        │

02:09:18 #19401 [Debug] > │ x2="543" y2="75"/>                                                           │

02:09:18 #19402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="551" y1="424"        │

02:09:18 #19403 [Debug] > │ x2="551" y2="75"/>                                                           │

02:09:18 #19404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:18 #19405 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:18 #19406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="566" y1="424"        │

02:09:18 #19407 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:18 #19408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="574" y1="424"        │

02:09:18 #19409 [Debug] > │ x2="574" y2="75"/>                                                           │

02:09:18 #19410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:19 #19411 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:19 #19412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:09:19 #19413 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:19 #19414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="376"         │

02:09:19 #19415 [Debug] > │ x2="584" y2="376"/>                                                          │

02:09:19 #19416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="357"         │

02:09:19 #19417 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:19 #19418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="338"         │

02:09:19 #19419 [Debug] > │ x2="584" y2="338"/>                                                          │

02:09:19 #19420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="318"         │

02:09:19 #19421 [Debug] > │ x2="584" y2="318"/>                                                          │

02:09:19 #19422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:19 #19423 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:19 #19424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="280"         │

02:09:19 #19425 [Debug] > │ x2="584" y2="280"/>                                                          │

02:09:19 #19426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:09:19 #19427 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:19 #19428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:09:19 #19429 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:19 #19430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:09:19 #19431 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:19 #19432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="203"         │

02:09:19 #19433 [Debug] > │ x2="584" y2="203"/>                                                          │

02:09:19 #19434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:19 #19435 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:19 #19436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="164"         │

02:09:19 #19437 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:19 #19438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:09:19 #19439 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:19 #19440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="125"         │

02:09:19 #19441 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:19 #19442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:19 #19443 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:19 #19444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="87" x2="584" │

02:09:19 #19445 [Debug] > │ y2="87"/>                                                                    │

02:09:19 #19446 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:19 #19447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19449 [Debug] > │ position (m)                                                                 │

02:09:19 #19450 [Debug] > │ </text>                                                                      │

02:09:19 #19451 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:19 #19452 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19453 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:19 #19454 [Debug] > │ displacement (m)                                                             │

02:09:19 #19455 [Debug] > │ </text>                                                                      │

02:09:19 #19456 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:19 #19457 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19458 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19459 [Debug] > │ position (m)                                                                 │

02:09:19 #19460 [Debug] > │ </text>                                                                      │

02:09:19 #19461 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19462 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19463 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:19 #19464 [Debug] > │ displacement (m)                                                             │

02:09:19 #19465 [Debug] > │ </text>                                                                      │

02:09:19 #19466 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #19467 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #19468 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:19 #19469 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #19470 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:19 #19471 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #19472 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:19 #19473 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:19 #19474 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:19 #19475 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:19 #19476 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:19 #19477 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #19478 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:19 #19479 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:19 #19480 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:19 #19481 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:19 #19482 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:19 #19483 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:19 #19484 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:19 #19485 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:19 #19486 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="452" y1="424"        │

02:09:19 #19487 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:19 #19488 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="490" y1="424"        │

02:09:19 #19489 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:19 #19490 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="528" y1="424"        │

02:09:19 #19491 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:19 #19492 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="566" y1="424"        │

02:09:19 #19493 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:19 #19494 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="415"         │

02:09:19 #19495 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:19 #19496 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="376"         │

02:09:19 #19497 [Debug] > │ x2="584" y2="376"/>                                                          │

02:09:19 #19498 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="338"         │

02:09:19 #19499 [Debug] > │ x2="584" y2="338"/>                                                          │

02:09:19 #19500 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="299"         │

02:09:19 #19501 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:19 #19502 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="260"         │

02:09:19 #19503 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:19 #19504 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="222"         │

02:09:19 #19505 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:19 #19506 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:19 #19507 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:19 #19508 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="145"         │

02:09:19 #19509 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:19 #19510 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="106"         │

02:09:19 #19511 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:19 #19512 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19513 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:19 #19514 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:19 #19515 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19516 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19517 [Debug] > │ 0.0                                                                          │

02:09:19 #19518 [Debug] > │ </text>                                                                      │

02:09:19 #19519 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19520 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:19 #19521 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19522 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19523 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19524 [Debug] > │ 0.1                                                                          │

02:09:19 #19525 [Debug] > │ </text>                                                                      │

02:09:19 #19526 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19527 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:19 #19528 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19529 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19530 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19531 [Debug] > │ 0.1                                                                          │

02:09:19 #19532 [Debug] > │ </text>                                                                      │

02:09:19 #19533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19534 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:19 #19535 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19536 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19537 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19538 [Debug] > │ 0.2                                                                          │

02:09:19 #19539 [Debug] > │ </text>                                                                      │

02:09:19 #19540 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19541 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:19 #19542 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19543 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19544 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19545 [Debug] > │ 0.2                                                                          │

02:09:19 #19546 [Debug] > │ </text>                                                                      │

02:09:19 #19547 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19548 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:19 #19549 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19550 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19551 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19552 [Debug] > │ 0.2                                                                          │

02:09:19 #19553 [Debug] > │ </text>                                                                      │

02:09:19 #19554 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19555 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:19 #19556 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19557 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19558 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19559 [Debug] > │ 0.3                                                                          │

02:09:19 #19560 [Debug] > │ </text>                                                                      │

02:09:19 #19561 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19562 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:19 #19563 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19564 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19565 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19566 [Debug] > │ 0.3                                                                          │

02:09:19 #19567 [Debug] > │ </text>                                                                      │

02:09:19 #19568 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19569 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:19 #19570 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19571 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19572 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19573 [Debug] > │ 0.4                                                                          │

02:09:19 #19574 [Debug] > │ </text>                                                                      │

02:09:19 #19575 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19576 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:19 #19577 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19578 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19579 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19580 [Debug] > │ 0.4                                                                          │

02:09:19 #19581 [Debug] > │ </text>                                                                      │

02:09:19 #19582 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19583 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:19 #19584 [Debug] > │ <text x="452" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19585 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19586 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19587 [Debug] > │ 0.5                                                                          │

02:09:19 #19588 [Debug] > │ </text>                                                                      │

02:09:19 #19589 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19590 [Debug] > │ points="452,69 452,74 "/>                                                    │

02:09:19 #19591 [Debug] > │ <text x="490" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19592 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19593 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19594 [Debug] > │ 0.5                                                                          │

02:09:19 #19595 [Debug] > │ </text>                                                                      │

02:09:19 #19596 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19597 [Debug] > │ points="490,69 490,74 "/>                                                    │

02:09:19 #19598 [Debug] > │ <text x="528" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19599 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19600 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19601 [Debug] > │ 0.6                                                                          │

02:09:19 #19602 [Debug] > │ </text>                                                                      │

02:09:19 #19603 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19604 [Debug] > │ points="528,69 528,74 "/>                                                    │

02:09:19 #19605 [Debug] > │ <text x="566" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #19606 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19607 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19608 [Debug] > │ 0.7                                                                          │

02:09:19 #19609 [Debug] > │ </text>                                                                      │

02:09:19 #19610 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19611 [Debug] > │ points="566,69 566,74 "/>                                                    │

02:09:19 #19612 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19613 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:19 #19614 [Debug] > │ <text x="45" y="415" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19615 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19616 [Debug] > │ -0.0                                                                         │

02:09:19 #19617 [Debug] > │ </text>                                                                      │

02:09:19 #19618 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19619 [Debug] > │ points="49,415 54,415 "/>                                                    │

02:09:19 #19620 [Debug] > │ <text x="45" y="376" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19621 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19622 [Debug] > │ -0.0                                                                         │

02:09:19 #19623 [Debug] > │ </text>                                                                      │

02:09:19 #19624 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19625 [Debug] > │ points="49,376 54,376 "/>                                                    │

02:09:19 #19626 [Debug] > │ <text x="45" y="338" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19627 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19628 [Debug] > │ -0.0                                                                         │

02:09:19 #19629 [Debug] > │ </text>                                                                      │

02:09:19 #19630 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19631 [Debug] > │ points="49,338 54,338 "/>                                                    │

02:09:19 #19632 [Debug] > │ <text x="45" y="299" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19633 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19634 [Debug] > │ -0.0                                                                         │

02:09:19 #19635 [Debug] > │ </text>                                                                      │

02:09:19 #19636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19637 [Debug] > │ points="49,299 54,299 "/>                                                    │

02:09:19 #19638 [Debug] > │ <text x="45" y="260" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19639 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19640 [Debug] > │ 0.0                                                                          │

02:09:19 #19641 [Debug] > │ </text>                                                                      │

02:09:19 #19642 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19643 [Debug] > │ points="49,260 54,260 "/>                                                    │

02:09:19 #19644 [Debug] > │ <text x="45" y="222" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19645 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19646 [Debug] > │ 0.0                                                                          │

02:09:19 #19647 [Debug] > │ </text>                                                                      │

02:09:19 #19648 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19649 [Debug] > │ points="49,222 54,222 "/>                                                    │

02:09:19 #19650 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19651 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19652 [Debug] > │ 0.0                                                                          │

02:09:19 #19653 [Debug] > │ </text>                                                                      │

02:09:19 #19654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19655 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:19 #19656 [Debug] > │ <text x="45" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19657 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19658 [Debug] > │ 0.0                                                                          │

02:09:19 #19659 [Debug] > │ </text>                                                                      │

02:09:19 #19660 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19661 [Debug] > │ points="49,145 54,145 "/>                                                    │

02:09:19 #19662 [Debug] > │ <text x="45" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #19663 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19664 [Debug] > │ 0.0                                                                          │

02:09:19 #19665 [Debug] > │ </text>                                                                      │

02:09:19 #19666 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19667 [Debug] > │ points="49,106 54,106 "/>                                                    │

02:09:19 #19668 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19669 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:19 #19670 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:19 #19671 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19672 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19673 [Debug] > │ 0.0                                                                          │

02:09:19 #19674 [Debug] > │ </text>                                                                      │

02:09:19 #19675 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19676 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:19 #19677 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19678 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19679 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19680 [Debug] > │ 0.1                                                                          │

02:09:19 #19681 [Debug] > │ </text>                                                                      │

02:09:19 #19682 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19683 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:19 #19684 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19686 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19687 [Debug] > │ 0.1                                                                          │

02:09:19 #19688 [Debug] > │ </text>                                                                      │

02:09:19 #19689 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19690 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:19 #19691 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19692 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19693 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19694 [Debug] > │ 0.2                                                                          │

02:09:19 #19695 [Debug] > │ </text>                                                                      │

02:09:19 #19696 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19697 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:19 #19698 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19699 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19700 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19701 [Debug] > │ 0.2                                                                          │

02:09:19 #19702 [Debug] > │ </text>                                                                      │

02:09:19 #19703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19704 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:19 #19705 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19706 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19707 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19708 [Debug] > │ 0.2                                                                          │

02:09:19 #19709 [Debug] > │ </text>                                                                      │

02:09:19 #19710 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19711 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:19 #19712 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19713 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19714 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19715 [Debug] > │ 0.3                                                                          │

02:09:19 #19716 [Debug] > │ </text>                                                                      │

02:09:19 #19717 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19718 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:19 #19719 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19720 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19721 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19722 [Debug] > │ 0.3                                                                          │

02:09:19 #19723 [Debug] > │ </text>                                                                      │

02:09:19 #19724 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19725 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:19 #19726 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19727 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19728 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19729 [Debug] > │ 0.4                                                                          │

02:09:19 #19730 [Debug] > │ </text>                                                                      │

02:09:19 #19731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19732 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:19 #19733 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19734 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19735 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19736 [Debug] > │ 0.4                                                                          │

02:09:19 #19737 [Debug] > │ </text>                                                                      │

02:09:19 #19738 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19739 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:19 #19740 [Debug] > │ <text x="452" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19741 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19742 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19743 [Debug] > │ 0.5                                                                          │

02:09:19 #19744 [Debug] > │ </text>                                                                      │

02:09:19 #19745 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19746 [Debug] > │ points="452,425 452,430 "/>                                                  │

02:09:19 #19747 [Debug] > │ <text x="490" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19748 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19749 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19750 [Debug] > │ 0.5                                                                          │

02:09:19 #19751 [Debug] > │ </text>                                                                      │

02:09:19 #19752 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19753 [Debug] > │ points="490,425 490,430 "/>                                                  │

02:09:19 #19754 [Debug] > │ <text x="528" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19755 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19756 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19757 [Debug] > │ 0.6                                                                          │

02:09:19 #19758 [Debug] > │ </text>                                                                      │

02:09:19 #19759 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19760 [Debug] > │ points="528,425 528,430 "/>                                                  │

02:09:19 #19761 [Debug] > │ <text x="566" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #19762 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19763 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19764 [Debug] > │ 0.7                                                                          │

02:09:19 #19765 [Debug] > │ </text>                                                                      │

02:09:19 #19766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19767 [Debug] > │ points="566,425 566,430 "/>                                                  │

02:09:19 #19768 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19769 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:19 #19770 [Debug] > │ <text x="595" y="415" dy="0.5ex" text-anchor="start"                         │

02:09:19 #19771 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19772 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19773 [Debug] > │ -0.0                                                                         │

02:09:19 #19774 [Debug] > │ </text>                                                                      │

02:09:19 #19775 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19776 [Debug] > │ points="585,415 590,415 "/>                                                  │

02:09:19 #19777 [Debug] > │ <text x="595" y="376" dy="0.5ex" text-anchor="start"                         │

02:09:19 #19778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19779 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19780 [Debug] > │ -0.0                                                                         │

02:09:19 #19781 [Debug] > │ </text>                                                                      │

02:09:19 #19782 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19783 [Debug] > │ points="585,376 590,376 "/>                                                  │

02:09:19 #19784 [Debug] > │ <text x="595" y="338" dy="0.5ex" text-anchor="start"                         │

02:09:19 #19785 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19786 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19787 [Debug] > │ -0.0                                                                         │

02:09:19 #19788 [Debug] > │ </text>                                                                      │

02:09:19 #19789 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19790 [Debug] > │ points="585,338 590,338 "/>                                                  │

02:09:19 #19791 [Debug] > │ <text x="595" y="299" dy="0.5ex" text-anchor="start"                         │

02:09:19 #19792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19793 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19794 [Debug] > │ -0.0                                                                         │

02:09:19 #19795 [Debug] > │ </text>                                                                      │

02:09:19 #19796 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19797 [Debug] > │ points="585,299 590,299 "/>                                                  │

02:09:19 #19798 [Debug] > │ <text x="617" y="260" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #19799 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19800 [Debug] > │ 0.0                                                                          │

02:09:19 #19801 [Debug] > │ </text>                                                                      │

02:09:19 #19802 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19803 [Debug] > │ points="585,260 590,260 "/>                                                  │

02:09:19 #19804 [Debug] > │ <text x="617" y="222" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #19805 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19806 [Debug] > │ 0.0                                                                          │

02:09:19 #19807 [Debug] > │ </text>                                                                      │

02:09:19 #19808 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19809 [Debug] > │ points="585,222 590,222 "/>                                                  │

02:09:19 #19810 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #19811 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19812 [Debug] > │ 0.0                                                                          │

02:09:19 #19813 [Debug] > │ </text>                                                                      │

02:09:19 #19814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19815 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:19 #19816 [Debug] > │ <text x="617" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #19817 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19818 [Debug] > │ 0.0                                                                          │

02:09:19 #19819 [Debug] > │ </text>                                                                      │

02:09:19 #19820 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19821 [Debug] > │ points="585,145 590,145 "/>                                                  │

02:09:19 #19822 [Debug] > │ <text x="617" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #19823 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #19824 [Debug] > │ 0.0                                                                          │

02:09:19 #19825 [Debug] > │ </text>                                                                      │

02:09:19 #19826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #19827 [Debug] > │ points="585,106 590,106 "/>                                                  │

02:09:19 #19828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #19829 [Debug] > │ points="69,260 77,238 85,216 92,195 100,176 108,158 115,142 123,129 131,119  │

02:09:19 #19830 [Debug] > │ 138,111 146,107 154,106 161,108 169,113 176,122 184,133 192,147 199,164      │

02:09:19 #19831 [Debug] > │ 207,182 215,202 222,223 230,246 238,268 245,290 253,312 261,332 268,351      │

02:09:19 #19832 [Debug] > │ 276,368 284,383 291,396 299,405 306,411 314,415 322,415 329,411 337,405      │

02:09:19 #19833 [Debug] > │ 345,396 352,383 360,368 368,351 375,332 383,312 391,290 398,268 406,246      │

02:09:19 #19834 [Debug] > │ 413,223 421,202 429,182 436,164 444,147 452,133 459,122 467,113 475,108      │

02:09:19 #19835 [Debug] > │ 482,106 490,107 497,111 504,114 507,110 506,97 505,88 506,85 543,179 551,205 │

02:09:19 #19836 [Debug] > │ 569,268 566,260 "/>                                                          │

02:09:19 #19837 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:19 #19838 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:19 #19839 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:19 #19840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19842 [Debug] > │ 7                                                                            │

02:09:19 #19843 [Debug] > │ </text>                                                                      │

02:09:19 #19844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #19845 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:19 #19846 [Debug] > │ </svg>                                                                       │

02:09:19 #19847 [Debug] > │ </td></tr><tr><td>8</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:19 #19848 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:19 #19849 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:19 #19850 [Debug] > │ stroke="none"/>                                                              │

02:09:19 #19851 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:19 #19852 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #19853 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #19854 [Debug] > │ wave                                                                         │

02:09:19 #19855 [Debug] > │ </text>                                                                      │

02:09:19 #19856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:19 #19857 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #19858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #19859 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #19860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:19 #19861 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #19862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:19 #19863 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #19864 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:19 #19865 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #19866 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:19 #19867 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:19 #19868 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:19 #19869 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #19870 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:19 #19871 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:19 #19872 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:19 #19873 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:19 #19874 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:19 #19875 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:19 #19876 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:19 #19877 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:19 #19878 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:19 #19879 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #19880 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:19 #19881 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:19 #19882 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:19 #19883 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:19 #19884 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:19 #19885 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:19 #19886 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:19 #19887 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:19 #19888 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:19 #19889 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #19890 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:19 #19891 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:19 #19892 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:19 #19893 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:19 #19894 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:19 #19895 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:19 #19896 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:19 #19897 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:19 #19898 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:19 #19899 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #19900 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:19 #19901 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:19 #19902 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:19 #19903 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:19 #19904 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:19 #19905 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:19 #19906 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:19 #19907 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:19 #19908 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:19 #19909 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #19910 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:19 #19911 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:19 #19912 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:19 #19913 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:19 #19914 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:19 #19915 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:19 #19916 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:19 #19917 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:19 #19918 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:19 #19919 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #19920 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:19 #19921 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:19 #19922 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:19 #19923 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:19 #19924 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:19 #19925 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:19 #19926 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:19 #19927 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:19 #19928 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:19 #19929 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #19930 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:19 #19931 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:19 #19932 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:19 #19933 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:19 #19934 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:19 #19935 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:19 #19936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:19 #19937 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:19 #19938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:19 #19939 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #19940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:19 #19941 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:19 #19942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:19 #19943 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:19 #19944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:19 #19945 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:19 #19946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:19 #19947 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:19 #19948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:19 #19949 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #19950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:19 #19951 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:19 #19952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:19 #19953 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:19 #19954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:19 #19955 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:19 #19956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:19 #19957 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:19 #19958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:19 #19959 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #19960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:19 #19961 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:19 #19962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:19 #19963 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:19 #19964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:19 #19965 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:19 #19966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:19 #19967 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:19 #19968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:19 #19969 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #19970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:19 #19971 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:19 #19972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:19 #19973 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:19 #19974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:19 #19975 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:19 #19976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:19 #19977 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:19 #19978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:19 #19979 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #19980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:19 #19981 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:19 #19982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:19 #19983 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:19 #19984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:19 #19985 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:19 #19986 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:19 #19987 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:19 #19988 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:19 #19989 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #19990 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="407"         │

02:09:19 #19991 [Debug] > │ x2="584" y2="407"/>                                                          │

02:09:19 #19992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:19 #19993 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:19 #19994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:09:19 #19995 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:19 #19996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:19 #19997 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:19 #19998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:09:19 #19999 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:19 #20000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:19 #20001 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:19 #20002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:19 #20003 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:19 #20004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:19 #20005 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:19 #20006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:19 #20007 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:19 #20008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:09:19 #20009 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:19 #20010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:09:19 #20011 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:19 #20012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="191"         │

02:09:19 #20013 [Debug] > │ x2="584" y2="191"/>                                                          │

02:09:19 #20014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="172"         │

02:09:19 #20015 [Debug] > │ x2="584" y2="172"/>                                                          │

02:09:19 #20016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:09:19 #20017 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:19 #20018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:19 #20019 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:19 #20020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="113"         │

02:09:19 #20021 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:19 #20022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:19 #20023 [Debug] > │ y2="94"/>                                                                    │

02:09:19 #20024 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:19 #20025 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20026 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20027 [Debug] > │ position (m)                                                                 │

02:09:19 #20028 [Debug] > │ </text>                                                                      │

02:09:19 #20029 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:19 #20030 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20031 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:19 #20032 [Debug] > │ displacement (m)                                                             │

02:09:19 #20033 [Debug] > │ </text>                                                                      │

02:09:19 #20034 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:19 #20035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20037 [Debug] > │ position (m)                                                                 │

02:09:19 #20038 [Debug] > │ </text>                                                                      │

02:09:19 #20039 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20040 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20041 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:19 #20042 [Debug] > │ displacement (m)                                                             │

02:09:19 #20043 [Debug] > │ </text>                                                                      │

02:09:19 #20044 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #20045 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20046 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:19 #20047 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #20048 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:19 #20049 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #20050 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:19 #20051 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #20052 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:19 #20053 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #20054 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:19 #20055 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #20056 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:19 #20057 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #20058 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:19 #20059 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #20060 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:19 #20061 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #20062 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:19 #20063 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #20064 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:19 #20065 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #20066 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:19 #20067 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #20068 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:19 #20069 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #20070 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:19 #20071 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #20072 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="387"         │

02:09:19 #20073 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:19 #20074 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="348"         │

02:09:19 #20075 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:19 #20076 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="309"         │

02:09:19 #20077 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:19 #20078 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="270"         │

02:09:19 #20079 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:19 #20080 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="231"         │

02:09:19 #20081 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:19 #20082 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="191"         │

02:09:19 #20083 [Debug] > │ x2="584" y2="191"/>                                                          │

02:09:19 #20084 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="152"         │

02:09:19 #20085 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:19 #20086 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="113"         │

02:09:19 #20087 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:19 #20088 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20089 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:19 #20090 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:19 #20091 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20092 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20093 [Debug] > │ 0.0                                                                          │

02:09:19 #20094 [Debug] > │ </text>                                                                      │

02:09:19 #20095 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20096 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:19 #20097 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20100 [Debug] > │ 0.1                                                                          │

02:09:19 #20101 [Debug] > │ </text>                                                                      │

02:09:19 #20102 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20103 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:19 #20104 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20105 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20106 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20107 [Debug] > │ 0.1                                                                          │

02:09:19 #20108 [Debug] > │ </text>                                                                      │

02:09:19 #20109 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20110 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:19 #20111 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20112 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20113 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20114 [Debug] > │ 0.2                                                                          │

02:09:19 #20115 [Debug] > │ </text>                                                                      │

02:09:19 #20116 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20117 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:19 #20118 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20119 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20120 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20121 [Debug] > │ 0.2                                                                          │

02:09:19 #20122 [Debug] > │ </text>                                                                      │

02:09:19 #20123 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20124 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:19 #20125 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20126 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20127 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20128 [Debug] > │ 0.2                                                                          │

02:09:19 #20129 [Debug] > │ </text>                                                                      │

02:09:19 #20130 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20131 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:19 #20132 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20133 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20134 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20135 [Debug] > │ 0.3                                                                          │

02:09:19 #20136 [Debug] > │ </text>                                                                      │

02:09:19 #20137 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20138 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:19 #20139 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20140 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20141 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20142 [Debug] > │ 0.3                                                                          │

02:09:19 #20143 [Debug] > │ </text>                                                                      │

02:09:19 #20144 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20145 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:19 #20146 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20147 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20148 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20149 [Debug] > │ 0.4                                                                          │

02:09:19 #20150 [Debug] > │ </text>                                                                      │

02:09:19 #20151 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20152 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:19 #20153 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20154 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20155 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20156 [Debug] > │ 0.4                                                                          │

02:09:19 #20157 [Debug] > │ </text>                                                                      │

02:09:19 #20158 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20159 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:19 #20160 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20161 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20162 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20163 [Debug] > │ 0.5                                                                          │

02:09:19 #20164 [Debug] > │ </text>                                                                      │

02:09:19 #20165 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20166 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:19 #20167 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20168 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20169 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20170 [Debug] > │ 0.5                                                                          │

02:09:19 #20171 [Debug] > │ </text>                                                                      │

02:09:19 #20172 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20173 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:19 #20174 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20175 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20176 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20177 [Debug] > │ 0.6                                                                          │

02:09:19 #20178 [Debug] > │ </text>                                                                      │

02:09:19 #20179 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20180 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:19 #20181 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20182 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20183 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20184 [Debug] > │ 0.7                                                                          │

02:09:19 #20185 [Debug] > │ </text>                                                                      │

02:09:19 #20186 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20187 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:19 #20188 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20189 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:19 #20190 [Debug] > │ <text x="45" y="387" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20191 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20192 [Debug] > │ -0.0                                                                         │

02:09:19 #20193 [Debug] > │ </text>                                                                      │

02:09:19 #20194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20195 [Debug] > │ points="49,387 54,387 "/>                                                    │

02:09:19 #20196 [Debug] > │ <text x="45" y="348" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20197 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20198 [Debug] > │ -0.0                                                                         │

02:09:19 #20199 [Debug] > │ </text>                                                                      │

02:09:19 #20200 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20201 [Debug] > │ points="49,348 54,348 "/>                                                    │

02:09:19 #20202 [Debug] > │ <text x="45" y="309" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20203 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20204 [Debug] > │ -0.0                                                                         │

02:09:19 #20205 [Debug] > │ </text>                                                                      │

02:09:19 #20206 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20207 [Debug] > │ points="49,309 54,309 "/>                                                    │

02:09:19 #20208 [Debug] > │ <text x="45" y="270" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20209 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20210 [Debug] > │ 0.0                                                                          │

02:09:19 #20211 [Debug] > │ </text>                                                                      │

02:09:19 #20212 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20213 [Debug] > │ points="49,270 54,270 "/>                                                    │

02:09:19 #20214 [Debug] > │ <text x="45" y="231" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20215 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20216 [Debug] > │ 0.0                                                                          │

02:09:19 #20217 [Debug] > │ </text>                                                                      │

02:09:19 #20218 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20219 [Debug] > │ points="49,231 54,231 "/>                                                    │

02:09:19 #20220 [Debug] > │ <text x="45" y="191" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20221 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20222 [Debug] > │ 0.0                                                                          │

02:09:19 #20223 [Debug] > │ </text>                                                                      │

02:09:19 #20224 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20225 [Debug] > │ points="49,191 54,191 "/>                                                    │

02:09:19 #20226 [Debug] > │ <text x="45" y="152" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20227 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20228 [Debug] > │ 0.0                                                                          │

02:09:19 #20229 [Debug] > │ </text>                                                                      │

02:09:19 #20230 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20231 [Debug] > │ points="49,152 54,152 "/>                                                    │

02:09:19 #20232 [Debug] > │ <text x="45" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20233 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20234 [Debug] > │ 0.0                                                                          │

02:09:19 #20235 [Debug] > │ </text>                                                                      │

02:09:19 #20236 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20237 [Debug] > │ points="49,113 54,113 "/>                                                    │

02:09:19 #20238 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20239 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:19 #20240 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:19 #20241 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20242 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20243 [Debug] > │ 0.0                                                                          │

02:09:19 #20244 [Debug] > │ </text>                                                                      │

02:09:19 #20245 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20246 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:19 #20247 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20248 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20249 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20250 [Debug] > │ 0.1                                                                          │

02:09:19 #20251 [Debug] > │ </text>                                                                      │

02:09:19 #20252 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20253 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:19 #20254 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20255 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20256 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20257 [Debug] > │ 0.1                                                                          │

02:09:19 #20258 [Debug] > │ </text>                                                                      │

02:09:19 #20259 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20260 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:19 #20261 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20262 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20263 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20264 [Debug] > │ 0.2                                                                          │

02:09:19 #20265 [Debug] > │ </text>                                                                      │

02:09:19 #20266 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20267 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:19 #20268 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20269 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20270 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20271 [Debug] > │ 0.2                                                                          │

02:09:19 #20272 [Debug] > │ </text>                                                                      │

02:09:19 #20273 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20274 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:19 #20275 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20277 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20278 [Debug] > │ 0.2                                                                          │

02:09:19 #20279 [Debug] > │ </text>                                                                      │

02:09:19 #20280 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20281 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:19 #20282 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20283 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20284 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20285 [Debug] > │ 0.3                                                                          │

02:09:19 #20286 [Debug] > │ </text>                                                                      │

02:09:19 #20287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20288 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:19 #20289 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20290 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20291 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20292 [Debug] > │ 0.3                                                                          │

02:09:19 #20293 [Debug] > │ </text>                                                                      │

02:09:19 #20294 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20295 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:19 #20296 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20297 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20298 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20299 [Debug] > │ 0.4                                                                          │

02:09:19 #20300 [Debug] > │ </text>                                                                      │

02:09:19 #20301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20302 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:19 #20303 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20304 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20305 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20306 [Debug] > │ 0.4                                                                          │

02:09:19 #20307 [Debug] > │ </text>                                                                      │

02:09:19 #20308 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20309 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:19 #20310 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20311 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20312 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20313 [Debug] > │ 0.5                                                                          │

02:09:19 #20314 [Debug] > │ </text>                                                                      │

02:09:19 #20315 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20316 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:19 #20317 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20318 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20319 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20320 [Debug] > │ 0.5                                                                          │

02:09:19 #20321 [Debug] > │ </text>                                                                      │

02:09:19 #20322 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20323 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:19 #20324 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20325 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20326 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20327 [Debug] > │ 0.6                                                                          │

02:09:19 #20328 [Debug] > │ </text>                                                                      │

02:09:19 #20329 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20330 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:19 #20331 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20332 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20333 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20334 [Debug] > │ 0.7                                                                          │

02:09:19 #20335 [Debug] > │ </text>                                                                      │

02:09:19 #20336 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20337 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:19 #20338 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20339 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:19 #20340 [Debug] > │ <text x="595" y="387" dy="0.5ex" text-anchor="start"                         │

02:09:19 #20341 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20342 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20343 [Debug] > │ -0.0                                                                         │

02:09:19 #20344 [Debug] > │ </text>                                                                      │

02:09:19 #20345 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20346 [Debug] > │ points="585,387 590,387 "/>                                                  │

02:09:19 #20347 [Debug] > │ <text x="595" y="348" dy="0.5ex" text-anchor="start"                         │

02:09:19 #20348 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20349 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20350 [Debug] > │ -0.0                                                                         │

02:09:19 #20351 [Debug] > │ </text>                                                                      │

02:09:19 #20352 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20353 [Debug] > │ points="585,348 590,348 "/>                                                  │

02:09:19 #20354 [Debug] > │ <text x="595" y="309" dy="0.5ex" text-anchor="start"                         │

02:09:19 #20355 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20356 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20357 [Debug] > │ -0.0                                                                         │

02:09:19 #20358 [Debug] > │ </text>                                                                      │

02:09:19 #20359 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20360 [Debug] > │ points="585,309 590,309 "/>                                                  │

02:09:19 #20361 [Debug] > │ <text x="617" y="270" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20362 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20363 [Debug] > │ 0.0                                                                          │

02:09:19 #20364 [Debug] > │ </text>                                                                      │

02:09:19 #20365 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20366 [Debug] > │ points="585,270 590,270 "/>                                                  │

02:09:19 #20367 [Debug] > │ <text x="617" y="231" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20368 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20369 [Debug] > │ 0.0                                                                          │

02:09:19 #20370 [Debug] > │ </text>                                                                      │

02:09:19 #20371 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20372 [Debug] > │ points="585,231 590,231 "/>                                                  │

02:09:19 #20373 [Debug] > │ <text x="617" y="191" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20374 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20375 [Debug] > │ 0.0                                                                          │

02:09:19 #20376 [Debug] > │ </text>                                                                      │

02:09:19 #20377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20378 [Debug] > │ points="585,191 590,191 "/>                                                  │

02:09:19 #20379 [Debug] > │ <text x="617" y="152" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20380 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20381 [Debug] > │ 0.0                                                                          │

02:09:19 #20382 [Debug] > │ </text>                                                                      │

02:09:19 #20383 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20384 [Debug] > │ points="585,152 590,152 "/>                                                  │

02:09:19 #20385 [Debug] > │ <text x="617" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20386 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20387 [Debug] > │ 0.0                                                                          │

02:09:19 #20388 [Debug] > │ </text>                                                                      │

02:09:19 #20389 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20390 [Debug] > │ points="585,113 590,113 "/>                                                  │

02:09:19 #20391 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #20392 [Debug] > │ points="69,270 77,249 85,228 93,208 100,190 108,173 116,159 123,146 131,136  │

02:09:19 #20393 [Debug] > │ 139,129 146,125 154,124 162,126 169,131 177,139 185,150 192,163 200,179      │

02:09:19 #20394 [Debug] > │ 208,196 215,215 223,235 231,256 238,277 246,298 254,318 261,337 269,355      │

02:09:19 #20395 [Debug] > │ 277,371 284,385 292,397 300,406 307,412 315,415 323,415 331,412 338,406      │

02:09:19 #20396 [Debug] > │ 346,397 354,385 361,371 369,355 377,337 384,318 392,298 400,277 407,256      │

02:09:19 #20397 [Debug] > │ 415,235 423,215 430,196 438,179 446,163 453,150 461,139 469,131 476,126      │

02:09:19 #20398 [Debug] > │ 484,124 492,125 499,126 503,124 504,111 502,96 503,89 503,85 545,187 553,214 │

02:09:19 #20399 [Debug] > │ 566,260 569,270 "/>                                                          │

02:09:19 #20400 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:19 #20401 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:19 #20402 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:19 #20403 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20404 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20405 [Debug] > │ 8                                                                            │

02:09:19 #20406 [Debug] > │ </text>                                                                      │

02:09:19 #20407 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #20408 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:19 #20409 [Debug] > │ </svg>                                                                       │

02:09:19 #20410 [Debug] > │ </td></tr><tr><td>9</td><td><svg width="640" height="480" viewBox="0 0 640   │

02:09:19 #20411 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:19 #20412 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:19 #20413 [Debug] > │ stroke="none"/>                                                              │

02:09:19 #20414 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:19 #20415 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20416 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20417 [Debug] > │ wave                                                                         │

02:09:19 #20418 [Debug] > │ </text>                                                                      │

02:09:19 #20419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:19 #20420 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #20422 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:19 #20424 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:19 #20426 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:19 #20428 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:19 #20430 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:19 #20431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:19 #20432 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #20433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:19 #20434 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:19 #20435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:19 #20436 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:19 #20437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:19 #20438 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:19 #20439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:19 #20440 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:19 #20441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:19 #20442 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #20443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:19 #20444 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:19 #20445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:19 #20446 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:19 #20447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:19 #20448 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:19 #20449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:19 #20450 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:19 #20451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:19 #20452 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #20453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:19 #20454 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:19 #20455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:19 #20456 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:19 #20457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:19 #20458 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:19 #20459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:19 #20460 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:19 #20461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:19 #20462 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #20463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:19 #20464 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:19 #20465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:19 #20466 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:19 #20467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:19 #20468 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:19 #20469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:19 #20470 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:19 #20471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:19 #20472 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #20473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:19 #20474 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:19 #20475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:19 #20476 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:19 #20477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:19 #20478 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:19 #20479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:19 #20480 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:19 #20481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:19 #20482 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #20483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:19 #20484 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:19 #20485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:19 #20486 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:19 #20487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:19 #20488 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:19 #20489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:19 #20490 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:19 #20491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:19 #20492 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #20493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:19 #20494 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:19 #20495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:19 #20496 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:19 #20497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:19 #20498 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:19 #20499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:19 #20500 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:19 #20501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:19 #20502 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #20503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:19 #20504 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:19 #20505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:19 #20506 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:19 #20507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:19 #20508 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:19 #20509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:19 #20510 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:19 #20511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:19 #20512 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #20513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:19 #20514 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:19 #20515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:19 #20516 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:19 #20517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:19 #20518 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:19 #20519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:19 #20520 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:19 #20521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:19 #20522 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #20523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:19 #20524 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:19 #20525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:19 #20526 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:19 #20527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:19 #20528 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:19 #20529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:19 #20530 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:19 #20531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:19 #20532 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #20533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:19 #20534 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:19 #20535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:19 #20536 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:19 #20537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:19 #20538 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:19 #20539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:19 #20540 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:19 #20541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:19 #20542 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #20543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:19 #20544 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:19 #20545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:19 #20546 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:19 #20547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:19 #20548 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:19 #20549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:19 #20550 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:19 #20551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:19 #20552 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #20553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="419"         │

02:09:19 #20554 [Debug] > │ x2="584" y2="419"/>                                                          │

02:09:19 #20555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:19 #20556 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:19 #20557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:19 #20558 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:19 #20559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="359"         │

02:09:19 #20560 [Debug] > │ x2="584" y2="359"/>                                                          │

02:09:19 #20561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:19 #20562 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:19 #20563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:19 #20564 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:19 #20565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:19 #20566 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:19 #20567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="279"         │

02:09:19 #20568 [Debug] > │ x2="584" y2="279"/>                                                          │

02:09:19 #20569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="259"         │

02:09:19 #20570 [Debug] > │ x2="584" y2="259"/>                                                          │

02:09:19 #20571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="239"         │

02:09:19 #20572 [Debug] > │ x2="584" y2="239"/>                                                          │

02:09:19 #20573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="219"         │

02:09:19 #20574 [Debug] > │ x2="584" y2="219"/>                                                          │

02:09:19 #20575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:09:19 #20576 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:19 #20577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="179"         │

02:09:19 #20578 [Debug] > │ x2="584" y2="179"/>                                                          │

02:09:19 #20579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:09:19 #20580 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:19 #20581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="139"         │

02:09:19 #20582 [Debug] > │ x2="584" y2="139"/>                                                          │

02:09:19 #20583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:09:19 #20584 [Debug] > │ x2="584" y2="119"/>                                                          │

02:09:19 #20585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:19 #20586 [Debug] > │ y2="99"/>                                                                    │

02:09:19 #20587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:19 #20588 [Debug] > │ y2="79"/>                                                                    │

02:09:19 #20589 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:19 #20590 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20591 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20592 [Debug] > │ position (m)                                                                 │

02:09:19 #20593 [Debug] > │ </text>                                                                      │

02:09:19 #20594 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:19 #20595 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20596 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:19 #20597 [Debug] > │ displacement (m)                                                             │

02:09:19 #20598 [Debug] > │ </text>                                                                      │

02:09:19 #20599 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:19 #20600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20601 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20602 [Debug] > │ position (m)                                                                 │

02:09:19 #20603 [Debug] > │ </text>                                                                      │

02:09:19 #20604 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20605 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20606 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:19 #20607 [Debug] > │ displacement (m)                                                             │

02:09:19 #20608 [Debug] > │ </text>                                                                      │

02:09:19 #20609 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #20610 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #20611 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:19 #20612 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #20613 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:19 #20614 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #20615 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:19 #20616 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #20617 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:19 #20618 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #20619 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:19 #20620 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #20621 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:19 #20622 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #20623 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:19 #20624 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #20625 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:19 #20626 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #20627 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:19 #20628 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #20629 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:19 #20630 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #20631 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:19 #20632 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #20633 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:19 #20634 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #20635 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:19 #20636 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #20637 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="399"         │

02:09:19 #20638 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:19 #20639 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="359"         │

02:09:19 #20640 [Debug] > │ x2="584" y2="359"/>                                                          │

02:09:19 #20641 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:09:19 #20642 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:19 #20643 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="279"         │

02:09:19 #20644 [Debug] > │ x2="584" y2="279"/>                                                          │

02:09:19 #20645 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="239"         │

02:09:19 #20646 [Debug] > │ x2="584" y2="239"/>                                                          │

02:09:19 #20647 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="199"         │

02:09:19 #20648 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:19 #20649 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="159"         │

02:09:19 #20650 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:19 #20651 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="119"         │

02:09:19 #20652 [Debug] > │ x2="584" y2="119"/>                                                          │

02:09:19 #20653 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:19 #20654 [Debug] > │ y2="79"/>                                                                    │

02:09:19 #20655 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20656 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:19 #20657 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:19 #20658 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20659 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20660 [Debug] > │ 0.0                                                                          │

02:09:19 #20661 [Debug] > │ </text>                                                                      │

02:09:19 #20662 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20663 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:19 #20664 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20665 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20666 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20667 [Debug] > │ 0.1                                                                          │

02:09:19 #20668 [Debug] > │ </text>                                                                      │

02:09:19 #20669 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20670 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:19 #20671 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20672 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20673 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20674 [Debug] > │ 0.1                                                                          │

02:09:19 #20675 [Debug] > │ </text>                                                                      │

02:09:19 #20676 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20677 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:19 #20678 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20679 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20680 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20681 [Debug] > │ 0.2                                                                          │

02:09:19 #20682 [Debug] > │ </text>                                                                      │

02:09:19 #20683 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20684 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:19 #20685 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20686 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20687 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20688 [Debug] > │ 0.2                                                                          │

02:09:19 #20689 [Debug] > │ </text>                                                                      │

02:09:19 #20690 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20691 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:19 #20692 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20693 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20694 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20695 [Debug] > │ 0.2                                                                          │

02:09:19 #20696 [Debug] > │ </text>                                                                      │

02:09:19 #20697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20698 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:19 #20699 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20700 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20701 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20702 [Debug] > │ 0.3                                                                          │

02:09:19 #20703 [Debug] > │ </text>                                                                      │

02:09:19 #20704 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20705 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:19 #20706 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20707 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20708 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20709 [Debug] > │ 0.3                                                                          │

02:09:19 #20710 [Debug] > │ </text>                                                                      │

02:09:19 #20711 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20712 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:19 #20713 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20714 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20715 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20716 [Debug] > │ 0.4                                                                          │

02:09:19 #20717 [Debug] > │ </text>                                                                      │

02:09:19 #20718 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20719 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:19 #20720 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20721 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20722 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20723 [Debug] > │ 0.4                                                                          │

02:09:19 #20724 [Debug] > │ </text>                                                                      │

02:09:19 #20725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20726 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:19 #20727 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20728 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20729 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20730 [Debug] > │ 0.5                                                                          │

02:09:19 #20731 [Debug] > │ </text>                                                                      │

02:09:19 #20732 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20733 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:19 #20734 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20735 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20736 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20737 [Debug] > │ 0.5                                                                          │

02:09:19 #20738 [Debug] > │ </text>                                                                      │

02:09:19 #20739 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20740 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:19 #20741 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20742 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20743 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20744 [Debug] > │ 0.6                                                                          │

02:09:19 #20745 [Debug] > │ </text>                                                                      │

02:09:19 #20746 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20747 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:19 #20748 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #20749 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20750 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20751 [Debug] > │ 0.7                                                                          │

02:09:19 #20752 [Debug] > │ </text>                                                                      │

02:09:19 #20753 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20754 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:19 #20755 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20756 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:19 #20757 [Debug] > │ <text x="45" y="399" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20758 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20759 [Debug] > │ -0.0                                                                         │

02:09:19 #20760 [Debug] > │ </text>                                                                      │

02:09:19 #20761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20762 [Debug] > │ points="49,399 54,399 "/>                                                    │

02:09:19 #20763 [Debug] > │ <text x="45" y="359" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20764 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20765 [Debug] > │ -0.0                                                                         │

02:09:19 #20766 [Debug] > │ </text>                                                                      │

02:09:19 #20767 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20768 [Debug] > │ points="49,359 54,359 "/>                                                    │

02:09:19 #20769 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20770 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20771 [Debug] > │ -0.0                                                                         │

02:09:19 #20772 [Debug] > │ </text>                                                                      │

02:09:19 #20773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20774 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:09:19 #20775 [Debug] > │ <text x="45" y="279" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20776 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20777 [Debug] > │ 0.0                                                                          │

02:09:19 #20778 [Debug] > │ </text>                                                                      │

02:09:19 #20779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20780 [Debug] > │ points="49,279 54,279 "/>                                                    │

02:09:19 #20781 [Debug] > │ <text x="45" y="239" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20782 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20783 [Debug] > │ 0.0                                                                          │

02:09:19 #20784 [Debug] > │ </text>                                                                      │

02:09:19 #20785 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20786 [Debug] > │ points="49,239 54,239 "/>                                                    │

02:09:19 #20787 [Debug] > │ <text x="45" y="199" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20788 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20789 [Debug] > │ 0.0                                                                          │

02:09:19 #20790 [Debug] > │ </text>                                                                      │

02:09:19 #20791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20792 [Debug] > │ points="49,199 54,199 "/>                                                    │

02:09:19 #20793 [Debug] > │ <text x="45" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20794 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20795 [Debug] > │ 0.0                                                                          │

02:09:19 #20796 [Debug] > │ </text>                                                                      │

02:09:19 #20797 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20798 [Debug] > │ points="49,159 54,159 "/>                                                    │

02:09:19 #20799 [Debug] > │ <text x="45" y="119" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20800 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20801 [Debug] > │ 0.0                                                                          │

02:09:19 #20802 [Debug] > │ </text>                                                                      │

02:09:19 #20803 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20804 [Debug] > │ points="49,119 54,119 "/>                                                    │

02:09:19 #20805 [Debug] > │ <text x="45" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:19 #20806 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20807 [Debug] > │ 0.0                                                                          │

02:09:19 #20808 [Debug] > │ </text>                                                                      │

02:09:19 #20809 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20810 [Debug] > │ points="49,79 54,79 "/>                                                      │

02:09:19 #20811 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20812 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:19 #20813 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:19 #20814 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20815 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20816 [Debug] > │ 0.0                                                                          │

02:09:19 #20817 [Debug] > │ </text>                                                                      │

02:09:19 #20818 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20819 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:19 #20820 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20821 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20822 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20823 [Debug] > │ 0.1                                                                          │

02:09:19 #20824 [Debug] > │ </text>                                                                      │

02:09:19 #20825 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20826 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:19 #20827 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20828 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20829 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20830 [Debug] > │ 0.1                                                                          │

02:09:19 #20831 [Debug] > │ </text>                                                                      │

02:09:19 #20832 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20833 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:19 #20834 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20835 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20836 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20837 [Debug] > │ 0.2                                                                          │

02:09:19 #20838 [Debug] > │ </text>                                                                      │

02:09:19 #20839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20840 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:19 #20841 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20842 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20843 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20844 [Debug] > │ 0.2                                                                          │

02:09:19 #20845 [Debug] > │ </text>                                                                      │

02:09:19 #20846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20847 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:19 #20848 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20849 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20850 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20851 [Debug] > │ 0.2                                                                          │

02:09:19 #20852 [Debug] > │ </text>                                                                      │

02:09:19 #20853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20854 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:19 #20855 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20856 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20857 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20858 [Debug] > │ 0.3                                                                          │

02:09:19 #20859 [Debug] > │ </text>                                                                      │

02:09:19 #20860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20861 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:19 #20862 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20863 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20864 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20865 [Debug] > │ 0.3                                                                          │

02:09:19 #20866 [Debug] > │ </text>                                                                      │

02:09:19 #20867 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20868 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:19 #20869 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20871 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20872 [Debug] > │ 0.4                                                                          │

02:09:19 #20873 [Debug] > │ </text>                                                                      │

02:09:19 #20874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20875 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:19 #20876 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20879 [Debug] > │ 0.4                                                                          │

02:09:19 #20880 [Debug] > │ </text>                                                                      │

02:09:19 #20881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20882 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:19 #20883 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20884 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20885 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20886 [Debug] > │ 0.5                                                                          │

02:09:19 #20887 [Debug] > │ </text>                                                                      │

02:09:19 #20888 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20889 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:19 #20890 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20891 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20892 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20893 [Debug] > │ 0.5                                                                          │

02:09:19 #20894 [Debug] > │ </text>                                                                      │

02:09:19 #20895 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20896 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:19 #20897 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20898 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20899 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20900 [Debug] > │ 0.6                                                                          │

02:09:19 #20901 [Debug] > │ </text>                                                                      │

02:09:19 #20902 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20903 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:19 #20904 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #20905 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20906 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20907 [Debug] > │ 0.7                                                                          │

02:09:19 #20908 [Debug] > │ </text>                                                                      │

02:09:19 #20909 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20910 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:19 #20911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20912 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:19 #20913 [Debug] > │ <text x="595" y="399" dy="0.5ex" text-anchor="start"                         │

02:09:19 #20914 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20915 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20916 [Debug] > │ -0.0                                                                         │

02:09:19 #20917 [Debug] > │ </text>                                                                      │

02:09:19 #20918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20919 [Debug] > │ points="585,399 590,399 "/>                                                  │

02:09:19 #20920 [Debug] > │ <text x="595" y="359" dy="0.5ex" text-anchor="start"                         │

02:09:19 #20921 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20922 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20923 [Debug] > │ -0.0                                                                         │

02:09:19 #20924 [Debug] > │ </text>                                                                      │

02:09:19 #20925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20926 [Debug] > │ points="585,359 590,359 "/>                                                  │

02:09:19 #20927 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:09:19 #20928 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20929 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20930 [Debug] > │ -0.0                                                                         │

02:09:19 #20931 [Debug] > │ </text>                                                                      │

02:09:19 #20932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20933 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:09:19 #20934 [Debug] > │ <text x="617" y="279" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20935 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20936 [Debug] > │ 0.0                                                                          │

02:09:19 #20937 [Debug] > │ </text>                                                                      │

02:09:19 #20938 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20939 [Debug] > │ points="585,279 590,279 "/>                                                  │

02:09:19 #20940 [Debug] > │ <text x="617" y="239" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20941 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20942 [Debug] > │ 0.0                                                                          │

02:09:19 #20943 [Debug] > │ </text>                                                                      │

02:09:19 #20944 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20945 [Debug] > │ points="585,239 590,239 "/>                                                  │

02:09:19 #20946 [Debug] > │ <text x="617" y="199" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20947 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20948 [Debug] > │ 0.0                                                                          │

02:09:19 #20949 [Debug] > │ </text>                                                                      │

02:09:19 #20950 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20951 [Debug] > │ points="585,199 590,199 "/>                                                  │

02:09:19 #20952 [Debug] > │ <text x="617" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20953 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20954 [Debug] > │ 0.0                                                                          │

02:09:19 #20955 [Debug] > │ </text>                                                                      │

02:09:19 #20956 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20957 [Debug] > │ points="585,159 590,159 "/>                                                  │

02:09:19 #20958 [Debug] > │ <text x="617" y="119" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #20959 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20960 [Debug] > │ 0.0                                                                          │

02:09:19 #20961 [Debug] > │ </text>                                                                      │

02:09:19 #20962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20963 [Debug] > │ points="585,119 590,119 "/>                                                  │

02:09:19 #20964 [Debug] > │ <text x="617" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #20965 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #20966 [Debug] > │ 0.0                                                                          │

02:09:19 #20967 [Debug] > │ </text>                                                                      │

02:09:19 #20968 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #20969 [Debug] > │ points="585,79 590,79 "/>                                                    │

02:09:19 #20970 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #20971 [Debug] > │ points="69,279 77,260 85,240 93,222 100,205 108,189 116,175 123,164 131,155  │

02:09:19 #20972 [Debug] > │ 139,148 146,144 154,143 162,145 169,150 177,158 185,167 192,180 200,194      │

02:09:19 #20973 [Debug] > │ 208,210 215,228 223,247 231,266 238,286 246,305 254,324 261,342 269,359      │

02:09:19 #20974 [Debug] > │ 277,374 284,387 292,398 300,406 307,412 315,415 323,415 331,412 338,406      │

02:09:19 #20975 [Debug] > │ 346,398 354,387 361,374 369,359 377,342 384,324 392,305 400,286 407,266      │

02:09:19 #20976 [Debug] > │ 415,247 423,228 430,210 438,194 446,180 453,167 461,158 469,150 476,145      │

02:09:19 #20977 [Debug] > │ 484,143 491,143 497,140 499,129 498,110 498,96 498,90 498,85 545,195 553,222 │

02:09:19 #20978 [Debug] > │ 562,255 569,279 "/>                                                          │

02:09:19 #20979 [Debug] > │ <rect x="525" y="235" width="55" height="30" opacity="1" fill="none"         │

02:09:19 #20980 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:19 #20981 [Debug] > │ <text x="565" y="245" dy="0.76em" text-anchor="start"                        │

02:09:19 #20982 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20983 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20984 [Debug] > │ 9                                                                            │

02:09:19 #20985 [Debug] > │ </text>                                                                      │

02:09:19 #20986 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #20987 [Debug] > │ points="535,250 555,250 "/>                                                  │

02:09:19 #20988 [Debug] > │ </svg>                                                                       │

02:09:19 #20989 [Debug] > │ </td></tr><tr><td>10</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:19 #20990 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:19 #20991 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:19 #20992 [Debug] > │ stroke="none"/>                                                              │

02:09:19 #20993 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:19 #20994 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #20995 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #20996 [Debug] > │ wave                                                                         │

02:09:19 #20997 [Debug] > │ </text>                                                                      │

02:09:19 #20998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:19 #20999 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #21001 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:19 #21003 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:19 #21005 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:19 #21007 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:19 #21009 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:19 #21010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:19 #21011 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #21012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:19 #21013 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:19 #21014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:19 #21015 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:19 #21016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:19 #21017 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:19 #21018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:19 #21019 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:19 #21020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:19 #21021 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #21022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:19 #21023 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:19 #21024 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:19 #21025 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:19 #21026 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:19 #21027 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:19 #21028 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:19 #21029 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:19 #21030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:19 #21031 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #21032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:19 #21033 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:19 #21034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:19 #21035 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:19 #21036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:19 #21037 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:19 #21038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:19 #21039 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:19 #21040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:19 #21041 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #21042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:19 #21043 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:19 #21044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:19 #21045 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:19 #21046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:19 #21047 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:19 #21048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:19 #21049 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:19 #21050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:19 #21051 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #21052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:19 #21053 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:19 #21054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:19 #21055 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:19 #21056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:19 #21057 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:19 #21058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:19 #21059 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:19 #21060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:19 #21061 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #21062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:19 #21063 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:19 #21064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:19 #21065 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:19 #21066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:19 #21067 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:19 #21068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:19 #21069 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:19 #21070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:19 #21071 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #21072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:19 #21073 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:19 #21074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:19 #21075 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:19 #21076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:19 #21077 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:19 #21078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:19 #21079 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:19 #21080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:19 #21081 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #21082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:19 #21083 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:19 #21084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:19 #21085 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:19 #21086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:19 #21087 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:19 #21088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:19 #21089 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:19 #21090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:19 #21091 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #21092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:19 #21093 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:19 #21094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:19 #21095 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:19 #21096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:19 #21097 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:19 #21098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:19 #21099 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:19 #21100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:19 #21101 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #21102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:19 #21103 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:19 #21104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:19 #21105 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:19 #21106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:19 #21107 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:19 #21108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:19 #21109 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:19 #21110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:19 #21111 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #21112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:19 #21113 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:19 #21114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:19 #21115 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:19 #21116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:19 #21117 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:19 #21118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:19 #21119 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:19 #21120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:19 #21121 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #21122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:19 #21123 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:19 #21124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:19 #21125 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:19 #21126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:19 #21127 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:19 #21128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:19 #21129 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:19 #21130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:19 #21131 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #21132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="413"         │

02:09:19 #21133 [Debug] > │ x2="584" y2="413"/>                                                          │

02:09:19 #21134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:19 #21135 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:19 #21136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:09:19 #21137 [Debug] > │ x2="584" y2="372"/>                                                          │

02:09:19 #21138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:19 #21139 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:19 #21140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:09:19 #21141 [Debug] > │ x2="584" y2="330"/>                                                          │

02:09:19 #21142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="310"         │

02:09:19 #21143 [Debug] > │ x2="584" y2="310"/>                                                          │

02:09:19 #21144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:19 #21145 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:19 #21146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:19 #21147 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:19 #21148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="248"         │

02:09:19 #21149 [Debug] > │ x2="584" y2="248"/>                                                          │

02:09:19 #21150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:09:19 #21151 [Debug] > │ x2="584" y2="227"/>                                                          │

02:09:19 #21152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="207"         │

02:09:19 #21153 [Debug] > │ x2="584" y2="207"/>                                                          │

02:09:19 #21154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="186"         │

02:09:19 #21155 [Debug] > │ x2="584" y2="186"/>                                                          │

02:09:19 #21156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:19 #21157 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:19 #21158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:09:19 #21159 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:19 #21160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:09:19 #21161 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:19 #21162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="103"         │

02:09:19 #21163 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:19 #21164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:19 #21165 [Debug] > │ y2="83"/>                                                                    │

02:09:19 #21166 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:19 #21167 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21168 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21169 [Debug] > │ position (m)                                                                 │

02:09:19 #21170 [Debug] > │ </text>                                                                      │

02:09:19 #21171 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:19 #21172 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21173 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:19 #21174 [Debug] > │ displacement (m)                                                             │

02:09:19 #21175 [Debug] > │ </text>                                                                      │

02:09:19 #21176 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:19 #21177 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21178 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21179 [Debug] > │ position (m)                                                                 │

02:09:19 #21180 [Debug] > │ </text>                                                                      │

02:09:19 #21181 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21182 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21183 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:19 #21184 [Debug] > │ displacement (m)                                                             │

02:09:19 #21185 [Debug] > │ </text>                                                                      │

02:09:19 #21186 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #21187 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21188 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:19 #21189 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #21190 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:19 #21191 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #21192 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:19 #21193 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #21194 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:19 #21195 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #21196 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:19 #21197 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #21198 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:19 #21199 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #21200 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:19 #21201 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #21202 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:19 #21203 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #21204 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:19 #21205 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #21206 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:19 #21207 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #21208 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:19 #21209 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #21210 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:19 #21211 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #21212 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:19 #21213 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #21214 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="413"         │

02:09:19 #21215 [Debug] > │ x2="584" y2="413"/>                                                          │

02:09:19 #21216 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="372"         │

02:09:19 #21217 [Debug] > │ x2="584" y2="372"/>                                                          │

02:09:19 #21218 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="330"         │

02:09:19 #21219 [Debug] > │ x2="584" y2="330"/>                                                          │

02:09:19 #21220 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:09:19 #21221 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:19 #21222 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="248"         │

02:09:19 #21223 [Debug] > │ x2="584" y2="248"/>                                                          │

02:09:19 #21224 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="207"         │

02:09:19 #21225 [Debug] > │ x2="584" y2="207"/>                                                          │

02:09:19 #21226 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="165"         │

02:09:19 #21227 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:19 #21228 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="124"         │

02:09:19 #21229 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:19 #21230 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:19 #21231 [Debug] > │ y2="83"/>                                                                    │

02:09:19 #21232 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21233 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:19 #21234 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:19 #21235 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21236 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21237 [Debug] > │ 0.0                                                                          │

02:09:19 #21238 [Debug] > │ </text>                                                                      │

02:09:19 #21239 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21240 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:19 #21241 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21242 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21243 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21244 [Debug] > │ 0.1                                                                          │

02:09:19 #21245 [Debug] > │ </text>                                                                      │

02:09:19 #21246 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21247 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:19 #21248 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21249 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21250 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21251 [Debug] > │ 0.1                                                                          │

02:09:19 #21252 [Debug] > │ </text>                                                                      │

02:09:19 #21253 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21254 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:19 #21255 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21256 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21257 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21258 [Debug] > │ 0.2                                                                          │

02:09:19 #21259 [Debug] > │ </text>                                                                      │

02:09:19 #21260 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21261 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:19 #21262 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21263 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21264 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21265 [Debug] > │ 0.2                                                                          │

02:09:19 #21266 [Debug] > │ </text>                                                                      │

02:09:19 #21267 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21268 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:19 #21269 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21270 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21271 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21272 [Debug] > │ 0.2                                                                          │

02:09:19 #21273 [Debug] > │ </text>                                                                      │

02:09:19 #21274 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21275 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:19 #21276 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21277 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21278 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21279 [Debug] > │ 0.3                                                                          │

02:09:19 #21280 [Debug] > │ </text>                                                                      │

02:09:19 #21281 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21282 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:19 #21283 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21284 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21285 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21286 [Debug] > │ 0.3                                                                          │

02:09:19 #21287 [Debug] > │ </text>                                                                      │

02:09:19 #21288 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21289 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:19 #21290 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21291 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21292 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21293 [Debug] > │ 0.4                                                                          │

02:09:19 #21294 [Debug] > │ </text>                                                                      │

02:09:19 #21295 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21296 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:19 #21297 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21298 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21299 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21300 [Debug] > │ 0.4                                                                          │

02:09:19 #21301 [Debug] > │ </text>                                                                      │

02:09:19 #21302 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21303 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:19 #21304 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21305 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21306 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21307 [Debug] > │ 0.5                                                                          │

02:09:19 #21308 [Debug] > │ </text>                                                                      │

02:09:19 #21309 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21310 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:19 #21311 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21312 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21313 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21314 [Debug] > │ 0.5                                                                          │

02:09:19 #21315 [Debug] > │ </text>                                                                      │

02:09:19 #21316 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21317 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:19 #21318 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21319 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21320 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21321 [Debug] > │ 0.6                                                                          │

02:09:19 #21322 [Debug] > │ </text>                                                                      │

02:09:19 #21323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21324 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:19 #21325 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21326 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21327 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21328 [Debug] > │ 0.7                                                                          │

02:09:19 #21329 [Debug] > │ </text>                                                                      │

02:09:19 #21330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21331 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:19 #21332 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21333 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:19 #21334 [Debug] > │ <text x="45" y="413" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21335 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21336 [Debug] > │ -0.0                                                                         │

02:09:19 #21337 [Debug] > │ </text>                                                                      │

02:09:19 #21338 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21339 [Debug] > │ points="49,413 54,413 "/>                                                    │

02:09:19 #21340 [Debug] > │ <text x="45" y="372" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21341 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21342 [Debug] > │ -0.0                                                                         │

02:09:19 #21343 [Debug] > │ </text>                                                                      │

02:09:19 #21344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21345 [Debug] > │ points="49,372 54,372 "/>                                                    │

02:09:19 #21346 [Debug] > │ <text x="45" y="330" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21347 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21348 [Debug] > │ -0.0                                                                         │

02:09:19 #21349 [Debug] > │ </text>                                                                      │

02:09:19 #21350 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21351 [Debug] > │ points="49,330 54,330 "/>                                                    │

02:09:19 #21352 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21353 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21354 [Debug] > │ 0.0                                                                          │

02:09:19 #21355 [Debug] > │ </text>                                                                      │

02:09:19 #21356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21357 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:09:19 #21358 [Debug] > │ <text x="45" y="248" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21359 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21360 [Debug] > │ 0.0                                                                          │

02:09:19 #21361 [Debug] > │ </text>                                                                      │

02:09:19 #21362 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21363 [Debug] > │ points="49,248 54,248 "/>                                                    │

02:09:19 #21364 [Debug] > │ <text x="45" y="207" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21365 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21366 [Debug] > │ 0.0                                                                          │

02:09:19 #21367 [Debug] > │ </text>                                                                      │

02:09:19 #21368 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21369 [Debug] > │ points="49,207 54,207 "/>                                                    │

02:09:19 #21370 [Debug] > │ <text x="45" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21371 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21372 [Debug] > │ 0.0                                                                          │

02:09:19 #21373 [Debug] > │ </text>                                                                      │

02:09:19 #21374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21375 [Debug] > │ points="49,165 54,165 "/>                                                    │

02:09:19 #21376 [Debug] > │ <text x="45" y="124" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21377 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21378 [Debug] > │ 0.0                                                                          │

02:09:19 #21379 [Debug] > │ </text>                                                                      │

02:09:19 #21380 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21381 [Debug] > │ points="49,124 54,124 "/>                                                    │

02:09:19 #21382 [Debug] > │ <text x="45" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:19 #21383 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21384 [Debug] > │ 0.0                                                                          │

02:09:19 #21385 [Debug] > │ </text>                                                                      │

02:09:19 #21386 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21387 [Debug] > │ points="49,83 54,83 "/>                                                      │

02:09:19 #21388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21389 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:19 #21390 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:19 #21391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21392 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21393 [Debug] > │ 0.0                                                                          │

02:09:19 #21394 [Debug] > │ </text>                                                                      │

02:09:19 #21395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21396 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:19 #21397 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21399 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21400 [Debug] > │ 0.1                                                                          │

02:09:19 #21401 [Debug] > │ </text>                                                                      │

02:09:19 #21402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21403 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:19 #21404 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21407 [Debug] > │ 0.1                                                                          │

02:09:19 #21408 [Debug] > │ </text>                                                                      │

02:09:19 #21409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21410 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:19 #21411 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21414 [Debug] > │ 0.2                                                                          │

02:09:19 #21415 [Debug] > │ </text>                                                                      │

02:09:19 #21416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21417 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:19 #21418 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21420 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21421 [Debug] > │ 0.2                                                                          │

02:09:19 #21422 [Debug] > │ </text>                                                                      │

02:09:19 #21423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21424 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:19 #21425 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21427 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21428 [Debug] > │ 0.2                                                                          │

02:09:19 #21429 [Debug] > │ </text>                                                                      │

02:09:19 #21430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21431 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:19 #21432 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21434 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21435 [Debug] > │ 0.3                                                                          │

02:09:19 #21436 [Debug] > │ </text>                                                                      │

02:09:19 #21437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21438 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:19 #21439 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21441 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21442 [Debug] > │ 0.3                                                                          │

02:09:19 #21443 [Debug] > │ </text>                                                                      │

02:09:19 #21444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21445 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:19 #21446 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21449 [Debug] > │ 0.4                                                                          │

02:09:19 #21450 [Debug] > │ </text>                                                                      │

02:09:19 #21451 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21452 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:19 #21453 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21454 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21455 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21456 [Debug] > │ 0.4                                                                          │

02:09:19 #21457 [Debug] > │ </text>                                                                      │

02:09:19 #21458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21459 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:19 #21460 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21461 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21462 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21463 [Debug] > │ 0.5                                                                          │

02:09:19 #21464 [Debug] > │ </text>                                                                      │

02:09:19 #21465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21466 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:19 #21467 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21468 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21469 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21470 [Debug] > │ 0.5                                                                          │

02:09:19 #21471 [Debug] > │ </text>                                                                      │

02:09:19 #21472 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21473 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:19 #21474 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21477 [Debug] > │ 0.6                                                                          │

02:09:19 #21478 [Debug] > │ </text>                                                                      │

02:09:19 #21479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21480 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:19 #21481 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21484 [Debug] > │ 0.7                                                                          │

02:09:19 #21485 [Debug] > │ </text>                                                                      │

02:09:19 #21486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21487 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:19 #21488 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21489 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:19 #21490 [Debug] > │ <text x="595" y="413" dy="0.5ex" text-anchor="start"                         │

02:09:19 #21491 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21492 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21493 [Debug] > │ -0.0                                                                         │

02:09:19 #21494 [Debug] > │ </text>                                                                      │

02:09:19 #21495 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21496 [Debug] > │ points="585,413 590,413 "/>                                                  │

02:09:19 #21497 [Debug] > │ <text x="595" y="372" dy="0.5ex" text-anchor="start"                         │

02:09:19 #21498 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21499 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21500 [Debug] > │ -0.0                                                                         │

02:09:19 #21501 [Debug] > │ </text>                                                                      │

02:09:19 #21502 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21503 [Debug] > │ points="585,372 590,372 "/>                                                  │

02:09:19 #21504 [Debug] > │ <text x="595" y="330" dy="0.5ex" text-anchor="start"                         │

02:09:19 #21505 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21506 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21507 [Debug] > │ -0.0                                                                         │

02:09:19 #21508 [Debug] > │ </text>                                                                      │

02:09:19 #21509 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21510 [Debug] > │ points="585,330 590,330 "/>                                                  │

02:09:19 #21511 [Debug] > │ <text x="617" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #21512 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21513 [Debug] > │ 0.0                                                                          │

02:09:19 #21514 [Debug] > │ </text>                                                                      │

02:09:19 #21515 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21516 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:09:19 #21517 [Debug] > │ <text x="617" y="248" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #21518 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21519 [Debug] > │ 0.0                                                                          │

02:09:19 #21520 [Debug] > │ </text>                                                                      │

02:09:19 #21521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21522 [Debug] > │ points="585,248 590,248 "/>                                                  │

02:09:19 #21523 [Debug] > │ <text x="617" y="207" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #21524 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21525 [Debug] > │ 0.0                                                                          │

02:09:19 #21526 [Debug] > │ </text>                                                                      │

02:09:19 #21527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21528 [Debug] > │ points="585,207 590,207 "/>                                                  │

02:09:19 #21529 [Debug] > │ <text x="617" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #21530 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21531 [Debug] > │ 0.0                                                                          │

02:09:19 #21532 [Debug] > │ </text>                                                                      │

02:09:19 #21533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21534 [Debug] > │ points="585,165 590,165 "/>                                                  │

02:09:19 #21535 [Debug] > │ <text x="617" y="124" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:19 #21536 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21537 [Debug] > │ 0.0                                                                          │

02:09:19 #21538 [Debug] > │ </text>                                                                      │

02:09:19 #21539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21540 [Debug] > │ points="585,124 590,124 "/>                                                  │

02:09:19 #21541 [Debug] > │ <text x="617" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:19 #21542 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:19 #21543 [Debug] > │ 0.0                                                                          │

02:09:19 #21544 [Debug] > │ </text>                                                                      │

02:09:19 #21545 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21546 [Debug] > │ points="585,83 590,83 "/>                                                    │

02:09:19 #21547 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #21548 [Debug] > │ points="69,289 77,271 85,253 93,236 100,220 108,206 116,193 123,182 131,174  │

02:09:19 #21549 [Debug] > │ 139,168 146,164 154,163 162,165 169,170 177,176 185,186 192,197 200,210      │

02:09:19 #21550 [Debug] > │ 208,225 215,242 223,259 231,277 238,295 246,313 254,331 261,348 269,363      │

02:09:19 #21551 [Debug] > │ 277,377 284,389 292,399 300,407 307,412 315,415 323,415 331,412 338,407      │

02:09:19 #21552 [Debug] > │ 346,399 354,389 361,377 369,363 377,348 384,331 392,313 400,295 407,277      │

02:09:19 #21553 [Debug] > │ 415,259 423,242 430,225 438,210 446,197 453,186 461,176 469,170 476,165      │

02:09:19 #21554 [Debug] > │ 484,162 490,159 494,150 494,130 493,109 493,98 493,90 493,85 545,202 553,230 │

02:09:19 #21555 [Debug] > │ 561,260 569,289 "/>                                                          │

02:09:19 #21556 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:19 #21557 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:19 #21558 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:19 #21559 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21560 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21561 [Debug] > │ 10                                                                           │

02:09:19 #21562 [Debug] > │ </text>                                                                      │

02:09:19 #21563 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:19 #21564 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:19 #21565 [Debug] > │ </svg>                                                                       │

02:09:19 #21566 [Debug] > │ </td></tr><tr><td>11</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:19 #21567 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:19 #21568 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:19 #21569 [Debug] > │ stroke="none"/>                                                              │

02:09:19 #21570 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:19 #21571 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21572 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21573 [Debug] > │ wave                                                                         │

02:09:19 #21574 [Debug] > │ </text>                                                                      │

02:09:19 #21575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:19 #21576 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #21578 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:19 #21580 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:19 #21582 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:19 #21584 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:19 #21586 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:19 #21587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:19 #21588 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #21589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:19 #21590 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:19 #21591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:19 #21592 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:19 #21593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:19 #21594 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:19 #21595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:19 #21596 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:19 #21597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:19 #21598 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #21599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:19 #21600 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:19 #21601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:19 #21602 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:19 #21603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:19 #21604 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:19 #21605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:19 #21606 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:19 #21607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:19 #21608 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #21609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:19 #21610 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:19 #21611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:19 #21612 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:19 #21613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:19 #21614 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:19 #21615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:19 #21616 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:19 #21617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:19 #21618 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #21619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:19 #21620 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:19 #21621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:19 #21622 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:19 #21623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:19 #21624 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:19 #21625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:19 #21626 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:19 #21627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:19 #21628 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #21629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:19 #21630 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:19 #21631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:19 #21632 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:19 #21633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:19 #21634 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:19 #21635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:19 #21636 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:19 #21637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:19 #21638 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #21639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:19 #21640 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:19 #21641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:19 #21642 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:19 #21643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:19 #21644 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:19 #21645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:19 #21646 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:19 #21647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:19 #21648 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #21649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:19 #21650 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:19 #21651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:19 #21652 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:19 #21653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:19 #21654 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:19 #21655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:19 #21656 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:19 #21657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:19 #21658 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #21659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:19 #21660 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:19 #21661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:19 #21662 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:19 #21663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:19 #21664 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:19 #21665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:19 #21666 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:19 #21667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:19 #21668 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #21669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:19 #21670 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:19 #21671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:19 #21672 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:19 #21673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:19 #21674 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:19 #21675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:19 #21676 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:19 #21677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:19 #21678 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #21679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:19 #21680 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:19 #21681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:19 #21682 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:19 #21683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:19 #21684 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:19 #21685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:19 #21686 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:19 #21687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:19 #21688 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #21689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:19 #21690 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:19 #21691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:19 #21692 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:19 #21693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:19 #21694 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:19 #21695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:19 #21696 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:19 #21697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:19 #21698 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #21699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:19 #21700 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:19 #21701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:19 #21702 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:19 #21703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:19 #21704 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:19 #21705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:19 #21706 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:19 #21707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:19 #21708 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #21709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="408"         │

02:09:19 #21710 [Debug] > │ x2="584" y2="408"/>                                                          │

02:09:19 #21711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:19 #21712 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:19 #21713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="364"         │

02:09:19 #21714 [Debug] > │ x2="584" y2="364"/>                                                          │

02:09:19 #21715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="343"         │

02:09:19 #21716 [Debug] > │ x2="584" y2="343"/>                                                          │

02:09:19 #21717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:19 #21718 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:19 #21719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:19 #21720 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:19 #21721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="278"         │

02:09:19 #21722 [Debug] > │ x2="584" y2="278"/>                                                          │

02:09:19 #21723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:09:19 #21724 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:19 #21725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="235"         │

02:09:19 #21726 [Debug] > │ x2="584" y2="235"/>                                                          │

02:09:19 #21727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:19 #21728 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:19 #21729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="192"         │

02:09:19 #21730 [Debug] > │ x2="584" y2="192"/>                                                          │

02:09:19 #21731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:09:19 #21732 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:19 #21733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:09:19 #21734 [Debug] > │ x2="584" y2="149"/>                                                          │

02:09:19 #21735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="128"         │

02:09:19 #21736 [Debug] > │ x2="584" y2="128"/>                                                          │

02:09:19 #21737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:19 #21738 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:19 #21739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:19 #21740 [Debug] > │ y2="84"/>                                                                    │

02:09:19 #21741 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:19 #21742 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21743 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21744 [Debug] > │ position (m)                                                                 │

02:09:19 #21745 [Debug] > │ </text>                                                                      │

02:09:19 #21746 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:19 #21747 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21748 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:19 #21749 [Debug] > │ displacement (m)                                                             │

02:09:19 #21750 [Debug] > │ </text>                                                                      │

02:09:19 #21751 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:19 #21752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21753 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21754 [Debug] > │ position (m)                                                                 │

02:09:19 #21755 [Debug] > │ </text>                                                                      │

02:09:19 #21756 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:19 #21757 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21758 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:19 #21759 [Debug] > │ displacement (m)                                                             │

02:09:19 #21760 [Debug] > │ </text>                                                                      │

02:09:19 #21761 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:19 #21762 [Debug] > │ y2="75"/>                                                                    │

02:09:19 #21763 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:19 #21764 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:19 #21765 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:19 #21766 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:19 #21767 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:19 #21768 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:19 #21769 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:19 #21770 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:19 #21771 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:19 #21772 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:19 #21773 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:19 #21774 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:19 #21775 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:19 #21776 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:19 #21777 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:19 #21778 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:19 #21779 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:19 #21780 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:19 #21781 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:19 #21782 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:19 #21783 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:19 #21784 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:19 #21785 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:19 #21786 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:19 #21787 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:19 #21788 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:19 #21789 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="386"         │

02:09:19 #21790 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:19 #21791 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="343"         │

02:09:19 #21792 [Debug] > │ x2="584" y2="343"/>                                                          │

02:09:19 #21793 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="300"         │

02:09:19 #21794 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:19 #21795 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="257"         │

02:09:19 #21796 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:19 #21797 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="214"         │

02:09:19 #21798 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:19 #21799 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="171"         │

02:09:19 #21800 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:19 #21801 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="128"         │

02:09:19 #21802 [Debug] > │ x2="584" y2="128"/>                                                          │

02:09:19 #21803 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:19 #21804 [Debug] > │ y2="84"/>                                                                    │

02:09:19 #21805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21806 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:19 #21807 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:19 #21808 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21809 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21810 [Debug] > │ 0.0                                                                          │

02:09:19 #21811 [Debug] > │ </text>                                                                      │

02:09:19 #21812 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21813 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:19 #21814 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21816 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21817 [Debug] > │ 0.1                                                                          │

02:09:19 #21818 [Debug] > │ </text>                                                                      │

02:09:19 #21819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21820 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:19 #21821 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21822 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21823 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21824 [Debug] > │ 0.1                                                                          │

02:09:19 #21825 [Debug] > │ </text>                                                                      │

02:09:19 #21826 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:19 #21827 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:19 #21828 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:19 #21829 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:19 #21830 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:19 #21831 [Debug] > │ 0.2                                                                          │

02:09:20 #21832 [Debug] > │ </text>                                                                      │

02:09:20 #21833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21834 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:20 #21835 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21837 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21838 [Debug] > │ 0.2                                                                          │

02:09:20 #21839 [Debug] > │ </text>                                                                      │

02:09:20 #21840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21841 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:20 #21842 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21843 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21844 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21845 [Debug] > │ 0.2                                                                          │

02:09:20 #21846 [Debug] > │ </text>                                                                      │

02:09:20 #21847 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21848 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:20 #21849 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21850 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21851 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21852 [Debug] > │ 0.3                                                                          │

02:09:20 #21853 [Debug] > │ </text>                                                                      │

02:09:20 #21854 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21855 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:20 #21856 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21857 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21858 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21859 [Debug] > │ 0.3                                                                          │

02:09:20 #21860 [Debug] > │ </text>                                                                      │

02:09:20 #21861 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21862 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:20 #21863 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21864 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21865 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21866 [Debug] > │ 0.4                                                                          │

02:09:20 #21867 [Debug] > │ </text>                                                                      │

02:09:20 #21868 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21869 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:20 #21870 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21871 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21872 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21873 [Debug] > │ 0.4                                                                          │

02:09:20 #21874 [Debug] > │ </text>                                                                      │

02:09:20 #21875 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21876 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:20 #21877 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21878 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21879 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21880 [Debug] > │ 0.5                                                                          │

02:09:20 #21881 [Debug] > │ </text>                                                                      │

02:09:20 #21882 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21883 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:20 #21884 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21885 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21886 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21887 [Debug] > │ 0.5                                                                          │

02:09:20 #21888 [Debug] > │ </text>                                                                      │

02:09:20 #21889 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21890 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:20 #21891 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21892 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21893 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21894 [Debug] > │ 0.6                                                                          │

02:09:20 #21895 [Debug] > │ </text>                                                                      │

02:09:20 #21896 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21897 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:20 #21898 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #21899 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21900 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21901 [Debug] > │ 0.7                                                                          │

02:09:20 #21902 [Debug] > │ </text>                                                                      │

02:09:20 #21903 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21904 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:20 #21905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21906 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:20 #21907 [Debug] > │ <text x="45" y="386" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21908 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21909 [Debug] > │ -0.0                                                                         │

02:09:20 #21910 [Debug] > │ </text>                                                                      │

02:09:20 #21911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21912 [Debug] > │ points="49,386 54,386 "/>                                                    │

02:09:20 #21913 [Debug] > │ <text x="45" y="343" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21914 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21915 [Debug] > │ -0.0                                                                         │

02:09:20 #21916 [Debug] > │ </text>                                                                      │

02:09:20 #21917 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21918 [Debug] > │ points="49,343 54,343 "/>                                                    │

02:09:20 #21919 [Debug] > │ <text x="45" y="300" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21920 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21921 [Debug] > │ 0.0                                                                          │

02:09:20 #21922 [Debug] > │ </text>                                                                      │

02:09:20 #21923 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21924 [Debug] > │ points="49,300 54,300 "/>                                                    │

02:09:20 #21925 [Debug] > │ <text x="45" y="257" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21926 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21927 [Debug] > │ 0.0                                                                          │

02:09:20 #21928 [Debug] > │ </text>                                                                      │

02:09:20 #21929 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21930 [Debug] > │ points="49,257 54,257 "/>                                                    │

02:09:20 #21931 [Debug] > │ <text x="45" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21932 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21933 [Debug] > │ 0.0                                                                          │

02:09:20 #21934 [Debug] > │ </text>                                                                      │

02:09:20 #21935 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21936 [Debug] > │ points="49,214 54,214 "/>                                                    │

02:09:20 #21937 [Debug] > │ <text x="45" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21938 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21939 [Debug] > │ 0.0                                                                          │

02:09:20 #21940 [Debug] > │ </text>                                                                      │

02:09:20 #21941 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21942 [Debug] > │ points="49,171 54,171 "/>                                                    │

02:09:20 #21943 [Debug] > │ <text x="45" y="128" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #21944 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21945 [Debug] > │ 0.0                                                                          │

02:09:20 #21946 [Debug] > │ </text>                                                                      │

02:09:20 #21947 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21948 [Debug] > │ points="49,128 54,128 "/>                                                    │

02:09:20 #21949 [Debug] > │ <text x="45" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:20 #21950 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #21951 [Debug] > │ 0.0                                                                          │

02:09:20 #21952 [Debug] > │ </text>                                                                      │

02:09:20 #21953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21954 [Debug] > │ points="49,84 54,84 "/>                                                      │

02:09:20 #21955 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21956 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:20 #21957 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:20 #21958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21959 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21960 [Debug] > │ 0.0                                                                          │

02:09:20 #21961 [Debug] > │ </text>                                                                      │

02:09:20 #21962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21963 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:20 #21964 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #21965 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21966 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21967 [Debug] > │ 0.1                                                                          │

02:09:20 #21968 [Debug] > │ </text>                                                                      │

02:09:20 #21969 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21970 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:20 #21971 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #21972 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21973 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21974 [Debug] > │ 0.1                                                                          │

02:09:20 #21975 [Debug] > │ </text>                                                                      │

02:09:20 #21976 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21977 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:20 #21978 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #21979 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21980 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21981 [Debug] > │ 0.2                                                                          │

02:09:20 #21982 [Debug] > │ </text>                                                                      │

02:09:20 #21983 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21984 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:20 #21985 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #21986 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21987 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21988 [Debug] > │ 0.2                                                                          │

02:09:20 #21989 [Debug] > │ </text>                                                                      │

02:09:20 #21990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21991 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:20 #21992 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #21993 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #21994 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #21995 [Debug] > │ 0.2                                                                          │

02:09:20 #21996 [Debug] > │ </text>                                                                      │

02:09:20 #21997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #21998 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:20 #21999 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22000 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22001 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22002 [Debug] > │ 0.3                                                                          │

02:09:20 #22003 [Debug] > │ </text>                                                                      │

02:09:20 #22004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22005 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:20 #22006 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22007 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22008 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22009 [Debug] > │ 0.3                                                                          │

02:09:20 #22010 [Debug] > │ </text>                                                                      │

02:09:20 #22011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22012 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:20 #22013 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22016 [Debug] > │ 0.4                                                                          │

02:09:20 #22017 [Debug] > │ </text>                                                                      │

02:09:20 #22018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22019 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:20 #22020 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22023 [Debug] > │ 0.4                                                                          │

02:09:20 #22024 [Debug] > │ </text>                                                                      │

02:09:20 #22025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22026 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:20 #22027 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22029 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22030 [Debug] > │ 0.5                                                                          │

02:09:20 #22031 [Debug] > │ </text>                                                                      │

02:09:20 #22032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22033 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:20 #22034 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22037 [Debug] > │ 0.5                                                                          │

02:09:20 #22038 [Debug] > │ </text>                                                                      │

02:09:20 #22039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22040 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:20 #22041 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22043 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22044 [Debug] > │ 0.6                                                                          │

02:09:20 #22045 [Debug] > │ </text>                                                                      │

02:09:20 #22046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22047 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:20 #22048 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22049 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22050 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22051 [Debug] > │ 0.7                                                                          │

02:09:20 #22052 [Debug] > │ </text>                                                                      │

02:09:20 #22053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22054 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:20 #22055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22056 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:20 #22057 [Debug] > │ <text x="595" y="386" dy="0.5ex" text-anchor="start"                         │

02:09:20 #22058 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22059 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22060 [Debug] > │ -0.0                                                                         │

02:09:20 #22061 [Debug] > │ </text>                                                                      │

02:09:20 #22062 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22063 [Debug] > │ points="585,386 590,386 "/>                                                  │

02:09:20 #22064 [Debug] > │ <text x="595" y="343" dy="0.5ex" text-anchor="start"                         │

02:09:20 #22065 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22066 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22067 [Debug] > │ -0.0                                                                         │

02:09:20 #22068 [Debug] > │ </text>                                                                      │

02:09:20 #22069 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22070 [Debug] > │ points="585,343 590,343 "/>                                                  │

02:09:20 #22071 [Debug] > │ <text x="617" y="300" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22072 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22073 [Debug] > │ 0.0                                                                          │

02:09:20 #22074 [Debug] > │ </text>                                                                      │

02:09:20 #22075 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22076 [Debug] > │ points="585,300 590,300 "/>                                                  │

02:09:20 #22077 [Debug] > │ <text x="617" y="257" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22078 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22079 [Debug] > │ 0.0                                                                          │

02:09:20 #22080 [Debug] > │ </text>                                                                      │

02:09:20 #22081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22082 [Debug] > │ points="585,257 590,257 "/>                                                  │

02:09:20 #22083 [Debug] > │ <text x="617" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22084 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22085 [Debug] > │ 0.0                                                                          │

02:09:20 #22086 [Debug] > │ </text>                                                                      │

02:09:20 #22087 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22088 [Debug] > │ points="585,214 590,214 "/>                                                  │

02:09:20 #22089 [Debug] > │ <text x="617" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22090 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22091 [Debug] > │ 0.0                                                                          │

02:09:20 #22092 [Debug] > │ </text>                                                                      │

02:09:20 #22093 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22094 [Debug] > │ points="585,171 590,171 "/>                                                  │

02:09:20 #22095 [Debug] > │ <text x="617" y="128" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22096 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22097 [Debug] > │ 0.0                                                                          │

02:09:20 #22098 [Debug] > │ </text>                                                                      │

02:09:20 #22099 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22100 [Debug] > │ points="585,128 590,128 "/>                                                  │

02:09:20 #22101 [Debug] > │ <text x="617" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22102 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22103 [Debug] > │ 0.0                                                                          │

02:09:20 #22104 [Debug] > │ </text>                                                                      │

02:09:20 #22105 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22106 [Debug] > │ points="585,84 590,84 "/>                                                    │

02:09:20 #22107 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #22108 [Debug] > │ points="69,300 77,283 85,267 93,251 100,237 108,224 116,212 123,202 131,194  │

02:09:20 #22109 [Debug] > │ 139,189 146,186 154,185 162,186 169,190 177,197 185,205 192,216 200,228      │

02:09:20 #22110 [Debug] > │ 208,242 215,256 223,272 231,289 238,305 246,322 254,338 261,353 269,367      │

02:09:20 #22111 [Debug] > │ 277,380 284,391 292,400 300,407 307,412 315,415 323,415 331,412 338,407      │

02:09:20 #22112 [Debug] > │ 346,400 354,391 361,380 369,367 377,353 384,338 392,322 400,305 407,289      │

02:09:20 #22113 [Debug] > │ 415,272 423,256 430,242 438,228 446,216 453,205 461,197 469,190 476,186      │

02:09:20 #22114 [Debug] > │ 483,182 488,173 490,155 488,129 488,110 489,100 488,90 488,85 545,209        │

02:09:20 #22115 [Debug] > │ 553,238 562,275 569,300 "/>                                                  │

02:09:20 #22116 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:20 #22117 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:20 #22118 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:20 #22119 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22120 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22121 [Debug] > │ 11                                                                           │

02:09:20 #22122 [Debug] > │ </text>                                                                      │

02:09:20 #22123 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #22124 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:20 #22125 [Debug] > │ </svg>                                                                       │

02:09:20 #22126 [Debug] > │ </td></tr><tr><td>12</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:20 #22127 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:20 #22128 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:20 #22129 [Debug] > │ stroke="none"/>                                                              │

02:09:20 #22130 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:20 #22131 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22132 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22133 [Debug] > │ wave                                                                         │

02:09:20 #22134 [Debug] > │ </text>                                                                      │

02:09:20 #22135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:20 #22136 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #22138 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:20 #22140 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:20 #22142 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:20 #22144 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:20 #22146 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:20 #22147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:20 #22148 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:20 #22149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:20 #22150 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:20 #22151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:20 #22152 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:20 #22153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:20 #22154 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:20 #22155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:20 #22156 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:20 #22157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:20 #22158 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:20 #22159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:20 #22160 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:20 #22161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:20 #22162 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:20 #22163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:20 #22164 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:20 #22165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:20 #22166 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:20 #22167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:20 #22168 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:20 #22169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:20 #22170 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:20 #22171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:20 #22172 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:20 #22173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:20 #22174 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:20 #22175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:20 #22176 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:20 #22177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:20 #22178 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:20 #22179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:20 #22180 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:20 #22181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:20 #22182 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:20 #22183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:20 #22184 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:20 #22185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:20 #22186 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:20 #22187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:20 #22188 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:20 #22189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:20 #22190 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:20 #22191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:20 #22192 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:20 #22193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:20 #22194 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:20 #22195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:20 #22196 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:20 #22197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:20 #22198 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:20 #22199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:20 #22200 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:20 #22201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:20 #22202 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:20 #22203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:20 #22204 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:20 #22205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:20 #22206 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:20 #22207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:20 #22208 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:20 #22209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:20 #22210 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:20 #22211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:20 #22212 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:20 #22213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:20 #22214 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:20 #22215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:20 #22216 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:20 #22217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:20 #22218 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:20 #22219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:20 #22220 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:20 #22221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:20 #22222 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:20 #22223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:20 #22224 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:20 #22225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:20 #22226 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:20 #22227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:20 #22228 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:20 #22229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:20 #22230 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:20 #22231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:20 #22232 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:20 #22233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:20 #22234 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:20 #22235 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:20 #22236 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:20 #22237 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:20 #22238 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:20 #22239 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:20 #22240 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:20 #22241 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:20 #22242 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:20 #22243 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:20 #22244 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:20 #22245 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:20 #22246 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:20 #22247 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:20 #22248 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:20 #22249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:20 #22250 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:20 #22251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:20 #22252 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:20 #22253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:20 #22254 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:20 #22255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:20 #22256 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:20 #22257 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:20 #22258 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:20 #22259 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:20 #22260 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:20 #22261 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:20 #22262 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:20 #22263 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:20 #22264 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:20 #22265 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:20 #22266 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:20 #22267 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:20 #22268 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:20 #22269 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="421"         │

02:09:20 #22270 [Debug] > │ x2="584" y2="421"/>                                                          │

02:09:20 #22271 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="412"         │

02:09:20 #22272 [Debug] > │ x2="584" y2="412"/>                                                          │

02:09:20 #22273 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="402"         │

02:09:20 #22274 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:20 #22275 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:20 #22276 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:20 #22277 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:09:20 #22278 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:20 #22279 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="375"         │

02:09:20 #22280 [Debug] > │ x2="584" y2="375"/>                                                          │

02:09:20 #22281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:20 #22282 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:20 #22283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="357"         │

02:09:20 #22284 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:20 #22285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:20 #22286 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:20 #22287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:20 #22288 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:20 #22289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:09:20 #22290 [Debug] > │ x2="584" y2="330"/>                                                          │

02:09:20 #22291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:20 #22292 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:20 #22293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="312"         │

02:09:20 #22294 [Debug] > │ x2="584" y2="312"/>                                                          │

02:09:20 #22295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:09:20 #22296 [Debug] > │ x2="584" y2="303"/>                                                          │

02:09:20 #22297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="293"         │

02:09:20 #22298 [Debug] > │ x2="584" y2="293"/>                                                          │

02:09:20 #22299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:20 #22300 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:20 #22301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="275"         │

02:09:20 #22302 [Debug] > │ x2="584" y2="275"/>                                                          │

02:09:20 #22303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:20 #22304 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:20 #22305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:09:20 #22306 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:20 #22307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="248"         │

02:09:20 #22308 [Debug] > │ x2="584" y2="248"/>                                                          │

02:09:20 #22309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="239"         │

02:09:20 #22310 [Debug] > │ x2="584" y2="239"/>                                                          │

02:09:20 #22311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="230"         │

02:09:20 #22312 [Debug] > │ x2="584" y2="230"/>                                                          │

02:09:20 #22313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="221"         │

02:09:20 #22314 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:20 #22315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="212"         │

02:09:20 #22316 [Debug] > │ x2="584" y2="212"/>                                                          │

02:09:20 #22317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="203"         │

02:09:20 #22318 [Debug] > │ x2="584" y2="203"/>                                                          │

02:09:20 #22319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="194"         │

02:09:20 #22320 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:20 #22321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:20 #22322 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:20 #22323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:20 #22324 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:20 #22325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:20 #22326 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:20 #22327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:09:20 #22328 [Debug] > │ x2="584" y2="157"/>                                                          │

02:09:20 #22329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="148"         │

02:09:20 #22330 [Debug] > │ x2="584" y2="148"/>                                                          │

02:09:20 #22331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="139"         │

02:09:20 #22332 [Debug] > │ x2="584" y2="139"/>                                                          │

02:09:20 #22333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:09:20 #22334 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:20 #22335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:09:20 #22336 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:20 #22337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:20 #22338 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:20 #22339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="103"         │

02:09:20 #22340 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:20 #22341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:20 #22342 [Debug] > │ y2="94"/>                                                                    │

02:09:20 #22343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:20 #22344 [Debug] > │ y2="84"/>                                                                    │

02:09:20 #22345 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:20 #22346 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22347 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22348 [Debug] > │ position (m)                                                                 │

02:09:20 #22349 [Debug] > │ </text>                                                                      │

02:09:20 #22350 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:20 #22351 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22352 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:20 #22353 [Debug] > │ displacement (m)                                                             │

02:09:20 #22354 [Debug] > │ </text>                                                                      │

02:09:20 #22355 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:20 #22356 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22357 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22358 [Debug] > │ position (m)                                                                 │

02:09:20 #22359 [Debug] > │ </text>                                                                      │

02:09:20 #22360 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22362 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:20 #22363 [Debug] > │ displacement (m)                                                             │

02:09:20 #22364 [Debug] > │ </text>                                                                      │

02:09:20 #22365 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #22366 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22367 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:20 #22368 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:20 #22369 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:20 #22370 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:20 #22371 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:20 #22372 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:20 #22373 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:20 #22374 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:20 #22375 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:20 #22376 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:20 #22377 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:20 #22378 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:20 #22379 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:20 #22380 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:20 #22381 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:20 #22382 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:20 #22383 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:20 #22384 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:20 #22385 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:20 #22386 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:20 #22387 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:20 #22388 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:20 #22389 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:20 #22390 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:20 #22391 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:20 #22392 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:20 #22393 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="402"         │

02:09:20 #22394 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:20 #22395 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="357"         │

02:09:20 #22396 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:20 #22397 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="312"         │

02:09:20 #22398 [Debug] > │ x2="584" y2="312"/>                                                          │

02:09:20 #22399 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="266"         │

02:09:20 #22400 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:20 #22401 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="221"         │

02:09:20 #22402 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:20 #22403 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="175"         │

02:09:20 #22404 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:20 #22405 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="130"         │

02:09:20 #22406 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:20 #22407 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:20 #22408 [Debug] > │ y2="84"/>                                                                    │

02:09:20 #22409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22410 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:20 #22411 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:20 #22412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22414 [Debug] > │ 0.0                                                                          │

02:09:20 #22415 [Debug] > │ </text>                                                                      │

02:09:20 #22416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22417 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:20 #22418 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22420 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22421 [Debug] > │ 0.1                                                                          │

02:09:20 #22422 [Debug] > │ </text>                                                                      │

02:09:20 #22423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22424 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:20 #22425 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22427 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22428 [Debug] > │ 0.1                                                                          │

02:09:20 #22429 [Debug] > │ </text>                                                                      │

02:09:20 #22430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22431 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:20 #22432 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22434 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22435 [Debug] > │ 0.2                                                                          │

02:09:20 #22436 [Debug] > │ </text>                                                                      │

02:09:20 #22437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22438 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:20 #22439 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22441 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22442 [Debug] > │ 0.2                                                                          │

02:09:20 #22443 [Debug] > │ </text>                                                                      │

02:09:20 #22444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22445 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:20 #22446 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22449 [Debug] > │ 0.2                                                                          │

02:09:20 #22450 [Debug] > │ </text>                                                                      │

02:09:20 #22451 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22452 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:20 #22453 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22454 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22455 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22456 [Debug] > │ 0.3                                                                          │

02:09:20 #22457 [Debug] > │ </text>                                                                      │

02:09:20 #22458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22459 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:20 #22460 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22461 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22462 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22463 [Debug] > │ 0.3                                                                          │

02:09:20 #22464 [Debug] > │ </text>                                                                      │

02:09:20 #22465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22466 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:20 #22467 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22468 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22469 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22470 [Debug] > │ 0.4                                                                          │

02:09:20 #22471 [Debug] > │ </text>                                                                      │

02:09:20 #22472 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22473 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:20 #22474 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22477 [Debug] > │ 0.4                                                                          │

02:09:20 #22478 [Debug] > │ </text>                                                                      │

02:09:20 #22479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22480 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:20 #22481 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22484 [Debug] > │ 0.5                                                                          │

02:09:20 #22485 [Debug] > │ </text>                                                                      │

02:09:20 #22486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22487 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:20 #22488 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22489 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22490 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22491 [Debug] > │ 0.5                                                                          │

02:09:20 #22492 [Debug] > │ </text>                                                                      │

02:09:20 #22493 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22494 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:20 #22495 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22496 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22497 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22498 [Debug] > │ 0.6                                                                          │

02:09:20 #22499 [Debug] > │ </text>                                                                      │

02:09:20 #22500 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22501 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:20 #22502 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #22503 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22504 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22505 [Debug] > │ 0.7                                                                          │

02:09:20 #22506 [Debug] > │ </text>                                                                      │

02:09:20 #22507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22508 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:20 #22509 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22510 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:20 #22511 [Debug] > │ <text x="45" y="402" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22512 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22513 [Debug] > │ -0.0                                                                         │

02:09:20 #22514 [Debug] > │ </text>                                                                      │

02:09:20 #22515 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22516 [Debug] > │ points="49,402 54,402 "/>                                                    │

02:09:20 #22517 [Debug] > │ <text x="45" y="357" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22518 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22519 [Debug] > │ -0.0                                                                         │

02:09:20 #22520 [Debug] > │ </text>                                                                      │

02:09:20 #22521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22522 [Debug] > │ points="49,357 54,357 "/>                                                    │

02:09:20 #22523 [Debug] > │ <text x="45" y="312" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22524 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22525 [Debug] > │ 0.0                                                                          │

02:09:20 #22526 [Debug] > │ </text>                                                                      │

02:09:20 #22527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22528 [Debug] > │ points="49,312 54,312 "/>                                                    │

02:09:20 #22529 [Debug] > │ <text x="45" y="266" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22530 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22531 [Debug] > │ 0.0                                                                          │

02:09:20 #22532 [Debug] > │ </text>                                                                      │

02:09:20 #22533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22534 [Debug] > │ points="49,266 54,266 "/>                                                    │

02:09:20 #22535 [Debug] > │ <text x="45" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22536 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22537 [Debug] > │ 0.0                                                                          │

02:09:20 #22538 [Debug] > │ </text>                                                                      │

02:09:20 #22539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22540 [Debug] > │ points="49,221 54,221 "/>                                                    │

02:09:20 #22541 [Debug] > │ <text x="45" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22542 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22543 [Debug] > │ 0.0                                                                          │

02:09:20 #22544 [Debug] > │ </text>                                                                      │

02:09:20 #22545 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22546 [Debug] > │ points="49,175 54,175 "/>                                                    │

02:09:20 #22547 [Debug] > │ <text x="45" y="130" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22548 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22549 [Debug] > │ 0.0                                                                          │

02:09:20 #22550 [Debug] > │ </text>                                                                      │

02:09:20 #22551 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22552 [Debug] > │ points="49,130 54,130 "/>                                                    │

02:09:20 #22553 [Debug] > │ <text x="45" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:20 #22554 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22555 [Debug] > │ 0.0                                                                          │

02:09:20 #22556 [Debug] > │ </text>                                                                      │

02:09:20 #22557 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22558 [Debug] > │ points="49,84 54,84 "/>                                                      │

02:09:20 #22559 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22560 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:20 #22561 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:20 #22562 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22563 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22564 [Debug] > │ 0.0                                                                          │

02:09:20 #22565 [Debug] > │ </text>                                                                      │

02:09:20 #22566 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22567 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:20 #22568 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22569 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22570 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22571 [Debug] > │ 0.1                                                                          │

02:09:20 #22572 [Debug] > │ </text>                                                                      │

02:09:20 #22573 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22574 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:20 #22575 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22576 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22577 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22578 [Debug] > │ 0.1                                                                          │

02:09:20 #22579 [Debug] > │ </text>                                                                      │

02:09:20 #22580 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22581 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:20 #22582 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22583 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22584 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22585 [Debug] > │ 0.2                                                                          │

02:09:20 #22586 [Debug] > │ </text>                                                                      │

02:09:20 #22587 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22588 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:20 #22589 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22590 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22591 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22592 [Debug] > │ 0.2                                                                          │

02:09:20 #22593 [Debug] > │ </text>                                                                      │

02:09:20 #22594 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22595 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:20 #22596 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22597 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22598 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22599 [Debug] > │ 0.2                                                                          │

02:09:20 #22600 [Debug] > │ </text>                                                                      │

02:09:20 #22601 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22602 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:20 #22603 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22604 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22605 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22606 [Debug] > │ 0.3                                                                          │

02:09:20 #22607 [Debug] > │ </text>                                                                      │

02:09:20 #22608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22609 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:20 #22610 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22612 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22613 [Debug] > │ 0.3                                                                          │

02:09:20 #22614 [Debug] > │ </text>                                                                      │

02:09:20 #22615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22616 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:20 #22617 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22619 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22620 [Debug] > │ 0.4                                                                          │

02:09:20 #22621 [Debug] > │ </text>                                                                      │

02:09:20 #22622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22623 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:20 #22624 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22626 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22627 [Debug] > │ 0.4                                                                          │

02:09:20 #22628 [Debug] > │ </text>                                                                      │

02:09:20 #22629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22630 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:20 #22631 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22633 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22634 [Debug] > │ 0.5                                                                          │

02:09:20 #22635 [Debug] > │ </text>                                                                      │

02:09:20 #22636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22637 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:20 #22638 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22641 [Debug] > │ 0.5                                                                          │

02:09:20 #22642 [Debug] > │ </text>                                                                      │

02:09:20 #22643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22644 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:20 #22645 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22647 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22648 [Debug] > │ 0.6                                                                          │

02:09:20 #22649 [Debug] > │ </text>                                                                      │

02:09:20 #22650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22651 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:20 #22652 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22654 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22655 [Debug] > │ 0.7                                                                          │

02:09:20 #22656 [Debug] > │ </text>                                                                      │

02:09:20 #22657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22658 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:20 #22659 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22660 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:20 #22661 [Debug] > │ <text x="595" y="402" dy="0.5ex" text-anchor="start"                         │

02:09:20 #22662 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22663 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22664 [Debug] > │ -0.0                                                                         │

02:09:20 #22665 [Debug] > │ </text>                                                                      │

02:09:20 #22666 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22667 [Debug] > │ points="585,402 590,402 "/>                                                  │

02:09:20 #22668 [Debug] > │ <text x="595" y="357" dy="0.5ex" text-anchor="start"                         │

02:09:20 #22669 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22670 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22671 [Debug] > │ -0.0                                                                         │

02:09:20 #22672 [Debug] > │ </text>                                                                      │

02:09:20 #22673 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22674 [Debug] > │ points="585,357 590,357 "/>                                                  │

02:09:20 #22675 [Debug] > │ <text x="617" y="312" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22676 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22677 [Debug] > │ 0.0                                                                          │

02:09:20 #22678 [Debug] > │ </text>                                                                      │

02:09:20 #22679 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22680 [Debug] > │ points="585,312 590,312 "/>                                                  │

02:09:20 #22681 [Debug] > │ <text x="617" y="266" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22682 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22683 [Debug] > │ 0.0                                                                          │

02:09:20 #22684 [Debug] > │ </text>                                                                      │

02:09:20 #22685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22686 [Debug] > │ points="585,266 590,266 "/>                                                  │

02:09:20 #22687 [Debug] > │ <text x="617" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22688 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22689 [Debug] > │ 0.0                                                                          │

02:09:20 #22690 [Debug] > │ </text>                                                                      │

02:09:20 #22691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22692 [Debug] > │ points="585,221 590,221 "/>                                                  │

02:09:20 #22693 [Debug] > │ <text x="617" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22694 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22695 [Debug] > │ 0.0                                                                          │

02:09:20 #22696 [Debug] > │ </text>                                                                      │

02:09:20 #22697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22698 [Debug] > │ points="585,175 590,175 "/>                                                  │

02:09:20 #22699 [Debug] > │ <text x="617" y="130" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #22700 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22701 [Debug] > │ 0.0                                                                          │

02:09:20 #22702 [Debug] > │ </text>                                                                      │

02:09:20 #22703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22704 [Debug] > │ points="585,130 590,130 "/>                                                  │

02:09:20 #22705 [Debug] > │ <text x="617" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #22706 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #22707 [Debug] > │ 0.0                                                                          │

02:09:20 #22708 [Debug] > │ </text>                                                                      │

02:09:20 #22709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #22710 [Debug] > │ points="585,84 590,84 "/>                                                    │

02:09:20 #22711 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #22712 [Debug] > │ points="69,312 77,297 85,282 93,268 100,255 108,243 116,233 123,224 131,217  │

02:09:20 #22713 [Debug] > │ 139,212 146,209 154,208 162,210 169,213 177,219 185,227 192,236 200,247      │

02:09:20 #22714 [Debug] > │ 208,259 215,273 223,287 231,302 238,317 246,331 254,346 261,360 269,372      │

02:09:20 #22715 [Debug] > │ 277,384 284,394 292,402 300,408 307,412 315,415 323,415 331,412 338,408      │

02:09:20 #22716 [Debug] > │ 346,402 354,394 361,384 369,372 377,360 384,346 392,331 400,317 407,302      │

02:09:20 #22717 [Debug] > │ 415,287 423,273 430,259 438,247 446,236 453,227 461,219 469,213 476,208      │

02:09:20 #22718 [Debug] > │ 482,200 485,183 484,156 483,129 483,113 484,100 483,89 483,85 545,216        │

02:09:20 #22719 [Debug] > │ 553,247 566,303 569,312 "/>                                                  │

02:09:20 #22720 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:20 #22721 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:20 #22722 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:20 #22723 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22724 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22725 [Debug] > │ 12                                                                           │

02:09:20 #22726 [Debug] > │ </text>                                                                      │

02:09:20 #22727 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #22728 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:20 #22729 [Debug] > │ </svg>                                                                       │

02:09:20 #22730 [Debug] > │ </td></tr><tr><td>13</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:20 #22731 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:20 #22732 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:20 #22733 [Debug] > │ stroke="none"/>                                                              │

02:09:20 #22734 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:20 #22735 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22736 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22737 [Debug] > │ wave                                                                         │

02:09:20 #22738 [Debug] > │ </text>                                                                      │

02:09:20 #22739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:20 #22740 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #22742 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:20 #22744 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:20 #22746 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:20 #22748 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:20 #22750 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:20 #22751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:20 #22752 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:20 #22753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:20 #22754 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:20 #22755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:20 #22756 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:20 #22757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:20 #22758 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:20 #22759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:20 #22760 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:20 #22761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:20 #22762 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:20 #22763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:20 #22764 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:20 #22765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:20 #22766 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:20 #22767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:20 #22768 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:20 #22769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:20 #22770 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:20 #22771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:20 #22772 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:20 #22773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:20 #22774 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:20 #22775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:20 #22776 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:20 #22777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:20 #22778 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:20 #22779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:20 #22780 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:20 #22781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:20 #22782 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:20 #22783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:20 #22784 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:20 #22785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:20 #22786 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:20 #22787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:20 #22788 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:20 #22789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:20 #22790 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:20 #22791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:20 #22792 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:20 #22793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:20 #22794 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:20 #22795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:20 #22796 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:20 #22797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:20 #22798 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:20 #22799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:20 #22800 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:20 #22801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:20 #22802 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:20 #22803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:20 #22804 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:20 #22805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:20 #22806 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:20 #22807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:20 #22808 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:20 #22809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:20 #22810 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:20 #22811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:20 #22812 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:20 #22813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:09:20 #22814 [Debug] > │ x2="344" y2="75"/>                                                           │

02:09:20 #22815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:20 #22816 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:20 #22817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:20 #22818 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:20 #22819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:20 #22820 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:20 #22821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:20 #22822 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:20 #22823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:20 #22824 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:20 #22825 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:20 #22826 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:20 #22827 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:20 #22828 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:20 #22829 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:20 #22830 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:20 #22831 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:20 #22832 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:20 #22833 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:20 #22834 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:20 #22835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:20 #22836 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:20 #22837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="436" y1="424"        │

02:09:20 #22838 [Debug] > │ x2="436" y2="75"/>                                                           │

02:09:20 #22839 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:09:20 #22840 [Debug] > │ x2="444" y2="75"/>                                                           │

02:09:20 #22841 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:20 #22842 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:20 #22843 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:20 #22844 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:20 #22845 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="467" y1="424"        │

02:09:20 #22846 [Debug] > │ x2="467" y2="75"/>                                                           │

02:09:20 #22847 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="474" y1="424"        │

02:09:20 #22848 [Debug] > │ x2="474" y2="75"/>                                                           │

02:09:20 #22849 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="482" y1="424"        │

02:09:20 #22850 [Debug] > │ x2="482" y2="75"/>                                                           │

02:09:20 #22851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:20 #22852 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:20 #22853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:09:20 #22854 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:20 #22855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="505" y1="424"        │

02:09:20 #22856 [Debug] > │ x2="505" y2="75"/>                                                           │

02:09:20 #22857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:20 #22858 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:20 #22859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="520" y1="424"        │

02:09:20 #22860 [Debug] > │ x2="520" y2="75"/>                                                           │

02:09:20 #22861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="528" y1="424"        │

02:09:20 #22862 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:20 #22863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:09:20 #22864 [Debug] > │ x2="535" y2="75"/>                                                           │

02:09:20 #22865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="543" y1="424"        │

02:09:20 #22866 [Debug] > │ x2="543" y2="75"/>                                                           │

02:09:20 #22867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="551" y1="424"        │

02:09:20 #22868 [Debug] > │ x2="551" y2="75"/>                                                           │

02:09:20 #22869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="558" y1="424"        │

02:09:20 #22870 [Debug] > │ x2="558" y2="75"/>                                                           │

02:09:20 #22871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="566" y1="424"        │

02:09:20 #22872 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:20 #22873 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="574" y1="424"        │

02:09:20 #22874 [Debug] > │ x2="574" y2="75"/>                                                           │

02:09:20 #22875 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="422"         │

02:09:20 #22876 [Debug] > │ x2="584" y2="422"/>                                                          │

02:09:20 #22877 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="412"         │

02:09:20 #22878 [Debug] > │ x2="584" y2="412"/>                                                          │

02:09:20 #22879 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="402"         │

02:09:20 #22880 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:20 #22881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:20 #22882 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:20 #22883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:20 #22884 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:20 #22885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="373"         │

02:09:20 #22886 [Debug] > │ x2="584" y2="373"/>                                                          │

02:09:20 #22887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="364"         │

02:09:20 #22888 [Debug] > │ x2="584" y2="364"/>                                                          │

02:09:20 #22889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="354"         │

02:09:20 #22890 [Debug] > │ x2="584" y2="354"/>                                                          │

02:09:20 #22891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:09:20 #22892 [Debug] > │ x2="584" y2="344"/>                                                          │

02:09:20 #22893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="335"         │

02:09:20 #22894 [Debug] > │ x2="584" y2="335"/>                                                          │

02:09:20 #22895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="325"         │

02:09:20 #22896 [Debug] > │ x2="584" y2="325"/>                                                          │

02:09:20 #22897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="315"         │

02:09:20 #22898 [Debug] > │ x2="584" y2="315"/>                                                          │

02:09:20 #22899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:09:20 #22900 [Debug] > │ x2="584" y2="306"/>                                                          │

02:09:20 #22901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="296"         │

02:09:20 #22902 [Debug] > │ x2="584" y2="296"/>                                                          │

02:09:20 #22903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:20 #22904 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:20 #22905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="276"         │

02:09:20 #22906 [Debug] > │ x2="584" y2="276"/>                                                          │

02:09:20 #22907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:20 #22908 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:20 #22909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:09:20 #22910 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:20 #22911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="247"         │

02:09:20 #22912 [Debug] > │ x2="584" y2="247"/>                                                          │

02:09:20 #22913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="238"         │

02:09:20 #22914 [Debug] > │ x2="584" y2="238"/>                                                          │

02:09:20 #22915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="228"         │

02:09:20 #22916 [Debug] > │ x2="584" y2="228"/>                                                          │

02:09:20 #22917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="218"         │

02:09:20 #22918 [Debug] > │ x2="584" y2="218"/>                                                          │

02:09:20 #22919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="209"         │

02:09:20 #22920 [Debug] > │ x2="584" y2="209"/>                                                          │

02:09:20 #22921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:09:20 #22922 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:20 #22923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:09:20 #22924 [Debug] > │ x2="584" y2="189"/>                                                          │

02:09:20 #22925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:20 #22926 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:20 #22927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="170"         │

02:09:20 #22928 [Debug] > │ x2="584" y2="170"/>                                                          │

02:09:20 #22929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="160"         │

02:09:20 #22930 [Debug] > │ x2="584" y2="160"/>                                                          │

02:09:20 #22931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:20 #22932 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:20 #22933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="141"         │

02:09:20 #22934 [Debug] > │ x2="584" y2="141"/>                                                          │

02:09:20 #22935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:20 #22936 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:20 #22937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:09:20 #22938 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:20 #22939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:20 #22940 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:20 #22941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:09:20 #22942 [Debug] > │ x2="584" y2="102"/>                                                          │

02:09:20 #22943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:20 #22944 [Debug] > │ y2="92"/>                                                                    │

02:09:20 #22945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:20 #22946 [Debug] > │ y2="83"/>                                                                    │

02:09:20 #22947 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:20 #22948 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22949 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22950 [Debug] > │ position (m)                                                                 │

02:09:20 #22951 [Debug] > │ </text>                                                                      │

02:09:20 #22952 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:20 #22953 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22954 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:20 #22955 [Debug] > │ displacement (m)                                                             │

02:09:20 #22956 [Debug] > │ </text>                                                                      │

02:09:20 #22957 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:20 #22958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22959 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #22960 [Debug] > │ position (m)                                                                 │

02:09:20 #22961 [Debug] > │ </text>                                                                      │

02:09:20 #22962 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:20 #22963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #22964 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:20 #22965 [Debug] > │ displacement (m)                                                             │

02:09:20 #22966 [Debug] > │ </text>                                                                      │

02:09:20 #22967 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #22968 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #22969 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:20 #22970 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:20 #22971 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:20 #22972 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:20 #22973 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:20 #22974 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:20 #22975 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:20 #22976 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:20 #22977 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:20 #22978 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:20 #22979 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:20 #22980 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:20 #22981 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:20 #22982 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:20 #22983 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:20 #22984 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:20 #22985 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:20 #22986 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:20 #22987 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:20 #22988 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:20 #22989 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="490" y1="424"        │

02:09:20 #22990 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:20 #22991 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="528" y1="424"        │

02:09:20 #22992 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:20 #22993 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="566" y1="424"        │

02:09:20 #22994 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:20 #22995 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="422"         │

02:09:20 #22996 [Debug] > │ x2="584" y2="422"/>                                                          │

02:09:20 #22997 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="373"         │

02:09:20 #22998 [Debug] > │ x2="584" y2="373"/>                                                          │

02:09:20 #22999 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="325"         │

02:09:20 #23000 [Debug] > │ x2="584" y2="325"/>                                                          │

02:09:20 #23001 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="276"         │

02:09:20 #23002 [Debug] > │ x2="584" y2="276"/>                                                          │

02:09:20 #23003 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="228"         │

02:09:20 #23004 [Debug] > │ x2="584" y2="228"/>                                                          │

02:09:20 #23005 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="180"         │

02:09:20 #23006 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:20 #23007 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="131"         │

02:09:20 #23008 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:20 #23009 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:20 #23010 [Debug] > │ y2="83"/>                                                                    │

02:09:20 #23011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23012 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:20 #23013 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:20 #23014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23016 [Debug] > │ 0.0                                                                          │

02:09:20 #23017 [Debug] > │ </text>                                                                      │

02:09:20 #23018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23019 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:20 #23020 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23023 [Debug] > │ 0.1                                                                          │

02:09:20 #23024 [Debug] > │ </text>                                                                      │

02:09:20 #23025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23026 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:20 #23027 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23029 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23030 [Debug] > │ 0.1                                                                          │

02:09:20 #23031 [Debug] > │ </text>                                                                      │

02:09:20 #23032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23033 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:20 #23034 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23037 [Debug] > │ 0.2                                                                          │

02:09:20 #23038 [Debug] > │ </text>                                                                      │

02:09:20 #23039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23040 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:20 #23041 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23043 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23044 [Debug] > │ 0.2                                                                          │

02:09:20 #23045 [Debug] > │ </text>                                                                      │

02:09:20 #23046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23047 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:20 #23048 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23049 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23050 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23051 [Debug] > │ 0.2                                                                          │

02:09:20 #23052 [Debug] > │ </text>                                                                      │

02:09:20 #23053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23054 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:20 #23055 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23056 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23057 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23058 [Debug] > │ 0.3                                                                          │

02:09:20 #23059 [Debug] > │ </text>                                                                      │

02:09:20 #23060 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23061 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:20 #23062 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23064 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23065 [Debug] > │ 0.3                                                                          │

02:09:20 #23066 [Debug] > │ </text>                                                                      │

02:09:20 #23067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23068 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:20 #23069 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23070 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23071 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23072 [Debug] > │ 0.4                                                                          │

02:09:20 #23073 [Debug] > │ </text>                                                                      │

02:09:20 #23074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23075 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:20 #23076 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23077 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23078 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23079 [Debug] > │ 0.4                                                                          │

02:09:20 #23080 [Debug] > │ </text>                                                                      │

02:09:20 #23081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23082 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:20 #23083 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23084 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23085 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23086 [Debug] > │ 0.5                                                                          │

02:09:20 #23087 [Debug] > │ </text>                                                                      │

02:09:20 #23088 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23089 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:20 #23090 [Debug] > │ <text x="490" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23091 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23092 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23093 [Debug] > │ 0.5                                                                          │

02:09:20 #23094 [Debug] > │ </text>                                                                      │

02:09:20 #23095 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23096 [Debug] > │ points="490,69 490,74 "/>                                                    │

02:09:20 #23097 [Debug] > │ <text x="528" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23100 [Debug] > │ 0.6                                                                          │

02:09:20 #23101 [Debug] > │ </text>                                                                      │

02:09:20 #23102 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23103 [Debug] > │ points="528,69 528,74 "/>                                                    │

02:09:20 #23104 [Debug] > │ <text x="566" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23105 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23106 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23107 [Debug] > │ 0.7                                                                          │

02:09:20 #23108 [Debug] > │ </text>                                                                      │

02:09:20 #23109 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23110 [Debug] > │ points="566,69 566,74 "/>                                                    │

02:09:20 #23111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23112 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:20 #23113 [Debug] > │ <text x="45" y="422" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23114 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23115 [Debug] > │ -0.0                                                                         │

02:09:20 #23116 [Debug] > │ </text>                                                                      │

02:09:20 #23117 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23118 [Debug] > │ points="49,422 54,422 "/>                                                    │

02:09:20 #23119 [Debug] > │ <text x="45" y="373" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23120 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23121 [Debug] > │ -0.0                                                                         │

02:09:20 #23122 [Debug] > │ </text>                                                                      │

02:09:20 #23123 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23124 [Debug] > │ points="49,373 54,373 "/>                                                    │

02:09:20 #23125 [Debug] > │ <text x="45" y="325" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23126 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23127 [Debug] > │ 0.0                                                                          │

02:09:20 #23128 [Debug] > │ </text>                                                                      │

02:09:20 #23129 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23130 [Debug] > │ points="49,325 54,325 "/>                                                    │

02:09:20 #23131 [Debug] > │ <text x="45" y="276" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23132 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23133 [Debug] > │ 0.0                                                                          │

02:09:20 #23134 [Debug] > │ </text>                                                                      │

02:09:20 #23135 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23136 [Debug] > │ points="49,276 54,276 "/>                                                    │

02:09:20 #23137 [Debug] > │ <text x="45" y="228" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23138 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23139 [Debug] > │ 0.0                                                                          │

02:09:20 #23140 [Debug] > │ </text>                                                                      │

02:09:20 #23141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23142 [Debug] > │ points="49,228 54,228 "/>                                                    │

02:09:20 #23143 [Debug] > │ <text x="45" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23144 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23145 [Debug] > │ 0.0                                                                          │

02:09:20 #23146 [Debug] > │ </text>                                                                      │

02:09:20 #23147 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23148 [Debug] > │ points="49,180 54,180 "/>                                                    │

02:09:20 #23149 [Debug] > │ <text x="45" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23150 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23151 [Debug] > │ 0.0                                                                          │

02:09:20 #23152 [Debug] > │ </text>                                                                      │

02:09:20 #23153 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23154 [Debug] > │ points="49,131 54,131 "/>                                                    │

02:09:20 #23155 [Debug] > │ <text x="45" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:20 #23156 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23157 [Debug] > │ 0.0                                                                          │

02:09:20 #23158 [Debug] > │ </text>                                                                      │

02:09:20 #23159 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23160 [Debug] > │ points="49,83 54,83 "/>                                                      │

02:09:20 #23161 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23162 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:20 #23163 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:20 #23164 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23165 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23166 [Debug] > │ 0.0                                                                          │

02:09:20 #23167 [Debug] > │ </text>                                                                      │

02:09:20 #23168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23169 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:20 #23170 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23171 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23172 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23173 [Debug] > │ 0.1                                                                          │

02:09:20 #23174 [Debug] > │ </text>                                                                      │

02:09:20 #23175 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23176 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:20 #23177 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23178 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23179 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23180 [Debug] > │ 0.1                                                                          │

02:09:20 #23181 [Debug] > │ </text>                                                                      │

02:09:20 #23182 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23183 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:20 #23184 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23185 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23186 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23187 [Debug] > │ 0.2                                                                          │

02:09:20 #23188 [Debug] > │ </text>                                                                      │

02:09:20 #23189 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23190 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:20 #23191 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23192 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23193 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23194 [Debug] > │ 0.2                                                                          │

02:09:20 #23195 [Debug] > │ </text>                                                                      │

02:09:20 #23196 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23197 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:20 #23198 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23199 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23200 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23201 [Debug] > │ 0.2                                                                          │

02:09:20 #23202 [Debug] > │ </text>                                                                      │

02:09:20 #23203 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23204 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:20 #23205 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23206 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23207 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23208 [Debug] > │ 0.3                                                                          │

02:09:20 #23209 [Debug] > │ </text>                                                                      │

02:09:20 #23210 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23211 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:20 #23212 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23213 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23214 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23215 [Debug] > │ 0.3                                                                          │

02:09:20 #23216 [Debug] > │ </text>                                                                      │

02:09:20 #23217 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23218 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:20 #23219 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23220 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23221 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23222 [Debug] > │ 0.4                                                                          │

02:09:20 #23223 [Debug] > │ </text>                                                                      │

02:09:20 #23224 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23225 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:20 #23226 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23227 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23228 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23229 [Debug] > │ 0.4                                                                          │

02:09:20 #23230 [Debug] > │ </text>                                                                      │

02:09:20 #23231 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23232 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:20 #23233 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23234 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23235 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23236 [Debug] > │ 0.5                                                                          │

02:09:20 #23237 [Debug] > │ </text>                                                                      │

02:09:20 #23238 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23239 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:20 #23240 [Debug] > │ <text x="490" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23241 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23242 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23243 [Debug] > │ 0.5                                                                          │

02:09:20 #23244 [Debug] > │ </text>                                                                      │

02:09:20 #23245 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23246 [Debug] > │ points="490,425 490,430 "/>                                                  │

02:09:20 #23247 [Debug] > │ <text x="528" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23248 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23249 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23250 [Debug] > │ 0.6                                                                          │

02:09:20 #23251 [Debug] > │ </text>                                                                      │

02:09:20 #23252 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23253 [Debug] > │ points="528,425 528,430 "/>                                                  │

02:09:20 #23254 [Debug] > │ <text x="566" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23255 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23256 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23257 [Debug] > │ 0.7                                                                          │

02:09:20 #23258 [Debug] > │ </text>                                                                      │

02:09:20 #23259 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23260 [Debug] > │ points="566,425 566,430 "/>                                                  │

02:09:20 #23261 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23262 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:20 #23263 [Debug] > │ <text x="595" y="422" dy="0.5ex" text-anchor="start"                         │

02:09:20 #23264 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23265 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23266 [Debug] > │ -0.0                                                                         │

02:09:20 #23267 [Debug] > │ </text>                                                                      │

02:09:20 #23268 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23269 [Debug] > │ points="585,422 590,422 "/>                                                  │

02:09:20 #23270 [Debug] > │ <text x="595" y="373" dy="0.5ex" text-anchor="start"                         │

02:09:20 #23271 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23272 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23273 [Debug] > │ -0.0                                                                         │

02:09:20 #23274 [Debug] > │ </text>                                                                      │

02:09:20 #23275 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23276 [Debug] > │ points="585,373 590,373 "/>                                                  │

02:09:20 #23277 [Debug] > │ <text x="617" y="325" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23278 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23279 [Debug] > │ 0.0                                                                          │

02:09:20 #23280 [Debug] > │ </text>                                                                      │

02:09:20 #23281 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23282 [Debug] > │ points="585,325 590,325 "/>                                                  │

02:09:20 #23283 [Debug] > │ <text x="617" y="276" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23284 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23285 [Debug] > │ 0.0                                                                          │

02:09:20 #23286 [Debug] > │ </text>                                                                      │

02:09:20 #23287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23288 [Debug] > │ points="585,276 590,276 "/>                                                  │

02:09:20 #23289 [Debug] > │ <text x="617" y="228" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23290 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23291 [Debug] > │ 0.0                                                                          │

02:09:20 #23292 [Debug] > │ </text>                                                                      │

02:09:20 #23293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23294 [Debug] > │ points="585,228 590,228 "/>                                                  │

02:09:20 #23295 [Debug] > │ <text x="617" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23296 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23297 [Debug] > │ 0.0                                                                          │

02:09:20 #23298 [Debug] > │ </text>                                                                      │

02:09:20 #23299 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23300 [Debug] > │ points="585,180 590,180 "/>                                                  │

02:09:20 #23301 [Debug] > │ <text x="617" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23302 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23303 [Debug] > │ 0.0                                                                          │

02:09:20 #23304 [Debug] > │ </text>                                                                      │

02:09:20 #23305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23306 [Debug] > │ points="585,131 590,131 "/>                                                  │

02:09:20 #23307 [Debug] > │ <text x="617" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23308 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23309 [Debug] > │ 0.0                                                                          │

02:09:20 #23310 [Debug] > │ </text>                                                                      │

02:09:20 #23311 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23312 [Debug] > │ points="585,83 590,83 "/>                                                    │

02:09:20 #23313 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #23314 [Debug] > │ points="69,325 77,312 85,299 92,287 100,276 108,265 115,256 123,249 131,242  │

02:09:20 #23315 [Debug] > │ 138,238 146,236 153,235 161,236 169,239 176,244 184,251 192,259 199,269      │

02:09:20 #23316 [Debug] > │ 207,279 215,291 222,303 230,316 237,329 245,342 253,355 260,367 268,378      │

02:09:20 #23317 [Debug] > │ 276,388 283,396 291,404 299,409 306,413 314,415 322,415 329,413 337,409      │

02:09:20 #23318 [Debug] > │ 344,404 352,396 360,388 367,378 375,367 383,355 390,342 398,329 406,316      │

02:09:20 #23319 [Debug] > │ 413,303 421,291 428,279 436,269 444,259 451,251 459,244 466,238 473,230      │

02:09:20 #23320 [Debug] > │ 477,216 478,189 476,157 476,132 477,116 476,100 476,90 476,85 543,223        │

02:09:20 #23321 [Debug] > │ 551,256 569,337 566,325 "/>                                                  │

02:09:20 #23322 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:20 #23323 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:20 #23324 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:20 #23325 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23326 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23327 [Debug] > │ 13                                                                           │

02:09:20 #23328 [Debug] > │ </text>                                                                      │

02:09:20 #23329 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #23330 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:20 #23331 [Debug] > │ </svg>                                                                       │

02:09:20 #23332 [Debug] > │ </td></tr><tr><td>14</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:20 #23333 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:20 #23334 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:20 #23335 [Debug] > │ stroke="none"/>                                                              │

02:09:20 #23336 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:20 #23337 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23338 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23339 [Debug] > │ wave                                                                         │

02:09:20 #23340 [Debug] > │ </text>                                                                      │

02:09:20 #23341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:20 #23342 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #23344 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:20 #23346 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:20 #23348 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:20 #23350 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:20 #23352 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:20 #23353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:20 #23354 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:20 #23355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:20 #23356 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:20 #23357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:20 #23358 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:20 #23359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:20 #23360 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:20 #23361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:20 #23362 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:20 #23363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:20 #23364 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:20 #23365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:20 #23366 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:20 #23367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:20 #23368 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:20 #23369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:20 #23370 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:20 #23371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:20 #23372 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:20 #23373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:20 #23374 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:20 #23375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:20 #23376 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:20 #23377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:20 #23378 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:20 #23379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:20 #23380 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:20 #23381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:20 #23382 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:20 #23383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:20 #23384 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:20 #23385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:20 #23386 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:20 #23387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:20 #23388 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:20 #23389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:20 #23390 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:20 #23391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:20 #23392 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:20 #23393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:20 #23394 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:20 #23395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:20 #23396 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:20 #23397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:20 #23398 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:20 #23399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:20 #23400 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:20 #23401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:20 #23402 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:20 #23403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:20 #23404 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:20 #23405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:20 #23406 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:20 #23407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:20 #23408 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:20 #23409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:20 #23410 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:20 #23411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:20 #23412 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:20 #23413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:20 #23414 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:20 #23415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:20 #23416 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:20 #23417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:20 #23418 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:20 #23419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:20 #23420 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:20 #23421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:20 #23422 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:20 #23423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:20 #23424 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:20 #23425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:20 #23426 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:20 #23427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:20 #23428 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:20 #23429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:20 #23430 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:20 #23431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:20 #23432 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:20 #23433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:20 #23434 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:20 #23435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:20 #23436 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:20 #23437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:20 #23438 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:20 #23439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:20 #23440 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:20 #23441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:20 #23442 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:20 #23443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:20 #23444 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:20 #23445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:20 #23446 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:20 #23447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:20 #23448 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:20 #23449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:20 #23450 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:20 #23451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:20 #23452 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:20 #23453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:20 #23454 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:20 #23455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:20 #23456 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:20 #23457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:20 #23458 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:20 #23459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:20 #23460 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:20 #23461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:20 #23462 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:20 #23463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:20 #23464 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:20 #23465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:20 #23466 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:20 #23467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:20 #23468 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:20 #23469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:20 #23470 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:20 #23471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:20 #23472 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:20 #23473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:20 #23474 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:20 #23475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:20 #23476 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:20 #23477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="424"         │

02:09:20 #23478 [Debug] > │ x2="584" y2="424"/>                                                          │

02:09:20 #23479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="414"         │

02:09:20 #23480 [Debug] > │ x2="584" y2="414"/>                                                          │

02:09:20 #23481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="403"         │

02:09:20 #23482 [Debug] > │ x2="584" y2="403"/>                                                          │

02:09:20 #23483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:20 #23484 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:20 #23485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:20 #23486 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:20 #23487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:09:20 #23488 [Debug] > │ x2="584" y2="372"/>                                                          │

02:09:20 #23489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="361"         │

02:09:20 #23490 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:20 #23491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:20 #23492 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:20 #23493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:20 #23494 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:20 #23495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:09:20 #23496 [Debug] > │ x2="584" y2="330"/>                                                          │

02:09:20 #23497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:20 #23498 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:20 #23499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:20 #23500 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:20 #23501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="298"         │

02:09:20 #23502 [Debug] > │ x2="584" y2="298"/>                                                          │

02:09:20 #23503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:09:20 #23504 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:20 #23505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="277"         │

02:09:20 #23506 [Debug] > │ x2="584" y2="277"/>                                                          │

02:09:20 #23507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:20 #23508 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:20 #23509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:09:20 #23510 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:20 #23511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="246"         │

02:09:20 #23512 [Debug] > │ x2="584" y2="246"/>                                                          │

02:09:20 #23513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="236"         │

02:09:20 #23514 [Debug] > │ x2="584" y2="236"/>                                                          │

02:09:20 #23515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="225"         │

02:09:20 #23516 [Debug] > │ x2="584" y2="225"/>                                                          │

02:09:20 #23517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:09:20 #23518 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:20 #23519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="204"         │

02:09:20 #23520 [Debug] > │ x2="584" y2="204"/>                                                          │

02:09:20 #23521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="194"         │

02:09:20 #23522 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:20 #23523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:20 #23524 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:20 #23525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="173"         │

02:09:20 #23526 [Debug] > │ x2="584" y2="173"/>                                                          │

02:09:20 #23527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:09:20 #23528 [Debug] > │ x2="584" y2="162"/>                                                          │

02:09:20 #23529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:09:20 #23530 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:20 #23531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="141"         │

02:09:20 #23532 [Debug] > │ x2="584" y2="141"/>                                                          │

02:09:20 #23533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:20 #23534 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:20 #23535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="120"         │

02:09:20 #23536 [Debug] > │ x2="584" y2="120"/>                                                          │

02:09:20 #23537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:09:20 #23538 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:20 #23539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="100"         │

02:09:20 #23540 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:20 #23541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:09:20 #23542 [Debug] > │ y2="89"/>                                                                    │

02:09:20 #23543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:20 #23544 [Debug] > │ y2="79"/>                                                                    │

02:09:20 #23545 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:20 #23546 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23547 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23548 [Debug] > │ position (m)                                                                 │

02:09:20 #23549 [Debug] > │ </text>                                                                      │

02:09:20 #23550 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:20 #23551 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23552 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:20 #23553 [Debug] > │ displacement (m)                                                             │

02:09:20 #23554 [Debug] > │ </text>                                                                      │

02:09:20 #23555 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:20 #23556 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23557 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23558 [Debug] > │ position (m)                                                                 │

02:09:20 #23559 [Debug] > │ </text>                                                                      │

02:09:20 #23560 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23561 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23562 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:20 #23563 [Debug] > │ displacement (m)                                                             │

02:09:20 #23564 [Debug] > │ </text>                                                                      │

02:09:20 #23565 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #23566 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23567 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:20 #23568 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:20 #23569 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:20 #23570 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:20 #23571 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:20 #23572 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:20 #23573 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:20 #23574 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:20 #23575 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:20 #23576 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:20 #23577 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:20 #23578 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:20 #23579 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:20 #23580 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:20 #23581 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:20 #23582 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:20 #23583 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:20 #23584 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:20 #23585 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:20 #23586 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:20 #23587 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:20 #23588 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:20 #23589 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:20 #23590 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:20 #23591 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:20 #23592 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:20 #23593 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="393"         │

02:09:20 #23594 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:20 #23595 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="340"         │

02:09:20 #23596 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:20 #23597 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="288"         │

02:09:20 #23598 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:20 #23599 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="236"         │

02:09:20 #23600 [Debug] > │ x2="584" y2="236"/>                                                          │

02:09:20 #23601 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:20 #23602 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:20 #23603 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="131"         │

02:09:20 #23604 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:20 #23605 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:20 #23606 [Debug] > │ y2="79"/>                                                                    │

02:09:20 #23607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23608 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:20 #23609 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:20 #23610 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23611 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23612 [Debug] > │ 0.0                                                                          │

02:09:20 #23613 [Debug] > │ </text>                                                                      │

02:09:20 #23614 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23615 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:20 #23616 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23617 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23618 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23619 [Debug] > │ 0.1                                                                          │

02:09:20 #23620 [Debug] > │ </text>                                                                      │

02:09:20 #23621 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23622 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:20 #23623 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23624 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23625 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23626 [Debug] > │ 0.1                                                                          │

02:09:20 #23627 [Debug] > │ </text>                                                                      │

02:09:20 #23628 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23629 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:20 #23630 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23631 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23632 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23633 [Debug] > │ 0.2                                                                          │

02:09:20 #23634 [Debug] > │ </text>                                                                      │

02:09:20 #23635 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23636 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:20 #23637 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23638 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23639 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23640 [Debug] > │ 0.2                                                                          │

02:09:20 #23641 [Debug] > │ </text>                                                                      │

02:09:20 #23642 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23643 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:20 #23644 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23645 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23646 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23647 [Debug] > │ 0.2                                                                          │

02:09:20 #23648 [Debug] > │ </text>                                                                      │

02:09:20 #23649 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23650 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:20 #23651 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23652 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23653 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23654 [Debug] > │ 0.3                                                                          │

02:09:20 #23655 [Debug] > │ </text>                                                                      │

02:09:20 #23656 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23657 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:20 #23658 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23659 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23660 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23661 [Debug] > │ 0.3                                                                          │

02:09:20 #23662 [Debug] > │ </text>                                                                      │

02:09:20 #23663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23664 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:20 #23665 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23667 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23668 [Debug] > │ 0.4                                                                          │

02:09:20 #23669 [Debug] > │ </text>                                                                      │

02:09:20 #23670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23671 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:20 #23672 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23674 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23675 [Debug] > │ 0.4                                                                          │

02:09:20 #23676 [Debug] > │ </text>                                                                      │

02:09:20 #23677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23678 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:20 #23679 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23682 [Debug] > │ 0.5                                                                          │

02:09:20 #23683 [Debug] > │ </text>                                                                      │

02:09:20 #23684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23685 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:20 #23686 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23688 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23689 [Debug] > │ 0.5                                                                          │

02:09:20 #23690 [Debug] > │ </text>                                                                      │

02:09:20 #23691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23692 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:20 #23693 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23694 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23695 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23696 [Debug] > │ 0.6                                                                          │

02:09:20 #23697 [Debug] > │ </text>                                                                      │

02:09:20 #23698 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23699 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:20 #23700 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #23701 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23702 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23703 [Debug] > │ 0.7                                                                          │

02:09:20 #23704 [Debug] > │ </text>                                                                      │

02:09:20 #23705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23706 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:20 #23707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23708 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:20 #23709 [Debug] > │ <text x="45" y="393" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23710 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23711 [Debug] > │ -0.0                                                                         │

02:09:20 #23712 [Debug] > │ </text>                                                                      │

02:09:20 #23713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23714 [Debug] > │ points="49,393 54,393 "/>                                                    │

02:09:20 #23715 [Debug] > │ <text x="45" y="340" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23716 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23717 [Debug] > │ 0.0                                                                          │

02:09:20 #23718 [Debug] > │ </text>                                                                      │

02:09:20 #23719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23720 [Debug] > │ points="49,340 54,340 "/>                                                    │

02:09:20 #23721 [Debug] > │ <text x="45" y="288" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23722 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23723 [Debug] > │ 0.0                                                                          │

02:09:20 #23724 [Debug] > │ </text>                                                                      │

02:09:20 #23725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23726 [Debug] > │ points="49,288 54,288 "/>                                                    │

02:09:20 #23727 [Debug] > │ <text x="45" y="236" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23728 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23729 [Debug] > │ 0.0                                                                          │

02:09:20 #23730 [Debug] > │ </text>                                                                      │

02:09:20 #23731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23732 [Debug] > │ points="49,236 54,236 "/>                                                    │

02:09:20 #23733 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23734 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23735 [Debug] > │ 0.0                                                                          │

02:09:20 #23736 [Debug] > │ </text>                                                                      │

02:09:20 #23737 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23738 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:20 #23739 [Debug] > │ <text x="45" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23740 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23741 [Debug] > │ 0.0                                                                          │

02:09:20 #23742 [Debug] > │ </text>                                                                      │

02:09:20 #23743 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23744 [Debug] > │ points="49,131 54,131 "/>                                                    │

02:09:20 #23745 [Debug] > │ <text x="45" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:20 #23746 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23747 [Debug] > │ 0.0                                                                          │

02:09:20 #23748 [Debug] > │ </text>                                                                      │

02:09:20 #23749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23750 [Debug] > │ points="49,79 54,79 "/>                                                      │

02:09:20 #23751 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23752 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:20 #23753 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:20 #23754 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23755 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23756 [Debug] > │ 0.0                                                                          │

02:09:20 #23757 [Debug] > │ </text>                                                                      │

02:09:20 #23758 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23759 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:20 #23760 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23761 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23762 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23763 [Debug] > │ 0.1                                                                          │

02:09:20 #23764 [Debug] > │ </text>                                                                      │

02:09:20 #23765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23766 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:20 #23767 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23768 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23769 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23770 [Debug] > │ 0.1                                                                          │

02:09:20 #23771 [Debug] > │ </text>                                                                      │

02:09:20 #23772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23773 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:20 #23774 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23776 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23777 [Debug] > │ 0.2                                                                          │

02:09:20 #23778 [Debug] > │ </text>                                                                      │

02:09:20 #23779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23780 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:20 #23781 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23783 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23784 [Debug] > │ 0.2                                                                          │

02:09:20 #23785 [Debug] > │ </text>                                                                      │

02:09:20 #23786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23787 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:20 #23788 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23789 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23790 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23791 [Debug] > │ 0.2                                                                          │

02:09:20 #23792 [Debug] > │ </text>                                                                      │

02:09:20 #23793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23794 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:20 #23795 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23797 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23798 [Debug] > │ 0.3                                                                          │

02:09:20 #23799 [Debug] > │ </text>                                                                      │

02:09:20 #23800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23801 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:20 #23802 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23803 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23804 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23805 [Debug] > │ 0.3                                                                          │

02:09:20 #23806 [Debug] > │ </text>                                                                      │

02:09:20 #23807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23808 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:20 #23809 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23810 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23811 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23812 [Debug] > │ 0.4                                                                          │

02:09:20 #23813 [Debug] > │ </text>                                                                      │

02:09:20 #23814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23815 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:20 #23816 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23817 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23818 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23819 [Debug] > │ 0.4                                                                          │

02:09:20 #23820 [Debug] > │ </text>                                                                      │

02:09:20 #23821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23822 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:20 #23823 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23824 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23825 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23826 [Debug] > │ 0.5                                                                          │

02:09:20 #23827 [Debug] > │ </text>                                                                      │

02:09:20 #23828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23829 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:20 #23830 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23831 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23832 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23833 [Debug] > │ 0.5                                                                          │

02:09:20 #23834 [Debug] > │ </text>                                                                      │

02:09:20 #23835 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23836 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:20 #23837 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23838 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23839 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23840 [Debug] > │ 0.6                                                                          │

02:09:20 #23841 [Debug] > │ </text>                                                                      │

02:09:20 #23842 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23843 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:20 #23844 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #23845 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23846 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23847 [Debug] > │ 0.7                                                                          │

02:09:20 #23848 [Debug] > │ </text>                                                                      │

02:09:20 #23849 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23850 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:20 #23851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23852 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:20 #23853 [Debug] > │ <text x="595" y="393" dy="0.5ex" text-anchor="start"                         │

02:09:20 #23854 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23855 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23856 [Debug] > │ -0.0                                                                         │

02:09:20 #23857 [Debug] > │ </text>                                                                      │

02:09:20 #23858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23859 [Debug] > │ points="585,393 590,393 "/>                                                  │

02:09:20 #23860 [Debug] > │ <text x="617" y="340" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23861 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23862 [Debug] > │ 0.0                                                                          │

02:09:20 #23863 [Debug] > │ </text>                                                                      │

02:09:20 #23864 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23865 [Debug] > │ points="585,340 590,340 "/>                                                  │

02:09:20 #23866 [Debug] > │ <text x="617" y="288" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23867 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23868 [Debug] > │ 0.0                                                                          │

02:09:20 #23869 [Debug] > │ </text>                                                                      │

02:09:20 #23870 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23871 [Debug] > │ points="585,288 590,288 "/>                                                  │

02:09:20 #23872 [Debug] > │ <text x="617" y="236" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23873 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23874 [Debug] > │ 0.0                                                                          │

02:09:20 #23875 [Debug] > │ </text>                                                                      │

02:09:20 #23876 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23877 [Debug] > │ points="585,236 590,236 "/>                                                  │

02:09:20 #23878 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23879 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23880 [Debug] > │ 0.0                                                                          │

02:09:20 #23881 [Debug] > │ </text>                                                                      │

02:09:20 #23882 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23883 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:20 #23884 [Debug] > │ <text x="617" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #23885 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23886 [Debug] > │ 0.0                                                                          │

02:09:20 #23887 [Debug] > │ </text>                                                                      │

02:09:20 #23888 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23889 [Debug] > │ points="585,131 590,131 "/>                                                  │

02:09:20 #23890 [Debug] > │ <text x="617" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #23891 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #23892 [Debug] > │ 0.0                                                                          │

02:09:20 #23893 [Debug] > │ </text>                                                                      │

02:09:20 #23894 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #23895 [Debug] > │ points="585,79 590,79 "/>                                                    │

02:09:20 #23896 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #23897 [Debug] > │ points="69,340 77,330 85,319 92,309 100,299 107,291 115,283 123,277 130,272  │

02:09:20 #23898 [Debug] > │ 138,268 145,266 153,266 160,267 168,269 176,273 183,279 191,286 198,294      │

02:09:20 #23899 [Debug] > │ 206,302 214,312 221,322 229,333 236,344 244,355 251,365 259,375 267,384      │

02:09:20 #23900 [Debug] > │ 274,392 282,400 289,405 297,410 304,413 312,415 320,415 327,413 335,410      │

02:09:20 #23901 [Debug] > │ 342,405 350,400 358,392 365,384 373,375 380,365 388,355 395,344 403,333      │

02:09:20 #23902 [Debug] > │ 411,322 418,312 426,302 433,294 441,286 448,279 456,273 463,265 468,253      │

02:09:20 #23903 [Debug] > │ 470,229 469,193 468,159 469,137 469,118 468,101 469,91 469,85 540,230        │

02:09:20 #23904 [Debug] > │ 547,265 569,372 562,340 "/>                                                  │

02:09:20 #23905 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:20 #23906 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:20 #23907 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:20 #23908 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23909 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23910 [Debug] > │ 14                                                                           │

02:09:20 #23911 [Debug] > │ </text>                                                                      │

02:09:20 #23912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #23913 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:20 #23914 [Debug] > │ </svg>                                                                       │

02:09:20 #23915 [Debug] > │ </td></tr><tr><td>15</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:20 #23916 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:20 #23917 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:20 #23918 [Debug] > │ stroke="none"/>                                                              │

02:09:20 #23919 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:20 #23920 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #23921 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #23922 [Debug] > │ wave                                                                         │

02:09:20 #23923 [Debug] > │ </text>                                                                      │

02:09:20 #23924 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:20 #23925 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23926 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #23927 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23928 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:20 #23929 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23930 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:20 #23931 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23932 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:20 #23933 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #23934 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:20 #23935 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:20 #23936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:20 #23937 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:20 #23938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:20 #23939 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:20 #23940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:20 #23941 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:20 #23942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:20 #23943 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:20 #23944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:20 #23945 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:20 #23946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:20 #23947 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:20 #23948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:20 #23949 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:20 #23950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:20 #23951 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:20 #23952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:20 #23953 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:20 #23954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:20 #23955 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:20 #23956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:20 #23957 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:20 #23958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="190" y1="424"        │

02:09:20 #23959 [Debug] > │ x2="190" y2="75"/>                                                           │

02:09:20 #23960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:20 #23961 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:20 #23962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:20 #23963 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:20 #23964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:20 #23965 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:20 #23966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:20 #23967 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:20 #23968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:20 #23969 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:20 #23970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:20 #23971 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:20 #23972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="243" y1="424"        │

02:09:20 #23973 [Debug] > │ x2="243" y2="75"/>                                                           │

02:09:20 #23974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:20 #23975 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:20 #23976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:20 #23977 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:20 #23978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:20 #23979 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:20 #23980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:20 #23981 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:20 #23982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:20 #23983 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:20 #23984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:20 #23985 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:20 #23986 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:20 #23987 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:20 #23988 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:20 #23989 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:20 #23990 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:09:20 #23991 [Debug] > │ x2="311" y2="75"/>                                                           │

02:09:20 #23992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:20 #23993 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:20 #23994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:20 #23995 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:20 #23996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:20 #23997 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:20 #23998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:20 #23999 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:20 #24000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:20 #24001 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:20 #24002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:20 #24003 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:20 #24004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="364" y1="424"        │

02:09:20 #24005 [Debug] > │ x2="364" y2="75"/>                                                           │

02:09:20 #24006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:20 #24007 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:20 #24008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:20 #24009 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:20 #24010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:20 #24011 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:20 #24012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:20 #24013 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:20 #24014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:20 #24015 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:20 #24016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:20 #24017 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:20 #24018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="417" y1="424"        │

02:09:20 #24019 [Debug] > │ x2="417" y2="75"/>                                                           │

02:09:20 #24020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:20 #24021 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:20 #24022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="432" y1="424"        │

02:09:20 #24023 [Debug] > │ x2="432" y2="75"/>                                                           │

02:09:20 #24024 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:20 #24025 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:20 #24026 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:20 #24027 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:20 #24028 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:20 #24029 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:20 #24030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:20 #24031 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:20 #24032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="470" y1="424"        │

02:09:20 #24033 [Debug] > │ x2="470" y2="75"/>                                                           │

02:09:20 #24034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:20 #24035 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:20 #24036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:09:20 #24037 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:20 #24038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:20 #24039 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:20 #24040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:20 #24041 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:20 #24042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:20 #24043 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:20 #24044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:20 #24045 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:20 #24046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:20 #24047 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:20 #24048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:20 #24049 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:20 #24050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:20 #24051 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:20 #24052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:20 #24053 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:20 #24054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:20 #24055 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:20 #24056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:20 #24057 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:20 #24058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:20 #24059 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:20 #24060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:20 #24061 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:20 #24062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:09:20 #24063 [Debug] > │ x2="584" y2="404"/>                                                          │

02:09:20 #24064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:20 #24065 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:20 #24066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="381"         │

02:09:20 #24067 [Debug] > │ x2="584" y2="381"/>                                                          │

02:09:20 #24068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="370"         │

02:09:20 #24069 [Debug] > │ x2="584" y2="370"/>                                                          │

02:09:20 #24070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="358"         │

02:09:20 #24071 [Debug] > │ x2="584" y2="358"/>                                                          │

02:09:20 #24072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="347"         │

02:09:20 #24073 [Debug] > │ x2="584" y2="347"/>                                                          │

02:09:20 #24074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="335"         │

02:09:20 #24075 [Debug] > │ x2="584" y2="335"/>                                                          │

02:09:20 #24076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="324"         │

02:09:20 #24077 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:20 #24078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="312"         │

02:09:20 #24079 [Debug] > │ x2="584" y2="312"/>                                                          │

02:09:20 #24080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:20 #24081 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:20 #24082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:20 #24083 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:20 #24084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="278"         │

02:09:20 #24085 [Debug] > │ x2="584" y2="278"/>                                                          │

02:09:20 #24086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:20 #24087 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:20 #24088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="255"         │

02:09:20 #24089 [Debug] > │ x2="584" y2="255"/>                                                          │

02:09:20 #24090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="243"         │

02:09:20 #24091 [Debug] > │ x2="584" y2="243"/>                                                          │

02:09:20 #24092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:20 #24093 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:20 #24094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="221"         │

02:09:20 #24095 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:20 #24096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="209"         │

02:09:20 #24097 [Debug] > │ x2="584" y2="209"/>                                                          │

02:09:20 #24098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:20 #24099 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:20 #24100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="186"         │

02:09:20 #24101 [Debug] > │ x2="584" y2="186"/>                                                          │

02:09:20 #24102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:20 #24103 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:20 #24104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="163"         │

02:09:20 #24105 [Debug] > │ x2="584" y2="163"/>                                                          │

02:09:20 #24106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:09:20 #24107 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:20 #24108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:09:20 #24109 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:20 #24110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="129"         │

02:09:20 #24111 [Debug] > │ x2="584" y2="129"/>                                                          │

02:09:20 #24112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:09:20 #24113 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:20 #24114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:20 #24115 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:20 #24116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:20 #24117 [Debug] > │ y2="94"/>                                                                    │

02:09:20 #24118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:20 #24119 [Debug] > │ y2="83"/>                                                                    │

02:09:20 #24120 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:20 #24121 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24122 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24123 [Debug] > │ position (m)                                                                 │

02:09:20 #24124 [Debug] > │ </text>                                                                      │

02:09:20 #24125 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:20 #24126 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24127 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:20 #24128 [Debug] > │ displacement (m)                                                             │

02:09:20 #24129 [Debug] > │ </text>                                                                      │

02:09:20 #24130 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:20 #24131 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24132 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24133 [Debug] > │ position (m)                                                                 │

02:09:20 #24134 [Debug] > │ </text>                                                                      │

02:09:20 #24135 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24136 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24137 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:20 #24138 [Debug] > │ displacement (m)                                                             │

02:09:20 #24139 [Debug] > │ </text>                                                                      │

02:09:20 #24140 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #24141 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #24142 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:20 #24143 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:20 #24144 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:20 #24145 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:20 #24146 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:20 #24147 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:20 #24148 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:20 #24149 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:20 #24150 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:20 #24151 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:20 #24152 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:20 #24153 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:20 #24154 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:20 #24155 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:20 #24156 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:20 #24157 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:20 #24158 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:20 #24159 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:20 #24160 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:20 #24161 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:20 #24162 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:09:20 #24163 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:20 #24164 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:20 #24165 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:20 #24166 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:20 #24167 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:20 #24168 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="416"         │

02:09:20 #24169 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:20 #24170 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="358"         │

02:09:20 #24171 [Debug] > │ x2="584" y2="358"/>                                                          │

02:09:20 #24172 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="301"         │

02:09:20 #24173 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:20 #24174 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="243"         │

02:09:20 #24175 [Debug] > │ x2="584" y2="243"/>                                                          │

02:09:20 #24176 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="186"         │

02:09:20 #24177 [Debug] > │ x2="584" y2="186"/>                                                          │

02:09:20 #24178 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="129"         │

02:09:20 #24179 [Debug] > │ x2="584" y2="129"/>                                                          │

02:09:20 #24180 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24181 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:20 #24182 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:20 #24183 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24184 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24185 [Debug] > │ 0.0                                                                          │

02:09:20 #24186 [Debug] > │ </text>                                                                      │

02:09:20 #24187 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24188 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:20 #24189 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24190 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24191 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24192 [Debug] > │ 0.1                                                                          │

02:09:20 #24193 [Debug] > │ </text>                                                                      │

02:09:20 #24194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24195 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:20 #24196 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24197 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24198 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24199 [Debug] > │ 0.1                                                                          │

02:09:20 #24200 [Debug] > │ </text>                                                                      │

02:09:20 #24201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24202 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:20 #24203 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24204 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24205 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24206 [Debug] > │ 0.2                                                                          │

02:09:20 #24207 [Debug] > │ </text>                                                                      │

02:09:20 #24208 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24209 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:20 #24210 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24211 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24212 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24213 [Debug] > │ 0.2                                                                          │

02:09:20 #24214 [Debug] > │ </text>                                                                      │

02:09:20 #24215 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24216 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:20 #24217 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24218 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24219 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24220 [Debug] > │ 0.2                                                                          │

02:09:20 #24221 [Debug] > │ </text>                                                                      │

02:09:20 #24222 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24223 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:20 #24224 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24225 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24226 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24227 [Debug] > │ 0.3                                                                          │

02:09:20 #24228 [Debug] > │ </text>                                                                      │

02:09:20 #24229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24230 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:20 #24231 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24232 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24233 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24234 [Debug] > │ 0.3                                                                          │

02:09:20 #24235 [Debug] > │ </text>                                                                      │

02:09:20 #24236 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24237 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:20 #24238 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24239 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24240 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24241 [Debug] > │ 0.4                                                                          │

02:09:20 #24242 [Debug] > │ </text>                                                                      │

02:09:20 #24243 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24244 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:20 #24245 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24246 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24247 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24248 [Debug] > │ 0.4                                                                          │

02:09:20 #24249 [Debug] > │ </text>                                                                      │

02:09:20 #24250 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24251 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:20 #24252 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24253 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24254 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24255 [Debug] > │ 0.5                                                                          │

02:09:20 #24256 [Debug] > │ </text>                                                                      │

02:09:20 #24257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24258 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:20 #24259 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24260 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24261 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24262 [Debug] > │ 0.5                                                                          │

02:09:20 #24263 [Debug] > │ </text>                                                                      │

02:09:20 #24264 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24265 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:09:20 #24266 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24267 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24268 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24269 [Debug] > │ 0.6                                                                          │

02:09:20 #24270 [Debug] > │ </text>                                                                      │

02:09:20 #24271 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24272 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:20 #24273 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:20 #24274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24275 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24276 [Debug] > │ 0.7                                                                          │

02:09:20 #24277 [Debug] > │ </text>                                                                      │

02:09:20 #24278 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24279 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:20 #24280 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24281 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:20 #24282 [Debug] > │ <text x="45" y="416" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #24283 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24284 [Debug] > │ -0.0                                                                         │

02:09:20 #24285 [Debug] > │ </text>                                                                      │

02:09:20 #24286 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24287 [Debug] > │ points="49,416 54,416 "/>                                                    │

02:09:20 #24288 [Debug] > │ <text x="45" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #24289 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24290 [Debug] > │ 0.0                                                                          │

02:09:20 #24291 [Debug] > │ </text>                                                                      │

02:09:20 #24292 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24293 [Debug] > │ points="49,358 54,358 "/>                                                    │

02:09:20 #24294 [Debug] > │ <text x="45" y="301" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #24295 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24296 [Debug] > │ 0.0                                                                          │

02:09:20 #24297 [Debug] > │ </text>                                                                      │

02:09:20 #24298 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24299 [Debug] > │ points="49,301 54,301 "/>                                                    │

02:09:20 #24300 [Debug] > │ <text x="45" y="243" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #24301 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24302 [Debug] > │ 0.0                                                                          │

02:09:20 #24303 [Debug] > │ </text>                                                                      │

02:09:20 #24304 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24305 [Debug] > │ points="49,243 54,243 "/>                                                    │

02:09:20 #24306 [Debug] > │ <text x="45" y="186" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #24307 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24308 [Debug] > │ 0.0                                                                          │

02:09:20 #24309 [Debug] > │ </text>                                                                      │

02:09:20 #24310 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24311 [Debug] > │ points="49,186 54,186 "/>                                                    │

02:09:20 #24312 [Debug] > │ <text x="45" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:20 #24313 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24314 [Debug] > │ 0.0                                                                          │

02:09:20 #24315 [Debug] > │ </text>                                                                      │

02:09:20 #24316 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24317 [Debug] > │ points="49,129 54,129 "/>                                                    │

02:09:20 #24318 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24319 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:20 #24320 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:20 #24321 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24322 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24323 [Debug] > │ 0.0                                                                          │

02:09:20 #24324 [Debug] > │ </text>                                                                      │

02:09:20 #24325 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24326 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:20 #24327 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24328 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24329 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24330 [Debug] > │ 0.1                                                                          │

02:09:20 #24331 [Debug] > │ </text>                                                                      │

02:09:20 #24332 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24333 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:20 #24334 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24335 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24336 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24337 [Debug] > │ 0.1                                                                          │

02:09:20 #24338 [Debug] > │ </text>                                                                      │

02:09:20 #24339 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24340 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:20 #24341 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24342 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24343 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24344 [Debug] > │ 0.2                                                                          │

02:09:20 #24345 [Debug] > │ </text>                                                                      │

02:09:20 #24346 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24347 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:20 #24348 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24349 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24350 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24351 [Debug] > │ 0.2                                                                          │

02:09:20 #24352 [Debug] > │ </text>                                                                      │

02:09:20 #24353 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24354 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:20 #24355 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24356 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24357 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24358 [Debug] > │ 0.2                                                                          │

02:09:20 #24359 [Debug] > │ </text>                                                                      │

02:09:20 #24360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24361 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:20 #24362 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24363 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24364 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24365 [Debug] > │ 0.3                                                                          │

02:09:20 #24366 [Debug] > │ </text>                                                                      │

02:09:20 #24367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24368 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:20 #24369 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24371 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24372 [Debug] > │ 0.3                                                                          │

02:09:20 #24373 [Debug] > │ </text>                                                                      │

02:09:20 #24374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24375 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:20 #24376 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24378 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24379 [Debug] > │ 0.4                                                                          │

02:09:20 #24380 [Debug] > │ </text>                                                                      │

02:09:20 #24381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24382 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:20 #24383 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24384 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24385 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24386 [Debug] > │ 0.4                                                                          │

02:09:20 #24387 [Debug] > │ </text>                                                                      │

02:09:20 #24388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24389 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:20 #24390 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24392 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24393 [Debug] > │ 0.5                                                                          │

02:09:20 #24394 [Debug] > │ </text>                                                                      │

02:09:20 #24395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24396 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:20 #24397 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24399 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24400 [Debug] > │ 0.5                                                                          │

02:09:20 #24401 [Debug] > │ </text>                                                                      │

02:09:20 #24402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24403 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:09:20 #24404 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24407 [Debug] > │ 0.6                                                                          │

02:09:20 #24408 [Debug] > │ </text>                                                                      │

02:09:20 #24409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24410 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:20 #24411 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:20 #24412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24414 [Debug] > │ 0.7                                                                          │

02:09:20 #24415 [Debug] > │ </text>                                                                      │

02:09:20 #24416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24417 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:20 #24418 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24419 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:20 #24420 [Debug] > │ <text x="595" y="416" dy="0.5ex" text-anchor="start"                         │

02:09:20 #24421 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24422 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24423 [Debug] > │ -0.0                                                                         │

02:09:20 #24424 [Debug] > │ </text>                                                                      │

02:09:20 #24425 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24426 [Debug] > │ points="585,416 590,416 "/>                                                  │

02:09:20 #24427 [Debug] > │ <text x="617" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #24428 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24429 [Debug] > │ 0.0                                                                          │

02:09:20 #24430 [Debug] > │ </text>                                                                      │

02:09:20 #24431 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24432 [Debug] > │ points="585,358 590,358 "/>                                                  │

02:09:20 #24433 [Debug] > │ <text x="617" y="301" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #24434 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24435 [Debug] > │ 0.0                                                                          │

02:09:20 #24436 [Debug] > │ </text>                                                                      │

02:09:20 #24437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24438 [Debug] > │ points="585,301 590,301 "/>                                                  │

02:09:20 #24439 [Debug] > │ <text x="617" y="243" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #24440 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24441 [Debug] > │ 0.0                                                                          │

02:09:20 #24442 [Debug] > │ </text>                                                                      │

02:09:20 #24443 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24444 [Debug] > │ points="585,243 590,243 "/>                                                  │

02:09:20 #24445 [Debug] > │ <text x="617" y="186" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #24446 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24447 [Debug] > │ 0.0                                                                          │

02:09:20 #24448 [Debug] > │ </text>                                                                      │

02:09:20 #24449 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24450 [Debug] > │ points="585,186 590,186 "/>                                                  │

02:09:20 #24451 [Debug] > │ <text x="617" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:20 #24452 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:20 #24453 [Debug] > │ 0.0                                                                          │

02:09:20 #24454 [Debug] > │ </text>                                                                      │

02:09:20 #24455 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:20 #24456 [Debug] > │ points="585,129 590,129 "/>                                                  │

02:09:20 #24457 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #24458 [Debug] > │ points="69,358 77,350 85,342 92,335 100,328 107,321 115,315 122,311 130,307  │

02:09:20 #24459 [Debug] > │ 138,304 145,303 153,302 160,303 168,305 175,308 183,312 190,317 198,323      │

02:09:20 #24460 [Debug] > │ 206,330 213,337 221,345 228,353 236,361 243,369 251,377 259,385 266,392      │

02:09:20 #24461 [Debug] > │ 274,398 281,403 289,408 296,411 304,413 311,415 319,415 327,413 334,411      │

02:09:20 #24462 [Debug] > │ 342,408 349,403 357,398 364,392 372,385 380,377 387,369 395,361 402,353      │

02:09:20 #24463 [Debug] > │ 410,345 417,337 425,330 432,323 440,317 447,312 455,305 461,295 464,273      │

02:09:20 #24464 [Debug] > │ 464,238 463,196 462,165 463,143 463,119 463,102 463,92 463,85 538,237        │

02:09:20 #24465 [Debug] > │ 546,276 569,400 561,358 "/>                                                  │

02:09:20 #24466 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:20 #24467 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:20 #24468 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:20 #24469 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24470 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24471 [Debug] > │ 15                                                                           │

02:09:20 #24472 [Debug] > │ </text>                                                                      │

02:09:20 #24473 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:20 #24474 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:20 #24475 [Debug] > │ </svg>                                                                       │

02:09:20 #24476 [Debug] > │ </td></tr><tr><td>16</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:20 #24477 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:20 #24478 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:20 #24479 [Debug] > │ stroke="none"/>                                                              │

02:09:20 #24480 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:20 #24481 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:20 #24482 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:20 #24483 [Debug] > │ wave                                                                         │

02:09:20 #24484 [Debug] > │ </text>                                                                      │

02:09:20 #24485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:20 #24486 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #24487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:20 #24488 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #24489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:20 #24490 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #24491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:20 #24492 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #24493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:20 #24494 [Debug] > │ y2="75"/>                                                                    │

02:09:20 #24495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:20 #24496 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:20 #24497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:20 #24498 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:20 #24499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:20 #24500 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:20 #24501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:20 #24502 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:20 #24503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:20 #24504 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:20 #24505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:20 #24506 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:20 #24507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:20 #24508 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:20 #24509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:20 #24510 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:20 #24511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:20 #24512 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:20 #24513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:20 #24514 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:20 #24515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:20 #24516 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:20 #24517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:20 #24518 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:20 #24519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:20 #24520 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:20 #24521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:20 #24522 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:20 #24523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:20 #24524 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:20 #24525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:20 #24526 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:20 #24527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:20 #24528 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:20 #24529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:20 #24530 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:20 #24531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:20 #24532 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:20 #24533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:20 #24534 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:20 #24535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:20 #24536 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:20 #24537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:20 #24538 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:20 #24539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:20 #24540 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:20 #24541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:20 #24542 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:20 #24543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:20 #24544 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:20 #24545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:09:20 #24546 [Debug] > │ x2="290" y2="75"/>                                                           │

02:09:20 #24547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:20 #24548 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:20 #24549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:20 #24550 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:20 #24551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:20 #24552 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:20 #24553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:20 #24554 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:20 #24555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:20 #24556 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:20 #24557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:20 #24558 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:20 #24559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="343" y1="424"        │

02:09:20 #24560 [Debug] > │ x2="343" y2="75"/>                                                           │

02:09:20 #24561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:20 #24562 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:20 #24563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:20 #24564 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:20 #24565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:20 #24566 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:20 #24567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:20 #24568 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:20 #24569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:09:20 #24570 [Debug] > │ x2="381" y2="75"/>                                                           │

02:09:20 #24571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:20 #24572 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:20 #24573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:20 #24574 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:20 #24575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:20 #24576 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:20 #24577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:20 #24578 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:20 #24579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:20 #24580 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:20 #24581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:20 #24582 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:20 #24583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="434" y1="424"        │

02:09:20 #24584 [Debug] > │ x2="434" y2="75"/>                                                           │

02:09:20 #24585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:20 #24586 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:20 #24587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:20 #24588 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:20 #24589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:20 #24590 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:20 #24591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:20 #24592 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:20 #24593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="472" y1="424"        │

02:09:20 #24594 [Debug] > │ x2="472" y2="75"/>                                                           │

02:09:20 #24595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:20 #24596 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:20 #24597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:20 #24598 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:20 #24599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:20 #24600 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:20 #24601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:20 #24602 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:20 #24603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:09:20 #24604 [Debug] > │ x2="510" y2="75"/>                                                           │

02:09:20 #24605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:20 #24606 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:20 #24607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="525" y1="424"        │

02:09:20 #24608 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:20 #24609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:20 #24610 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:20 #24611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:20 #24612 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:20 #24613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:20 #24614 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:20 #24615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:20 #24616 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:20 #24617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="563" y1="424"        │

02:09:20 #24618 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:20 #24619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:20 #24620 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:20 #24621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="417"         │

02:09:20 #24622 [Debug] > │ x2="584" y2="417"/>                                                          │

02:09:20 #24623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:09:20 #24624 [Debug] > │ x2="584" y2="404"/>                                                          │

02:09:20 #24625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:20 #24626 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:20 #24627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:20 #24628 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:20 #24629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:20 #24630 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:20 #24631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:20 #24632 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:20 #24633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:20 #24634 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:20 #24635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:09:20 #24636 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:20 #24637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="315"         │

02:09:20 #24638 [Debug] > │ x2="584" y2="315"/>                                                          │

02:09:20 #24639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:20 #24640 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:20 #24641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:20 #24642 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:20 #24643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="277"         │

02:09:20 #24644 [Debug] > │ x2="584" y2="277"/>                                                          │

02:09:20 #24645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="264"         │

02:09:20 #24646 [Debug] > │ x2="584" y2="264"/>                                                          │

02:09:20 #24647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:20 #24648 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:20 #24649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="238"         │

02:09:20 #24650 [Debug] > │ x2="584" y2="238"/>                                                          │

02:09:20 #24651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="225"         │

02:09:20 #24652 [Debug] > │ x2="584" y2="225"/>                                                          │

02:09:20 #24653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:20 #24654 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:20 #24655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:20 #24656 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:20 #24657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="187"         │

02:09:20 #24658 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:20 #24659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="174"         │

02:09:20 #24660 [Debug] > │ x2="584" y2="174"/>                                                          │

02:09:20 #24661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:09:20 #24662 [Debug] > │ x2="584" y2="161"/>                                                          │

02:09:20 #24663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:09:20 #24664 [Debug] > │ x2="584" y2="149"/>                                                          │

02:09:20 #24665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="136"         │

02:09:20 #24666 [Debug] > │ x2="584" y2="136"/>                                                          │

02:09:20 #24667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="123"         │

02:09:20 #24668 [Debug] > │ x2="584" y2="123"/>                                                          │

02:09:20 #24669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:09:20 #24670 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:20 #24671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:20 #24672 [Debug] > │ y2="97"/>                                                                    │

02:09:21 #24673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:21 #24674 [Debug] > │ y2="85"/>                                                                    │

02:09:21 #24675 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:21 #24676 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24677 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24678 [Debug] > │ position (m)                                                                 │

02:09:21 #24679 [Debug] > │ </text>                                                                      │

02:09:21 #24680 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:21 #24681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24682 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:21 #24683 [Debug] > │ displacement (m)                                                             │

02:09:21 #24684 [Debug] > │ </text>                                                                      │

02:09:21 #24685 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:21 #24686 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24687 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24688 [Debug] > │ position (m)                                                                 │

02:09:21 #24689 [Debug] > │ </text>                                                                      │

02:09:21 #24690 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24691 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24692 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:21 #24693 [Debug] > │ displacement (m)                                                             │

02:09:21 #24694 [Debug] > │ </text>                                                                      │

02:09:21 #24695 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #24696 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #24697 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:21 #24698 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:21 #24699 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:21 #24700 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:21 #24701 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:21 #24702 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:21 #24703 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:21 #24704 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:21 #24705 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:21 #24706 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:21 #24707 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:21 #24708 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:21 #24709 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:21 #24710 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:21 #24711 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:21 #24712 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:21 #24713 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:21 #24714 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:21 #24715 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:21 #24716 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:21 #24717 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:21 #24718 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:21 #24719 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="525" y1="424"        │

02:09:21 #24720 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:21 #24721 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="563" y1="424"        │

02:09:21 #24722 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:21 #24723 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="379"         │

02:09:21 #24724 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:21 #24725 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="315"         │

02:09:21 #24726 [Debug] > │ x2="584" y2="315"/>                                                          │

02:09:21 #24727 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:21 #24728 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:21 #24729 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="187"         │

02:09:21 #24730 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:21 #24731 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="123"         │

02:09:21 #24732 [Debug] > │ x2="584" y2="123"/>                                                          │

02:09:21 #24733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24734 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:21 #24735 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:21 #24736 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24737 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24738 [Debug] > │ 0.0                                                                          │

02:09:21 #24739 [Debug] > │ </text>                                                                      │

02:09:21 #24740 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24741 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:21 #24742 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24743 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24744 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24745 [Debug] > │ 0.1                                                                          │

02:09:21 #24746 [Debug] > │ </text>                                                                      │

02:09:21 #24747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24748 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:21 #24749 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24750 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24751 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24752 [Debug] > │ 0.1                                                                          │

02:09:21 #24753 [Debug] > │ </text>                                                                      │

02:09:21 #24754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24755 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:21 #24756 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24757 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24758 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24759 [Debug] > │ 0.2                                                                          │

02:09:21 #24760 [Debug] > │ </text>                                                                      │

02:09:21 #24761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24762 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:21 #24763 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24764 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24765 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24766 [Debug] > │ 0.2                                                                          │

02:09:21 #24767 [Debug] > │ </text>                                                                      │

02:09:21 #24768 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24769 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:21 #24770 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24771 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24772 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24773 [Debug] > │ 0.2                                                                          │

02:09:21 #24774 [Debug] > │ </text>                                                                      │

02:09:21 #24775 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24776 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:21 #24777 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24779 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24780 [Debug] > │ 0.3                                                                          │

02:09:21 #24781 [Debug] > │ </text>                                                                      │

02:09:21 #24782 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24783 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:21 #24784 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24785 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24786 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24787 [Debug] > │ 0.3                                                                          │

02:09:21 #24788 [Debug] > │ </text>                                                                      │

02:09:21 #24789 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24790 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:21 #24791 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24793 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24794 [Debug] > │ 0.4                                                                          │

02:09:21 #24795 [Debug] > │ </text>                                                                      │

02:09:21 #24796 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24797 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:21 #24798 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24799 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24800 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24801 [Debug] > │ 0.4                                                                          │

02:09:21 #24802 [Debug] > │ </text>                                                                      │

02:09:21 #24803 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24804 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:21 #24805 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24806 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24807 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24808 [Debug] > │ 0.5                                                                          │

02:09:21 #24809 [Debug] > │ </text>                                                                      │

02:09:21 #24810 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24811 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:21 #24812 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24813 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24814 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24815 [Debug] > │ 0.5                                                                          │

02:09:21 #24816 [Debug] > │ </text>                                                                      │

02:09:21 #24817 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24818 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:21 #24819 [Debug] > │ <text x="525" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24820 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24821 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24822 [Debug] > │ 0.6                                                                          │

02:09:21 #24823 [Debug] > │ </text>                                                                      │

02:09:21 #24824 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24825 [Debug] > │ points="525,69 525,74 "/>                                                    │

02:09:21 #24826 [Debug] > │ <text x="563" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #24827 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24828 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24829 [Debug] > │ 0.7                                                                          │

02:09:21 #24830 [Debug] > │ </text>                                                                      │

02:09:21 #24831 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24832 [Debug] > │ points="563,69 563,74 "/>                                                    │

02:09:21 #24833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24834 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:21 #24835 [Debug] > │ <text x="45" y="379" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #24836 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #24837 [Debug] > │ 0.0                                                                          │

02:09:21 #24838 [Debug] > │ </text>                                                                      │

02:09:21 #24839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24840 [Debug] > │ points="49,379 54,379 "/>                                                    │

02:09:21 #24841 [Debug] > │ <text x="45" y="315" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #24842 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #24843 [Debug] > │ 0.0                                                                          │

02:09:21 #24844 [Debug] > │ </text>                                                                      │

02:09:21 #24845 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24846 [Debug] > │ points="49,315 54,315 "/>                                                    │

02:09:21 #24847 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #24848 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #24849 [Debug] > │ 0.0                                                                          │

02:09:21 #24850 [Debug] > │ </text>                                                                      │

02:09:21 #24851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24852 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:21 #24853 [Debug] > │ <text x="45" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #24854 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #24855 [Debug] > │ 0.0                                                                          │

02:09:21 #24856 [Debug] > │ </text>                                                                      │

02:09:21 #24857 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24858 [Debug] > │ points="49,187 54,187 "/>                                                    │

02:09:21 #24859 [Debug] > │ <text x="45" y="123" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #24860 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #24861 [Debug] > │ 0.0                                                                          │

02:09:21 #24862 [Debug] > │ </text>                                                                      │

02:09:21 #24863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24864 [Debug] > │ points="49,123 54,123 "/>                                                    │

02:09:21 #24865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24866 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:21 #24867 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:21 #24868 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24869 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24870 [Debug] > │ 0.0                                                                          │

02:09:21 #24871 [Debug] > │ </text>                                                                      │

02:09:21 #24872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24873 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:21 #24874 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24876 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24877 [Debug] > │ 0.1                                                                          │

02:09:21 #24878 [Debug] > │ </text>                                                                      │

02:09:21 #24879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24880 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:21 #24881 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24883 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24884 [Debug] > │ 0.1                                                                          │

02:09:21 #24885 [Debug] > │ </text>                                                                      │

02:09:21 #24886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24887 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:21 #24888 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24890 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24891 [Debug] > │ 0.2                                                                          │

02:09:21 #24892 [Debug] > │ </text>                                                                      │

02:09:21 #24893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24894 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:21 #24895 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24897 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24898 [Debug] > │ 0.2                                                                          │

02:09:21 #24899 [Debug] > │ </text>                                                                      │

02:09:21 #24900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24901 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:21 #24902 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24904 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24905 [Debug] > │ 0.2                                                                          │

02:09:21 #24906 [Debug] > │ </text>                                                                      │

02:09:21 #24907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24908 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:21 #24909 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24910 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24911 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24912 [Debug] > │ 0.3                                                                          │

02:09:21 #24913 [Debug] > │ </text>                                                                      │

02:09:21 #24914 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24915 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:21 #24916 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24917 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24918 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24919 [Debug] > │ 0.3                                                                          │

02:09:21 #24920 [Debug] > │ </text>                                                                      │

02:09:21 #24921 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24922 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:21 #24923 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24924 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24925 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24926 [Debug] > │ 0.4                                                                          │

02:09:21 #24927 [Debug] > │ </text>                                                                      │

02:09:21 #24928 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24929 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:21 #24930 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24931 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24932 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24933 [Debug] > │ 0.4                                                                          │

02:09:21 #24934 [Debug] > │ </text>                                                                      │

02:09:21 #24935 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24936 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:21 #24937 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24938 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24939 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24940 [Debug] > │ 0.5                                                                          │

02:09:21 #24941 [Debug] > │ </text>                                                                      │

02:09:21 #24942 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24943 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:21 #24944 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24945 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24946 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24947 [Debug] > │ 0.5                                                                          │

02:09:21 #24948 [Debug] > │ </text>                                                                      │

02:09:21 #24949 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24950 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:21 #24951 [Debug] > │ <text x="525" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24952 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24953 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24954 [Debug] > │ 0.6                                                                          │

02:09:21 #24955 [Debug] > │ </text>                                                                      │

02:09:21 #24956 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24957 [Debug] > │ points="525,425 525,430 "/>                                                  │

02:09:21 #24958 [Debug] > │ <text x="563" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #24959 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24960 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24961 [Debug] > │ 0.7                                                                          │

02:09:21 #24962 [Debug] > │ </text>                                                                      │

02:09:21 #24963 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24964 [Debug] > │ points="563,425 563,430 "/>                                                  │

02:09:21 #24965 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24966 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:21 #24967 [Debug] > │ <text x="595" y="379" dy="0.5ex" text-anchor="start"                         │

02:09:21 #24968 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24969 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24970 [Debug] > │ 0.0                                                                          │

02:09:21 #24971 [Debug] > │ </text>                                                                      │

02:09:21 #24972 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24973 [Debug] > │ points="585,379 590,379 "/>                                                  │

02:09:21 #24974 [Debug] > │ <text x="595" y="315" dy="0.5ex" text-anchor="start"                         │

02:09:21 #24975 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24976 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24977 [Debug] > │ 0.0                                                                          │

02:09:21 #24978 [Debug] > │ </text>                                                                      │

02:09:21 #24979 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24980 [Debug] > │ points="585,315 590,315 "/>                                                  │

02:09:21 #24981 [Debug] > │ <text x="595" y="251" dy="0.5ex" text-anchor="start"                         │

02:09:21 #24982 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24983 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24984 [Debug] > │ 0.0                                                                          │

02:09:21 #24985 [Debug] > │ </text>                                                                      │

02:09:21 #24986 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24987 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:21 #24988 [Debug] > │ <text x="595" y="187" dy="0.5ex" text-anchor="start"                         │

02:09:21 #24989 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24990 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24991 [Debug] > │ 0.0                                                                          │

02:09:21 #24992 [Debug] > │ </text>                                                                      │

02:09:21 #24993 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #24994 [Debug] > │ points="585,187 590,187 "/>                                                  │

02:09:21 #24995 [Debug] > │ <text x="595" y="123" dy="0.5ex" text-anchor="start"                         │

02:09:21 #24996 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #24997 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #24998 [Debug] > │ 0.0                                                                          │

02:09:21 #24999 [Debug] > │ </text>                                                                      │

02:09:21 #25000 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25001 [Debug] > │ points="585,123 590,123 "/>                                                  │

02:09:21 #25002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #25003 [Debug] > │ points="69,379 77,374 85,369 92,365 100,360 107,356 115,353 123,350 130,348  │

02:09:21 #25004 [Debug] > │ 138,346 145,345 153,345 161,346 168,347 176,349 183,351 191,354 198,358      │

02:09:21 #25005 [Debug] > │ 206,362 214,366 221,371 229,376 236,380 244,385 252,390 259,395 267,399      │

02:09:21 #25006 [Debug] > │ 274,402 282,406 290,408 297,410 305,412 312,412 320,412 327,412 335,410      │

02:09:21 #25007 [Debug] > │ 343,408 350,406 358,402 365,399 373,395 381,390 388,385 396,380 403,376      │

02:09:21 #25008 [Debug] > │ 411,371 418,366 426,362 434,358 441,354 448,349 455,341 460,324 461,290      │

02:09:21 #25009 [Debug] > │ 460,244 459,202 459,174 460,147 459,121 459,104 459,91 459,85 540,244        │

02:09:21 #25010 [Debug] > │ 547,287 569,415 563,379 "/>                                                  │

02:09:21 #25011 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:21 #25012 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:21 #25013 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:21 #25014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25016 [Debug] > │ 16                                                                           │

02:09:21 #25017 [Debug] > │ </text>                                                                      │

02:09:21 #25018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #25019 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:21 #25020 [Debug] > │ </svg>                                                                       │

02:09:21 #25021 [Debug] > │ </td></tr><tr><td>17</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:21 #25022 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:21 #25023 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:21 #25024 [Debug] > │ stroke="none"/>                                                              │

02:09:21 #25025 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:21 #25026 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25027 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25028 [Debug] > │ wave                                                                         │

02:09:21 #25029 [Debug] > │ </text>                                                                      │

02:09:21 #25030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:21 #25031 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #25033 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:21 #25035 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:21 #25037 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:21 #25039 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:21 #25041 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:21 #25042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:21 #25043 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #25044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:21 #25045 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:21 #25046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:21 #25047 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:21 #25048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:21 #25049 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:21 #25050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:21 #25051 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:21 #25052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:21 #25053 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #25054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:21 #25055 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:21 #25056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:21 #25057 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:21 #25058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:21 #25059 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:21 #25060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:21 #25061 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:21 #25062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:21 #25063 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:21 #25064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:21 #25065 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:21 #25066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:21 #25067 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:21 #25068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:21 #25069 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:21 #25070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:21 #25071 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:21 #25072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:21 #25073 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:21 #25074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:21 #25075 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:21 #25076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:21 #25077 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:21 #25078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:21 #25079 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:21 #25080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:21 #25081 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:21 #25082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:21 #25083 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #25084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:21 #25085 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:21 #25086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:21 #25087 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:21 #25088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:21 #25089 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:21 #25090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:21 #25091 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:21 #25092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:21 #25093 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:21 #25094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:21 #25095 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:21 #25096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:21 #25097 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:21 #25098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:21 #25099 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:21 #25100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:21 #25101 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:21 #25102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:21 #25103 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:21 #25104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:21 #25105 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:21 #25106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:21 #25107 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:21 #25108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:21 #25109 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:21 #25110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:21 #25111 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:21 #25112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:21 #25113 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:21 #25114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:21 #25115 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:21 #25116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="391" y1="424"        │

02:09:21 #25117 [Debug] > │ x2="391" y2="75"/>                                                           │

02:09:21 #25118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:21 #25119 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:21 #25120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:21 #25121 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:21 #25122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="414" y1="424"        │

02:09:21 #25123 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:21 #25124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:21 #25125 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:21 #25126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:21 #25127 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:21 #25128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="437" y1="424"        │

02:09:21 #25129 [Debug] > │ x2="437" y2="75"/>                                                           │

02:09:21 #25130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:09:21 #25131 [Debug] > │ x2="444" y2="75"/>                                                           │

02:09:21 #25132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:09:21 #25133 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:21 #25134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:21 #25135 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:21 #25136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="467" y1="424"        │

02:09:21 #25137 [Debug] > │ x2="467" y2="75"/>                                                           │

02:09:21 #25138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="475" y1="424"        │

02:09:21 #25139 [Debug] > │ x2="475" y2="75"/>                                                           │

02:09:21 #25140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="482" y1="424"        │

02:09:21 #25141 [Debug] > │ x2="482" y2="75"/>                                                           │

02:09:21 #25142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:21 #25143 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:21 #25144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="498" y1="424"        │

02:09:21 #25145 [Debug] > │ x2="498" y2="75"/>                                                           │

02:09:21 #25146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="505" y1="424"        │

02:09:21 #25147 [Debug] > │ x2="505" y2="75"/>                                                           │

02:09:21 #25148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="513" y1="424"        │

02:09:21 #25149 [Debug] > │ x2="513" y2="75"/>                                                           │

02:09:21 #25150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="521" y1="424"        │

02:09:21 #25151 [Debug] > │ x2="521" y2="75"/>                                                           │

02:09:21 #25152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="528" y1="424"        │

02:09:21 #25153 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:21 #25154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:09:21 #25155 [Debug] > │ x2="536" y2="75"/>                                                           │

02:09:21 #25156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:09:21 #25157 [Debug] > │ x2="544" y2="75"/>                                                           │

02:09:21 #25158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="551" y1="424"        │

02:09:21 #25159 [Debug] > │ x2="551" y2="75"/>                                                           │

02:09:21 #25160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:21 #25161 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:21 #25162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="567" y1="424"        │

02:09:21 #25163 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:21 #25164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="574" y1="424"        │

02:09:21 #25165 [Debug] > │ x2="574" y2="75"/>                                                           │

02:09:21 #25166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:21 #25167 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:21 #25168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:09:21 #25169 [Debug] > │ x2="584" y2="401"/>                                                          │

02:09:21 #25170 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:21 #25171 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:21 #25172 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:09:21 #25173 [Debug] > │ x2="584" y2="372"/>                                                          │

02:09:21 #25174 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="358"         │

02:09:21 #25175 [Debug] > │ x2="584" y2="358"/>                                                          │

02:09:21 #25176 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="344"         │

02:09:21 #25177 [Debug] > │ x2="584" y2="344"/>                                                          │

02:09:21 #25178 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:09:21 #25179 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:21 #25180 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="315"         │

02:09:21 #25181 [Debug] > │ x2="584" y2="315"/>                                                          │

02:09:21 #25182 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:21 #25183 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:21 #25184 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:21 #25185 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:21 #25186 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="272"         │

02:09:21 #25187 [Debug] > │ x2="584" y2="272"/>                                                          │

02:09:21 #25188 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:09:21 #25189 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:21 #25190 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="243"         │

02:09:21 #25191 [Debug] > │ x2="584" y2="243"/>                                                          │

02:09:21 #25192 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:09:21 #25193 [Debug] > │ x2="584" y2="229"/>                                                          │

02:09:21 #25194 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:21 #25195 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:21 #25196 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:21 #25197 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:21 #25198 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="185"         │

02:09:21 #25199 [Debug] > │ x2="584" y2="185"/>                                                          │

02:09:21 #25200 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:09:21 #25201 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:21 #25202 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:09:21 #25203 [Debug] > │ x2="584" y2="157"/>                                                          │

02:09:21 #25204 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:21 #25205 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:21 #25206 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="128"         │

02:09:21 #25207 [Debug] > │ x2="584" y2="128"/>                                                          │

02:09:21 #25208 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="113"         │

02:09:21 #25209 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:21 #25210 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:21 #25211 [Debug] > │ y2="99"/>                                                                    │

02:09:21 #25212 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:21 #25213 [Debug] > │ y2="85"/>                                                                    │

02:09:21 #25214 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:21 #25215 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25216 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25217 [Debug] > │ position (m)                                                                 │

02:09:21 #25218 [Debug] > │ </text>                                                                      │

02:09:21 #25219 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:21 #25220 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25221 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:21 #25222 [Debug] > │ displacement (m)                                                             │

02:09:21 #25223 [Debug] > │ </text>                                                                      │

02:09:21 #25224 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:21 #25225 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25226 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25227 [Debug] > │ position (m)                                                                 │

02:09:21 #25228 [Debug] > │ </text>                                                                      │

02:09:21 #25229 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25230 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25231 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:21 #25232 [Debug] > │ displacement (m)                                                             │

02:09:21 #25233 [Debug] > │ </text>                                                                      │

02:09:21 #25234 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #25235 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25236 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:21 #25237 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #25238 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:21 #25239 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #25240 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:21 #25241 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:21 #25242 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:21 #25243 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:21 #25244 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:21 #25245 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #25246 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:21 #25247 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:21 #25248 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:21 #25249 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:21 #25250 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:21 #25251 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:21 #25252 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="414" y1="424"        │

02:09:21 #25253 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:21 #25254 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="452" y1="424"        │

02:09:21 #25255 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:21 #25256 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="490" y1="424"        │

02:09:21 #25257 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:21 #25258 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="528" y1="424"        │

02:09:21 #25259 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:21 #25260 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="567" y1="424"        │

02:09:21 #25261 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:21 #25262 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="401"         │

02:09:21 #25263 [Debug] > │ x2="584" y2="401"/>                                                          │

02:09:21 #25264 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="365"         │

02:09:21 #25265 [Debug] > │ x2="584" y2="365"/>                                                          │

02:09:21 #25266 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="329"         │

02:09:21 #25267 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:21 #25268 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="293"         │

02:09:21 #25269 [Debug] > │ x2="584" y2="293"/>                                                          │

02:09:21 #25270 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="257"         │

02:09:21 #25271 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:21 #25272 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="221"         │

02:09:21 #25273 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:21 #25274 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="185"         │

02:09:21 #25275 [Debug] > │ x2="584" y2="185"/>                                                          │

02:09:21 #25276 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="149"         │

02:09:21 #25277 [Debug] > │ x2="584" y2="149"/>                                                          │

02:09:21 #25278 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="113"         │

02:09:21 #25279 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:21 #25280 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="77" x2="584" │

02:09:21 #25281 [Debug] > │ y2="77"/>                                                                    │

02:09:21 #25282 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25283 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:21 #25284 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:21 #25285 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25286 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25287 [Debug] > │ 0.0                                                                          │

02:09:21 #25288 [Debug] > │ </text>                                                                      │

02:09:21 #25289 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25290 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:21 #25291 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25292 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25293 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25294 [Debug] > │ 0.1                                                                          │

02:09:21 #25295 [Debug] > │ </text>                                                                      │

02:09:21 #25296 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25297 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:21 #25298 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25299 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25300 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25301 [Debug] > │ 0.1                                                                          │

02:09:21 #25302 [Debug] > │ </text>                                                                      │

02:09:21 #25303 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25304 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:21 #25305 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25306 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25307 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25308 [Debug] > │ 0.2                                                                          │

02:09:21 #25309 [Debug] > │ </text>                                                                      │

02:09:21 #25310 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25311 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:21 #25312 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25313 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25314 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25315 [Debug] > │ 0.2                                                                          │

02:09:21 #25316 [Debug] > │ </text>                                                                      │

02:09:21 #25317 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25318 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:21 #25319 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25320 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25321 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25322 [Debug] > │ 0.2                                                                          │

02:09:21 #25323 [Debug] > │ </text>                                                                      │

02:09:21 #25324 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25325 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:21 #25326 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25327 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25328 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25329 [Debug] > │ 0.3                                                                          │

02:09:21 #25330 [Debug] > │ </text>                                                                      │

02:09:21 #25331 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25332 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:21 #25333 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25334 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25335 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25336 [Debug] > │ 0.3                                                                          │

02:09:21 #25337 [Debug] > │ </text>                                                                      │

02:09:21 #25338 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25339 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:21 #25340 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25341 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25342 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25343 [Debug] > │ 0.4                                                                          │

02:09:21 #25344 [Debug] > │ </text>                                                                      │

02:09:21 #25345 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25346 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:21 #25347 [Debug] > │ <text x="414" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25348 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25349 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25350 [Debug] > │ 0.4                                                                          │

02:09:21 #25351 [Debug] > │ </text>                                                                      │

02:09:21 #25352 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25353 [Debug] > │ points="414,69 414,74 "/>                                                    │

02:09:21 #25354 [Debug] > │ <text x="452" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25355 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25356 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25357 [Debug] > │ 0.5                                                                          │

02:09:21 #25358 [Debug] > │ </text>                                                                      │

02:09:21 #25359 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25360 [Debug] > │ points="452,69 452,74 "/>                                                    │

02:09:21 #25361 [Debug] > │ <text x="490" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25362 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25363 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25364 [Debug] > │ 0.5                                                                          │

02:09:21 #25365 [Debug] > │ </text>                                                                      │

02:09:21 #25366 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25367 [Debug] > │ points="490,69 490,74 "/>                                                    │

02:09:21 #25368 [Debug] > │ <text x="528" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25369 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25370 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25371 [Debug] > │ 0.6                                                                          │

02:09:21 #25372 [Debug] > │ </text>                                                                      │

02:09:21 #25373 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25374 [Debug] > │ points="528,69 528,74 "/>                                                    │

02:09:21 #25375 [Debug] > │ <text x="567" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25376 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25377 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25378 [Debug] > │ 0.7                                                                          │

02:09:21 #25379 [Debug] > │ </text>                                                                      │

02:09:21 #25380 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25381 [Debug] > │ points="567,69 567,74 "/>                                                    │

02:09:21 #25382 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25383 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:21 #25384 [Debug] > │ <text x="45" y="401" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25385 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25386 [Debug] > │ 0.0                                                                          │

02:09:21 #25387 [Debug] > │ </text>                                                                      │

02:09:21 #25388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25389 [Debug] > │ points="49,401 54,401 "/>                                                    │

02:09:21 #25390 [Debug] > │ <text x="45" y="365" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25391 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25392 [Debug] > │ 0.0                                                                          │

02:09:21 #25393 [Debug] > │ </text>                                                                      │

02:09:21 #25394 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25395 [Debug] > │ points="49,365 54,365 "/>                                                    │

02:09:21 #25396 [Debug] > │ <text x="45" y="329" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25397 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25398 [Debug] > │ 0.0                                                                          │

02:09:21 #25399 [Debug] > │ </text>                                                                      │

02:09:21 #25400 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25401 [Debug] > │ points="49,329 54,329 "/>                                                    │

02:09:21 #25402 [Debug] > │ <text x="45" y="293" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25403 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25404 [Debug] > │ 0.0                                                                          │

02:09:21 #25405 [Debug] > │ </text>                                                                      │

02:09:21 #25406 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25407 [Debug] > │ points="49,293 54,293 "/>                                                    │

02:09:21 #25408 [Debug] > │ <text x="45" y="257" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25409 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25410 [Debug] > │ 0.0                                                                          │

02:09:21 #25411 [Debug] > │ </text>                                                                      │

02:09:21 #25412 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25413 [Debug] > │ points="49,257 54,257 "/>                                                    │

02:09:21 #25414 [Debug] > │ <text x="45" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25415 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25416 [Debug] > │ 0.0                                                                          │

02:09:21 #25417 [Debug] > │ </text>                                                                      │

02:09:21 #25418 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25419 [Debug] > │ points="49,221 54,221 "/>                                                    │

02:09:21 #25420 [Debug] > │ <text x="45" y="185" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25421 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25422 [Debug] > │ 0.0                                                                          │

02:09:21 #25423 [Debug] > │ </text>                                                                      │

02:09:21 #25424 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25425 [Debug] > │ points="49,185 54,185 "/>                                                    │

02:09:21 #25426 [Debug] > │ <text x="45" y="149" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25427 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25428 [Debug] > │ 0.0                                                                          │

02:09:21 #25429 [Debug] > │ </text>                                                                      │

02:09:21 #25430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25431 [Debug] > │ points="49,149 54,149 "/>                                                    │

02:09:21 #25432 [Debug] > │ <text x="45" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25433 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25434 [Debug] > │ 0.0                                                                          │

02:09:21 #25435 [Debug] > │ </text>                                                                      │

02:09:21 #25436 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25437 [Debug] > │ points="49,113 54,113 "/>                                                    │

02:09:21 #25438 [Debug] > │ <text x="45" y="77" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:21 #25439 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25440 [Debug] > │ 0.0                                                                          │

02:09:21 #25441 [Debug] > │ </text>                                                                      │

02:09:21 #25442 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25443 [Debug] > │ points="49,77 54,77 "/>                                                      │

02:09:21 #25444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25445 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:21 #25446 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:21 #25447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25449 [Debug] > │ 0.0                                                                          │

02:09:21 #25450 [Debug] > │ </text>                                                                      │

02:09:21 #25451 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25452 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:21 #25453 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25454 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25455 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25456 [Debug] > │ 0.1                                                                          │

02:09:21 #25457 [Debug] > │ </text>                                                                      │

02:09:21 #25458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25459 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:21 #25460 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25461 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25462 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25463 [Debug] > │ 0.1                                                                          │

02:09:21 #25464 [Debug] > │ </text>                                                                      │

02:09:21 #25465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25466 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:21 #25467 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25468 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25469 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25470 [Debug] > │ 0.2                                                                          │

02:09:21 #25471 [Debug] > │ </text>                                                                      │

02:09:21 #25472 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25473 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:21 #25474 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25477 [Debug] > │ 0.2                                                                          │

02:09:21 #25478 [Debug] > │ </text>                                                                      │

02:09:21 #25479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25480 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:21 #25481 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25484 [Debug] > │ 0.2                                                                          │

02:09:21 #25485 [Debug] > │ </text>                                                                      │

02:09:21 #25486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25487 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:21 #25488 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25489 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25490 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25491 [Debug] > │ 0.3                                                                          │

02:09:21 #25492 [Debug] > │ </text>                                                                      │

02:09:21 #25493 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25494 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:21 #25495 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25496 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25497 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25498 [Debug] > │ 0.3                                                                          │

02:09:21 #25499 [Debug] > │ </text>                                                                      │

02:09:21 #25500 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25501 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:21 #25502 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25503 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25504 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25505 [Debug] > │ 0.4                                                                          │

02:09:21 #25506 [Debug] > │ </text>                                                                      │

02:09:21 #25507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25508 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:21 #25509 [Debug] > │ <text x="414" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25510 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25511 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25512 [Debug] > │ 0.4                                                                          │

02:09:21 #25513 [Debug] > │ </text>                                                                      │

02:09:21 #25514 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25515 [Debug] > │ points="414,425 414,430 "/>                                                  │

02:09:21 #25516 [Debug] > │ <text x="452" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25517 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25518 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25519 [Debug] > │ 0.5                                                                          │

02:09:21 #25520 [Debug] > │ </text>                                                                      │

02:09:21 #25521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25522 [Debug] > │ points="452,425 452,430 "/>                                                  │

02:09:21 #25523 [Debug] > │ <text x="490" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25524 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25525 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25526 [Debug] > │ 0.5                                                                          │

02:09:21 #25527 [Debug] > │ </text>                                                                      │

02:09:21 #25528 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25529 [Debug] > │ points="490,425 490,430 "/>                                                  │

02:09:21 #25530 [Debug] > │ <text x="528" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25531 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25532 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25533 [Debug] > │ 0.6                                                                          │

02:09:21 #25534 [Debug] > │ </text>                                                                      │

02:09:21 #25535 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25536 [Debug] > │ points="528,425 528,430 "/>                                                  │

02:09:21 #25537 [Debug] > │ <text x="567" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25538 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25539 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25540 [Debug] > │ 0.7                                                                          │

02:09:21 #25541 [Debug] > │ </text>                                                                      │

02:09:21 #25542 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25543 [Debug] > │ points="567,425 567,430 "/>                                                  │

02:09:21 #25544 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25545 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:21 #25546 [Debug] > │ <text x="595" y="401" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25547 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25548 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25549 [Debug] > │ 0.0                                                                          │

02:09:21 #25550 [Debug] > │ </text>                                                                      │

02:09:21 #25551 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25552 [Debug] > │ points="585,401 590,401 "/>                                                  │

02:09:21 #25553 [Debug] > │ <text x="595" y="365" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25554 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25555 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25556 [Debug] > │ 0.0                                                                          │

02:09:21 #25557 [Debug] > │ </text>                                                                      │

02:09:21 #25558 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25559 [Debug] > │ points="585,365 590,365 "/>                                                  │

02:09:21 #25560 [Debug] > │ <text x="595" y="329" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25561 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25562 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25563 [Debug] > │ 0.0                                                                          │

02:09:21 #25564 [Debug] > │ </text>                                                                      │

02:09:21 #25565 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25566 [Debug] > │ points="585,329 590,329 "/>                                                  │

02:09:21 #25567 [Debug] > │ <text x="595" y="293" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25568 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25569 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25570 [Debug] > │ 0.0                                                                          │

02:09:21 #25571 [Debug] > │ </text>                                                                      │

02:09:21 #25572 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25573 [Debug] > │ points="585,293 590,293 "/>                                                  │

02:09:21 #25574 [Debug] > │ <text x="595" y="257" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25575 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25576 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25577 [Debug] > │ 0.0                                                                          │

02:09:21 #25578 [Debug] > │ </text>                                                                      │

02:09:21 #25579 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25580 [Debug] > │ points="585,257 590,257 "/>                                                  │

02:09:21 #25581 [Debug] > │ <text x="595" y="221" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25582 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25583 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25584 [Debug] > │ 0.0                                                                          │

02:09:21 #25585 [Debug] > │ </text>                                                                      │

02:09:21 #25586 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25587 [Debug] > │ points="585,221 590,221 "/>                                                  │

02:09:21 #25588 [Debug] > │ <text x="595" y="185" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25589 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25590 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25591 [Debug] > │ 0.0                                                                          │

02:09:21 #25592 [Debug] > │ </text>                                                                      │

02:09:21 #25593 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25594 [Debug] > │ points="585,185 590,185 "/>                                                  │

02:09:21 #25595 [Debug] > │ <text x="595" y="149" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25596 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25597 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25598 [Debug] > │ 0.0                                                                          │

02:09:21 #25599 [Debug] > │ </text>                                                                      │

02:09:21 #25600 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25601 [Debug] > │ points="585,149 590,149 "/>                                                  │

02:09:21 #25602 [Debug] > │ <text x="595" y="113" dy="0.5ex" text-anchor="start"                         │

02:09:21 #25603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25604 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25605 [Debug] > │ 0.0                                                                          │

02:09:21 #25606 [Debug] > │ </text>                                                                      │

02:09:21 #25607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25608 [Debug] > │ points="585,113 590,113 "/>                                                  │

02:09:21 #25609 [Debug] > │ <text x="595" y="77" dy="0.5ex" text-anchor="start" font-family="sans-serif" │

02:09:21 #25610 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25611 [Debug] > │ 0.0                                                                          │

02:09:21 #25612 [Debug] > │ </text>                                                                      │

02:09:21 #25613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25614 [Debug] > │ points="585,77 590,77 "/>                                                    │

02:09:21 #25615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #25616 [Debug] > │ points="69,401 77,400 85,400 92,399 100,398 108,398 115,397 123,397 131,397  │

02:09:21 #25617 [Debug] > │ 138,396 146,396 154,396 161,396 169,396 177,397 184,397 192,398 199,398      │

02:09:21 #25618 [Debug] > │ 207,399 215,399 222,400 230,401 238,401 245,402 253,403 261,404 268,404      │

02:09:21 #25619 [Debug] > │ 276,405 284,405 291,406 299,406 307,406 314,406 322,406 329,406 337,406      │

02:09:21 #25620 [Debug] > │ 345,406 352,405 360,405 368,404 375,404 383,403 391,402 398,401 406,401      │

02:09:21 #25621 [Debug] > │ 414,400 421,399 429,399 437,398 444,396 451,392 456,379 459,350 459,303      │

02:09:21 #25622 [Debug] > │ 457,251 457,212 458,182 458,149 458,124 458,106 458,91 458,85 544,250        │

02:09:21 #25623 [Debug] > │ 551,298 569,415 567,401 "/>                                                  │

02:09:21 #25624 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:21 #25625 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:21 #25626 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:21 #25627 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25628 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25629 [Debug] > │ 17                                                                           │

02:09:21 #25630 [Debug] > │ </text>                                                                      │

02:09:21 #25631 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #25632 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:21 #25633 [Debug] > │ </svg>                                                                       │

02:09:21 #25634 [Debug] > │ </td></tr><tr><td>18</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:21 #25635 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:21 #25636 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:21 #25637 [Debug] > │ stroke="none"/>                                                              │

02:09:21 #25638 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:21 #25639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25641 [Debug] > │ wave                                                                         │

02:09:21 #25642 [Debug] > │ </text>                                                                      │

02:09:21 #25643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:21 #25644 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #25646 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:21 #25648 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:21 #25650 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:21 #25652 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:21 #25654 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:21 #25655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:21 #25656 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #25657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:21 #25658 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:21 #25659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:21 #25660 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:21 #25661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:21 #25662 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:21 #25663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:21 #25664 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:21 #25665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:21 #25666 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #25667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:21 #25668 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:21 #25669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:21 #25670 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:21 #25671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:21 #25672 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:21 #25673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:21 #25674 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:21 #25675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:21 #25676 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:21 #25677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:21 #25678 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:21 #25679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:21 #25680 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:21 #25681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:21 #25682 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:21 #25683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:21 #25684 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:21 #25685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:21 #25686 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:21 #25687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:21 #25688 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:21 #25689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:21 #25690 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:21 #25691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:21 #25692 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:21 #25693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:21 #25694 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:21 #25695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:21 #25696 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #25697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:21 #25698 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:21 #25699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:21 #25700 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:21 #25701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:21 #25702 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:21 #25703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:21 #25704 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:21 #25705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:21 #25706 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:21 #25707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:21 #25708 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:21 #25709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:21 #25710 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:21 #25711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:21 #25712 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:21 #25713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:21 #25714 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:21 #25715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:21 #25716 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:21 #25717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:21 #25718 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:21 #25719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:21 #25720 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:21 #25721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:21 #25722 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:21 #25723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:21 #25724 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:21 #25725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:21 #25726 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:21 #25727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:21 #25728 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:21 #25729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:21 #25730 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:21 #25731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:21 #25732 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:21 #25733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:21 #25734 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:21 #25735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:21 #25736 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:21 #25737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:21 #25738 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:21 #25739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:21 #25740 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:21 #25741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:21 #25742 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:21 #25743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:21 #25744 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:21 #25745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:21 #25746 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:21 #25747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:21 #25748 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:21 #25749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:21 #25750 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:21 #25751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:21 #25752 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:21 #25753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:21 #25754 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:21 #25755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:21 #25756 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:21 #25757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:21 #25758 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:21 #25759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:21 #25760 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:21 #25761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:21 #25762 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:21 #25763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:21 #25764 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:21 #25765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:21 #25766 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:21 #25767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:21 #25768 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:21 #25769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:21 #25770 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:21 #25771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:21 #25772 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:21 #25773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:21 #25774 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:21 #25775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:21 #25776 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:21 #25777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:21 #25778 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:21 #25779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:09:21 #25780 [Debug] > │ x2="584" y2="401"/>                                                          │

02:09:21 #25781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:21 #25782 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:21 #25783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:09:21 #25784 [Debug] > │ x2="584" y2="372"/>                                                          │

02:09:21 #25785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="358"         │

02:09:21 #25786 [Debug] > │ x2="584" y2="358"/>                                                          │

02:09:21 #25787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="343"         │

02:09:21 #25788 [Debug] > │ x2="584" y2="343"/>                                                          │

02:09:21 #25789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:09:21 #25790 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:21 #25791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:21 #25792 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:21 #25793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:21 #25794 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:21 #25795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:21 #25796 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:21 #25797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="271"         │

02:09:21 #25798 [Debug] > │ x2="584" y2="271"/>                                                          │

02:09:21 #25799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="256"         │

02:09:21 #25800 [Debug] > │ x2="584" y2="256"/>                                                          │

02:09:21 #25801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="242"         │

02:09:21 #25802 [Debug] > │ x2="584" y2="242"/>                                                          │

02:09:21 #25803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:09:21 #25804 [Debug] > │ x2="584" y2="227"/>                                                          │

02:09:21 #25805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:21 #25806 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:21 #25807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:21 #25808 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:21 #25809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:21 #25810 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:21 #25811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="169"         │

02:09:21 #25812 [Debug] > │ x2="584" y2="169"/>                                                          │

02:09:21 #25813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="155"         │

02:09:21 #25814 [Debug] > │ x2="584" y2="155"/>                                                          │

02:09:21 #25815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:09:21 #25816 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:21 #25817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="126"         │

02:09:21 #25818 [Debug] > │ x2="584" y2="126"/>                                                          │

02:09:21 #25819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="111"         │

02:09:21 #25820 [Debug] > │ x2="584" y2="111"/>                                                          │

02:09:21 #25821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:21 #25822 [Debug] > │ y2="97"/>                                                                    │

02:09:21 #25823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:21 #25824 [Debug] > │ y2="82"/>                                                                    │

02:09:21 #25825 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:21 #25826 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25827 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25828 [Debug] > │ position (m)                                                                 │

02:09:21 #25829 [Debug] > │ </text>                                                                      │

02:09:21 #25830 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:21 #25831 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25832 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:21 #25833 [Debug] > │ displacement (m)                                                             │

02:09:21 #25834 [Debug] > │ </text>                                                                      │

02:09:21 #25835 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:21 #25836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25837 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25838 [Debug] > │ position (m)                                                                 │

02:09:21 #25839 [Debug] > │ </text>                                                                      │

02:09:21 #25840 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:21 #25841 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25842 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:21 #25843 [Debug] > │ displacement (m)                                                             │

02:09:21 #25844 [Debug] > │ </text>                                                                      │

02:09:21 #25845 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #25846 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #25847 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:21 #25848 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #25849 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:21 #25850 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #25851 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:21 #25852 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:21 #25853 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:21 #25854 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:21 #25855 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:21 #25856 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #25857 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:21 #25858 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:21 #25859 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:21 #25860 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:21 #25861 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:21 #25862 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:21 #25863 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:21 #25864 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:21 #25865 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:21 #25866 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:21 #25867 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:21 #25868 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:21 #25869 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:21 #25870 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:21 #25871 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:21 #25872 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:21 #25873 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="423"         │

02:09:21 #25874 [Debug] > │ x2="584" y2="423"/>                                                          │

02:09:21 #25875 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="387"         │

02:09:21 #25876 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:21 #25877 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="350"         │

02:09:21 #25878 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:21 #25879 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="314"         │

02:09:21 #25880 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:21 #25881 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="278"         │

02:09:21 #25882 [Debug] > │ x2="584" y2="278"/>                                                          │

02:09:21 #25883 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="242"         │

02:09:21 #25884 [Debug] > │ x2="584" y2="242"/>                                                          │

02:09:21 #25885 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="205"         │

02:09:21 #25886 [Debug] > │ x2="584" y2="205"/>                                                          │

02:09:21 #25887 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="169"         │

02:09:21 #25888 [Debug] > │ x2="584" y2="169"/>                                                          │

02:09:21 #25889 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="133"         │

02:09:21 #25890 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:21 #25891 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:21 #25892 [Debug] > │ y2="97"/>                                                                    │

02:09:21 #25893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25894 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:21 #25895 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:21 #25896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25897 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25898 [Debug] > │ 0.0                                                                          │

02:09:21 #25899 [Debug] > │ </text>                                                                      │

02:09:21 #25900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25901 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:21 #25902 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25904 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25905 [Debug] > │ 0.1                                                                          │

02:09:21 #25906 [Debug] > │ </text>                                                                      │

02:09:21 #25907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25908 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:21 #25909 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25910 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25911 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25912 [Debug] > │ 0.1                                                                          │

02:09:21 #25913 [Debug] > │ </text>                                                                      │

02:09:21 #25914 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25915 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:21 #25916 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25917 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25918 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25919 [Debug] > │ 0.2                                                                          │

02:09:21 #25920 [Debug] > │ </text>                                                                      │

02:09:21 #25921 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25922 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:21 #25923 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25924 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25925 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25926 [Debug] > │ 0.2                                                                          │

02:09:21 #25927 [Debug] > │ </text>                                                                      │

02:09:21 #25928 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25929 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:21 #25930 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25931 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25932 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25933 [Debug] > │ 0.2                                                                          │

02:09:21 #25934 [Debug] > │ </text>                                                                      │

02:09:21 #25935 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25936 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:21 #25937 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25938 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25939 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25940 [Debug] > │ 0.3                                                                          │

02:09:21 #25941 [Debug] > │ </text>                                                                      │

02:09:21 #25942 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25943 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:21 #25944 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25945 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25946 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25947 [Debug] > │ 0.3                                                                          │

02:09:21 #25948 [Debug] > │ </text>                                                                      │

02:09:21 #25949 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25950 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:21 #25951 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25952 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25953 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25954 [Debug] > │ 0.4                                                                          │

02:09:21 #25955 [Debug] > │ </text>                                                                      │

02:09:21 #25956 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25957 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:21 #25958 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25959 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25960 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25961 [Debug] > │ 0.4                                                                          │

02:09:21 #25962 [Debug] > │ </text>                                                                      │

02:09:21 #25963 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25964 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:21 #25965 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25966 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25967 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25968 [Debug] > │ 0.5                                                                          │

02:09:21 #25969 [Debug] > │ </text>                                                                      │

02:09:21 #25970 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25971 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:21 #25972 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25973 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25974 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25975 [Debug] > │ 0.5                                                                          │

02:09:21 #25976 [Debug] > │ </text>                                                                      │

02:09:21 #25977 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25978 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:21 #25979 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25980 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25981 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25982 [Debug] > │ 0.6                                                                          │

02:09:21 #25983 [Debug] > │ </text>                                                                      │

02:09:21 #25984 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25985 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:21 #25986 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #25987 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #25988 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #25989 [Debug] > │ 0.7                                                                          │

02:09:21 #25990 [Debug] > │ </text>                                                                      │

02:09:21 #25991 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25992 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:21 #25993 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #25994 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:21 #25995 [Debug] > │ <text x="45" y="423" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #25996 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #25997 [Debug] > │ -0.0                                                                         │

02:09:21 #25998 [Debug] > │ </text>                                                                      │

02:09:21 #25999 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26000 [Debug] > │ points="49,423 54,423 "/>                                                    │

02:09:21 #26001 [Debug] > │ <text x="45" y="387" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26002 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26003 [Debug] > │ 0.0                                                                          │

02:09:21 #26004 [Debug] > │ </text>                                                                      │

02:09:21 #26005 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26006 [Debug] > │ points="49,387 54,387 "/>                                                    │

02:09:21 #26007 [Debug] > │ <text x="45" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26008 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26009 [Debug] > │ 0.0                                                                          │

02:09:21 #26010 [Debug] > │ </text>                                                                      │

02:09:21 #26011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26012 [Debug] > │ points="49,350 54,350 "/>                                                    │

02:09:21 #26013 [Debug] > │ <text x="45" y="314" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26015 [Debug] > │ 0.0                                                                          │

02:09:21 #26016 [Debug] > │ </text>                                                                      │

02:09:21 #26017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26018 [Debug] > │ points="49,314 54,314 "/>                                                    │

02:09:21 #26019 [Debug] > │ <text x="45" y="278" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26021 [Debug] > │ 0.0                                                                          │

02:09:21 #26022 [Debug] > │ </text>                                                                      │

02:09:21 #26023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26024 [Debug] > │ points="49,278 54,278 "/>                                                    │

02:09:21 #26025 [Debug] > │ <text x="45" y="242" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26027 [Debug] > │ 0.0                                                                          │

02:09:21 #26028 [Debug] > │ </text>                                                                      │

02:09:21 #26029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26030 [Debug] > │ points="49,242 54,242 "/>                                                    │

02:09:21 #26031 [Debug] > │ <text x="45" y="205" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26032 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26033 [Debug] > │ 0.0                                                                          │

02:09:21 #26034 [Debug] > │ </text>                                                                      │

02:09:21 #26035 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26036 [Debug] > │ points="49,205 54,205 "/>                                                    │

02:09:21 #26037 [Debug] > │ <text x="45" y="169" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26038 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26039 [Debug] > │ 0.0                                                                          │

02:09:21 #26040 [Debug] > │ </text>                                                                      │

02:09:21 #26041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26042 [Debug] > │ points="49,169 54,169 "/>                                                    │

02:09:21 #26043 [Debug] > │ <text x="45" y="133" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26044 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26045 [Debug] > │ 0.0                                                                          │

02:09:21 #26046 [Debug] > │ </text>                                                                      │

02:09:21 #26047 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26048 [Debug] > │ points="49,133 54,133 "/>                                                    │

02:09:21 #26049 [Debug] > │ <text x="45" y="97" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:21 #26050 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26051 [Debug] > │ 0.0                                                                          │

02:09:21 #26052 [Debug] > │ </text>                                                                      │

02:09:21 #26053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26054 [Debug] > │ points="49,97 54,97 "/>                                                      │

02:09:21 #26055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26056 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:21 #26057 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:21 #26058 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26059 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26060 [Debug] > │ 0.0                                                                          │

02:09:21 #26061 [Debug] > │ </text>                                                                      │

02:09:21 #26062 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26063 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:21 #26064 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26065 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26066 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26067 [Debug] > │ 0.1                                                                          │

02:09:21 #26068 [Debug] > │ </text>                                                                      │

02:09:21 #26069 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26070 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:21 #26071 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26072 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26073 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26074 [Debug] > │ 0.1                                                                          │

02:09:21 #26075 [Debug] > │ </text>                                                                      │

02:09:21 #26076 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26077 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:21 #26078 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26079 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26080 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26081 [Debug] > │ 0.2                                                                          │

02:09:21 #26082 [Debug] > │ </text>                                                                      │

02:09:21 #26083 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26084 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:21 #26085 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26086 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26087 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26088 [Debug] > │ 0.2                                                                          │

02:09:21 #26089 [Debug] > │ </text>                                                                      │

02:09:21 #26090 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26091 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:21 #26092 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26093 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26094 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26095 [Debug] > │ 0.2                                                                          │

02:09:21 #26096 [Debug] > │ </text>                                                                      │

02:09:21 #26097 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26098 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:21 #26099 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26100 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26101 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26102 [Debug] > │ 0.3                                                                          │

02:09:21 #26103 [Debug] > │ </text>                                                                      │

02:09:21 #26104 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26105 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:21 #26106 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26107 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26108 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26109 [Debug] > │ 0.3                                                                          │

02:09:21 #26110 [Debug] > │ </text>                                                                      │

02:09:21 #26111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26112 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:21 #26113 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26114 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26115 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26116 [Debug] > │ 0.4                                                                          │

02:09:21 #26117 [Debug] > │ </text>                                                                      │

02:09:21 #26118 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26119 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:21 #26120 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26121 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26122 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26123 [Debug] > │ 0.4                                                                          │

02:09:21 #26124 [Debug] > │ </text>                                                                      │

02:09:21 #26125 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26126 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:21 #26127 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26128 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26129 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26130 [Debug] > │ 0.5                                                                          │

02:09:21 #26131 [Debug] > │ </text>                                                                      │

02:09:21 #26132 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26133 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:21 #26134 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26135 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26136 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26137 [Debug] > │ 0.5                                                                          │

02:09:21 #26138 [Debug] > │ </text>                                                                      │

02:09:21 #26139 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26140 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:21 #26141 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26142 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26143 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26144 [Debug] > │ 0.6                                                                          │

02:09:21 #26145 [Debug] > │ </text>                                                                      │

02:09:21 #26146 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26147 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:21 #26148 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26149 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26150 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26151 [Debug] > │ 0.7                                                                          │

02:09:21 #26152 [Debug] > │ </text>                                                                      │

02:09:21 #26153 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26154 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:21 #26155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26156 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:21 #26157 [Debug] > │ <text x="595" y="423" dy="0.5ex" text-anchor="start"                         │

02:09:21 #26158 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26159 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26160 [Debug] > │ -0.0                                                                         │

02:09:21 #26161 [Debug] > │ </text>                                                                      │

02:09:21 #26162 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26163 [Debug] > │ points="585,423 590,423 "/>                                                  │

02:09:21 #26164 [Debug] > │ <text x="617" y="387" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26165 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26166 [Debug] > │ 0.0                                                                          │

02:09:21 #26167 [Debug] > │ </text>                                                                      │

02:09:21 #26168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26169 [Debug] > │ points="585,387 590,387 "/>                                                  │

02:09:21 #26170 [Debug] > │ <text x="617" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26171 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26172 [Debug] > │ 0.0                                                                          │

02:09:21 #26173 [Debug] > │ </text>                                                                      │

02:09:21 #26174 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26175 [Debug] > │ points="585,350 590,350 "/>                                                  │

02:09:21 #26176 [Debug] > │ <text x="617" y="314" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26177 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26178 [Debug] > │ 0.0                                                                          │

02:09:21 #26179 [Debug] > │ </text>                                                                      │

02:09:21 #26180 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26181 [Debug] > │ points="585,314 590,314 "/>                                                  │

02:09:21 #26182 [Debug] > │ <text x="617" y="278" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26183 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26184 [Debug] > │ 0.0                                                                          │

02:09:21 #26185 [Debug] > │ </text>                                                                      │

02:09:21 #26186 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26187 [Debug] > │ points="585,278 590,278 "/>                                                  │

02:09:21 #26188 [Debug] > │ <text x="617" y="242" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26189 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26190 [Debug] > │ 0.0                                                                          │

02:09:21 #26191 [Debug] > │ </text>                                                                      │

02:09:21 #26192 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26193 [Debug] > │ points="585,242 590,242 "/>                                                  │

02:09:21 #26194 [Debug] > │ <text x="617" y="205" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26195 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26196 [Debug] > │ 0.0                                                                          │

02:09:21 #26197 [Debug] > │ </text>                                                                      │

02:09:21 #26198 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26199 [Debug] > │ points="585,205 590,205 "/>                                                  │

02:09:21 #26200 [Debug] > │ <text x="617" y="169" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26201 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26202 [Debug] > │ 0.0                                                                          │

02:09:21 #26203 [Debug] > │ </text>                                                                      │

02:09:21 #26204 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26205 [Debug] > │ points="585,169 590,169 "/>                                                  │

02:09:21 #26206 [Debug] > │ <text x="617" y="133" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26207 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26208 [Debug] > │ 0.0                                                                          │

02:09:21 #26209 [Debug] > │ </text>                                                                      │

02:09:21 #26210 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26211 [Debug] > │ points="585,133 590,133 "/>                                                  │

02:09:21 #26212 [Debug] > │ <text x="617" y="97" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26213 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26214 [Debug] > │ 0.0                                                                          │

02:09:21 #26215 [Debug] > │ </text>                                                                      │

02:09:21 #26216 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26217 [Debug] > │ points="585,97 590,97 "/>                                                    │

02:09:21 #26218 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #26219 [Debug] > │ points="69,387 77,391 85,395 93,398 100,402 108,405 116,408 123,410 131,412  │

02:09:21 #26220 [Debug] > │ 139,414 146,414 154,415 162,414 169,413 177,412 185,410 192,407 200,404      │

02:09:21 #26221 [Debug] > │ 208,401 215,397 223,393 231,389 238,385 246,381 254,377 261,374 269,370      │

02:09:21 #26222 [Debug] > │ 277,367 284,364 292,362 300,360 307,359 315,359 323,359 331,359 338,360      │

02:09:21 #26223 [Debug] > │ 346,362 354,364 361,367 369,370 377,374 384,377 392,381 400,385 407,389      │

02:09:21 #26224 [Debug] > │ 415,393 423,397 430,401 438,403 445,404 451,398 455,378 456,339 454,287      │

02:09:21 #26225 [Debug] > │ 454,242 454,210 455,177 454,145 454,123 454,104 454,92 454,85 545,234        │

02:09:21 #26226 [Debug] > │ 553,283 566,368 569,387 "/>                                                  │

02:09:21 #26227 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:21 #26228 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:21 #26229 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:21 #26230 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26231 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26232 [Debug] > │ 18                                                                           │

02:09:21 #26233 [Debug] > │ </text>                                                                      │

02:09:21 #26234 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #26235 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:21 #26236 [Debug] > │ </svg>                                                                       │

02:09:21 #26237 [Debug] > │ </td></tr><tr><td>19</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:21 #26238 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:21 #26239 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:21 #26240 [Debug] > │ stroke="none"/>                                                              │

02:09:21 #26241 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:21 #26242 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26243 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26244 [Debug] > │ wave                                                                         │

02:09:21 #26245 [Debug] > │ </text>                                                                      │

02:09:21 #26246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:21 #26247 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #26249 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:21 #26251 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:21 #26253 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:21 #26255 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:21 #26257 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:21 #26258 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:21 #26259 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #26260 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:21 #26261 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:21 #26262 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:21 #26263 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:21 #26264 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:21 #26265 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:21 #26266 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:21 #26267 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:21 #26268 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:21 #26269 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #26270 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:21 #26271 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:21 #26272 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:21 #26273 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:21 #26274 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:21 #26275 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:21 #26276 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:21 #26277 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:21 #26278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:21 #26279 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:21 #26280 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:21 #26281 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:21 #26282 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:21 #26283 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:21 #26284 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:21 #26285 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:21 #26286 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:21 #26287 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:21 #26288 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:21 #26289 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:21 #26290 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:21 #26291 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:21 #26292 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:21 #26293 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:21 #26294 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:21 #26295 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:21 #26296 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:21 #26297 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:21 #26298 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:21 #26299 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #26300 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:21 #26301 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:21 #26302 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:21 #26303 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:21 #26304 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:21 #26305 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:21 #26306 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:21 #26307 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:21 #26308 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:21 #26309 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:21 #26310 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:21 #26311 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:21 #26312 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:21 #26313 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:21 #26314 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:21 #26315 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:21 #26316 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:21 #26317 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:21 #26318 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:21 #26319 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:21 #26320 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:21 #26321 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:21 #26322 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:21 #26323 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:21 #26324 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:21 #26325 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:21 #26326 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:21 #26327 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:21 #26328 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:21 #26329 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:21 #26330 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:21 #26331 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:21 #26332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:21 #26333 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:21 #26334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:21 #26335 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:21 #26336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:21 #26337 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:21 #26338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:21 #26339 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:21 #26340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:21 #26341 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:21 #26342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:21 #26343 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:21 #26344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:21 #26345 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:21 #26346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:21 #26347 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:21 #26348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:21 #26349 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:21 #26350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:21 #26351 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:21 #26352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:21 #26353 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:21 #26354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:21 #26355 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:21 #26356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:21 #26357 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:21 #26358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:21 #26359 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:21 #26360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:21 #26361 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:21 #26362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:21 #26363 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:21 #26364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:21 #26365 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:21 #26366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:21 #26367 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:21 #26368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:21 #26369 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:21 #26370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:21 #26371 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:21 #26372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:21 #26373 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:21 #26374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:21 #26375 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:21 #26376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:21 #26377 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:21 #26378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:21 #26379 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:21 #26380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="412"         │

02:09:21 #26381 [Debug] > │ x2="584" y2="412"/>                                                          │

02:09:21 #26382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:09:21 #26383 [Debug] > │ x2="584" y2="398"/>                                                          │

02:09:21 #26384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:09:21 #26385 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:21 #26386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="370"         │

02:09:21 #26387 [Debug] > │ x2="584" y2="370"/>                                                          │

02:09:21 #26388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="356"         │

02:09:21 #26389 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:21 #26390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="342"         │

02:09:21 #26391 [Debug] > │ x2="584" y2="342"/>                                                          │

02:09:21 #26392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:09:21 #26393 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:21 #26394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:21 #26395 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:21 #26396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:21 #26397 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:21 #26398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:21 #26399 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:21 #26400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:09:21 #26401 [Debug] > │ x2="584" y2="273"/>                                                          │

02:09:21 #26402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="259"         │

02:09:21 #26403 [Debug] > │ x2="584" y2="259"/>                                                          │

02:09:21 #26404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="245"         │

02:09:21 #26405 [Debug] > │ x2="584" y2="245"/>                                                          │

02:09:21 #26406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:09:21 #26407 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:21 #26408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:21 #26409 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:21 #26410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="203"         │

02:09:21 #26411 [Debug] > │ x2="584" y2="203"/>                                                          │

02:09:21 #26412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="189"         │

02:09:21 #26413 [Debug] > │ x2="584" y2="189"/>                                                          │

02:09:21 #26414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:21 #26415 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:21 #26416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:09:21 #26417 [Debug] > │ x2="584" y2="161"/>                                                          │

02:09:21 #26418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:09:21 #26419 [Debug] > │ x2="584" y2="147"/>                                                          │

02:09:21 #26420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:21 #26421 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:21 #26422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:09:21 #26423 [Debug] > │ x2="584" y2="119"/>                                                          │

02:09:21 #26424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:21 #26425 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:21 #26426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:21 #26427 [Debug] > │ y2="92"/>                                                                    │

02:09:21 #26428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="78" x2="584" │

02:09:21 #26429 [Debug] > │ y2="78"/>                                                                    │

02:09:21 #26430 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:21 #26431 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26432 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26433 [Debug] > │ position (m)                                                                 │

02:09:21 #26434 [Debug] > │ </text>                                                                      │

02:09:21 #26435 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:21 #26436 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26437 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:21 #26438 [Debug] > │ displacement (m)                                                             │

02:09:21 #26439 [Debug] > │ </text>                                                                      │

02:09:21 #26440 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:21 #26441 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26442 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26443 [Debug] > │ position (m)                                                                 │

02:09:21 #26444 [Debug] > │ </text>                                                                      │

02:09:21 #26445 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26446 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26447 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:21 #26448 [Debug] > │ displacement (m)                                                             │

02:09:21 #26449 [Debug] > │ </text>                                                                      │

02:09:21 #26450 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #26451 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26452 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:21 #26453 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #26454 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:21 #26455 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #26456 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:21 #26457 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:21 #26458 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:21 #26459 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:21 #26460 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:21 #26461 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #26462 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:21 #26463 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:21 #26464 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:21 #26465 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:21 #26466 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:21 #26467 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:21 #26468 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:21 #26469 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:21 #26470 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:21 #26471 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:21 #26472 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:21 #26473 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:21 #26474 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:21 #26475 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:21 #26476 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:21 #26477 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:21 #26478 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="391"         │

02:09:21 #26479 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:21 #26480 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="356"         │

02:09:21 #26481 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:21 #26482 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:09:21 #26483 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:21 #26484 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="286"         │

02:09:21 #26485 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:21 #26486 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="252"         │

02:09:21 #26487 [Debug] > │ x2="584" y2="252"/>                                                          │

02:09:21 #26488 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="217"         │

02:09:21 #26489 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:21 #26490 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="182"         │

02:09:21 #26491 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:21 #26492 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="147"         │

02:09:21 #26493 [Debug] > │ x2="584" y2="147"/>                                                          │

02:09:21 #26494 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="112"         │

02:09:21 #26495 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:21 #26496 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="78" x2="584" │

02:09:21 #26497 [Debug] > │ y2="78"/>                                                                    │

02:09:21 #26498 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26499 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:21 #26500 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:21 #26501 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26502 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26503 [Debug] > │ 0.0                                                                          │

02:09:21 #26504 [Debug] > │ </text>                                                                      │

02:09:21 #26505 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26506 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:21 #26507 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26508 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26509 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26510 [Debug] > │ 0.1                                                                          │

02:09:21 #26511 [Debug] > │ </text>                                                                      │

02:09:21 #26512 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26513 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:21 #26514 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26515 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26516 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26517 [Debug] > │ 0.1                                                                          │

02:09:21 #26518 [Debug] > │ </text>                                                                      │

02:09:21 #26519 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26520 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:21 #26521 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26522 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26523 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26524 [Debug] > │ 0.2                                                                          │

02:09:21 #26525 [Debug] > │ </text>                                                                      │

02:09:21 #26526 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26527 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:21 #26528 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26529 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26530 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26531 [Debug] > │ 0.2                                                                          │

02:09:21 #26532 [Debug] > │ </text>                                                                      │

02:09:21 #26533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26534 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:21 #26535 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26536 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26537 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26538 [Debug] > │ 0.2                                                                          │

02:09:21 #26539 [Debug] > │ </text>                                                                      │

02:09:21 #26540 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26541 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:21 #26542 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26543 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26544 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26545 [Debug] > │ 0.3                                                                          │

02:09:21 #26546 [Debug] > │ </text>                                                                      │

02:09:21 #26547 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26548 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:21 #26549 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26550 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26551 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26552 [Debug] > │ 0.3                                                                          │

02:09:21 #26553 [Debug] > │ </text>                                                                      │

02:09:21 #26554 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26555 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:21 #26556 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26557 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26558 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26559 [Debug] > │ 0.4                                                                          │

02:09:21 #26560 [Debug] > │ </text>                                                                      │

02:09:21 #26561 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26562 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:21 #26563 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26564 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26565 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26566 [Debug] > │ 0.4                                                                          │

02:09:21 #26567 [Debug] > │ </text>                                                                      │

02:09:21 #26568 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26569 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:21 #26570 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26571 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26572 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26573 [Debug] > │ 0.5                                                                          │

02:09:21 #26574 [Debug] > │ </text>                                                                      │

02:09:21 #26575 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26576 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:21 #26577 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26578 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26579 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26580 [Debug] > │ 0.5                                                                          │

02:09:21 #26581 [Debug] > │ </text>                                                                      │

02:09:21 #26582 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26583 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:21 #26584 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26585 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26586 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26587 [Debug] > │ 0.6                                                                          │

02:09:21 #26588 [Debug] > │ </text>                                                                      │

02:09:21 #26589 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26590 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:21 #26591 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #26592 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26593 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26594 [Debug] > │ 0.7                                                                          │

02:09:21 #26595 [Debug] > │ </text>                                                                      │

02:09:21 #26596 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26597 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:21 #26598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26599 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:21 #26600 [Debug] > │ <text x="45" y="391" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26601 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26602 [Debug] > │ -0.0                                                                         │

02:09:21 #26603 [Debug] > │ </text>                                                                      │

02:09:21 #26604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26605 [Debug] > │ points="49,391 54,391 "/>                                                    │

02:09:21 #26606 [Debug] > │ <text x="45" y="356" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26607 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26608 [Debug] > │ 0.0                                                                          │

02:09:21 #26609 [Debug] > │ </text>                                                                      │

02:09:21 #26610 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26611 [Debug] > │ points="49,356 54,356 "/>                                                    │

02:09:21 #26612 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26613 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26614 [Debug] > │ 0.0                                                                          │

02:09:21 #26615 [Debug] > │ </text>                                                                      │

02:09:21 #26616 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26617 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:09:21 #26618 [Debug] > │ <text x="45" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26619 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26620 [Debug] > │ 0.0                                                                          │

02:09:21 #26621 [Debug] > │ </text>                                                                      │

02:09:21 #26622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26623 [Debug] > │ points="49,286 54,286 "/>                                                    │

02:09:21 #26624 [Debug] > │ <text x="45" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26625 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26626 [Debug] > │ 0.0                                                                          │

02:09:21 #26627 [Debug] > │ </text>                                                                      │

02:09:21 #26628 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26629 [Debug] > │ points="49,252 54,252 "/>                                                    │

02:09:21 #26630 [Debug] > │ <text x="45" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26631 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26632 [Debug] > │ 0.0                                                                          │

02:09:21 #26633 [Debug] > │ </text>                                                                      │

02:09:21 #26634 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26635 [Debug] > │ points="49,217 54,217 "/>                                                    │

02:09:21 #26636 [Debug] > │ <text x="45" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26637 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26638 [Debug] > │ 0.0                                                                          │

02:09:21 #26639 [Debug] > │ </text>                                                                      │

02:09:21 #26640 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26641 [Debug] > │ points="49,182 54,182 "/>                                                    │

02:09:21 #26642 [Debug] > │ <text x="45" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26643 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26644 [Debug] > │ 0.0                                                                          │

02:09:21 #26645 [Debug] > │ </text>                                                                      │

02:09:21 #26646 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26647 [Debug] > │ points="49,147 54,147 "/>                                                    │

02:09:21 #26648 [Debug] > │ <text x="45" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26649 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26650 [Debug] > │ 0.0                                                                          │

02:09:21 #26651 [Debug] > │ </text>                                                                      │

02:09:21 #26652 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26653 [Debug] > │ points="49,112 54,112 "/>                                                    │

02:09:21 #26654 [Debug] > │ <text x="45" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:21 #26655 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26656 [Debug] > │ 0.0                                                                          │

02:09:21 #26657 [Debug] > │ </text>                                                                      │

02:09:21 #26658 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26659 [Debug] > │ points="49,78 54,78 "/>                                                      │

02:09:21 #26660 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26661 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:21 #26662 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:21 #26663 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26664 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26665 [Debug] > │ 0.0                                                                          │

02:09:21 #26666 [Debug] > │ </text>                                                                      │

02:09:21 #26667 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26668 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:21 #26669 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26670 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26671 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26672 [Debug] > │ 0.1                                                                          │

02:09:21 #26673 [Debug] > │ </text>                                                                      │

02:09:21 #26674 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26675 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:21 #26676 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26677 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26678 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26679 [Debug] > │ 0.1                                                                          │

02:09:21 #26680 [Debug] > │ </text>                                                                      │

02:09:21 #26681 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26682 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:21 #26683 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26684 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26685 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26686 [Debug] > │ 0.2                                                                          │

02:09:21 #26687 [Debug] > │ </text>                                                                      │

02:09:21 #26688 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26689 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:21 #26690 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26691 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26692 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26693 [Debug] > │ 0.2                                                                          │

02:09:21 #26694 [Debug] > │ </text>                                                                      │

02:09:21 #26695 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26696 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:21 #26697 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26698 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26699 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26700 [Debug] > │ 0.2                                                                          │

02:09:21 #26701 [Debug] > │ </text>                                                                      │

02:09:21 #26702 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26703 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:21 #26704 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26705 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26706 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26707 [Debug] > │ 0.3                                                                          │

02:09:21 #26708 [Debug] > │ </text>                                                                      │

02:09:21 #26709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26710 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:21 #26711 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26712 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26713 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26714 [Debug] > │ 0.3                                                                          │

02:09:21 #26715 [Debug] > │ </text>                                                                      │

02:09:21 #26716 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26717 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:21 #26718 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26719 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26720 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26721 [Debug] > │ 0.4                                                                          │

02:09:21 #26722 [Debug] > │ </text>                                                                      │

02:09:21 #26723 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26724 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:21 #26725 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26726 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26727 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26728 [Debug] > │ 0.4                                                                          │

02:09:21 #26729 [Debug] > │ </text>                                                                      │

02:09:21 #26730 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26731 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:21 #26732 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26733 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26734 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26735 [Debug] > │ 0.5                                                                          │

02:09:21 #26736 [Debug] > │ </text>                                                                      │

02:09:21 #26737 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26738 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:21 #26739 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26740 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26741 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26742 [Debug] > │ 0.5                                                                          │

02:09:21 #26743 [Debug] > │ </text>                                                                      │

02:09:21 #26744 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26745 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:21 #26746 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26747 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26748 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26749 [Debug] > │ 0.6                                                                          │

02:09:21 #26750 [Debug] > │ </text>                                                                      │

02:09:21 #26751 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26752 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:21 #26753 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #26754 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26755 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26756 [Debug] > │ 0.7                                                                          │

02:09:21 #26757 [Debug] > │ </text>                                                                      │

02:09:21 #26758 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26759 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:21 #26760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26761 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:21 #26762 [Debug] > │ <text x="595" y="391" dy="0.5ex" text-anchor="start"                         │

02:09:21 #26763 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26764 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26765 [Debug] > │ -0.0                                                                         │

02:09:21 #26766 [Debug] > │ </text>                                                                      │

02:09:21 #26767 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26768 [Debug] > │ points="585,391 590,391 "/>                                                  │

02:09:21 #26769 [Debug] > │ <text x="617" y="356" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26770 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26771 [Debug] > │ 0.0                                                                          │

02:09:21 #26772 [Debug] > │ </text>                                                                      │

02:09:21 #26773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26774 [Debug] > │ points="585,356 590,356 "/>                                                  │

02:09:21 #26775 [Debug] > │ <text x="617" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26776 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26777 [Debug] > │ 0.0                                                                          │

02:09:21 #26778 [Debug] > │ </text>                                                                      │

02:09:21 #26779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26780 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:09:21 #26781 [Debug] > │ <text x="617" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26782 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26783 [Debug] > │ 0.0                                                                          │

02:09:21 #26784 [Debug] > │ </text>                                                                      │

02:09:21 #26785 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26786 [Debug] > │ points="585,286 590,286 "/>                                                  │

02:09:21 #26787 [Debug] > │ <text x="617" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26788 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26789 [Debug] > │ 0.0                                                                          │

02:09:21 #26790 [Debug] > │ </text>                                                                      │

02:09:21 #26791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26792 [Debug] > │ points="585,252 590,252 "/>                                                  │

02:09:21 #26793 [Debug] > │ <text x="617" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26794 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26795 [Debug] > │ 0.0                                                                          │

02:09:21 #26796 [Debug] > │ </text>                                                                      │

02:09:21 #26797 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26798 [Debug] > │ points="585,217 590,217 "/>                                                  │

02:09:21 #26799 [Debug] > │ <text x="617" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26800 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26801 [Debug] > │ 0.0                                                                          │

02:09:21 #26802 [Debug] > │ </text>                                                                      │

02:09:21 #26803 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26804 [Debug] > │ points="585,182 590,182 "/>                                                  │

02:09:21 #26805 [Debug] > │ <text x="617" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26806 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26807 [Debug] > │ 0.0                                                                          │

02:09:21 #26808 [Debug] > │ </text>                                                                      │

02:09:21 #26809 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26810 [Debug] > │ points="585,147 590,147 "/>                                                  │

02:09:21 #26811 [Debug] > │ <text x="617" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #26812 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26813 [Debug] > │ 0.0                                                                          │

02:09:21 #26814 [Debug] > │ </text>                                                                      │

02:09:21 #26815 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26816 [Debug] > │ points="585,112 590,112 "/>                                                  │

02:09:21 #26817 [Debug] > │ <text x="617" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #26818 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #26819 [Debug] > │ 0.0                                                                          │

02:09:21 #26820 [Debug] > │ </text>                                                                      │

02:09:21 #26821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #26822 [Debug] > │ points="585,78 590,78 "/>                                                    │

02:09:21 #26823 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #26824 [Debug] > │ points="69,356 77,365 85,373 93,381 100,388 108,395 116,401 123,406 131,410  │

02:09:21 #26825 [Debug] > │ 139,413 146,414 154,415 162,414 169,412 177,409 185,404 192,399 200,393      │

02:09:21 #26826 [Debug] > │ 208,386 215,378 223,370 231,362 238,353 246,345 254,337 261,329 269,322      │

02:09:21 #26827 [Debug] > │ 277,315 284,310 292,305 300,301 307,299 315,298 323,298 331,299 338,301      │

02:09:21 #26828 [Debug] > │ 346,305 354,310 361,315 369,322 377,329 384,337 392,345 400,353 407,362      │

02:09:21 #26829 [Debug] > │ 415,370 423,378 430,385 438,391 444,391 449,381 451,354 450,309 449,262      │

02:09:21 #26830 [Debug] > │ 449,228 450,199 449,166 449,140 450,120 449,102 449,91 449,85 545,209        │

02:09:21 #26831 [Debug] > │ 553,257 562,314 569,356 "/>                                                  │

02:09:21 #26832 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:21 #26833 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:21 #26834 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:21 #26835 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26836 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26837 [Debug] > │ 19                                                                           │

02:09:21 #26838 [Debug] > │ </text>                                                                      │

02:09:21 #26839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #26840 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:21 #26841 [Debug] > │ </svg>                                                                       │

02:09:21 #26842 [Debug] > │ </td></tr><tr><td>20</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:21 #26843 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:21 #26844 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:21 #26845 [Debug] > │ stroke="none"/>                                                              │

02:09:21 #26846 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:21 #26847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #26848 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #26849 [Debug] > │ wave                                                                         │

02:09:21 #26850 [Debug] > │ </text>                                                                      │

02:09:21 #26851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:21 #26852 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #26854 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:21 #26856 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:21 #26858 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:21 #26860 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #26861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:21 #26862 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:21 #26863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:21 #26864 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #26865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:21 #26866 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:21 #26867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:21 #26868 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:21 #26869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:21 #26870 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:21 #26871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:21 #26872 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:21 #26873 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:21 #26874 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #26875 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:21 #26876 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:21 #26877 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:21 #26878 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:21 #26879 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:21 #26880 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:21 #26881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:21 #26882 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:21 #26883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:21 #26884 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:21 #26885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:21 #26886 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:21 #26887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:21 #26888 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:21 #26889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:21 #26890 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:21 #26891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:21 #26892 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:21 #26893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:21 #26894 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:21 #26895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:21 #26896 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:21 #26897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:21 #26898 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:21 #26899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:21 #26900 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:21 #26901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:21 #26902 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:21 #26903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:21 #26904 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #26905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:21 #26906 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:21 #26907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:21 #26908 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:21 #26909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:21 #26910 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:21 #26911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:21 #26912 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:21 #26913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:21 #26914 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:21 #26915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:21 #26916 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:21 #26917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:21 #26918 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:21 #26919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:21 #26920 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:21 #26921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:21 #26922 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:21 #26923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:21 #26924 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:21 #26925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:21 #26926 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:21 #26927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:21 #26928 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:21 #26929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:21 #26930 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:21 #26931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:21 #26932 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:21 #26933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:21 #26934 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:21 #26935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:21 #26936 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:21 #26937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:21 #26938 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:21 #26939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:21 #26940 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:21 #26941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:21 #26942 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:21 #26943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:21 #26944 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:21 #26945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:21 #26946 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:21 #26947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:21 #26948 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:21 #26949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:21 #26950 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:21 #26951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:21 #26952 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:21 #26953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:21 #26954 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:21 #26955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:21 #26956 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:21 #26957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:21 #26958 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:21 #26959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:21 #26960 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:21 #26961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:21 #26962 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:21 #26963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:21 #26964 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:21 #26965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:21 #26966 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:21 #26967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:21 #26968 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:21 #26969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:21 #26970 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:21 #26971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:21 #26972 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:21 #26973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:21 #26974 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:21 #26975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:21 #26976 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:21 #26977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:21 #26978 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:21 #26979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:21 #26980 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:21 #26981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:21 #26982 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:21 #26983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:21 #26984 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:21 #26985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="422"         │

02:09:21 #26986 [Debug] > │ x2="584" y2="422"/>                                                          │

02:09:21 #26987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="409"         │

02:09:21 #26988 [Debug] > │ x2="584" y2="409"/>                                                          │

02:09:21 #26989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:09:21 #26990 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:21 #26991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:21 #26992 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:21 #26993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:21 #26994 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:21 #26995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="355"         │

02:09:21 #26996 [Debug] > │ x2="584" y2="355"/>                                                          │

02:09:21 #26997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="341"         │

02:09:21 #26998 [Debug] > │ x2="584" y2="341"/>                                                          │

02:09:21 #26999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:09:21 #27000 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:21 #27001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:21 #27002 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:21 #27003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:21 #27004 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:21 #27005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:09:21 #27006 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:21 #27007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="274"         │

02:09:21 #27008 [Debug] > │ x2="584" y2="274"/>                                                          │

02:09:21 #27009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:09:21 #27010 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:21 #27011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="247"         │

02:09:21 #27012 [Debug] > │ x2="584" y2="247"/>                                                          │

02:09:21 #27013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:21 #27014 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:21 #27015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="220"         │

02:09:21 #27016 [Debug] > │ x2="584" y2="220"/>                                                          │

02:09:21 #27017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="206"         │

02:09:21 #27018 [Debug] > │ x2="584" y2="206"/>                                                          │

02:09:21 #27019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="193"         │

02:09:21 #27020 [Debug] > │ x2="584" y2="193"/>                                                          │

02:09:21 #27021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="179"         │

02:09:21 #27022 [Debug] > │ x2="584" y2="179"/>                                                          │

02:09:21 #27023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:21 #27024 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:21 #27025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:09:21 #27026 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:21 #27027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="139"         │

02:09:21 #27028 [Debug] > │ x2="584" y2="139"/>                                                          │

02:09:21 #27029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="125"         │

02:09:21 #27030 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:21 #27031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:21 #27032 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:21 #27033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:09:21 #27034 [Debug] > │ y2="98"/>                                                                    │

02:09:21 #27035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:21 #27036 [Debug] > │ y2="85"/>                                                                    │

02:09:21 #27037 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:21 #27038 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27039 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27040 [Debug] > │ position (m)                                                                 │

02:09:21 #27041 [Debug] > │ </text>                                                                      │

02:09:21 #27042 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:21 #27043 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27044 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:21 #27045 [Debug] > │ displacement (m)                                                             │

02:09:21 #27046 [Debug] > │ </text>                                                                      │

02:09:21 #27047 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:21 #27048 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27049 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27050 [Debug] > │ position (m)                                                                 │

02:09:21 #27051 [Debug] > │ </text>                                                                      │

02:09:21 #27052 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27053 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27054 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:21 #27055 [Debug] > │ displacement (m)                                                             │

02:09:21 #27056 [Debug] > │ </text>                                                                      │

02:09:21 #27057 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:21 #27058 [Debug] > │ y2="75"/>                                                                    │

02:09:21 #27059 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:21 #27060 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:21 #27061 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:21 #27062 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:21 #27063 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:21 #27064 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:21 #27065 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:21 #27066 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:21 #27067 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:21 #27068 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:21 #27069 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:21 #27070 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:21 #27071 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:21 #27072 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:21 #27073 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:21 #27074 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:21 #27075 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:21 #27076 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:21 #27077 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:21 #27078 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:21 #27079 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:21 #27080 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:21 #27081 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:21 #27082 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:21 #27083 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:21 #27084 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:21 #27085 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="395"         │

02:09:21 #27086 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:21 #27087 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="361"         │

02:09:21 #27088 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:21 #27089 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="328"         │

02:09:21 #27090 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:21 #27091 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="294"         │

02:09:21 #27092 [Debug] > │ x2="584" y2="294"/>                                                          │

02:09:21 #27093 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="260"         │

02:09:21 #27094 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:21 #27095 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="226"         │

02:09:21 #27096 [Debug] > │ x2="584" y2="226"/>                                                          │

02:09:21 #27097 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="193"         │

02:09:21 #27098 [Debug] > │ x2="584" y2="193"/>                                                          │

02:09:21 #27099 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="159"         │

02:09:21 #27100 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:21 #27101 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="125"         │

02:09:21 #27102 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:21 #27103 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="91" x2="584" │

02:09:21 #27104 [Debug] > │ y2="91"/>                                                                    │

02:09:21 #27105 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27106 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:21 #27107 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:21 #27108 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27109 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27110 [Debug] > │ 0.0                                                                          │

02:09:21 #27111 [Debug] > │ </text>                                                                      │

02:09:21 #27112 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27113 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:21 #27114 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27115 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27116 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27117 [Debug] > │ 0.1                                                                          │

02:09:21 #27118 [Debug] > │ </text>                                                                      │

02:09:21 #27119 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27120 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:21 #27121 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27122 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27123 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27124 [Debug] > │ 0.1                                                                          │

02:09:21 #27125 [Debug] > │ </text>                                                                      │

02:09:21 #27126 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27127 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:21 #27128 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27129 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27130 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27131 [Debug] > │ 0.2                                                                          │

02:09:21 #27132 [Debug] > │ </text>                                                                      │

02:09:21 #27133 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27134 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:21 #27135 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27136 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27137 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27138 [Debug] > │ 0.2                                                                          │

02:09:21 #27139 [Debug] > │ </text>                                                                      │

02:09:21 #27140 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27141 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:21 #27142 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27143 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27144 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27145 [Debug] > │ 0.2                                                                          │

02:09:21 #27146 [Debug] > │ </text>                                                                      │

02:09:21 #27147 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27148 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:21 #27149 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27150 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27151 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27152 [Debug] > │ 0.3                                                                          │

02:09:21 #27153 [Debug] > │ </text>                                                                      │

02:09:21 #27154 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27155 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:21 #27156 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27157 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27158 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27159 [Debug] > │ 0.3                                                                          │

02:09:21 #27160 [Debug] > │ </text>                                                                      │

02:09:21 #27161 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27162 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:21 #27163 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27164 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27165 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27166 [Debug] > │ 0.4                                                                          │

02:09:21 #27167 [Debug] > │ </text>                                                                      │

02:09:21 #27168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27169 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:21 #27170 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27171 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27172 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27173 [Debug] > │ 0.4                                                                          │

02:09:21 #27174 [Debug] > │ </text>                                                                      │

02:09:21 #27175 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27176 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:21 #27177 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27178 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27179 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27180 [Debug] > │ 0.5                                                                          │

02:09:21 #27181 [Debug] > │ </text>                                                                      │

02:09:21 #27182 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27183 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:21 #27184 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27185 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27186 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27187 [Debug] > │ 0.5                                                                          │

02:09:21 #27188 [Debug] > │ </text>                                                                      │

02:09:21 #27189 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27190 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:21 #27191 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27192 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27193 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27194 [Debug] > │ 0.6                                                                          │

02:09:21 #27195 [Debug] > │ </text>                                                                      │

02:09:21 #27196 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27197 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:21 #27198 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:21 #27199 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27200 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27201 [Debug] > │ 0.7                                                                          │

02:09:21 #27202 [Debug] > │ </text>                                                                      │

02:09:21 #27203 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27204 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:21 #27205 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27206 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:21 #27207 [Debug] > │ <text x="45" y="395" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27208 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27209 [Debug] > │ -0.0                                                                         │

02:09:21 #27210 [Debug] > │ </text>                                                                      │

02:09:21 #27211 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27212 [Debug] > │ points="49,395 54,395 "/>                                                    │

02:09:21 #27213 [Debug] > │ <text x="45" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27214 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27215 [Debug] > │ -0.0                                                                         │

02:09:21 #27216 [Debug] > │ </text>                                                                      │

02:09:21 #27217 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27218 [Debug] > │ points="49,361 54,361 "/>                                                    │

02:09:21 #27219 [Debug] > │ <text x="45" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27220 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27221 [Debug] > │ 0.0                                                                          │

02:09:21 #27222 [Debug] > │ </text>                                                                      │

02:09:21 #27223 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27224 [Debug] > │ points="49,328 54,328 "/>                                                    │

02:09:21 #27225 [Debug] > │ <text x="45" y="294" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27226 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27227 [Debug] > │ 0.0                                                                          │

02:09:21 #27228 [Debug] > │ </text>                                                                      │

02:09:21 #27229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27230 [Debug] > │ points="49,294 54,294 "/>                                                    │

02:09:21 #27231 [Debug] > │ <text x="45" y="260" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27232 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27233 [Debug] > │ 0.0                                                                          │

02:09:21 #27234 [Debug] > │ </text>                                                                      │

02:09:21 #27235 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27236 [Debug] > │ points="49,260 54,260 "/>                                                    │

02:09:21 #27237 [Debug] > │ <text x="45" y="226" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27238 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27239 [Debug] > │ 0.0                                                                          │

02:09:21 #27240 [Debug] > │ </text>                                                                      │

02:09:21 #27241 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27242 [Debug] > │ points="49,226 54,226 "/>                                                    │

02:09:21 #27243 [Debug] > │ <text x="45" y="193" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27244 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27245 [Debug] > │ 0.0                                                                          │

02:09:21 #27246 [Debug] > │ </text>                                                                      │

02:09:21 #27247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27248 [Debug] > │ points="49,193 54,193 "/>                                                    │

02:09:21 #27249 [Debug] > │ <text x="45" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27250 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27251 [Debug] > │ 0.0                                                                          │

02:09:21 #27252 [Debug] > │ </text>                                                                      │

02:09:21 #27253 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27254 [Debug] > │ points="49,159 54,159 "/>                                                    │

02:09:21 #27255 [Debug] > │ <text x="45" y="125" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27256 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27257 [Debug] > │ 0.0                                                                          │

02:09:21 #27258 [Debug] > │ </text>                                                                      │

02:09:21 #27259 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27260 [Debug] > │ points="49,125 54,125 "/>                                                    │

02:09:21 #27261 [Debug] > │ <text x="45" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:21 #27262 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27263 [Debug] > │ 0.0                                                                          │

02:09:21 #27264 [Debug] > │ </text>                                                                      │

02:09:21 #27265 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27266 [Debug] > │ points="49,91 54,91 "/>                                                      │

02:09:21 #27267 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27268 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:21 #27269 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:21 #27270 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27271 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27272 [Debug] > │ 0.0                                                                          │

02:09:21 #27273 [Debug] > │ </text>                                                                      │

02:09:21 #27274 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27275 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:21 #27276 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27277 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27278 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27279 [Debug] > │ 0.1                                                                          │

02:09:21 #27280 [Debug] > │ </text>                                                                      │

02:09:21 #27281 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27282 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:21 #27283 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27284 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27285 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27286 [Debug] > │ 0.1                                                                          │

02:09:21 #27287 [Debug] > │ </text>                                                                      │

02:09:21 #27288 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27289 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:21 #27290 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27291 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27292 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27293 [Debug] > │ 0.2                                                                          │

02:09:21 #27294 [Debug] > │ </text>                                                                      │

02:09:21 #27295 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27296 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:21 #27297 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27298 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27299 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27300 [Debug] > │ 0.2                                                                          │

02:09:21 #27301 [Debug] > │ </text>                                                                      │

02:09:21 #27302 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27303 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:21 #27304 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27305 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27306 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27307 [Debug] > │ 0.2                                                                          │

02:09:21 #27308 [Debug] > │ </text>                                                                      │

02:09:21 #27309 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27310 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:21 #27311 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27312 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27313 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27314 [Debug] > │ 0.3                                                                          │

02:09:21 #27315 [Debug] > │ </text>                                                                      │

02:09:21 #27316 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27317 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:21 #27318 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27319 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27320 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27321 [Debug] > │ 0.3                                                                          │

02:09:21 #27322 [Debug] > │ </text>                                                                      │

02:09:21 #27323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27324 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:21 #27325 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27326 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27327 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27328 [Debug] > │ 0.4                                                                          │

02:09:21 #27329 [Debug] > │ </text>                                                                      │

02:09:21 #27330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27331 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:21 #27332 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27333 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27334 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27335 [Debug] > │ 0.4                                                                          │

02:09:21 #27336 [Debug] > │ </text>                                                                      │

02:09:21 #27337 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27338 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:21 #27339 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27340 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27341 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27342 [Debug] > │ 0.5                                                                          │

02:09:21 #27343 [Debug] > │ </text>                                                                      │

02:09:21 #27344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27345 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:21 #27346 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27347 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27348 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27349 [Debug] > │ 0.5                                                                          │

02:09:21 #27350 [Debug] > │ </text>                                                                      │

02:09:21 #27351 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27352 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:21 #27353 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27354 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27355 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27356 [Debug] > │ 0.6                                                                          │

02:09:21 #27357 [Debug] > │ </text>                                                                      │

02:09:21 #27358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27359 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:21 #27360 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:21 #27361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27362 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27363 [Debug] > │ 0.7                                                                          │

02:09:21 #27364 [Debug] > │ </text>                                                                      │

02:09:21 #27365 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27366 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:21 #27367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27368 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:21 #27369 [Debug] > │ <text x="595" y="395" dy="0.5ex" text-anchor="start"                         │

02:09:21 #27370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27371 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27372 [Debug] > │ -0.0                                                                         │

02:09:21 #27373 [Debug] > │ </text>                                                                      │

02:09:21 #27374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27375 [Debug] > │ points="585,395 590,395 "/>                                                  │

02:09:21 #27376 [Debug] > │ <text x="595" y="361" dy="0.5ex" text-anchor="start"                         │

02:09:21 #27377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27378 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27379 [Debug] > │ -0.0                                                                         │

02:09:21 #27380 [Debug] > │ </text>                                                                      │

02:09:21 #27381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27382 [Debug] > │ points="585,361 590,361 "/>                                                  │

02:09:21 #27383 [Debug] > │ <text x="617" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27384 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27385 [Debug] > │ 0.0                                                                          │

02:09:21 #27386 [Debug] > │ </text>                                                                      │

02:09:21 #27387 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27388 [Debug] > │ points="585,328 590,328 "/>                                                  │

02:09:21 #27389 [Debug] > │ <text x="617" y="294" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27390 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27391 [Debug] > │ 0.0                                                                          │

02:09:21 #27392 [Debug] > │ </text>                                                                      │

02:09:21 #27393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27394 [Debug] > │ points="585,294 590,294 "/>                                                  │

02:09:21 #27395 [Debug] > │ <text x="617" y="260" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27396 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27397 [Debug] > │ 0.0                                                                          │

02:09:21 #27398 [Debug] > │ </text>                                                                      │

02:09:21 #27399 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27400 [Debug] > │ points="585,260 590,260 "/>                                                  │

02:09:21 #27401 [Debug] > │ <text x="617" y="226" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27402 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27403 [Debug] > │ 0.0                                                                          │

02:09:21 #27404 [Debug] > │ </text>                                                                      │

02:09:21 #27405 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27406 [Debug] > │ points="585,226 590,226 "/>                                                  │

02:09:21 #27407 [Debug] > │ <text x="617" y="193" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27408 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27409 [Debug] > │ 0.0                                                                          │

02:09:21 #27410 [Debug] > │ </text>                                                                      │

02:09:21 #27411 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27412 [Debug] > │ points="585,193 590,193 "/>                                                  │

02:09:21 #27413 [Debug] > │ <text x="617" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27414 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27415 [Debug] > │ 0.0                                                                          │

02:09:21 #27416 [Debug] > │ </text>                                                                      │

02:09:21 #27417 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27418 [Debug] > │ points="585,159 590,159 "/>                                                  │

02:09:21 #27419 [Debug] > │ <text x="617" y="125" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:21 #27420 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27421 [Debug] > │ 0.0                                                                          │

02:09:21 #27422 [Debug] > │ </text>                                                                      │

02:09:21 #27423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27424 [Debug] > │ points="585,125 590,125 "/>                                                  │

02:09:21 #27425 [Debug] > │ <text x="617" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:21 #27426 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:21 #27427 [Debug] > │ 0.0                                                                          │

02:09:21 #27428 [Debug] > │ </text>                                                                      │

02:09:21 #27429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:21 #27430 [Debug] > │ points="585,91 590,91 "/>                                                    │

02:09:21 #27431 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #27432 [Debug] > │ points="69,328 77,340 85,353 93,364 100,375 108,385 116,394 123,402 131,407  │

02:09:21 #27433 [Debug] > │ 139,412 146,414 154,415 162,413 169,410 177,406 185,399 192,391 200,382      │

02:09:21 #27434 [Debug] > │ 208,372 215,360 223,348 231,336 238,323 246,311 254,299 261,287 269,277      │

02:09:21 #27435 [Debug] > │ 277,267 284,259 292,252 300,246 307,243 315,241 323,241 331,243 338,246      │

02:09:21 #27436 [Debug] > │ 346,252 354,259 361,267 369,277 377,287 384,299 392,311 400,323 407,336      │

02:09:21 #27437 [Debug] > │ 415,348 423,360 430,371 437,377 443,376 446,359 446,325 444,280 444,243      │

02:09:21 #27438 [Debug] > │ 445,216 445,186 444,156 445,135 445,116 445,100 445,91 445,85 545,185        │

02:09:21 #27439 [Debug] > │ 553,231 561,279 569,328 "/>                                                  │

02:09:21 #27440 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:21 #27441 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:21 #27442 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:21 #27443 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27444 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27445 [Debug] > │ 20                                                                           │

02:09:21 #27446 [Debug] > │ </text>                                                                      │

02:09:21 #27447 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:21 #27448 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:21 #27449 [Debug] > │ </svg>                                                                       │

02:09:21 #27450 [Debug] > │ </td></tr><tr><td>21</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:21 #27451 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:21 #27452 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:21 #27453 [Debug] > │ stroke="none"/>                                                              │

02:09:21 #27454 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:21 #27455 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:21 #27456 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:21 #27457 [Debug] > │ wave                                                                         │

02:09:21 #27458 [Debug] > │ </text>                                                                      │

02:09:22 #27459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:22 #27460 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #27461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #27462 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #27463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:22 #27464 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #27465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:22 #27466 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #27467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:22 #27468 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #27469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:22 #27470 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:22 #27471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:22 #27472 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:22 #27473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:22 #27474 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:22 #27475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:22 #27476 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:22 #27477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:22 #27478 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:22 #27479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:22 #27480 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:22 #27481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:22 #27482 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:22 #27483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:22 #27484 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:22 #27485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:22 #27486 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:22 #27487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:22 #27488 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:22 #27489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:22 #27490 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:22 #27491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:22 #27492 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:22 #27493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:22 #27494 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:22 #27495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:22 #27496 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:22 #27497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:22 #27498 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:22 #27499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:22 #27500 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:22 #27501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:22 #27502 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:22 #27503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:22 #27504 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:22 #27505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:22 #27506 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:22 #27507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:22 #27508 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:22 #27509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:22 #27510 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:22 #27511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:22 #27512 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:22 #27513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:22 #27514 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:22 #27515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:22 #27516 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:22 #27517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:22 #27518 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:22 #27519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:22 #27520 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:22 #27521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:22 #27522 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:22 #27523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:22 #27524 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:22 #27525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:22 #27526 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:22 #27527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:22 #27528 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:22 #27529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:22 #27530 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:22 #27531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:22 #27532 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:22 #27533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:22 #27534 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:22 #27535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:22 #27536 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:22 #27537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:22 #27538 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:22 #27539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:22 #27540 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:22 #27541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:22 #27542 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:22 #27543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:22 #27544 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:22 #27545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:22 #27546 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:22 #27547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:22 #27548 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:22 #27549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:22 #27550 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:22 #27551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:22 #27552 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:22 #27553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:22 #27554 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:22 #27555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:22 #27556 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:22 #27557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:22 #27558 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:22 #27559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:22 #27560 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:22 #27561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:22 #27562 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:22 #27563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:22 #27564 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:22 #27565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:22 #27566 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:22 #27567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:22 #27568 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:22 #27569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:22 #27570 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:22 #27571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:22 #27572 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:22 #27573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:22 #27574 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:22 #27575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:22 #27576 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:22 #27577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:22 #27578 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:22 #27579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:22 #27580 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:22 #27581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:22 #27582 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:22 #27583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:22 #27584 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:22 #27585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:22 #27586 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:22 #27587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:22 #27588 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:22 #27589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:22 #27590 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:22 #27591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:22 #27592 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:22 #27593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="420"         │

02:09:22 #27594 [Debug] > │ x2="584" y2="420"/>                                                          │

02:09:22 #27595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:09:22 #27596 [Debug] > │ x2="584" y2="406"/>                                                          │

02:09:22 #27597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:22 #27598 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:22 #27599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:09:22 #27600 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:22 #27601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:09:22 #27602 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:22 #27603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="354"         │

02:09:22 #27604 [Debug] > │ x2="584" y2="354"/>                                                          │

02:09:22 #27605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:22 #27606 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:22 #27607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="327"         │

02:09:22 #27608 [Debug] > │ x2="584" y2="327"/>                                                          │

02:09:22 #27609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:22 #27610 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:22 #27611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:22 #27612 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:22 #27613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:09:22 #27614 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:22 #27615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="274"         │

02:09:22 #27616 [Debug] > │ x2="584" y2="274"/>                                                          │

02:09:22 #27617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="261"         │

02:09:22 #27618 [Debug] > │ x2="584" y2="261"/>                                                          │

02:09:22 #27619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="248"         │

02:09:22 #27620 [Debug] > │ x2="584" y2="248"/>                                                          │

02:09:22 #27621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:22 #27622 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:22 #27623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="221"         │

02:09:22 #27624 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:22 #27625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="208"         │

02:09:22 #27626 [Debug] > │ x2="584" y2="208"/>                                                          │

02:09:22 #27627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:09:22 #27628 [Debug] > │ x2="584" y2="195"/>                                                          │

02:09:22 #27629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:22 #27630 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:22 #27631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:09:22 #27632 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:22 #27633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="155"         │

02:09:22 #27634 [Debug] > │ x2="584" y2="155"/>                                                          │

02:09:22 #27635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:22 #27636 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:22 #27637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="129"         │

02:09:22 #27638 [Debug] > │ x2="584" y2="129"/>                                                          │

02:09:22 #27639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="115"         │

02:09:22 #27640 [Debug] > │ x2="584" y2="115"/>                                                          │

02:09:22 #27641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:09:22 #27642 [Debug] > │ x2="584" y2="102"/>                                                          │

02:09:22 #27643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:09:22 #27644 [Debug] > │ y2="89"/>                                                                    │

02:09:22 #27645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="76" x2="584" │

02:09:22 #27646 [Debug] > │ y2="76"/>                                                                    │

02:09:22 #27647 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:22 #27648 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27649 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27650 [Debug] > │ position (m)                                                                 │

02:09:22 #27651 [Debug] > │ </text>                                                                      │

02:09:22 #27652 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:22 #27653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27654 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:22 #27655 [Debug] > │ displacement (m)                                                             │

02:09:22 #27656 [Debug] > │ </text>                                                                      │

02:09:22 #27657 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:22 #27658 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27659 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27660 [Debug] > │ position (m)                                                                 │

02:09:22 #27661 [Debug] > │ </text>                                                                      │

02:09:22 #27662 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27663 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27664 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:22 #27665 [Debug] > │ displacement (m)                                                             │

02:09:22 #27666 [Debug] > │ </text>                                                                      │

02:09:22 #27667 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #27668 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #27669 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:22 #27670 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:22 #27671 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:22 #27672 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:22 #27673 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:22 #27674 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:22 #27675 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:22 #27676 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:22 #27677 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:22 #27678 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:22 #27679 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:22 #27680 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:22 #27681 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:22 #27682 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:22 #27683 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:22 #27684 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:22 #27685 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:22 #27686 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:22 #27687 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:22 #27688 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:22 #27689 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:22 #27690 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:22 #27691 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:22 #27692 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:22 #27693 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:22 #27694 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:22 #27695 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="400"         │

02:09:22 #27696 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:22 #27697 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="367"         │

02:09:22 #27698 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:22 #27699 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="334"         │

02:09:22 #27700 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:22 #27701 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="301"         │

02:09:22 #27702 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:22 #27703 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="268"         │

02:09:22 #27704 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:22 #27705 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="234"         │

02:09:22 #27706 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:22 #27707 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="201"         │

02:09:22 #27708 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:22 #27709 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="168"         │

02:09:22 #27710 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:22 #27711 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="135"         │

02:09:22 #27712 [Debug] > │ x2="584" y2="135"/>                                                          │

02:09:22 #27713 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="102"         │

02:09:22 #27714 [Debug] > │ x2="584" y2="102"/>                                                          │

02:09:22 #27715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27716 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:22 #27717 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:22 #27718 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27719 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27720 [Debug] > │ 0.0                                                                          │

02:09:22 #27721 [Debug] > │ </text>                                                                      │

02:09:22 #27722 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27723 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:22 #27724 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27725 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27726 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27727 [Debug] > │ 0.1                                                                          │

02:09:22 #27728 [Debug] > │ </text>                                                                      │

02:09:22 #27729 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27730 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:22 #27731 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27732 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27733 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27734 [Debug] > │ 0.1                                                                          │

02:09:22 #27735 [Debug] > │ </text>                                                                      │

02:09:22 #27736 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27737 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:22 #27738 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27739 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27740 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27741 [Debug] > │ 0.2                                                                          │

02:09:22 #27742 [Debug] > │ </text>                                                                      │

02:09:22 #27743 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27744 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:22 #27745 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27746 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27747 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27748 [Debug] > │ 0.2                                                                          │

02:09:22 #27749 [Debug] > │ </text>                                                                      │

02:09:22 #27750 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27751 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:22 #27752 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27753 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27754 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27755 [Debug] > │ 0.2                                                                          │

02:09:22 #27756 [Debug] > │ </text>                                                                      │

02:09:22 #27757 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27758 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:22 #27759 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27760 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27761 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27762 [Debug] > │ 0.3                                                                          │

02:09:22 #27763 [Debug] > │ </text>                                                                      │

02:09:22 #27764 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27765 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:22 #27766 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27767 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27768 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27769 [Debug] > │ 0.3                                                                          │

02:09:22 #27770 [Debug] > │ </text>                                                                      │

02:09:22 #27771 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27772 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:22 #27773 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27774 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27775 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27776 [Debug] > │ 0.4                                                                          │

02:09:22 #27777 [Debug] > │ </text>                                                                      │

02:09:22 #27778 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27779 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:22 #27780 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27781 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27782 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27783 [Debug] > │ 0.4                                                                          │

02:09:22 #27784 [Debug] > │ </text>                                                                      │

02:09:22 #27785 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27786 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:22 #27787 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27788 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27789 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27790 [Debug] > │ 0.5                                                                          │

02:09:22 #27791 [Debug] > │ </text>                                                                      │

02:09:22 #27792 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27793 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:22 #27794 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27795 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27796 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27797 [Debug] > │ 0.5                                                                          │

02:09:22 #27798 [Debug] > │ </text>                                                                      │

02:09:22 #27799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27800 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:22 #27801 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27802 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27803 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27804 [Debug] > │ 0.6                                                                          │

02:09:22 #27805 [Debug] > │ </text>                                                                      │

02:09:22 #27806 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27807 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:22 #27808 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #27809 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27810 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27811 [Debug] > │ 0.7                                                                          │

02:09:22 #27812 [Debug] > │ </text>                                                                      │

02:09:22 #27813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27814 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:22 #27815 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27816 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:22 #27817 [Debug] > │ <text x="45" y="400" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27818 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27819 [Debug] > │ -0.0                                                                         │

02:09:22 #27820 [Debug] > │ </text>                                                                      │

02:09:22 #27821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27822 [Debug] > │ points="49,400 54,400 "/>                                                    │

02:09:22 #27823 [Debug] > │ <text x="45" y="367" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27824 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27825 [Debug] > │ -0.0                                                                         │

02:09:22 #27826 [Debug] > │ </text>                                                                      │

02:09:22 #27827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27828 [Debug] > │ points="49,367 54,367 "/>                                                    │

02:09:22 #27829 [Debug] > │ <text x="45" y="334" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27830 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27831 [Debug] > │ -0.0                                                                         │

02:09:22 #27832 [Debug] > │ </text>                                                                      │

02:09:22 #27833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27834 [Debug] > │ points="49,334 54,334 "/>                                                    │

02:09:22 #27835 [Debug] > │ <text x="45" y="301" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27836 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27837 [Debug] > │ 0.0                                                                          │

02:09:22 #27838 [Debug] > │ </text>                                                                      │

02:09:22 #27839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27840 [Debug] > │ points="49,301 54,301 "/>                                                    │

02:09:22 #27841 [Debug] > │ <text x="45" y="268" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27842 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27843 [Debug] > │ 0.0                                                                          │

02:09:22 #27844 [Debug] > │ </text>                                                                      │

02:09:22 #27845 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27846 [Debug] > │ points="49,268 54,268 "/>                                                    │

02:09:22 #27847 [Debug] > │ <text x="45" y="234" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27848 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27849 [Debug] > │ 0.0                                                                          │

02:09:22 #27850 [Debug] > │ </text>                                                                      │

02:09:22 #27851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27852 [Debug] > │ points="49,234 54,234 "/>                                                    │

02:09:22 #27853 [Debug] > │ <text x="45" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27854 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27855 [Debug] > │ 0.0                                                                          │

02:09:22 #27856 [Debug] > │ </text>                                                                      │

02:09:22 #27857 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27858 [Debug] > │ points="49,201 54,201 "/>                                                    │

02:09:22 #27859 [Debug] > │ <text x="45" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27860 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27861 [Debug] > │ 0.0                                                                          │

02:09:22 #27862 [Debug] > │ </text>                                                                      │

02:09:22 #27863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27864 [Debug] > │ points="49,168 54,168 "/>                                                    │

02:09:22 #27865 [Debug] > │ <text x="45" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27866 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27867 [Debug] > │ 0.0                                                                          │

02:09:22 #27868 [Debug] > │ </text>                                                                      │

02:09:22 #27869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27870 [Debug] > │ points="49,135 54,135 "/>                                                    │

02:09:22 #27871 [Debug] > │ <text x="45" y="102" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #27872 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #27873 [Debug] > │ 0.0                                                                          │

02:09:22 #27874 [Debug] > │ </text>                                                                      │

02:09:22 #27875 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27876 [Debug] > │ points="49,102 54,102 "/>                                                    │

02:09:22 #27877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27878 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:22 #27879 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:22 #27880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27881 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27882 [Debug] > │ 0.0                                                                          │

02:09:22 #27883 [Debug] > │ </text>                                                                      │

02:09:22 #27884 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27885 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:22 #27886 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27887 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27888 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27889 [Debug] > │ 0.1                                                                          │

02:09:22 #27890 [Debug] > │ </text>                                                                      │

02:09:22 #27891 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27892 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:22 #27893 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27894 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27895 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27896 [Debug] > │ 0.1                                                                          │

02:09:22 #27897 [Debug] > │ </text>                                                                      │

02:09:22 #27898 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27899 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:22 #27900 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27901 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27902 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27903 [Debug] > │ 0.2                                                                          │

02:09:22 #27904 [Debug] > │ </text>                                                                      │

02:09:22 #27905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27906 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:22 #27907 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27908 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27909 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27910 [Debug] > │ 0.2                                                                          │

02:09:22 #27911 [Debug] > │ </text>                                                                      │

02:09:22 #27912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27913 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:22 #27914 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27915 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27916 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27917 [Debug] > │ 0.2                                                                          │

02:09:22 #27918 [Debug] > │ </text>                                                                      │

02:09:22 #27919 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27920 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:22 #27921 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27922 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27923 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27924 [Debug] > │ 0.3                                                                          │

02:09:22 #27925 [Debug] > │ </text>                                                                      │

02:09:22 #27926 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27927 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:22 #27928 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27929 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27930 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27931 [Debug] > │ 0.3                                                                          │

02:09:22 #27932 [Debug] > │ </text>                                                                      │

02:09:22 #27933 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27934 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:22 #27935 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27936 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27937 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27938 [Debug] > │ 0.4                                                                          │

02:09:22 #27939 [Debug] > │ </text>                                                                      │

02:09:22 #27940 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27941 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:22 #27942 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27943 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27944 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27945 [Debug] > │ 0.4                                                                          │

02:09:22 #27946 [Debug] > │ </text>                                                                      │

02:09:22 #27947 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27948 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:22 #27949 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27950 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27951 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27952 [Debug] > │ 0.5                                                                          │

02:09:22 #27953 [Debug] > │ </text>                                                                      │

02:09:22 #27954 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27955 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:22 #27956 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27957 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27958 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27959 [Debug] > │ 0.5                                                                          │

02:09:22 #27960 [Debug] > │ </text>                                                                      │

02:09:22 #27961 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27962 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:22 #27963 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27964 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27965 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27966 [Debug] > │ 0.6                                                                          │

02:09:22 #27967 [Debug] > │ </text>                                                                      │

02:09:22 #27968 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27969 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:22 #27970 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #27971 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27972 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27973 [Debug] > │ 0.7                                                                          │

02:09:22 #27974 [Debug] > │ </text>                                                                      │

02:09:22 #27975 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27976 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:22 #27977 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27978 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:22 #27979 [Debug] > │ <text x="595" y="400" dy="0.5ex" text-anchor="start"                         │

02:09:22 #27980 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27981 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27982 [Debug] > │ -0.0                                                                         │

02:09:22 #27983 [Debug] > │ </text>                                                                      │

02:09:22 #27984 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27985 [Debug] > │ points="585,400 590,400 "/>                                                  │

02:09:22 #27986 [Debug] > │ <text x="595" y="367" dy="0.5ex" text-anchor="start"                         │

02:09:22 #27987 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27988 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27989 [Debug] > │ -0.0                                                                         │

02:09:22 #27990 [Debug] > │ </text>                                                                      │

02:09:22 #27991 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27992 [Debug] > │ points="585,367 590,367 "/>                                                  │

02:09:22 #27993 [Debug] > │ <text x="595" y="334" dy="0.5ex" text-anchor="start"                         │

02:09:22 #27994 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #27995 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #27996 [Debug] > │ -0.0                                                                         │

02:09:22 #27997 [Debug] > │ </text>                                                                      │

02:09:22 #27998 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #27999 [Debug] > │ points="585,334 590,334 "/>                                                  │

02:09:22 #28000 [Debug] > │ <text x="617" y="301" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28001 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28002 [Debug] > │ 0.0                                                                          │

02:09:22 #28003 [Debug] > │ </text>                                                                      │

02:09:22 #28004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28005 [Debug] > │ points="585,301 590,301 "/>                                                  │

02:09:22 #28006 [Debug] > │ <text x="617" y="268" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28007 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28008 [Debug] > │ 0.0                                                                          │

02:09:22 #28009 [Debug] > │ </text>                                                                      │

02:09:22 #28010 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28011 [Debug] > │ points="585,268 590,268 "/>                                                  │

02:09:22 #28012 [Debug] > │ <text x="617" y="234" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28013 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28014 [Debug] > │ 0.0                                                                          │

02:09:22 #28015 [Debug] > │ </text>                                                                      │

02:09:22 #28016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28017 [Debug] > │ points="585,234 590,234 "/>                                                  │

02:09:22 #28018 [Debug] > │ <text x="617" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28019 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28020 [Debug] > │ 0.0                                                                          │

02:09:22 #28021 [Debug] > │ </text>                                                                      │

02:09:22 #28022 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28023 [Debug] > │ points="585,201 590,201 "/>                                                  │

02:09:22 #28024 [Debug] > │ <text x="617" y="168" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28025 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28026 [Debug] > │ 0.0                                                                          │

02:09:22 #28027 [Debug] > │ </text>                                                                      │

02:09:22 #28028 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28029 [Debug] > │ points="585,168 590,168 "/>                                                  │

02:09:22 #28030 [Debug] > │ <text x="617" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28031 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28032 [Debug] > │ 0.0                                                                          │

02:09:22 #28033 [Debug] > │ </text>                                                                      │

02:09:22 #28034 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28035 [Debug] > │ points="585,135 590,135 "/>                                                  │

02:09:22 #28036 [Debug] > │ <text x="617" y="102" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28037 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28038 [Debug] > │ 0.0                                                                          │

02:09:22 #28039 [Debug] > │ </text>                                                                      │

02:09:22 #28040 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28041 [Debug] > │ points="585,102 590,102 "/>                                                  │

02:09:22 #28042 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #28043 [Debug] > │ points="69,301 77,317 85,333 93,349 100,363 108,376 116,388 123,397 131,405  │

02:09:22 #28044 [Debug] > │ 139,411 146,414 154,415 162,413 169,409 177,403 185,394 192,384 200,372      │

02:09:22 #28045 [Debug] > │ 208,358 215,344 223,328 231,312 238,295 246,279 254,263 261,248 269,234      │

02:09:22 #28046 [Debug] > │ 277,221 284,210 292,201 300,194 307,189 315,187 323,187 331,189 338,194      │

02:09:22 #28047 [Debug] > │ 346,201 354,210 361,221 369,234 377,248 384,263 392,279 400,295 407,312      │

02:09:22 #28048 [Debug] > │ 415,328 423,343 430,355 436,362 440,356 442,332 440,293 439,255 439,228      │

02:09:22 #28049 [Debug] > │ 440,203 440,173 440,149 440,130 440,111 440,99 440,90 440,85 545,161 553,206 │

02:09:22 #28050 [Debug] > │ 563,264 569,301 "/>                                                          │

02:09:22 #28051 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:22 #28052 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:22 #28053 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:22 #28054 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28055 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28056 [Debug] > │ 21                                                                           │

02:09:22 #28057 [Debug] > │ </text>                                                                      │

02:09:22 #28058 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #28059 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:22 #28060 [Debug] > │ </svg>                                                                       │

02:09:22 #28061 [Debug] > │ </td></tr><tr><td>22</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:22 #28062 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:22 #28063 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:22 #28064 [Debug] > │ stroke="none"/>                                                              │

02:09:22 #28065 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:22 #28066 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28067 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28068 [Debug] > │ wave                                                                         │

02:09:22 #28069 [Debug] > │ </text>                                                                      │

02:09:22 #28070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:22 #28071 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #28073 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:22 #28075 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:22 #28077 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:22 #28079 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:22 #28081 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:22 #28082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:22 #28083 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:22 #28084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:22 #28085 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:22 #28086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:22 #28087 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:22 #28088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:22 #28089 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:22 #28090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:22 #28091 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:22 #28092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:22 #28093 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:22 #28094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:22 #28095 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:22 #28096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:22 #28097 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:22 #28098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:22 #28099 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:22 #28100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:22 #28101 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:22 #28102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:22 #28103 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:22 #28104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:22 #28105 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:22 #28106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:22 #28107 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:22 #28108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:22 #28109 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:22 #28110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:22 #28111 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:22 #28112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:22 #28113 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:22 #28114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:22 #28115 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:22 #28116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:22 #28117 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:22 #28118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:22 #28119 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:22 #28120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:22 #28121 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:22 #28122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:22 #28123 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:22 #28124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:22 #28125 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:22 #28126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:22 #28127 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:22 #28128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:22 #28129 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:22 #28130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:22 #28131 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:22 #28132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:22 #28133 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:22 #28134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:22 #28135 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:22 #28136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:22 #28137 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:22 #28138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:22 #28139 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:22 #28140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:22 #28141 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:22 #28142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:22 #28143 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:22 #28144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:22 #28145 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:22 #28146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:22 #28147 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:22 #28148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:22 #28149 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:22 #28150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:22 #28151 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:22 #28152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:22 #28153 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:22 #28154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:22 #28155 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:22 #28156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:22 #28157 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:22 #28158 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:22 #28159 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:22 #28160 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:22 #28161 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:22 #28162 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:22 #28163 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:22 #28164 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:22 #28165 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:22 #28166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:22 #28167 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:22 #28168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:22 #28169 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:22 #28170 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:22 #28171 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:22 #28172 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:22 #28173 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:22 #28174 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:22 #28175 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:22 #28176 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:22 #28177 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:22 #28178 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:22 #28179 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:22 #28180 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:22 #28181 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:22 #28182 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:22 #28183 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:22 #28184 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:22 #28185 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:22 #28186 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:22 #28187 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:22 #28188 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:22 #28189 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:22 #28190 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:22 #28191 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:22 #28192 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:22 #28193 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:22 #28194 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:22 #28195 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:22 #28196 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:22 #28197 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:22 #28198 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:22 #28199 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:22 #28200 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:22 #28201 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:22 #28202 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:22 #28203 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:22 #28204 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:22 #28205 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:22 #28206 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:22 #28207 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:22 #28208 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:22 #28209 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:22 #28210 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:22 #28211 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:22 #28212 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:22 #28213 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:22 #28214 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:22 #28215 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:22 #28216 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:22 #28217 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:22 #28218 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="327"         │

02:09:22 #28219 [Debug] > │ x2="584" y2="327"/>                                                          │

02:09:22 #28220 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:22 #28221 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:22 #28222 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:22 #28223 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:22 #28224 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:09:22 #28225 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:22 #28226 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="274"         │

02:09:22 #28227 [Debug] > │ x2="584" y2="274"/>                                                          │

02:09:22 #28228 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="261"         │

02:09:22 #28229 [Debug] > │ x2="584" y2="261"/>                                                          │

02:09:22 #28230 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="248"         │

02:09:22 #28231 [Debug] > │ x2="584" y2="248"/>                                                          │

02:09:22 #28232 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="235"         │

02:09:22 #28233 [Debug] > │ x2="584" y2="235"/>                                                          │

02:09:22 #28234 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:09:22 #28235 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:22 #28236 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="209"         │

02:09:22 #28237 [Debug] > │ x2="584" y2="209"/>                                                          │

02:09:22 #28238 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="196"         │

02:09:22 #28239 [Debug] > │ x2="584" y2="196"/>                                                          │

02:09:22 #28240 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:22 #28241 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:22 #28242 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="170"         │

02:09:22 #28243 [Debug] > │ x2="584" y2="170"/>                                                          │

02:09:22 #28244 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:09:22 #28245 [Debug] > │ x2="584" y2="157"/>                                                          │

02:09:22 #28246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="144"         │

02:09:22 #28247 [Debug] > │ x2="584" y2="144"/>                                                          │

02:09:22 #28248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:22 #28249 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:22 #28250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:22 #28251 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:22 #28252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="105"         │

02:09:22 #28253 [Debug] > │ x2="584" y2="105"/>                                                          │

02:09:22 #28254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:22 #28255 [Debug] > │ y2="92"/>                                                                    │

02:09:22 #28256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:22 #28257 [Debug] > │ y2="79"/>                                                                    │

02:09:22 #28258 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:22 #28259 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28260 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28261 [Debug] > │ position (m)                                                                 │

02:09:22 #28262 [Debug] > │ </text>                                                                      │

02:09:22 #28263 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:22 #28264 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28265 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:22 #28266 [Debug] > │ displacement (m)                                                             │

02:09:22 #28267 [Debug] > │ </text>                                                                      │

02:09:22 #28268 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:22 #28269 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28270 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28271 [Debug] > │ position (m)                                                                 │

02:09:22 #28272 [Debug] > │ </text>                                                                      │

02:09:22 #28273 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28275 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:22 #28276 [Debug] > │ displacement (m)                                                             │

02:09:22 #28277 [Debug] > │ </text>                                                                      │

02:09:22 #28278 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #28279 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28280 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:22 #28281 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:22 #28282 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:22 #28283 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:22 #28284 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:22 #28285 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:22 #28286 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:22 #28287 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:22 #28288 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:22 #28289 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:22 #28290 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:22 #28291 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:22 #28292 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:22 #28293 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:22 #28294 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:22 #28295 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:22 #28296 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:22 #28297 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:22 #28298 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:22 #28299 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:22 #28300 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:22 #28301 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:22 #28302 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:22 #28303 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:22 #28304 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:22 #28305 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:22 #28306 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="405"         │

02:09:22 #28307 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:22 #28308 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="340"         │

02:09:22 #28309 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:22 #28310 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="274"         │

02:09:22 #28311 [Debug] > │ x2="584" y2="274"/>                                                          │

02:09:22 #28312 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="209"         │

02:09:22 #28313 [Debug] > │ x2="584" y2="209"/>                                                          │

02:09:22 #28314 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="144"         │

02:09:22 #28315 [Debug] > │ x2="584" y2="144"/>                                                          │

02:09:22 #28316 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:22 #28317 [Debug] > │ y2="79"/>                                                                    │

02:09:22 #28318 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28319 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:22 #28320 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:22 #28321 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28322 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28323 [Debug] > │ 0.0                                                                          │

02:09:22 #28324 [Debug] > │ </text>                                                                      │

02:09:22 #28325 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28326 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:22 #28327 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28328 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28329 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28330 [Debug] > │ 0.1                                                                          │

02:09:22 #28331 [Debug] > │ </text>                                                                      │

02:09:22 #28332 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28333 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:22 #28334 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28335 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28336 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28337 [Debug] > │ 0.1                                                                          │

02:09:22 #28338 [Debug] > │ </text>                                                                      │

02:09:22 #28339 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28340 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:22 #28341 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28342 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28343 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28344 [Debug] > │ 0.2                                                                          │

02:09:22 #28345 [Debug] > │ </text>                                                                      │

02:09:22 #28346 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28347 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:22 #28348 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28349 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28350 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28351 [Debug] > │ 0.2                                                                          │

02:09:22 #28352 [Debug] > │ </text>                                                                      │

02:09:22 #28353 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28354 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:22 #28355 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28356 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28357 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28358 [Debug] > │ 0.2                                                                          │

02:09:22 #28359 [Debug] > │ </text>                                                                      │

02:09:22 #28360 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28361 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:22 #28362 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28363 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28364 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28365 [Debug] > │ 0.3                                                                          │

02:09:22 #28366 [Debug] > │ </text>                                                                      │

02:09:22 #28367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28368 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:22 #28369 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28371 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28372 [Debug] > │ 0.3                                                                          │

02:09:22 #28373 [Debug] > │ </text>                                                                      │

02:09:22 #28374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28375 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:22 #28376 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28378 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28379 [Debug] > │ 0.4                                                                          │

02:09:22 #28380 [Debug] > │ </text>                                                                      │

02:09:22 #28381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28382 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:22 #28383 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28384 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28385 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28386 [Debug] > │ 0.4                                                                          │

02:09:22 #28387 [Debug] > │ </text>                                                                      │

02:09:22 #28388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28389 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:22 #28390 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28392 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28393 [Debug] > │ 0.5                                                                          │

02:09:22 #28394 [Debug] > │ </text>                                                                      │

02:09:22 #28395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28396 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:22 #28397 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28399 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28400 [Debug] > │ 0.5                                                                          │

02:09:22 #28401 [Debug] > │ </text>                                                                      │

02:09:22 #28402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28403 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:22 #28404 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28407 [Debug] > │ 0.6                                                                          │

02:09:22 #28408 [Debug] > │ </text>                                                                      │

02:09:22 #28409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28410 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:22 #28411 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28414 [Debug] > │ 0.7                                                                          │

02:09:22 #28415 [Debug] > │ </text>                                                                      │

02:09:22 #28416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28417 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:22 #28418 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28419 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:22 #28420 [Debug] > │ <text x="45" y="405" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28421 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28422 [Debug] > │ -0.0                                                                         │

02:09:22 #28423 [Debug] > │ </text>                                                                      │

02:09:22 #28424 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28425 [Debug] > │ points="49,405 54,405 "/>                                                    │

02:09:22 #28426 [Debug] > │ <text x="45" y="340" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28427 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28428 [Debug] > │ -0.0                                                                         │

02:09:22 #28429 [Debug] > │ </text>                                                                      │

02:09:22 #28430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28431 [Debug] > │ points="49,340 54,340 "/>                                                    │

02:09:22 #28432 [Debug] > │ <text x="45" y="274" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28433 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28434 [Debug] > │ 0.0                                                                          │

02:09:22 #28435 [Debug] > │ </text>                                                                      │

02:09:22 #28436 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28437 [Debug] > │ points="49,274 54,274 "/>                                                    │

02:09:22 #28438 [Debug] > │ <text x="45" y="209" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28439 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28440 [Debug] > │ 0.0                                                                          │

02:09:22 #28441 [Debug] > │ </text>                                                                      │

02:09:22 #28442 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28443 [Debug] > │ points="49,209 54,209 "/>                                                    │

02:09:22 #28444 [Debug] > │ <text x="45" y="144" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28445 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28446 [Debug] > │ 0.0                                                                          │

02:09:22 #28447 [Debug] > │ </text>                                                                      │

02:09:22 #28448 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28449 [Debug] > │ points="49,144 54,144 "/>                                                    │

02:09:22 #28450 [Debug] > │ <text x="45" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:22 #28451 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28452 [Debug] > │ 0.0                                                                          │

02:09:22 #28453 [Debug] > │ </text>                                                                      │

02:09:22 #28454 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28455 [Debug] > │ points="49,79 54,79 "/>                                                      │

02:09:22 #28456 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28457 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:22 #28458 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:22 #28459 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28460 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28461 [Debug] > │ 0.0                                                                          │

02:09:22 #28462 [Debug] > │ </text>                                                                      │

02:09:22 #28463 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28464 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:22 #28465 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28466 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28467 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28468 [Debug] > │ 0.1                                                                          │

02:09:22 #28469 [Debug] > │ </text>                                                                      │

02:09:22 #28470 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28471 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:22 #28472 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28473 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28474 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28475 [Debug] > │ 0.1                                                                          │

02:09:22 #28476 [Debug] > │ </text>                                                                      │

02:09:22 #28477 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28478 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:22 #28479 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28480 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28481 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28482 [Debug] > │ 0.2                                                                          │

02:09:22 #28483 [Debug] > │ </text>                                                                      │

02:09:22 #28484 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28485 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:22 #28486 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28487 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28488 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28489 [Debug] > │ 0.2                                                                          │

02:09:22 #28490 [Debug] > │ </text>                                                                      │

02:09:22 #28491 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28492 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:22 #28493 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28494 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28495 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28496 [Debug] > │ 0.2                                                                          │

02:09:22 #28497 [Debug] > │ </text>                                                                      │

02:09:22 #28498 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28499 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:22 #28500 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28501 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28502 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28503 [Debug] > │ 0.3                                                                          │

02:09:22 #28504 [Debug] > │ </text>                                                                      │

02:09:22 #28505 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28506 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:22 #28507 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28508 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28509 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28510 [Debug] > │ 0.3                                                                          │

02:09:22 #28511 [Debug] > │ </text>                                                                      │

02:09:22 #28512 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28513 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:22 #28514 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28515 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28516 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28517 [Debug] > │ 0.4                                                                          │

02:09:22 #28518 [Debug] > │ </text>                                                                      │

02:09:22 #28519 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28520 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:22 #28521 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28522 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28523 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28524 [Debug] > │ 0.4                                                                          │

02:09:22 #28525 [Debug] > │ </text>                                                                      │

02:09:22 #28526 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28527 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:22 #28528 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28529 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28530 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28531 [Debug] > │ 0.5                                                                          │

02:09:22 #28532 [Debug] > │ </text>                                                                      │

02:09:22 #28533 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28534 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:22 #28535 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28536 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28537 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28538 [Debug] > │ 0.5                                                                          │

02:09:22 #28539 [Debug] > │ </text>                                                                      │

02:09:22 #28540 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28541 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:22 #28542 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28543 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28544 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28545 [Debug] > │ 0.6                                                                          │

02:09:22 #28546 [Debug] > │ </text>                                                                      │

02:09:22 #28547 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28548 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:22 #28549 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28550 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28551 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28552 [Debug] > │ 0.7                                                                          │

02:09:22 #28553 [Debug] > │ </text>                                                                      │

02:09:22 #28554 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28555 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:22 #28556 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28557 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:22 #28558 [Debug] > │ <text x="595" y="405" dy="0.5ex" text-anchor="start"                         │

02:09:22 #28559 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28560 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28561 [Debug] > │ -0.0                                                                         │

02:09:22 #28562 [Debug] > │ </text>                                                                      │

02:09:22 #28563 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28564 [Debug] > │ points="585,405 590,405 "/>                                                  │

02:09:22 #28565 [Debug] > │ <text x="595" y="340" dy="0.5ex" text-anchor="start"                         │

02:09:22 #28566 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28567 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28568 [Debug] > │ -0.0                                                                         │

02:09:22 #28569 [Debug] > │ </text>                                                                      │

02:09:22 #28570 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28571 [Debug] > │ points="585,340 590,340 "/>                                                  │

02:09:22 #28572 [Debug] > │ <text x="617" y="274" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28573 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28574 [Debug] > │ 0.0                                                                          │

02:09:22 #28575 [Debug] > │ </text>                                                                      │

02:09:22 #28576 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28577 [Debug] > │ points="585,274 590,274 "/>                                                  │

02:09:22 #28578 [Debug] > │ <text x="617" y="209" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28579 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28580 [Debug] > │ 0.0                                                                          │

02:09:22 #28581 [Debug] > │ </text>                                                                      │

02:09:22 #28582 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28583 [Debug] > │ points="585,209 590,209 "/>                                                  │

02:09:22 #28584 [Debug] > │ <text x="617" y="144" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #28585 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28586 [Debug] > │ 0.0                                                                          │

02:09:22 #28587 [Debug] > │ </text>                                                                      │

02:09:22 #28588 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28589 [Debug] > │ points="585,144 590,144 "/>                                                  │

02:09:22 #28590 [Debug] > │ <text x="617" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28591 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28592 [Debug] > │ 0.0                                                                          │

02:09:22 #28593 [Debug] > │ </text>                                                                      │

02:09:22 #28594 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28595 [Debug] > │ points="585,79 590,79 "/>                                                    │

02:09:22 #28596 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #28597 [Debug] > │ points="69,274 77,295 85,315 93,334 100,351 108,367 116,382 123,394 131,403  │

02:09:22 #28598 [Debug] > │ 139,410 146,414 154,415 162,413 169,408 177,400 185,390 192,377 200,362      │

02:09:22 #28599 [Debug] > │ 208,346 215,327 223,308 231,288 238,268 246,248 254,228 261,209 269,192      │

02:09:22 #28600 [Debug] > │ 277,177 284,163 292,152 300,143 307,138 315,135 323,135 331,138 338,143      │

02:09:22 #28601 [Debug] > │ 346,152 354,163 361,177 369,192 377,209 384,228 392,248 400,268 407,288      │

02:09:22 #28602 [Debug] > │ 415,308 422,325 429,339 434,342 437,330 436,300 434,263 434,234 435,213      │

02:09:22 #28603 [Debug] > │ 435,188 435,161 435,143 435,124 435,108 435,98 435,89 435,85 545,137 553,181 │

02:09:22 #28604 [Debug] > │ 567,263 569,274 "/>                                                          │

02:09:22 #28605 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:22 #28606 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:22 #28607 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:22 #28608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28609 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28610 [Debug] > │ 22                                                                           │

02:09:22 #28611 [Debug] > │ </text>                                                                      │

02:09:22 #28612 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #28613 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:22 #28614 [Debug] > │ </svg>                                                                       │

02:09:22 #28615 [Debug] > │ </td></tr><tr><td>23</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:22 #28616 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:22 #28617 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:22 #28618 [Debug] > │ stroke="none"/>                                                              │

02:09:22 #28619 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:22 #28620 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28621 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28622 [Debug] > │ wave                                                                         │

02:09:22 #28623 [Debug] > │ </text>                                                                      │

02:09:22 #28624 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:22 #28625 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28626 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #28627 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28628 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:22 #28629 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28630 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:22 #28631 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28632 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:22 #28633 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28634 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:22 #28635 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:22 #28636 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:22 #28637 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:22 #28638 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:22 #28639 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:22 #28640 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:22 #28641 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:22 #28642 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:22 #28643 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:22 #28644 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:22 #28645 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:22 #28646 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:22 #28647 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:22 #28648 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:22 #28649 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:22 #28650 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:22 #28651 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:22 #28652 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:22 #28653 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:22 #28654 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:22 #28655 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:22 #28656 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:22 #28657 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:22 #28658 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:22 #28659 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:22 #28660 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:22 #28661 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:22 #28662 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:22 #28663 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:22 #28664 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:22 #28665 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:22 #28666 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:22 #28667 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:22 #28668 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:22 #28669 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:22 #28670 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:22 #28671 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:22 #28672 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:22 #28673 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:22 #28674 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:22 #28675 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:22 #28676 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:22 #28677 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:22 #28678 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:22 #28679 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:22 #28680 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:22 #28681 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:22 #28682 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:22 #28683 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:22 #28684 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:22 #28685 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:22 #28686 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:09:22 #28687 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:22 #28688 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:22 #28689 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:22 #28690 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:22 #28691 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:22 #28692 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:09:22 #28693 [Debug] > │ x2="321" y2="75"/>                                                           │

02:09:22 #28694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:22 #28695 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:22 #28696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:22 #28697 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:22 #28698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:09:22 #28699 [Debug] > │ x2="344" y2="75"/>                                                           │

02:09:22 #28700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:22 #28701 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:22 #28702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:22 #28703 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:22 #28704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:22 #28705 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:22 #28706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:22 #28707 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:22 #28708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="382" y1="424"        │

02:09:22 #28709 [Debug] > │ x2="382" y2="75"/>                                                           │

02:09:22 #28710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:22 #28711 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:22 #28712 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:22 #28713 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:22 #28714 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:09:22 #28715 [Debug] > │ x2="405" y2="75"/>                                                           │

02:09:22 #28716 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:22 #28717 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:22 #28718 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:22 #28719 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:22 #28720 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:22 #28721 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:22 #28722 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="436" y1="424"        │

02:09:22 #28723 [Debug] > │ x2="436" y2="75"/>                                                           │

02:09:22 #28724 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:09:22 #28725 [Debug] > │ x2="444" y2="75"/>                                                           │

02:09:22 #28726 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:22 #28727 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:22 #28728 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:22 #28729 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:22 #28730 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="466" y1="424"        │

02:09:22 #28731 [Debug] > │ x2="466" y2="75"/>                                                           │

02:09:22 #28732 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="474" y1="424"        │

02:09:22 #28733 [Debug] > │ x2="474" y2="75"/>                                                           │

02:09:22 #28734 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="482" y1="424"        │

02:09:22 #28735 [Debug] > │ x2="482" y2="75"/>                                                           │

02:09:22 #28736 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:22 #28737 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:22 #28738 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:09:22 #28739 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:22 #28740 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="505" y1="424"        │

02:09:22 #28741 [Debug] > │ x2="505" y2="75"/>                                                           │

02:09:22 #28742 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:22 #28743 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:22 #28744 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="520" y1="424"        │

02:09:22 #28745 [Debug] > │ x2="520" y2="75"/>                                                           │

02:09:22 #28746 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="528" y1="424"        │

02:09:22 #28747 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:22 #28748 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:09:22 #28749 [Debug] > │ x2="535" y2="75"/>                                                           │

02:09:22 #28750 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="543" y1="424"        │

02:09:22 #28751 [Debug] > │ x2="543" y2="75"/>                                                           │

02:09:22 #28752 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="550" y1="424"        │

02:09:22 #28753 [Debug] > │ x2="550" y2="75"/>                                                           │

02:09:22 #28754 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="558" y1="424"        │

02:09:22 #28755 [Debug] > │ x2="558" y2="75"/>                                                           │

02:09:22 #28756 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="566" y1="424"        │

02:09:22 #28757 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:22 #28758 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="573" y1="424"        │

02:09:22 #28759 [Debug] > │ x2="573" y2="75"/>                                                           │

02:09:22 #28760 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:22 #28761 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:22 #28762 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:22 #28763 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:22 #28764 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:22 #28765 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:22 #28766 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:22 #28767 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:22 #28768 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:22 #28769 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:22 #28770 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:22 #28771 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:22 #28772 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:22 #28773 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:22 #28774 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="327"         │

02:09:22 #28775 [Debug] > │ x2="584" y2="327"/>                                                          │

02:09:22 #28776 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:22 #28777 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:22 #28778 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:22 #28779 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:22 #28780 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:22 #28781 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:22 #28782 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="276"         │

02:09:22 #28783 [Debug] > │ x2="584" y2="276"/>                                                          │

02:09:22 #28784 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="263"         │

02:09:22 #28785 [Debug] > │ x2="584" y2="263"/>                                                          │

02:09:22 #28786 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:22 #28787 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:22 #28788 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="237"         │

02:09:22 #28789 [Debug] > │ x2="584" y2="237"/>                                                          │

02:09:22 #28790 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="224"         │

02:09:22 #28791 [Debug] > │ x2="584" y2="224"/>                                                          │

02:09:22 #28792 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:09:22 #28793 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:22 #28794 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:22 #28795 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:22 #28796 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="185"         │

02:09:22 #28797 [Debug] > │ x2="584" y2="185"/>                                                          │

02:09:22 #28798 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="172"         │

02:09:22 #28799 [Debug] > │ x2="584" y2="172"/>                                                          │

02:09:22 #28800 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:09:22 #28801 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:22 #28802 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="146"         │

02:09:22 #28803 [Debug] > │ x2="584" y2="146"/>                                                          │

02:09:22 #28804 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:22 #28805 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:22 #28806 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:09:22 #28807 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:22 #28808 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="108"         │

02:09:22 #28809 [Debug] > │ x2="584" y2="108"/>                                                          │

02:09:22 #28810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="95" x2="584" │

02:09:22 #28811 [Debug] > │ y2="95"/>                                                                    │

02:09:22 #28812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:22 #28813 [Debug] > │ y2="82"/>                                                                    │

02:09:22 #28814 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:22 #28815 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28816 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28817 [Debug] > │ position (m)                                                                 │

02:09:22 #28818 [Debug] > │ </text>                                                                      │

02:09:22 #28819 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:22 #28820 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28821 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:22 #28822 [Debug] > │ displacement (m)                                                             │

02:09:22 #28823 [Debug] > │ </text>                                                                      │

02:09:22 #28824 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:22 #28825 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28826 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28827 [Debug] > │ position (m)                                                                 │

02:09:22 #28828 [Debug] > │ </text>                                                                      │

02:09:22 #28829 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:22 #28830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28831 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:22 #28832 [Debug] > │ displacement (m)                                                             │

02:09:22 #28833 [Debug] > │ </text>                                                                      │

02:09:22 #28834 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #28835 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #28836 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:22 #28837 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:22 #28838 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:22 #28839 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:22 #28840 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:22 #28841 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:22 #28842 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:22 #28843 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:22 #28844 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:22 #28845 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:22 #28846 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="298" y1="424"        │

02:09:22 #28847 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:22 #28848 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:22 #28849 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:22 #28850 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:22 #28851 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:22 #28852 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:22 #28853 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:22 #28854 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:22 #28855 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:22 #28856 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="489" y1="424"        │

02:09:22 #28857 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:22 #28858 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="528" y1="424"        │

02:09:22 #28859 [Debug] > │ x2="528" y2="75"/>                                                           │

02:09:22 #28860 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="566" y1="424"        │

02:09:22 #28861 [Debug] > │ x2="566" y2="75"/>                                                           │

02:09:22 #28862 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="379"         │

02:09:22 #28863 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:22 #28864 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="314"         │

02:09:22 #28865 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:22 #28866 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:22 #28867 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:22 #28868 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="185"         │

02:09:22 #28869 [Debug] > │ x2="584" y2="185"/>                                                          │

02:09:22 #28870 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="121"         │

02:09:22 #28871 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:22 #28872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28873 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:22 #28874 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:22 #28875 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28876 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28877 [Debug] > │ 0.0                                                                          │

02:09:22 #28878 [Debug] > │ </text>                                                                      │

02:09:22 #28879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28880 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:22 #28881 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28883 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28884 [Debug] > │ 0.1                                                                          │

02:09:22 #28885 [Debug] > │ </text>                                                                      │

02:09:22 #28886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28887 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:22 #28888 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28890 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28891 [Debug] > │ 0.1                                                                          │

02:09:22 #28892 [Debug] > │ </text>                                                                      │

02:09:22 #28893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28894 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:22 #28895 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28897 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28898 [Debug] > │ 0.2                                                                          │

02:09:22 #28899 [Debug] > │ </text>                                                                      │

02:09:22 #28900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28901 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:22 #28902 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28904 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28905 [Debug] > │ 0.2                                                                          │

02:09:22 #28906 [Debug] > │ </text>                                                                      │

02:09:22 #28907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28908 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:22 #28909 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28910 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28911 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28912 [Debug] > │ 0.2                                                                          │

02:09:22 #28913 [Debug] > │ </text>                                                                      │

02:09:22 #28914 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28915 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:22 #28916 [Debug] > │ <text x="298" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28917 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28918 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28919 [Debug] > │ 0.3                                                                          │

02:09:22 #28920 [Debug] > │ </text>                                                                      │

02:09:22 #28921 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28922 [Debug] > │ points="298,69 298,74 "/>                                                    │

02:09:22 #28923 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28924 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28925 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28926 [Debug] > │ 0.3                                                                          │

02:09:22 #28927 [Debug] > │ </text>                                                                      │

02:09:22 #28928 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28929 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:22 #28930 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28931 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28932 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28933 [Debug] > │ 0.4                                                                          │

02:09:22 #28934 [Debug] > │ </text>                                                                      │

02:09:22 #28935 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28936 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:22 #28937 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28938 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28939 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28940 [Debug] > │ 0.4                                                                          │

02:09:22 #28941 [Debug] > │ </text>                                                                      │

02:09:22 #28942 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28943 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:22 #28944 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28945 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28946 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28947 [Debug] > │ 0.5                                                                          │

02:09:22 #28948 [Debug] > │ </text>                                                                      │

02:09:22 #28949 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28950 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:22 #28951 [Debug] > │ <text x="489" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28952 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28953 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28954 [Debug] > │ 0.5                                                                          │

02:09:22 #28955 [Debug] > │ </text>                                                                      │

02:09:22 #28956 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28957 [Debug] > │ points="489,69 489,74 "/>                                                    │

02:09:22 #28958 [Debug] > │ <text x="528" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28959 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28960 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28961 [Debug] > │ 0.6                                                                          │

02:09:22 #28962 [Debug] > │ </text>                                                                      │

02:09:22 #28963 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28964 [Debug] > │ points="528,69 528,74 "/>                                                    │

02:09:22 #28965 [Debug] > │ <text x="566" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #28966 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #28967 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #28968 [Debug] > │ 0.7                                                                          │

02:09:22 #28969 [Debug] > │ </text>                                                                      │

02:09:22 #28970 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28971 [Debug] > │ points="566,69 566,74 "/>                                                    │

02:09:22 #28972 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28973 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:22 #28974 [Debug] > │ <text x="45" y="379" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28975 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28976 [Debug] > │ -0.0                                                                         │

02:09:22 #28977 [Debug] > │ </text>                                                                      │

02:09:22 #28978 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28979 [Debug] > │ points="49,379 54,379 "/>                                                    │

02:09:22 #28980 [Debug] > │ <text x="45" y="314" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28981 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28982 [Debug] > │ -0.0                                                                         │

02:09:22 #28983 [Debug] > │ </text>                                                                      │

02:09:22 #28984 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28985 [Debug] > │ points="49,314 54,314 "/>                                                    │

02:09:22 #28986 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28987 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28988 [Debug] > │ 0.0                                                                          │

02:09:22 #28989 [Debug] > │ </text>                                                                      │

02:09:22 #28990 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28991 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:22 #28992 [Debug] > │ <text x="45" y="185" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28993 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #28994 [Debug] > │ 0.0                                                                          │

02:09:22 #28995 [Debug] > │ </text>                                                                      │

02:09:22 #28996 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #28997 [Debug] > │ points="49,185 54,185 "/>                                                    │

02:09:22 #28998 [Debug] > │ <text x="45" y="121" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #28999 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29000 [Debug] > │ 0.0                                                                          │

02:09:22 #29001 [Debug] > │ </text>                                                                      │

02:09:22 #29002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29003 [Debug] > │ points="49,121 54,121 "/>                                                    │

02:09:22 #29004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29005 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:22 #29006 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:22 #29007 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29008 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29009 [Debug] > │ 0.0                                                                          │

02:09:22 #29010 [Debug] > │ </text>                                                                      │

02:09:22 #29011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29012 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:22 #29013 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29016 [Debug] > │ 0.1                                                                          │

02:09:22 #29017 [Debug] > │ </text>                                                                      │

02:09:22 #29018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29019 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:22 #29020 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29023 [Debug] > │ 0.1                                                                          │

02:09:22 #29024 [Debug] > │ </text>                                                                      │

02:09:22 #29025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29026 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:22 #29027 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29029 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29030 [Debug] > │ 0.2                                                                          │

02:09:22 #29031 [Debug] > │ </text>                                                                      │

02:09:22 #29032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29033 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:22 #29034 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29037 [Debug] > │ 0.2                                                                          │

02:09:22 #29038 [Debug] > │ </text>                                                                      │

02:09:22 #29039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29040 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:22 #29041 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29043 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29044 [Debug] > │ 0.2                                                                          │

02:09:22 #29045 [Debug] > │ </text>                                                                      │

02:09:22 #29046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29047 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:22 #29048 [Debug] > │ <text x="298" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29049 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29050 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29051 [Debug] > │ 0.3                                                                          │

02:09:22 #29052 [Debug] > │ </text>                                                                      │

02:09:22 #29053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29054 [Debug] > │ points="298,425 298,430 "/>                                                  │

02:09:22 #29055 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29056 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29057 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29058 [Debug] > │ 0.3                                                                          │

02:09:22 #29059 [Debug] > │ </text>                                                                      │

02:09:22 #29060 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29061 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:22 #29062 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29064 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29065 [Debug] > │ 0.4                                                                          │

02:09:22 #29066 [Debug] > │ </text>                                                                      │

02:09:22 #29067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29068 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:22 #29069 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29070 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29071 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29072 [Debug] > │ 0.4                                                                          │

02:09:22 #29073 [Debug] > │ </text>                                                                      │

02:09:22 #29074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29075 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:22 #29076 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29077 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29078 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29079 [Debug] > │ 0.5                                                                          │

02:09:22 #29080 [Debug] > │ </text>                                                                      │

02:09:22 #29081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29082 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:22 #29083 [Debug] > │ <text x="489" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29084 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29085 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29086 [Debug] > │ 0.5                                                                          │

02:09:22 #29087 [Debug] > │ </text>                                                                      │

02:09:22 #29088 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29089 [Debug] > │ points="489,425 489,430 "/>                                                  │

02:09:22 #29090 [Debug] > │ <text x="528" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29091 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29092 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29093 [Debug] > │ 0.6                                                                          │

02:09:22 #29094 [Debug] > │ </text>                                                                      │

02:09:22 #29095 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29096 [Debug] > │ points="528,425 528,430 "/>                                                  │

02:09:22 #29097 [Debug] > │ <text x="566" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29100 [Debug] > │ 0.7                                                                          │

02:09:22 #29101 [Debug] > │ </text>                                                                      │

02:09:22 #29102 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29103 [Debug] > │ points="566,425 566,430 "/>                                                  │

02:09:22 #29104 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29105 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:22 #29106 [Debug] > │ <text x="595" y="379" dy="0.5ex" text-anchor="start"                         │

02:09:22 #29107 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29108 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29109 [Debug] > │ -0.0                                                                         │

02:09:22 #29110 [Debug] > │ </text>                                                                      │

02:09:22 #29111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29112 [Debug] > │ points="585,379 590,379 "/>                                                  │

02:09:22 #29113 [Debug] > │ <text x="595" y="314" dy="0.5ex" text-anchor="start"                         │

02:09:22 #29114 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29115 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29116 [Debug] > │ -0.0                                                                         │

02:09:22 #29117 [Debug] > │ </text>                                                                      │

02:09:22 #29118 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29119 [Debug] > │ points="585,314 590,314 "/>                                                  │

02:09:22 #29120 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #29121 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29122 [Debug] > │ 0.0                                                                          │

02:09:22 #29123 [Debug] > │ </text>                                                                      │

02:09:22 #29124 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29125 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:22 #29126 [Debug] > │ <text x="617" y="185" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #29127 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29128 [Debug] > │ 0.0                                                                          │

02:09:22 #29129 [Debug] > │ </text>                                                                      │

02:09:22 #29130 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29131 [Debug] > │ points="585,185 590,185 "/>                                                  │

02:09:22 #29132 [Debug] > │ <text x="617" y="121" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #29133 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29134 [Debug] > │ 0.0                                                                          │

02:09:22 #29135 [Debug] > │ </text>                                                                      │

02:09:22 #29136 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29137 [Debug] > │ points="585,121 590,121 "/>                                                  │

02:09:22 #29138 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #29139 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 108,359 115,376 123,390 131,401  │

02:09:22 #29140 [Debug] > │ 138,409 146,413 153,415 161,412 169,407 176,398 184,385 192,371 199,353      │

02:09:22 #29141 [Debug] > │ 207,333 215,312 222,289 230,266 237,242 245,218 253,195 260,173 268,153      │

02:09:22 #29142 [Debug] > │ 276,135 283,119 291,106 298,96 306,89 314,85 321,85 329,89 337,96 344,106    │

02:09:22 #29143 [Debug] > │ 352,119 360,135 367,153 375,173 382,195 390,218 398,242 405,265 413,288      │

02:09:22 #29144 [Debug] > │ 420,308 426,320 429,318 430,299 428,267 427,237 428,218 428,198 428,173      │

02:09:22 #29145 [Debug] > │ 428,153 428,137 428,120 428,108 428,98 428,91 428,87 543,114 550,157 569,267 │

02:09:22 #29146 [Debug] > │ 566,250 "/>                                                                  │

02:09:22 #29147 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:22 #29148 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:22 #29149 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:22 #29150 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29151 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29152 [Debug] > │ 23                                                                           │

02:09:22 #29153 [Debug] > │ </text>                                                                      │

02:09:22 #29154 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #29155 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:22 #29156 [Debug] > │ </svg>                                                                       │

02:09:22 #29157 [Debug] > │ </td></tr><tr><td>24</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:22 #29158 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:22 #29159 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:22 #29160 [Debug] > │ stroke="none"/>                                                              │

02:09:22 #29161 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:22 #29162 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29163 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29164 [Debug] > │ wave                                                                         │

02:09:22 #29165 [Debug] > │ </text>                                                                      │

02:09:22 #29166 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:22 #29167 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29168 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #29169 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29170 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:22 #29171 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29172 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:22 #29173 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29174 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:22 #29175 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29176 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:22 #29177 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:22 #29178 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:22 #29179 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:22 #29180 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:22 #29181 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:22 #29182 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:22 #29183 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:22 #29184 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:22 #29185 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:22 #29186 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:22 #29187 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:22 #29188 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:22 #29189 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:22 #29190 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:22 #29191 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:22 #29192 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:22 #29193 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:22 #29194 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:22 #29195 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:22 #29196 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:22 #29197 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:22 #29198 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:22 #29199 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:22 #29200 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:22 #29201 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:22 #29202 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:22 #29203 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:22 #29204 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:22 #29205 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:22 #29206 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:22 #29207 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:22 #29208 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:22 #29209 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:22 #29210 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:22 #29211 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:22 #29212 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:22 #29213 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:22 #29214 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:22 #29215 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:22 #29216 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:22 #29217 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:22 #29218 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:22 #29219 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:22 #29220 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:22 #29221 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:22 #29222 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:22 #29223 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:22 #29224 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:22 #29225 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:22 #29226 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:22 #29227 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:22 #29228 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:22 #29229 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:22 #29230 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:22 #29231 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:22 #29232 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:22 #29233 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:22 #29234 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:22 #29235 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:22 #29236 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:22 #29237 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:22 #29238 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:22 #29239 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:22 #29240 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:22 #29241 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:22 #29242 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:22 #29243 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:22 #29244 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:22 #29245 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:22 #29246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:22 #29247 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:22 #29248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:22 #29249 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:22 #29250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:22 #29251 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:22 #29252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:22 #29253 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:22 #29254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:22 #29255 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:22 #29256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:22 #29257 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:22 #29258 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:22 #29259 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:22 #29260 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:22 #29261 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:22 #29262 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:22 #29263 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:22 #29264 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:22 #29265 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:22 #29266 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:22 #29267 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:22 #29268 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:22 #29269 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:22 #29270 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:22 #29271 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:22 #29272 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:22 #29273 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:22 #29274 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:22 #29275 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:22 #29276 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:22 #29277 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:22 #29278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:22 #29279 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:22 #29280 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:22 #29281 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:22 #29282 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:22 #29283 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:22 #29284 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:22 #29285 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:22 #29286 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:22 #29287 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:22 #29288 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:22 #29289 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:22 #29290 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:22 #29291 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:22 #29292 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:22 #29293 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:22 #29294 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:22 #29295 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:22 #29296 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:22 #29297 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:22 #29298 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:22 #29299 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:22 #29300 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:22 #29301 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:22 #29302 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:22 #29303 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:22 #29304 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="407"         │

02:09:22 #29305 [Debug] > │ x2="584" y2="407"/>                                                          │

02:09:22 #29306 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="396"         │

02:09:22 #29307 [Debug] > │ x2="584" y2="396"/>                                                          │

02:09:22 #29308 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="385"         │

02:09:22 #29309 [Debug] > │ x2="584" y2="385"/>                                                          │

02:09:22 #29310 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="373"         │

02:09:22 #29311 [Debug] > │ x2="584" y2="373"/>                                                          │

02:09:22 #29312 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="362"         │

02:09:22 #29313 [Debug] > │ x2="584" y2="362"/>                                                          │

02:09:22 #29314 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:22 #29315 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:22 #29316 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:22 #29317 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:22 #29318 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:09:22 #29319 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:22 #29320 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="317"         │

02:09:22 #29321 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:22 #29322 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:09:22 #29323 [Debug] > │ x2="584" y2="306"/>                                                          │

02:09:22 #29324 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="295"         │

02:09:22 #29325 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:22 #29326 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:22 #29327 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:22 #29328 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="272"         │

02:09:22 #29329 [Debug] > │ x2="584" y2="272"/>                                                          │

02:09:22 #29330 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="261"         │

02:09:22 #29331 [Debug] > │ x2="584" y2="261"/>                                                          │

02:09:22 #29332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:22 #29333 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:22 #29334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="239"         │

02:09:22 #29335 [Debug] > │ x2="584" y2="239"/>                                                          │

02:09:22 #29336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="227"         │

02:09:22 #29337 [Debug] > │ x2="584" y2="227"/>                                                          │

02:09:22 #29338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:22 #29339 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:22 #29340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="205"         │

02:09:22 #29341 [Debug] > │ x2="584" y2="205"/>                                                          │

02:09:22 #29342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="194"         │

02:09:22 #29343 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:22 #29344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:22 #29345 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:22 #29346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:09:22 #29347 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:22 #29348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="160"         │

02:09:22 #29349 [Debug] > │ x2="584" y2="160"/>                                                          │

02:09:22 #29350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:09:22 #29351 [Debug] > │ x2="584" y2="149"/>                                                          │

02:09:22 #29352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:09:22 #29353 [Debug] > │ x2="584" y2="137"/>                                                          │

02:09:22 #29354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="126"         │

02:09:22 #29355 [Debug] > │ x2="584" y2="126"/>                                                          │

02:09:22 #29356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="115"         │

02:09:22 #29357 [Debug] > │ x2="584" y2="115"/>                                                          │

02:09:22 #29358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:09:22 #29359 [Debug] > │ x2="584" y2="104"/>                                                          │

02:09:22 #29360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:22 #29361 [Debug] > │ y2="92"/>                                                                    │

02:09:22 #29362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="81" x2="584" │

02:09:22 #29363 [Debug] > │ y2="81"/>                                                                    │

02:09:22 #29364 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:22 #29365 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29366 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29367 [Debug] > │ position (m)                                                                 │

02:09:22 #29368 [Debug] > │ </text>                                                                      │

02:09:22 #29369 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:22 #29370 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29371 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:22 #29372 [Debug] > │ displacement (m)                                                             │

02:09:22 #29373 [Debug] > │ </text>                                                                      │

02:09:22 #29374 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:22 #29375 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29376 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29377 [Debug] > │ position (m)                                                                 │

02:09:22 #29378 [Debug] > │ </text>                                                                      │

02:09:22 #29379 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29380 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29381 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:22 #29382 [Debug] > │ displacement (m)                                                             │

02:09:22 #29383 [Debug] > │ </text>                                                                      │

02:09:22 #29384 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #29385 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29386 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:22 #29387 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:22 #29388 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:22 #29389 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:22 #29390 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:22 #29391 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:22 #29392 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:22 #29393 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:22 #29394 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:22 #29395 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:22 #29396 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:22 #29397 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:22 #29398 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:22 #29399 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:22 #29400 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:22 #29401 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:22 #29402 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:22 #29403 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:22 #29404 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:22 #29405 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:22 #29406 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:22 #29407 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:22 #29408 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:22 #29409 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:22 #29410 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:22 #29411 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:22 #29412 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="418"         │

02:09:22 #29413 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:22 #29414 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="362"         │

02:09:22 #29415 [Debug] > │ x2="584" y2="362"/>                                                          │

02:09:22 #29416 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="306"         │

02:09:22 #29417 [Debug] > │ x2="584" y2="306"/>                                                          │

02:09:22 #29418 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:22 #29419 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:22 #29420 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="194"         │

02:09:22 #29421 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:22 #29422 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="137"         │

02:09:22 #29423 [Debug] > │ x2="584" y2="137"/>                                                          │

02:09:22 #29424 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="81" x2="584" │

02:09:22 #29425 [Debug] > │ y2="81"/>                                                                    │

02:09:22 #29426 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29427 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:22 #29428 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:22 #29429 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29430 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29431 [Debug] > │ 0.0                                                                          │

02:09:22 #29432 [Debug] > │ </text>                                                                      │

02:09:22 #29433 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29434 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:22 #29435 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29436 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29437 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29438 [Debug] > │ 0.1                                                                          │

02:09:22 #29439 [Debug] > │ </text>                                                                      │

02:09:22 #29440 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29441 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:22 #29442 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29443 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29444 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29445 [Debug] > │ 0.1                                                                          │

02:09:22 #29446 [Debug] > │ </text>                                                                      │

02:09:22 #29447 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29448 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:22 #29449 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29450 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29451 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29452 [Debug] > │ 0.2                                                                          │

02:09:22 #29453 [Debug] > │ </text>                                                                      │

02:09:22 #29454 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29455 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:22 #29456 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29457 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29458 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29459 [Debug] > │ 0.2                                                                          │

02:09:22 #29460 [Debug] > │ </text>                                                                      │

02:09:22 #29461 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29462 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:22 #29463 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29464 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29465 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29466 [Debug] > │ 0.2                                                                          │

02:09:22 #29467 [Debug] > │ </text>                                                                      │

02:09:22 #29468 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29469 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:22 #29470 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29471 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29472 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29473 [Debug] > │ 0.3                                                                          │

02:09:22 #29474 [Debug] > │ </text>                                                                      │

02:09:22 #29475 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29476 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:22 #29477 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29478 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29479 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29480 [Debug] > │ 0.3                                                                          │

02:09:22 #29481 [Debug] > │ </text>                                                                      │

02:09:22 #29482 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29483 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:22 #29484 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29485 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29486 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29487 [Debug] > │ 0.4                                                                          │

02:09:22 #29488 [Debug] > │ </text>                                                                      │

02:09:22 #29489 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29490 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:22 #29491 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29492 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29493 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29494 [Debug] > │ 0.4                                                                          │

02:09:22 #29495 [Debug] > │ </text>                                                                      │

02:09:22 #29496 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29497 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:22 #29498 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29499 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29500 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29501 [Debug] > │ 0.5                                                                          │

02:09:22 #29502 [Debug] > │ </text>                                                                      │

02:09:22 #29503 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29504 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:22 #29505 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29506 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29507 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29508 [Debug] > │ 0.5                                                                          │

02:09:22 #29509 [Debug] > │ </text>                                                                      │

02:09:22 #29510 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29511 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:22 #29512 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29513 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29514 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29515 [Debug] > │ 0.6                                                                          │

02:09:22 #29516 [Debug] > │ </text>                                                                      │

02:09:22 #29517 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29518 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:22 #29519 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #29520 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29521 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29522 [Debug] > │ 0.7                                                                          │

02:09:22 #29523 [Debug] > │ </text>                                                                      │

02:09:22 #29524 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29525 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:22 #29526 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29527 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:22 #29528 [Debug] > │ <text x="45" y="418" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29529 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29530 [Debug] > │ -0.0                                                                         │

02:09:22 #29531 [Debug] > │ </text>                                                                      │

02:09:22 #29532 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29533 [Debug] > │ points="49,418 54,418 "/>                                                    │

02:09:22 #29534 [Debug] > │ <text x="45" y="362" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29535 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29536 [Debug] > │ -0.0                                                                         │

02:09:22 #29537 [Debug] > │ </text>                                                                      │

02:09:22 #29538 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29539 [Debug] > │ points="49,362 54,362 "/>                                                    │

02:09:22 #29540 [Debug] > │ <text x="45" y="306" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29541 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29542 [Debug] > │ -0.0                                                                         │

02:09:22 #29543 [Debug] > │ </text>                                                                      │

02:09:22 #29544 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29545 [Debug] > │ points="49,306 54,306 "/>                                                    │

02:09:22 #29546 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29547 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29548 [Debug] > │ 0.0                                                                          │

02:09:22 #29549 [Debug] > │ </text>                                                                      │

02:09:22 #29550 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29551 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:22 #29552 [Debug] > │ <text x="45" y="194" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29553 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29554 [Debug] > │ 0.0                                                                          │

02:09:22 #29555 [Debug] > │ </text>                                                                      │

02:09:22 #29556 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29557 [Debug] > │ points="49,194 54,194 "/>                                                    │

02:09:22 #29558 [Debug] > │ <text x="45" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29559 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29560 [Debug] > │ 0.0                                                                          │

02:09:22 #29561 [Debug] > │ </text>                                                                      │

02:09:22 #29562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29563 [Debug] > │ points="49,137 54,137 "/>                                                    │

02:09:22 #29564 [Debug] > │ <text x="45" y="81" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:22 #29565 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29566 [Debug] > │ 0.0                                                                          │

02:09:22 #29567 [Debug] > │ </text>                                                                      │

02:09:22 #29568 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29569 [Debug] > │ points="49,81 54,81 "/>                                                      │

02:09:22 #29570 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29571 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:22 #29572 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:22 #29573 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29574 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29575 [Debug] > │ 0.0                                                                          │

02:09:22 #29576 [Debug] > │ </text>                                                                      │

02:09:22 #29577 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29578 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:22 #29579 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29580 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29581 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29582 [Debug] > │ 0.1                                                                          │

02:09:22 #29583 [Debug] > │ </text>                                                                      │

02:09:22 #29584 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29585 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:22 #29586 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29587 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29588 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29589 [Debug] > │ 0.1                                                                          │

02:09:22 #29590 [Debug] > │ </text>                                                                      │

02:09:22 #29591 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29592 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:22 #29593 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29594 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29595 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29596 [Debug] > │ 0.2                                                                          │

02:09:22 #29597 [Debug] > │ </text>                                                                      │

02:09:22 #29598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29599 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:22 #29600 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29601 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29602 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29603 [Debug] > │ 0.2                                                                          │

02:09:22 #29604 [Debug] > │ </text>                                                                      │

02:09:22 #29605 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29606 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:22 #29607 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29609 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29610 [Debug] > │ 0.2                                                                          │

02:09:22 #29611 [Debug] > │ </text>                                                                      │

02:09:22 #29612 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29613 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:22 #29614 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29615 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29616 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29617 [Debug] > │ 0.3                                                                          │

02:09:22 #29618 [Debug] > │ </text>                                                                      │

02:09:22 #29619 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29620 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:22 #29621 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29622 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29623 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29624 [Debug] > │ 0.3                                                                          │

02:09:22 #29625 [Debug] > │ </text>                                                                      │

02:09:22 #29626 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29627 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:22 #29628 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29629 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29630 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29631 [Debug] > │ 0.4                                                                          │

02:09:22 #29632 [Debug] > │ </text>                                                                      │

02:09:22 #29633 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29634 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:22 #29635 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29636 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29637 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29638 [Debug] > │ 0.4                                                                          │

02:09:22 #29639 [Debug] > │ </text>                                                                      │

02:09:22 #29640 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29641 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:22 #29642 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29643 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29644 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29645 [Debug] > │ 0.5                                                                          │

02:09:22 #29646 [Debug] > │ </text>                                                                      │

02:09:22 #29647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29648 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:22 #29649 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29650 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29651 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29652 [Debug] > │ 0.5                                                                          │

02:09:22 #29653 [Debug] > │ </text>                                                                      │

02:09:22 #29654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29655 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:22 #29656 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29657 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29658 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29659 [Debug] > │ 0.6                                                                          │

02:09:22 #29660 [Debug] > │ </text>                                                                      │

02:09:22 #29661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29662 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:22 #29663 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29664 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29665 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29666 [Debug] > │ 0.7                                                                          │

02:09:22 #29667 [Debug] > │ </text>                                                                      │

02:09:22 #29668 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29669 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:22 #29670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29671 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:22 #29672 [Debug] > │ <text x="595" y="418" dy="0.5ex" text-anchor="start"                         │

02:09:22 #29673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29674 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29675 [Debug] > │ -0.0                                                                         │

02:09:22 #29676 [Debug] > │ </text>                                                                      │

02:09:22 #29677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29678 [Debug] > │ points="585,418 590,418 "/>                                                  │

02:09:22 #29679 [Debug] > │ <text x="595" y="362" dy="0.5ex" text-anchor="start"                         │

02:09:22 #29680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29682 [Debug] > │ -0.0                                                                         │

02:09:22 #29683 [Debug] > │ </text>                                                                      │

02:09:22 #29684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29685 [Debug] > │ points="585,362 590,362 "/>                                                  │

02:09:22 #29686 [Debug] > │ <text x="595" y="306" dy="0.5ex" text-anchor="start"                         │

02:09:22 #29687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29688 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29689 [Debug] > │ -0.0                                                                         │

02:09:22 #29690 [Debug] > │ </text>                                                                      │

02:09:22 #29691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29692 [Debug] > │ points="585,306 590,306 "/>                                                  │

02:09:22 #29693 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #29694 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29695 [Debug] > │ 0.0                                                                          │

02:09:22 #29696 [Debug] > │ </text>                                                                      │

02:09:22 #29697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29698 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:22 #29699 [Debug] > │ <text x="617" y="194" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #29700 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29701 [Debug] > │ 0.0                                                                          │

02:09:22 #29702 [Debug] > │ </text>                                                                      │

02:09:22 #29703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29704 [Debug] > │ points="585,194 590,194 "/>                                                  │

02:09:22 #29705 [Debug] > │ <text x="617" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:22 #29706 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29707 [Debug] > │ 0.0                                                                          │

02:09:22 #29708 [Debug] > │ </text>                                                                      │

02:09:22 #29709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29710 [Debug] > │ points="585,137 590,137 "/>                                                  │

02:09:22 #29711 [Debug] > │ <text x="617" y="81" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #29712 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #29713 [Debug] > │ 0.0                                                                          │

02:09:22 #29714 [Debug] > │ </text>                                                                      │

02:09:22 #29715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #29716 [Debug] > │ points="585,81 590,81 "/>                                                    │

02:09:22 #29717 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #29718 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 107,359 115,376 123,390 130,401  │

02:09:22 #29719 [Debug] > │ 138,409 145,413 153,415 160,412 168,407 176,398 183,385 191,371 198,353      │

02:09:22 #29720 [Debug] > │ 206,333 213,312 221,289 229,266 236,242 244,218 251,195 259,173 267,153      │

02:09:22 #29721 [Debug] > │ 274,135 282,119 289,106 297,96 304,89 312,85 320,85 327,89 335,96 342,106    │

02:09:22 #29722 [Debug] > │ 350,119 358,135 365,153 373,173 380,195 388,218 395,242 403,265 410,287      │

02:09:22 #29723 [Debug] > │ 416,304 421,311 423,304 422,283 420,258 420,241 421,229 421,211 420,193      │

02:09:22 #29724 [Debug] > │ 421,181 421,167 421,155 421,146 421,138 421,134 421,131 539,131 547,169      │

02:09:22 #29725 [Debug] > │ 569,284 562,250 "/>                                                          │

02:09:22 #29726 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:22 #29727 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:22 #29728 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:22 #29729 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29730 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29731 [Debug] > │ 24                                                                           │

02:09:22 #29732 [Debug] > │ </text>                                                                      │

02:09:22 #29733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:22 #29734 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:22 #29735 [Debug] > │ </svg>                                                                       │

02:09:22 #29736 [Debug] > │ </td></tr><tr><td>25</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:22 #29737 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:22 #29738 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:22 #29739 [Debug] > │ stroke="none"/>                                                              │

02:09:22 #29740 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:22 #29741 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29742 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29743 [Debug] > │ wave                                                                         │

02:09:22 #29744 [Debug] > │ </text>                                                                      │

02:09:22 #29745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:22 #29746 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #29748 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:22 #29750 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:22 #29752 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:22 #29754 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:22 #29756 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:22 #29757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:22 #29758 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:22 #29759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:22 #29760 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:22 #29761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:22 #29762 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:22 #29763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:22 #29764 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:22 #29765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:22 #29766 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:22 #29767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:22 #29768 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:22 #29769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:22 #29770 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:22 #29771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:22 #29772 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:22 #29773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:22 #29774 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:22 #29775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:22 #29776 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:22 #29777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:22 #29778 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:22 #29779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="190" y1="424"        │

02:09:22 #29780 [Debug] > │ x2="190" y2="75"/>                                                           │

02:09:22 #29781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:22 #29782 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:22 #29783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:22 #29784 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:22 #29785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:22 #29786 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:22 #29787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:22 #29788 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:22 #29789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:22 #29790 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:22 #29791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:22 #29792 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:22 #29793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="243" y1="424"        │

02:09:22 #29794 [Debug] > │ x2="243" y2="75"/>                                                           │

02:09:22 #29795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:22 #29796 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:22 #29797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:22 #29798 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:22 #29799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:22 #29800 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:22 #29801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:22 #29802 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:22 #29803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:22 #29804 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:22 #29805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:22 #29806 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:22 #29807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:22 #29808 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:22 #29809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:22 #29810 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:22 #29811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="311" y1="424"        │

02:09:22 #29812 [Debug] > │ x2="311" y2="75"/>                                                           │

02:09:22 #29813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:22 #29814 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:22 #29815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:22 #29816 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:22 #29817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:22 #29818 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:22 #29819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:22 #29820 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:22 #29821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:22 #29822 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:22 #29823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:22 #29824 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:22 #29825 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="364" y1="424"        │

02:09:22 #29826 [Debug] > │ x2="364" y2="75"/>                                                           │

02:09:22 #29827 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:22 #29828 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:22 #29829 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:22 #29830 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:22 #29831 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:22 #29832 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:22 #29833 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:22 #29834 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:22 #29835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:22 #29836 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:22 #29837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:22 #29838 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:22 #29839 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="417" y1="424"        │

02:09:22 #29840 [Debug] > │ x2="417" y2="75"/>                                                           │

02:09:22 #29841 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:22 #29842 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:22 #29843 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="432" y1="424"        │

02:09:22 #29844 [Debug] > │ x2="432" y2="75"/>                                                           │

02:09:22 #29845 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:22 #29846 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:22 #29847 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:22 #29848 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:22 #29849 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:22 #29850 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:22 #29851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:22 #29852 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:22 #29853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="470" y1="424"        │

02:09:22 #29854 [Debug] > │ x2="470" y2="75"/>                                                           │

02:09:22 #29855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:22 #29856 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:22 #29857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:09:22 #29858 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:22 #29859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:22 #29860 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:22 #29861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:22 #29862 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:22 #29863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:22 #29864 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:22 #29865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:22 #29866 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:22 #29867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:22 #29868 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:22 #29869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:22 #29870 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:22 #29871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:22 #29872 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:22 #29873 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:22 #29874 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:22 #29875 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:22 #29876 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:22 #29877 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:22 #29878 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:22 #29879 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:22 #29880 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:22 #29881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="420"         │

02:09:22 #29882 [Debug] > │ x2="584" y2="420"/>                                                          │

02:09:22 #29883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="410"         │

02:09:22 #29884 [Debug] > │ x2="584" y2="410"/>                                                          │

02:09:22 #29885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="400"         │

02:09:22 #29886 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:22 #29887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="390"         │

02:09:22 #29888 [Debug] > │ x2="584" y2="390"/>                                                          │

02:09:22 #29889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:09:22 #29890 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:22 #29891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="370"         │

02:09:22 #29892 [Debug] > │ x2="584" y2="370"/>                                                          │

02:09:22 #29893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="360"         │

02:09:22 #29894 [Debug] > │ x2="584" y2="360"/>                                                          │

02:09:22 #29895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:22 #29896 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:22 #29897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="340"         │

02:09:22 #29898 [Debug] > │ x2="584" y2="340"/>                                                          │

02:09:22 #29899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:09:22 #29900 [Debug] > │ x2="584" y2="330"/>                                                          │

02:09:22 #29901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="320"         │

02:09:22 #29902 [Debug] > │ x2="584" y2="320"/>                                                          │

02:09:22 #29903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="310"         │

02:09:22 #29904 [Debug] > │ x2="584" y2="310"/>                                                          │

02:09:22 #29905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:22 #29906 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:22 #29907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="290"         │

02:09:22 #29908 [Debug] > │ x2="584" y2="290"/>                                                          │

02:09:22 #29909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="280"         │

02:09:22 #29910 [Debug] > │ x2="584" y2="280"/>                                                          │

02:09:22 #29911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:22 #29912 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:22 #29913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:09:22 #29914 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:22 #29915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:22 #29916 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:22 #29917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="240"         │

02:09:22 #29918 [Debug] > │ x2="584" y2="240"/>                                                          │

02:09:22 #29919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="230"         │

02:09:22 #29920 [Debug] > │ x2="584" y2="230"/>                                                          │

02:09:22 #29921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="220"         │

02:09:22 #29922 [Debug] > │ x2="584" y2="220"/>                                                          │

02:09:22 #29923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="210"         │

02:09:22 #29924 [Debug] > │ x2="584" y2="210"/>                                                          │

02:09:22 #29925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:22 #29926 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:22 #29927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="190"         │

02:09:22 #29928 [Debug] > │ x2="584" y2="190"/>                                                          │

02:09:22 #29929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:22 #29930 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:22 #29931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="170"         │

02:09:22 #29932 [Debug] > │ x2="584" y2="170"/>                                                          │

02:09:22 #29933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="160"         │

02:09:22 #29934 [Debug] > │ x2="584" y2="160"/>                                                          │

02:09:22 #29935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:22 #29936 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:22 #29937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:09:22 #29938 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:22 #29939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:09:22 #29940 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:22 #29941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="120"         │

02:09:22 #29942 [Debug] > │ x2="584" y2="120"/>                                                          │

02:09:22 #29943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:09:22 #29944 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:22 #29945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="100"         │

02:09:22 #29946 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:22 #29947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="90" x2="584" │

02:09:22 #29948 [Debug] > │ y2="90"/>                                                                    │

02:09:22 #29949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:22 #29950 [Debug] > │ y2="79"/>                                                                    │

02:09:22 #29951 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:22 #29952 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29953 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29954 [Debug] > │ position (m)                                                                 │

02:09:22 #29955 [Debug] > │ </text>                                                                      │

02:09:22 #29956 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:22 #29957 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29958 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:22 #29959 [Debug] > │ displacement (m)                                                             │

02:09:22 #29960 [Debug] > │ </text>                                                                      │

02:09:22 #29961 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:22 #29962 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29963 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #29964 [Debug] > │ position (m)                                                                 │

02:09:22 #29965 [Debug] > │ </text>                                                                      │

02:09:22 #29966 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:22 #29967 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #29968 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:22 #29969 [Debug] > │ displacement (m)                                                             │

02:09:22 #29970 [Debug] > │ </text>                                                                      │

02:09:22 #29971 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:22 #29972 [Debug] > │ y2="75"/>                                                                    │

02:09:22 #29973 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:22 #29974 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:22 #29975 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:22 #29976 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:22 #29977 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:22 #29978 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:22 #29979 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:22 #29980 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:22 #29981 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:22 #29982 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:22 #29983 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:22 #29984 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:22 #29985 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:22 #29986 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:22 #29987 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:22 #29988 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:22 #29989 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:22 #29990 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:22 #29991 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:22 #29992 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:22 #29993 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:09:22 #29994 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:22 #29995 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:22 #29996 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:22 #29997 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:22 #29998 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:22 #29999 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="400"         │

02:09:22 #30000 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:22 #30001 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="350"         │

02:09:22 #30002 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:22 #30003 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="300"         │

02:09:22 #30004 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:22 #30005 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:22 #30006 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:22 #30007 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="200"         │

02:09:22 #30008 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:22 #30009 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="150"         │

02:09:22 #30010 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:22 #30011 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="100"         │

02:09:22 #30012 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:22 #30013 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30014 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:22 #30015 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:22 #30016 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30017 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30018 [Debug] > │ 0.0                                                                          │

02:09:22 #30019 [Debug] > │ </text>                                                                      │

02:09:22 #30020 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30021 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:22 #30022 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30023 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30024 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30025 [Debug] > │ 0.1                                                                          │

02:09:22 #30026 [Debug] > │ </text>                                                                      │

02:09:22 #30027 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30028 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:22 #30029 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30030 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30031 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30032 [Debug] > │ 0.1                                                                          │

02:09:22 #30033 [Debug] > │ </text>                                                                      │

02:09:22 #30034 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30035 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:22 #30036 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30037 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30038 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30039 [Debug] > │ 0.2                                                                          │

02:09:22 #30040 [Debug] > │ </text>                                                                      │

02:09:22 #30041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30042 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:22 #30043 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30044 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30045 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30046 [Debug] > │ 0.2                                                                          │

02:09:22 #30047 [Debug] > │ </text>                                                                      │

02:09:22 #30048 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30049 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:22 #30050 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30051 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30052 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30053 [Debug] > │ 0.2                                                                          │

02:09:22 #30054 [Debug] > │ </text>                                                                      │

02:09:22 #30055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30056 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:22 #30057 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30058 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30059 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30060 [Debug] > │ 0.3                                                                          │

02:09:22 #30061 [Debug] > │ </text>                                                                      │

02:09:22 #30062 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30063 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:22 #30064 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30065 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30066 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30067 [Debug] > │ 0.3                                                                          │

02:09:22 #30068 [Debug] > │ </text>                                                                      │

02:09:22 #30069 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30070 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:22 #30071 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30072 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30073 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30074 [Debug] > │ 0.4                                                                          │

02:09:22 #30075 [Debug] > │ </text>                                                                      │

02:09:22 #30076 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30077 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:22 #30078 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30079 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30080 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30081 [Debug] > │ 0.4                                                                          │

02:09:22 #30082 [Debug] > │ </text>                                                                      │

02:09:22 #30083 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30084 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:22 #30085 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30086 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30087 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30088 [Debug] > │ 0.5                                                                          │

02:09:22 #30089 [Debug] > │ </text>                                                                      │

02:09:22 #30090 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30091 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:22 #30092 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30093 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30094 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30095 [Debug] > │ 0.5                                                                          │

02:09:22 #30096 [Debug] > │ </text>                                                                      │

02:09:22 #30097 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30098 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:09:22 #30099 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30100 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30101 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30102 [Debug] > │ 0.6                                                                          │

02:09:22 #30103 [Debug] > │ </text>                                                                      │

02:09:22 #30104 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30105 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:22 #30106 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:22 #30107 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30108 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30109 [Debug] > │ 0.7                                                                          │

02:09:22 #30110 [Debug] > │ </text>                                                                      │

02:09:22 #30111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30112 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:22 #30113 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30114 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:22 #30115 [Debug] > │ <text x="45" y="400" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30116 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30117 [Debug] > │ -0.0                                                                         │

02:09:22 #30118 [Debug] > │ </text>                                                                      │

02:09:22 #30119 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30120 [Debug] > │ points="49,400 54,400 "/>                                                    │

02:09:22 #30121 [Debug] > │ <text x="45" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30122 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30123 [Debug] > │ -0.0                                                                         │

02:09:22 #30124 [Debug] > │ </text>                                                                      │

02:09:22 #30125 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30126 [Debug] > │ points="49,350 54,350 "/>                                                    │

02:09:22 #30127 [Debug] > │ <text x="45" y="300" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30128 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30129 [Debug] > │ -0.0                                                                         │

02:09:22 #30130 [Debug] > │ </text>                                                                      │

02:09:22 #30131 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30132 [Debug] > │ points="49,300 54,300 "/>                                                    │

02:09:22 #30133 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30134 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30135 [Debug] > │ 0.0                                                                          │

02:09:22 #30136 [Debug] > │ </text>                                                                      │

02:09:22 #30137 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30138 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:22 #30139 [Debug] > │ <text x="45" y="200" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30140 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30141 [Debug] > │ 0.0                                                                          │

02:09:22 #30142 [Debug] > │ </text>                                                                      │

02:09:22 #30143 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30144 [Debug] > │ points="49,200 54,200 "/>                                                    │

02:09:22 #30145 [Debug] > │ <text x="45" y="150" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30146 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30147 [Debug] > │ 0.0                                                                          │

02:09:22 #30148 [Debug] > │ </text>                                                                      │

02:09:22 #30149 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30150 [Debug] > │ points="49,150 54,150 "/>                                                    │

02:09:22 #30151 [Debug] > │ <text x="45" y="100" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:22 #30152 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:22 #30153 [Debug] > │ 0.0                                                                          │

02:09:22 #30154 [Debug] > │ </text>                                                                      │

02:09:22 #30155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30156 [Debug] > │ points="49,100 54,100 "/>                                                    │

02:09:22 #30157 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30158 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:22 #30159 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:22 #30160 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30161 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30162 [Debug] > │ 0.0                                                                          │

02:09:22 #30163 [Debug] > │ </text>                                                                      │

02:09:22 #30164 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30165 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:22 #30166 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30167 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30168 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30169 [Debug] > │ 0.1                                                                          │

02:09:22 #30170 [Debug] > │ </text>                                                                      │

02:09:22 #30171 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30172 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:22 #30173 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30174 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30175 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30176 [Debug] > │ 0.1                                                                          │

02:09:22 #30177 [Debug] > │ </text>                                                                      │

02:09:22 #30178 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30179 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:22 #30180 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30181 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30182 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30183 [Debug] > │ 0.2                                                                          │

02:09:22 #30184 [Debug] > │ </text>                                                                      │

02:09:22 #30185 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30186 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:22 #30187 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30188 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30189 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30190 [Debug] > │ 0.2                                                                          │

02:09:22 #30191 [Debug] > │ </text>                                                                      │

02:09:22 #30192 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30193 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:22 #30194 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30195 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30196 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30197 [Debug] > │ 0.2                                                                          │

02:09:22 #30198 [Debug] > │ </text>                                                                      │

02:09:22 #30199 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30200 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:22 #30201 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30202 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30203 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30204 [Debug] > │ 0.3                                                                          │

02:09:22 #30205 [Debug] > │ </text>                                                                      │

02:09:22 #30206 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30207 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:22 #30208 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30209 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30210 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30211 [Debug] > │ 0.3                                                                          │

02:09:22 #30212 [Debug] > │ </text>                                                                      │

02:09:22 #30213 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30214 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:22 #30215 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30216 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30217 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30218 [Debug] > │ 0.4                                                                          │

02:09:22 #30219 [Debug] > │ </text>                                                                      │

02:09:22 #30220 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30221 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:22 #30222 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30223 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30224 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30225 [Debug] > │ 0.4                                                                          │

02:09:22 #30226 [Debug] > │ </text>                                                                      │

02:09:22 #30227 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30228 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:22 #30229 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30230 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30231 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:22 #30232 [Debug] > │ 0.5                                                                          │

02:09:22 #30233 [Debug] > │ </text>                                                                      │

02:09:22 #30234 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:22 #30235 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:22 #30236 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:22 #30237 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:22 #30238 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30239 [Debug] > │ 0.5                                                                          │

02:09:23 #30240 [Debug] > │ </text>                                                                      │

02:09:23 #30241 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30242 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:09:23 #30243 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30244 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30245 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30246 [Debug] > │ 0.6                                                                          │

02:09:23 #30247 [Debug] > │ </text>                                                                      │

02:09:23 #30248 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30249 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:23 #30250 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30251 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30252 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30253 [Debug] > │ 0.7                                                                          │

02:09:23 #30254 [Debug] > │ </text>                                                                      │

02:09:23 #30255 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30256 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:23 #30257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30258 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:23 #30259 [Debug] > │ <text x="595" y="400" dy="0.5ex" text-anchor="start"                         │

02:09:23 #30260 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30261 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30262 [Debug] > │ -0.0                                                                         │

02:09:23 #30263 [Debug] > │ </text>                                                                      │

02:09:23 #30264 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30265 [Debug] > │ points="585,400 590,400 "/>                                                  │

02:09:23 #30266 [Debug] > │ <text x="595" y="350" dy="0.5ex" text-anchor="start"                         │

02:09:23 #30267 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30268 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30269 [Debug] > │ -0.0                                                                         │

02:09:23 #30270 [Debug] > │ </text>                                                                      │

02:09:23 #30271 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30272 [Debug] > │ points="585,350 590,350 "/>                                                  │

02:09:23 #30273 [Debug] > │ <text x="595" y="300" dy="0.5ex" text-anchor="start"                         │

02:09:23 #30274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30275 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30276 [Debug] > │ -0.0                                                                         │

02:09:23 #30277 [Debug] > │ </text>                                                                      │

02:09:23 #30278 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30279 [Debug] > │ points="585,300 590,300 "/>                                                  │

02:09:23 #30280 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30281 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30282 [Debug] > │ 0.0                                                                          │

02:09:23 #30283 [Debug] > │ </text>                                                                      │

02:09:23 #30284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30285 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:23 #30286 [Debug] > │ <text x="617" y="200" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30287 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30288 [Debug] > │ 0.0                                                                          │

02:09:23 #30289 [Debug] > │ </text>                                                                      │

02:09:23 #30290 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30291 [Debug] > │ points="585,200 590,200 "/>                                                  │

02:09:23 #30292 [Debug] > │ <text x="617" y="150" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30293 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30294 [Debug] > │ 0.0                                                                          │

02:09:23 #30295 [Debug] > │ </text>                                                                      │

02:09:23 #30296 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30297 [Debug] > │ points="585,150 590,150 "/>                                                  │

02:09:23 #30298 [Debug] > │ <text x="617" y="100" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30299 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30300 [Debug] > │ 0.0                                                                          │

02:09:23 #30301 [Debug] > │ </text>                                                                      │

02:09:23 #30302 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30303 [Debug] > │ points="585,100 590,100 "/>                                                  │

02:09:23 #30304 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #30305 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 107,359 115,376 122,390 130,401  │

02:09:23 #30306 [Debug] > │ 138,409 145,413 153,415 160,412 168,407 175,398 183,385 190,371 198,353      │

02:09:23 #30307 [Debug] > │ 206,333 213,312 221,289 228,266 236,242 243,218 251,195 259,173 266,153      │

02:09:23 #30308 [Debug] > │ 274,135 281,119 289,106 296,96 304,89 311,85 319,85 327,89 334,96 342,106    │

02:09:23 #30309 [Debug] > │ 349,119 357,135 364,153 372,173 380,195 387,218 395,241 402,264 409,284      │

02:09:23 #30310 [Debug] > │ 414,298 417,300 417,289 415,270 414,254 415,246 416,236 415,221 415,210      │

02:09:23 #30311 [Debug] > │ 415,201 415,190 415,183 415,176 415,170 415,167 415,165 538,144 546,178      │

02:09:23 #30312 [Debug] > │ 569,286 561,250 "/>                                                          │

02:09:23 #30313 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:23 #30314 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:23 #30315 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:23 #30316 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30317 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30318 [Debug] > │ 25                                                                           │

02:09:23 #30319 [Debug] > │ </text>                                                                      │

02:09:23 #30320 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #30321 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:23 #30322 [Debug] > │ </svg>                                                                       │

02:09:23 #30323 [Debug] > │ </td></tr><tr><td>26</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:23 #30324 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:23 #30325 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:23 #30326 [Debug] > │ stroke="none"/>                                                              │

02:09:23 #30327 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:23 #30328 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30329 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30330 [Debug] > │ wave                                                                         │

02:09:23 #30331 [Debug] > │ </text>                                                                      │

02:09:23 #30332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:23 #30333 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #30335 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:23 #30337 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:23 #30339 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:23 #30341 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:23 #30343 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:23 #30344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:23 #30345 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:23 #30346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:23 #30347 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:23 #30348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:23 #30349 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:23 #30350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:23 #30351 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:23 #30352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:23 #30353 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:23 #30354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:23 #30355 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:23 #30356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:23 #30357 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:23 #30358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:23 #30359 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:23 #30360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:23 #30361 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:23 #30362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:23 #30363 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:23 #30364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:23 #30365 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:23 #30366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:23 #30367 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:23 #30368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:23 #30369 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:23 #30370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:23 #30371 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:23 #30372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:23 #30373 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:23 #30374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:23 #30375 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:23 #30376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:23 #30377 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:23 #30378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:23 #30379 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:23 #30380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:23 #30381 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:23 #30382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:23 #30383 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:23 #30384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:23 #30385 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:23 #30386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:23 #30387 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:23 #30388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:23 #30389 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:23 #30390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:23 #30391 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:23 #30392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:09:23 #30393 [Debug] > │ x2="290" y2="75"/>                                                           │

02:09:23 #30394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:23 #30395 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:23 #30396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:23 #30397 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:23 #30398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:23 #30399 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:23 #30400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:23 #30401 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:23 #30402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="328" y1="424"        │

02:09:23 #30403 [Debug] > │ x2="328" y2="75"/>                                                           │

02:09:23 #30404 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:23 #30405 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:23 #30406 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="343" y1="424"        │

02:09:23 #30407 [Debug] > │ x2="343" y2="75"/>                                                           │

02:09:23 #30408 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:23 #30409 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:23 #30410 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:23 #30411 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:23 #30412 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:23 #30413 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:23 #30414 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:23 #30415 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:23 #30416 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:09:23 #30417 [Debug] > │ x2="381" y2="75"/>                                                           │

02:09:23 #30418 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:23 #30419 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:23 #30420 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:23 #30421 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:23 #30422 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:23 #30423 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:23 #30424 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:23 #30425 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:23 #30426 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:23 #30427 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:23 #30428 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:23 #30429 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:23 #30430 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="434" y1="424"        │

02:09:23 #30431 [Debug] > │ x2="434" y2="75"/>                                                           │

02:09:23 #30432 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:23 #30433 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:23 #30434 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:23 #30435 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:23 #30436 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="457" y1="424"        │

02:09:23 #30437 [Debug] > │ x2="457" y2="75"/>                                                           │

02:09:23 #30438 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:23 #30439 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:23 #30440 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="472" y1="424"        │

02:09:23 #30441 [Debug] > │ x2="472" y2="75"/>                                                           │

02:09:23 #30442 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:23 #30443 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:23 #30444 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:23 #30445 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:23 #30446 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="495" y1="424"        │

02:09:23 #30447 [Debug] > │ x2="495" y2="75"/>                                                           │

02:09:23 #30448 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:23 #30449 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:23 #30450 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:09:23 #30451 [Debug] > │ x2="510" y2="75"/>                                                           │

02:09:23 #30452 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:23 #30453 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:23 #30454 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="525" y1="424"        │

02:09:23 #30455 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:23 #30456 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:23 #30457 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:23 #30458 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:23 #30459 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:23 #30460 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="548" y1="424"        │

02:09:23 #30461 [Debug] > │ x2="548" y2="75"/>                                                           │

02:09:23 #30462 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:23 #30463 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:23 #30464 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="563" y1="424"        │

02:09:23 #30465 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:23 #30466 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:23 #30467 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:23 #30468 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="423"         │

02:09:23 #30469 [Debug] > │ x2="584" y2="423"/>                                                          │

02:09:23 #30470 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="414"         │

02:09:23 #30471 [Debug] > │ x2="584" y2="414"/>                                                          │

02:09:23 #30472 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:23 #30473 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:23 #30474 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:09:23 #30475 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:23 #30476 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:23 #30477 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:23 #30478 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="377"         │

02:09:23 #30479 [Debug] > │ x2="584" y2="377"/>                                                          │

02:09:23 #30480 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:23 #30481 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:23 #30482 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="359"         │

02:09:23 #30483 [Debug] > │ x2="584" y2="359"/>                                                          │

02:09:23 #30484 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:23 #30485 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:23 #30486 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="341"         │

02:09:23 #30487 [Debug] > │ x2="584" y2="341"/>                                                          │

02:09:23 #30488 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:09:23 #30489 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:23 #30490 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="323"         │

02:09:23 #30491 [Debug] > │ x2="584" y2="323"/>                                                          │

02:09:23 #30492 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="314"         │

02:09:23 #30493 [Debug] > │ x2="584" y2="314"/>                                                          │

02:09:23 #30494 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="304"         │

02:09:23 #30495 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:23 #30496 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="295"         │

02:09:23 #30497 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:23 #30498 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:23 #30499 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:23 #30500 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="277"         │

02:09:23 #30501 [Debug] > │ x2="584" y2="277"/>                                                          │

02:09:23 #30502 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:23 #30503 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:23 #30504 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="259"         │

02:09:23 #30505 [Debug] > │ x2="584" y2="259"/>                                                          │

02:09:23 #30506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:23 #30507 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #30508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:09:23 #30509 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:23 #30510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:23 #30511 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:23 #30512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:09:23 #30513 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:23 #30514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:23 #30515 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:23 #30516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="204"         │

02:09:23 #30517 [Debug] > │ x2="584" y2="204"/>                                                          │

02:09:23 #30518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:09:23 #30519 [Debug] > │ x2="584" y2="195"/>                                                          │

02:09:23 #30520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="186"         │

02:09:23 #30521 [Debug] > │ x2="584" y2="186"/>                                                          │

02:09:23 #30522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:09:23 #30523 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:23 #30524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:09:23 #30525 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:23 #30526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:09:23 #30527 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:23 #30528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:23 #30529 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:23 #30530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="141"         │

02:09:23 #30531 [Debug] > │ x2="584" y2="141"/>                                                          │

02:09:23 #30532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:23 #30533 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:23 #30534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="122"         │

02:09:23 #30535 [Debug] > │ x2="584" y2="122"/>                                                          │

02:09:23 #30536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="113"         │

02:09:23 #30537 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:23 #30538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:09:23 #30539 [Debug] > │ x2="584" y2="104"/>                                                          │

02:09:23 #30540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="95" x2="584" │

02:09:23 #30541 [Debug] > │ y2="95"/>                                                                    │

02:09:23 #30542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="86" x2="584" │

02:09:23 #30543 [Debug] > │ y2="86"/>                                                                    │

02:09:23 #30544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="77" x2="584" │

02:09:23 #30545 [Debug] > │ y2="77"/>                                                                    │

02:09:23 #30546 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:23 #30547 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30548 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30549 [Debug] > │ position (m)                                                                 │

02:09:23 #30550 [Debug] > │ </text>                                                                      │

02:09:23 #30551 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:23 #30552 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30553 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:23 #30554 [Debug] > │ displacement (m)                                                             │

02:09:23 #30555 [Debug] > │ </text>                                                                      │

02:09:23 #30556 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:23 #30557 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30558 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30559 [Debug] > │ position (m)                                                                 │

02:09:23 #30560 [Debug] > │ </text>                                                                      │

02:09:23 #30561 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30562 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30563 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:23 #30564 [Debug] > │ displacement (m)                                                             │

02:09:23 #30565 [Debug] > │ </text>                                                                      │

02:09:23 #30566 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #30567 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30568 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:23 #30569 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:23 #30570 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:23 #30571 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:23 #30572 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:23 #30573 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:23 #30574 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:23 #30575 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:23 #30576 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:23 #30577 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:23 #30578 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:23 #30579 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:23 #30580 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:23 #30581 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:23 #30582 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:23 #30583 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:23 #30584 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:23 #30585 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:23 #30586 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:23 #30587 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:23 #30588 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:23 #30589 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:23 #30590 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="525" y1="424"        │

02:09:23 #30591 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:23 #30592 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="563" y1="424"        │

02:09:23 #30593 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:23 #30594 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="386"         │

02:09:23 #30595 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:23 #30596 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="341"         │

02:09:23 #30597 [Debug] > │ x2="584" y2="341"/>                                                          │

02:09:23 #30598 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="295"         │

02:09:23 #30599 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:23 #30600 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:23 #30601 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #30602 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="204"         │

02:09:23 #30603 [Debug] > │ x2="584" y2="204"/>                                                          │

02:09:23 #30604 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="159"         │

02:09:23 #30605 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:23 #30606 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="113"         │

02:09:23 #30607 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:23 #30608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30609 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:23 #30610 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:23 #30611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30612 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30613 [Debug] > │ 0.0                                                                          │

02:09:23 #30614 [Debug] > │ </text>                                                                      │

02:09:23 #30615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30616 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:23 #30617 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30619 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30620 [Debug] > │ 0.1                                                                          │

02:09:23 #30621 [Debug] > │ </text>                                                                      │

02:09:23 #30622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30623 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:23 #30624 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30626 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30627 [Debug] > │ 0.1                                                                          │

02:09:23 #30628 [Debug] > │ </text>                                                                      │

02:09:23 #30629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30630 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:23 #30631 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30633 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30634 [Debug] > │ 0.2                                                                          │

02:09:23 #30635 [Debug] > │ </text>                                                                      │

02:09:23 #30636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30637 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:23 #30638 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30641 [Debug] > │ 0.2                                                                          │

02:09:23 #30642 [Debug] > │ </text>                                                                      │

02:09:23 #30643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30644 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:23 #30645 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30647 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30648 [Debug] > │ 0.2                                                                          │

02:09:23 #30649 [Debug] > │ </text>                                                                      │

02:09:23 #30650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30651 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:23 #30652 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30654 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30655 [Debug] > │ 0.3                                                                          │

02:09:23 #30656 [Debug] > │ </text>                                                                      │

02:09:23 #30657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30658 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:23 #30659 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30661 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30662 [Debug] > │ 0.3                                                                          │

02:09:23 #30663 [Debug] > │ </text>                                                                      │

02:09:23 #30664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30665 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:23 #30666 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30668 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30669 [Debug] > │ 0.4                                                                          │

02:09:23 #30670 [Debug] > │ </text>                                                                      │

02:09:23 #30671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30672 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:23 #30673 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30675 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30676 [Debug] > │ 0.4                                                                          │

02:09:23 #30677 [Debug] > │ </text>                                                                      │

02:09:23 #30678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30679 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:23 #30680 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30682 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30683 [Debug] > │ 0.5                                                                          │

02:09:23 #30684 [Debug] > │ </text>                                                                      │

02:09:23 #30685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30686 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:23 #30687 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30689 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30690 [Debug] > │ 0.5                                                                          │

02:09:23 #30691 [Debug] > │ </text>                                                                      │

02:09:23 #30692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30693 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:23 #30694 [Debug] > │ <text x="525" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30696 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30697 [Debug] > │ 0.6                                                                          │

02:09:23 #30698 [Debug] > │ </text>                                                                      │

02:09:23 #30699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30700 [Debug] > │ points="525,69 525,74 "/>                                                    │

02:09:23 #30701 [Debug] > │ <text x="563" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #30702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30703 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30704 [Debug] > │ 0.7                                                                          │

02:09:23 #30705 [Debug] > │ </text>                                                                      │

02:09:23 #30706 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30707 [Debug] > │ points="563,69 563,74 "/>                                                    │

02:09:23 #30708 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30709 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:23 #30710 [Debug] > │ <text x="45" y="386" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30711 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30712 [Debug] > │ -0.0                                                                         │

02:09:23 #30713 [Debug] > │ </text>                                                                      │

02:09:23 #30714 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30715 [Debug] > │ points="49,386 54,386 "/>                                                    │

02:09:23 #30716 [Debug] > │ <text x="45" y="341" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30717 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30718 [Debug] > │ -0.0                                                                         │

02:09:23 #30719 [Debug] > │ </text>                                                                      │

02:09:23 #30720 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30721 [Debug] > │ points="49,341 54,341 "/>                                                    │

02:09:23 #30722 [Debug] > │ <text x="45" y="295" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30723 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30724 [Debug] > │ -0.0                                                                         │

02:09:23 #30725 [Debug] > │ </text>                                                                      │

02:09:23 #30726 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30727 [Debug] > │ points="49,295 54,295 "/>                                                    │

02:09:23 #30728 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30729 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30730 [Debug] > │ 0.0                                                                          │

02:09:23 #30731 [Debug] > │ </text>                                                                      │

02:09:23 #30732 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30733 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:23 #30734 [Debug] > │ <text x="45" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30735 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30736 [Debug] > │ 0.0                                                                          │

02:09:23 #30737 [Debug] > │ </text>                                                                      │

02:09:23 #30738 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30739 [Debug] > │ points="49,204 54,204 "/>                                                    │

02:09:23 #30740 [Debug] > │ <text x="45" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30741 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30742 [Debug] > │ 0.0                                                                          │

02:09:23 #30743 [Debug] > │ </text>                                                                      │

02:09:23 #30744 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30745 [Debug] > │ points="49,159 54,159 "/>                                                    │

02:09:23 #30746 [Debug] > │ <text x="45" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #30747 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30748 [Debug] > │ 0.0                                                                          │

02:09:23 #30749 [Debug] > │ </text>                                                                      │

02:09:23 #30750 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30751 [Debug] > │ points="49,113 54,113 "/>                                                    │

02:09:23 #30752 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30753 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:23 #30754 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:23 #30755 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30756 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30757 [Debug] > │ 0.0                                                                          │

02:09:23 #30758 [Debug] > │ </text>                                                                      │

02:09:23 #30759 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30760 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:23 #30761 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30762 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30763 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30764 [Debug] > │ 0.1                                                                          │

02:09:23 #30765 [Debug] > │ </text>                                                                      │

02:09:23 #30766 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30767 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:23 #30768 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30769 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30770 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30771 [Debug] > │ 0.1                                                                          │

02:09:23 #30772 [Debug] > │ </text>                                                                      │

02:09:23 #30773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30774 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:23 #30775 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30776 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30777 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30778 [Debug] > │ 0.2                                                                          │

02:09:23 #30779 [Debug] > │ </text>                                                                      │

02:09:23 #30780 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30781 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:23 #30782 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30783 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30784 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30785 [Debug] > │ 0.2                                                                          │

02:09:23 #30786 [Debug] > │ </text>                                                                      │

02:09:23 #30787 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30788 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:23 #30789 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30790 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30791 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30792 [Debug] > │ 0.2                                                                          │

02:09:23 #30793 [Debug] > │ </text>                                                                      │

02:09:23 #30794 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30795 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:23 #30796 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30797 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30798 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30799 [Debug] > │ 0.3                                                                          │

02:09:23 #30800 [Debug] > │ </text>                                                                      │

02:09:23 #30801 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30802 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:23 #30803 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30804 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30805 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30806 [Debug] > │ 0.3                                                                          │

02:09:23 #30807 [Debug] > │ </text>                                                                      │

02:09:23 #30808 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30809 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:23 #30810 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30811 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30812 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30813 [Debug] > │ 0.4                                                                          │

02:09:23 #30814 [Debug] > │ </text>                                                                      │

02:09:23 #30815 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30816 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:23 #30817 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30818 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30819 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30820 [Debug] > │ 0.4                                                                          │

02:09:23 #30821 [Debug] > │ </text>                                                                      │

02:09:23 #30822 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30823 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:23 #30824 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30825 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30826 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30827 [Debug] > │ 0.5                                                                          │

02:09:23 #30828 [Debug] > │ </text>                                                                      │

02:09:23 #30829 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30830 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:23 #30831 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30832 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30833 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30834 [Debug] > │ 0.5                                                                          │

02:09:23 #30835 [Debug] > │ </text>                                                                      │

02:09:23 #30836 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30837 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:23 #30838 [Debug] > │ <text x="525" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30839 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30840 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30841 [Debug] > │ 0.6                                                                          │

02:09:23 #30842 [Debug] > │ </text>                                                                      │

02:09:23 #30843 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30844 [Debug] > │ points="525,425 525,430 "/>                                                  │

02:09:23 #30845 [Debug] > │ <text x="563" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #30846 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30847 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30848 [Debug] > │ 0.7                                                                          │

02:09:23 #30849 [Debug] > │ </text>                                                                      │

02:09:23 #30850 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30851 [Debug] > │ points="563,425 563,430 "/>                                                  │

02:09:23 #30852 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30853 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:23 #30854 [Debug] > │ <text x="595" y="386" dy="0.5ex" text-anchor="start"                         │

02:09:23 #30855 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30856 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30857 [Debug] > │ -0.0                                                                         │

02:09:23 #30858 [Debug] > │ </text>                                                                      │

02:09:23 #30859 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30860 [Debug] > │ points="585,386 590,386 "/>                                                  │

02:09:23 #30861 [Debug] > │ <text x="595" y="341" dy="0.5ex" text-anchor="start"                         │

02:09:23 #30862 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30863 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30864 [Debug] > │ -0.0                                                                         │

02:09:23 #30865 [Debug] > │ </text>                                                                      │

02:09:23 #30866 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30867 [Debug] > │ points="585,341 590,341 "/>                                                  │

02:09:23 #30868 [Debug] > │ <text x="595" y="295" dy="0.5ex" text-anchor="start"                         │

02:09:23 #30869 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30870 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30871 [Debug] > │ -0.0                                                                         │

02:09:23 #30872 [Debug] > │ </text>                                                                      │

02:09:23 #30873 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30874 [Debug] > │ points="585,295 590,295 "/>                                                  │

02:09:23 #30875 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30876 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30877 [Debug] > │ 0.0                                                                          │

02:09:23 #30878 [Debug] > │ </text>                                                                      │

02:09:23 #30879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30880 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:23 #30881 [Debug] > │ <text x="617" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30882 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30883 [Debug] > │ 0.0                                                                          │

02:09:23 #30884 [Debug] > │ </text>                                                                      │

02:09:23 #30885 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30886 [Debug] > │ points="585,204 590,204 "/>                                                  │

02:09:23 #30887 [Debug] > │ <text x="617" y="159" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30888 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30889 [Debug] > │ 0.0                                                                          │

02:09:23 #30890 [Debug] > │ </text>                                                                      │

02:09:23 #30891 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30892 [Debug] > │ points="585,159 590,159 "/>                                                  │

02:09:23 #30893 [Debug] > │ <text x="617" y="113" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #30894 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #30895 [Debug] > │ 0.0                                                                          │

02:09:23 #30896 [Debug] > │ </text>                                                                      │

02:09:23 #30897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #30898 [Debug] > │ points="585,113 590,113 "/>                                                  │

02:09:23 #30899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #30900 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 107,359 115,376 123,390 130,401  │

02:09:23 #30901 [Debug] > │ 138,409 145,413 153,415 161,412 168,407 176,398 183,385 191,371 199,353      │

02:09:23 #30902 [Debug] > │ 206,333 214,312 221,289 229,266 236,242 244,218 252,195 259,173 267,153      │

02:09:23 #30903 [Debug] > │ 274,135 282,119 290,106 297,96 305,89 312,85 320,85 328,89 335,96 343,106    │

02:09:23 #30904 [Debug] > │ 350,119 358,135 365,153 373,173 381,195 388,218 396,241 403,263 409,280      │

02:09:23 #30905 [Debug] > │ 413,289 414,286 412,274 411,260 411,253 412,249 412,239 411,230 412,224      │

02:09:23 #30906 [Debug] > │ 412,217 411,209 412,205 411,200 412,197 412,194 412,193 540,154 548,185      │

02:09:23 #30907 [Debug] > │ 569,275 563,250 "/>                                                          │

02:09:23 #30908 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:23 #30909 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:23 #30910 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:23 #30911 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30912 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30913 [Debug] > │ 26                                                                           │

02:09:23 #30914 [Debug] > │ </text>                                                                      │

02:09:23 #30915 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #30916 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:23 #30917 [Debug] > │ </svg>                                                                       │

02:09:23 #30918 [Debug] > │ </td></tr><tr><td>27</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:23 #30919 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:23 #30920 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:23 #30921 [Debug] > │ stroke="none"/>                                                              │

02:09:23 #30922 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:23 #30923 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #30924 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #30925 [Debug] > │ wave                                                                         │

02:09:23 #30926 [Debug] > │ </text>                                                                      │

02:09:23 #30927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:23 #30928 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #30930 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:23 #30932 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:23 #30934 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:23 #30936 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #30937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:23 #30938 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:23 #30939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:23 #30940 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #30941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:23 #30942 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:23 #30943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:23 #30944 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:23 #30945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:23 #30946 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:23 #30947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:23 #30948 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:23 #30949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:23 #30950 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #30951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:23 #30952 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:23 #30953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:23 #30954 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:23 #30955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:23 #30956 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:23 #30957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:23 #30958 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:23 #30959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:23 #30960 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:23 #30961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:23 #30962 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:23 #30963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:23 #30964 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:23 #30965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:23 #30966 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:23 #30967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:23 #30968 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:23 #30969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:23 #30970 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:23 #30971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:23 #30972 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:23 #30973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:23 #30974 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:23 #30975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:23 #30976 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:23 #30977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:23 #30978 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:23 #30979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:23 #30980 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #30981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:23 #30982 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:23 #30983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:23 #30984 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:23 #30985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:23 #30986 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:23 #30987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:23 #30988 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:23 #30989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:23 #30990 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:23 #30991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:23 #30992 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:23 #30993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:23 #30994 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:23 #30995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:23 #30996 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:23 #30997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="330" y1="424"        │

02:09:23 #30998 [Debug] > │ x2="330" y2="75"/>                                                           │

02:09:23 #30999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:23 #31000 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:23 #31001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:23 #31002 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:23 #31003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="353" y1="424"        │

02:09:23 #31004 [Debug] > │ x2="353" y2="75"/>                                                           │

02:09:23 #31005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:23 #31006 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:23 #31007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:23 #31008 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:23 #31009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="376" y1="424"        │

02:09:23 #31010 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:23 #31011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:23 #31012 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:23 #31013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="391" y1="424"        │

02:09:23 #31014 [Debug] > │ x2="391" y2="75"/>                                                           │

02:09:23 #31015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:23 #31016 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:23 #31017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:23 #31018 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:23 #31019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="414" y1="424"        │

02:09:23 #31020 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:23 #31021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:23 #31022 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:23 #31023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:23 #31024 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:23 #31025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="437" y1="424"        │

02:09:23 #31026 [Debug] > │ x2="437" y2="75"/>                                                           │

02:09:23 #31027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="444" y1="424"        │

02:09:23 #31028 [Debug] > │ x2="444" y2="75"/>                                                           │

02:09:23 #31029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:09:23 #31030 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:23 #31031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:09:23 #31032 [Debug] > │ x2="460" y2="75"/>                                                           │

02:09:23 #31033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="467" y1="424"        │

02:09:23 #31034 [Debug] > │ x2="467" y2="75"/>                                                           │

02:09:23 #31035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="475" y1="424"        │

02:09:23 #31036 [Debug] > │ x2="475" y2="75"/>                                                           │

02:09:23 #31037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="483" y1="424"        │

02:09:23 #31038 [Debug] > │ x2="483" y2="75"/>                                                           │

02:09:23 #31039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:23 #31040 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:23 #31041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="498" y1="424"        │

02:09:23 #31042 [Debug] > │ x2="498" y2="75"/>                                                           │

02:09:23 #31043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:09:23 #31044 [Debug] > │ x2="506" y2="75"/>                                                           │

02:09:23 #31045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="513" y1="424"        │

02:09:23 #31046 [Debug] > │ x2="513" y2="75"/>                                                           │

02:09:23 #31047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="521" y1="424"        │

02:09:23 #31048 [Debug] > │ x2="521" y2="75"/>                                                           │

02:09:23 #31049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:23 #31050 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:23 #31051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:09:23 #31052 [Debug] > │ x2="536" y2="75"/>                                                           │

02:09:23 #31053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:09:23 #31054 [Debug] > │ x2="544" y2="75"/>                                                           │

02:09:23 #31055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="551" y1="424"        │

02:09:23 #31056 [Debug] > │ x2="551" y2="75"/>                                                           │

02:09:23 #31057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:23 #31058 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:23 #31059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="567" y1="424"        │

02:09:23 #31060 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:23 #31061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="574" y1="424"        │

02:09:23 #31062 [Debug] > │ x2="574" y2="75"/>                                                           │

02:09:23 #31063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:23 #31064 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:23 #31065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="397"         │

02:09:23 #31066 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:23 #31067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="376"         │

02:09:23 #31068 [Debug] > │ x2="584" y2="376"/>                                                          │

02:09:23 #31069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="355"         │

02:09:23 #31070 [Debug] > │ x2="584" y2="355"/>                                                          │

02:09:23 #31071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:23 #31072 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:23 #31073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="313"         │

02:09:23 #31074 [Debug] > │ x2="584" y2="313"/>                                                          │

02:09:23 #31075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="292"         │

02:09:23 #31076 [Debug] > │ x2="584" y2="292"/>                                                          │

02:09:23 #31077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="271"         │

02:09:23 #31078 [Debug] > │ x2="584" y2="271"/>                                                          │

02:09:23 #31079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:23 #31080 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #31081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:09:23 #31082 [Debug] > │ x2="584" y2="229"/>                                                          │

02:09:23 #31083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="208"         │

02:09:23 #31084 [Debug] > │ x2="584" y2="208"/>                                                          │

02:09:23 #31085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="187"         │

02:09:23 #31086 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:23 #31087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:23 #31088 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:23 #31089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:09:23 #31090 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:23 #31091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:09:23 #31092 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:23 #31093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="103"         │

02:09:23 #31094 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:23 #31095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:23 #31096 [Debug] > │ y2="82"/>                                                                    │

02:09:23 #31097 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:23 #31098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31100 [Debug] > │ position (m)                                                                 │

02:09:23 #31101 [Debug] > │ </text>                                                                      │

02:09:23 #31102 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:23 #31103 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31104 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:23 #31105 [Debug] > │ displacement (m)                                                             │

02:09:23 #31106 [Debug] > │ </text>                                                                      │

02:09:23 #31107 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:23 #31108 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31109 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31110 [Debug] > │ position (m)                                                                 │

02:09:23 #31111 [Debug] > │ </text>                                                                      │

02:09:23 #31112 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31113 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31114 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:23 #31115 [Debug] > │ displacement (m)                                                             │

02:09:23 #31116 [Debug] > │ </text>                                                                      │

02:09:23 #31117 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #31118 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31119 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:23 #31120 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #31121 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:23 #31122 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #31123 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:23 #31124 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:23 #31125 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:23 #31126 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:23 #31127 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:23 #31128 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #31129 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:23 #31130 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:23 #31131 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:23 #31132 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:23 #31133 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="376" y1="424"        │

02:09:23 #31134 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:23 #31135 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="414" y1="424"        │

02:09:23 #31136 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:23 #31137 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="452" y1="424"        │

02:09:23 #31138 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:23 #31139 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="490" y1="424"        │

02:09:23 #31140 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:23 #31141 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="529" y1="424"        │

02:09:23 #31142 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:23 #31143 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="567" y1="424"        │

02:09:23 #31144 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:23 #31145 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="418"         │

02:09:23 #31146 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:23 #31147 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="376"         │

02:09:23 #31148 [Debug] > │ x2="584" y2="376"/>                                                          │

02:09:23 #31149 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="334"         │

02:09:23 #31150 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:23 #31151 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="292"         │

02:09:23 #31152 [Debug] > │ x2="584" y2="292"/>                                                          │

02:09:23 #31153 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:23 #31154 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #31155 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="208"         │

02:09:23 #31156 [Debug] > │ x2="584" y2="208"/>                                                          │

02:09:23 #31157 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="166"         │

02:09:23 #31158 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:23 #31159 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="124"         │

02:09:23 #31160 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:23 #31161 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:23 #31162 [Debug] > │ y2="82"/>                                                                    │

02:09:23 #31163 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31164 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:23 #31165 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:23 #31166 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31167 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31168 [Debug] > │ 0.0                                                                          │

02:09:23 #31169 [Debug] > │ </text>                                                                      │

02:09:23 #31170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31171 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:23 #31172 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31173 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31174 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31175 [Debug] > │ 0.1                                                                          │

02:09:23 #31176 [Debug] > │ </text>                                                                      │

02:09:23 #31177 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31178 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:23 #31179 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31181 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31182 [Debug] > │ 0.1                                                                          │

02:09:23 #31183 [Debug] > │ </text>                                                                      │

02:09:23 #31184 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31185 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:23 #31186 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31187 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31188 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31189 [Debug] > │ 0.2                                                                          │

02:09:23 #31190 [Debug] > │ </text>                                                                      │

02:09:23 #31191 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31192 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:23 #31193 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31194 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31195 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31196 [Debug] > │ 0.2                                                                          │

02:09:23 #31197 [Debug] > │ </text>                                                                      │

02:09:23 #31198 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31199 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:23 #31200 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31201 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31202 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31203 [Debug] > │ 0.2                                                                          │

02:09:23 #31204 [Debug] > │ </text>                                                                      │

02:09:23 #31205 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31206 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:23 #31207 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31208 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31209 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31210 [Debug] > │ 0.3                                                                          │

02:09:23 #31211 [Debug] > │ </text>                                                                      │

02:09:23 #31212 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31213 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:23 #31214 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31215 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31216 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31217 [Debug] > │ 0.3                                                                          │

02:09:23 #31218 [Debug] > │ </text>                                                                      │

02:09:23 #31219 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31220 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:23 #31221 [Debug] > │ <text x="376" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31222 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31223 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31224 [Debug] > │ 0.4                                                                          │

02:09:23 #31225 [Debug] > │ </text>                                                                      │

02:09:23 #31226 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31227 [Debug] > │ points="376,69 376,74 "/>                                                    │

02:09:23 #31228 [Debug] > │ <text x="414" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31229 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31230 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31231 [Debug] > │ 0.4                                                                          │

02:09:23 #31232 [Debug] > │ </text>                                                                      │

02:09:23 #31233 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31234 [Debug] > │ points="414,69 414,74 "/>                                                    │

02:09:23 #31235 [Debug] > │ <text x="452" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31236 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31237 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31238 [Debug] > │ 0.5                                                                          │

02:09:23 #31239 [Debug] > │ </text>                                                                      │

02:09:23 #31240 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31241 [Debug] > │ points="452,69 452,74 "/>                                                    │

02:09:23 #31242 [Debug] > │ <text x="490" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31243 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31244 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31245 [Debug] > │ 0.5                                                                          │

02:09:23 #31246 [Debug] > │ </text>                                                                      │

02:09:23 #31247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31248 [Debug] > │ points="490,69 490,74 "/>                                                    │

02:09:23 #31249 [Debug] > │ <text x="529" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31250 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31251 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31252 [Debug] > │ 0.6                                                                          │

02:09:23 #31253 [Debug] > │ </text>                                                                      │

02:09:23 #31254 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31255 [Debug] > │ points="529,69 529,74 "/>                                                    │

02:09:23 #31256 [Debug] > │ <text x="567" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31257 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31258 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31259 [Debug] > │ 0.7                                                                          │

02:09:23 #31260 [Debug] > │ </text>                                                                      │

02:09:23 #31261 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31262 [Debug] > │ points="567,69 567,74 "/>                                                    │

02:09:23 #31263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31264 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:23 #31265 [Debug] > │ <text x="45" y="418" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31266 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31267 [Debug] > │ -0.0                                                                         │

02:09:23 #31268 [Debug] > │ </text>                                                                      │

02:09:23 #31269 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31270 [Debug] > │ points="49,418 54,418 "/>                                                    │

02:09:23 #31271 [Debug] > │ <text x="45" y="376" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31272 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31273 [Debug] > │ -0.0                                                                         │

02:09:23 #31274 [Debug] > │ </text>                                                                      │

02:09:23 #31275 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31276 [Debug] > │ points="49,376 54,376 "/>                                                    │

02:09:23 #31277 [Debug] > │ <text x="45" y="334" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31278 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31279 [Debug] > │ -0.0                                                                         │

02:09:23 #31280 [Debug] > │ </text>                                                                      │

02:09:23 #31281 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31282 [Debug] > │ points="49,334 54,334 "/>                                                    │

02:09:23 #31283 [Debug] > │ <text x="45" y="292" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31284 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31285 [Debug] > │ -0.0                                                                         │

02:09:23 #31286 [Debug] > │ </text>                                                                      │

02:09:23 #31287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31288 [Debug] > │ points="49,292 54,292 "/>                                                    │

02:09:23 #31289 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31290 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31291 [Debug] > │ 0.0                                                                          │

02:09:23 #31292 [Debug] > │ </text>                                                                      │

02:09:23 #31293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31294 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:23 #31295 [Debug] > │ <text x="45" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31296 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31297 [Debug] > │ 0.0                                                                          │

02:09:23 #31298 [Debug] > │ </text>                                                                      │

02:09:23 #31299 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31300 [Debug] > │ points="49,208 54,208 "/>                                                    │

02:09:23 #31301 [Debug] > │ <text x="45" y="166" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31302 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31303 [Debug] > │ 0.0                                                                          │

02:09:23 #31304 [Debug] > │ </text>                                                                      │

02:09:23 #31305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31306 [Debug] > │ points="49,166 54,166 "/>                                                    │

02:09:23 #31307 [Debug] > │ <text x="45" y="124" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31308 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31309 [Debug] > │ 0.0                                                                          │

02:09:23 #31310 [Debug] > │ </text>                                                                      │

02:09:23 #31311 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31312 [Debug] > │ points="49,124 54,124 "/>                                                    │

02:09:23 #31313 [Debug] > │ <text x="45" y="82" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:23 #31314 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31315 [Debug] > │ 0.0                                                                          │

02:09:23 #31316 [Debug] > │ </text>                                                                      │

02:09:23 #31317 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31318 [Debug] > │ points="49,82 54,82 "/>                                                      │

02:09:23 #31319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31320 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:23 #31321 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:23 #31322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31323 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31324 [Debug] > │ 0.0                                                                          │

02:09:23 #31325 [Debug] > │ </text>                                                                      │

02:09:23 #31326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31327 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:23 #31328 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31329 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31330 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31331 [Debug] > │ 0.1                                                                          │

02:09:23 #31332 [Debug] > │ </text>                                                                      │

02:09:23 #31333 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31334 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:23 #31335 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31336 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31337 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31338 [Debug] > │ 0.1                                                                          │

02:09:23 #31339 [Debug] > │ </text>                                                                      │

02:09:23 #31340 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31341 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:23 #31342 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31343 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31344 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31345 [Debug] > │ 0.2                                                                          │

02:09:23 #31346 [Debug] > │ </text>                                                                      │

02:09:23 #31347 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31348 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:23 #31349 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31350 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31351 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31352 [Debug] > │ 0.2                                                                          │

02:09:23 #31353 [Debug] > │ </text>                                                                      │

02:09:23 #31354 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31355 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:23 #31356 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31357 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31358 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31359 [Debug] > │ 0.2                                                                          │

02:09:23 #31360 [Debug] > │ </text>                                                                      │

02:09:23 #31361 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31362 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:23 #31363 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31364 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31365 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31366 [Debug] > │ 0.3                                                                          │

02:09:23 #31367 [Debug] > │ </text>                                                                      │

02:09:23 #31368 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31369 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:23 #31370 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31371 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31372 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31373 [Debug] > │ 0.3                                                                          │

02:09:23 #31374 [Debug] > │ </text>                                                                      │

02:09:23 #31375 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31376 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:23 #31377 [Debug] > │ <text x="376" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31378 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31379 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31380 [Debug] > │ 0.4                                                                          │

02:09:23 #31381 [Debug] > │ </text>                                                                      │

02:09:23 #31382 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31383 [Debug] > │ points="376,425 376,430 "/>                                                  │

02:09:23 #31384 [Debug] > │ <text x="414" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31385 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31386 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31387 [Debug] > │ 0.4                                                                          │

02:09:23 #31388 [Debug] > │ </text>                                                                      │

02:09:23 #31389 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31390 [Debug] > │ points="414,425 414,430 "/>                                                  │

02:09:23 #31391 [Debug] > │ <text x="452" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31392 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31393 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31394 [Debug] > │ 0.5                                                                          │

02:09:23 #31395 [Debug] > │ </text>                                                                      │

02:09:23 #31396 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31397 [Debug] > │ points="452,425 452,430 "/>                                                  │

02:09:23 #31398 [Debug] > │ <text x="490" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31399 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31400 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31401 [Debug] > │ 0.5                                                                          │

02:09:23 #31402 [Debug] > │ </text>                                                                      │

02:09:23 #31403 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31404 [Debug] > │ points="490,425 490,430 "/>                                                  │

02:09:23 #31405 [Debug] > │ <text x="529" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31406 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31407 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31408 [Debug] > │ 0.6                                                                          │

02:09:23 #31409 [Debug] > │ </text>                                                                      │

02:09:23 #31410 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31411 [Debug] > │ points="529,425 529,430 "/>                                                  │

02:09:23 #31412 [Debug] > │ <text x="567" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31413 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31414 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31415 [Debug] > │ 0.7                                                                          │

02:09:23 #31416 [Debug] > │ </text>                                                                      │

02:09:23 #31417 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31418 [Debug] > │ points="567,425 567,430 "/>                                                  │

02:09:23 #31419 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31420 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:23 #31421 [Debug] > │ <text x="595" y="418" dy="0.5ex" text-anchor="start"                         │

02:09:23 #31422 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31423 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31424 [Debug] > │ -0.0                                                                         │

02:09:23 #31425 [Debug] > │ </text>                                                                      │

02:09:23 #31426 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31427 [Debug] > │ points="585,418 590,418 "/>                                                  │

02:09:23 #31428 [Debug] > │ <text x="595" y="376" dy="0.5ex" text-anchor="start"                         │

02:09:23 #31429 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31430 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31431 [Debug] > │ -0.0                                                                         │

02:09:23 #31432 [Debug] > │ </text>                                                                      │

02:09:23 #31433 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31434 [Debug] > │ points="585,376 590,376 "/>                                                  │

02:09:23 #31435 [Debug] > │ <text x="595" y="334" dy="0.5ex" text-anchor="start"                         │

02:09:23 #31436 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31437 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31438 [Debug] > │ -0.0                                                                         │

02:09:23 #31439 [Debug] > │ </text>                                                                      │

02:09:23 #31440 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31441 [Debug] > │ points="585,334 590,334 "/>                                                  │

02:09:23 #31442 [Debug] > │ <text x="595" y="292" dy="0.5ex" text-anchor="start"                         │

02:09:23 #31443 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31444 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31445 [Debug] > │ -0.0                                                                         │

02:09:23 #31446 [Debug] > │ </text>                                                                      │

02:09:23 #31447 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31448 [Debug] > │ points="585,292 590,292 "/>                                                  │

02:09:23 #31449 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #31450 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31451 [Debug] > │ 0.0                                                                          │

02:09:23 #31452 [Debug] > │ </text>                                                                      │

02:09:23 #31453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31454 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:23 #31455 [Debug] > │ <text x="617" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #31456 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31457 [Debug] > │ 0.0                                                                          │

02:09:23 #31458 [Debug] > │ </text>                                                                      │

02:09:23 #31459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31460 [Debug] > │ points="585,208 590,208 "/>                                                  │

02:09:23 #31461 [Debug] > │ <text x="617" y="166" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #31462 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31463 [Debug] > │ 0.0                                                                          │

02:09:23 #31464 [Debug] > │ </text>                                                                      │

02:09:23 #31465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31466 [Debug] > │ points="585,166 590,166 "/>                                                  │

02:09:23 #31467 [Debug] > │ <text x="617" y="124" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #31468 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31469 [Debug] > │ 0.0                                                                          │

02:09:23 #31470 [Debug] > │ </text>                                                                      │

02:09:23 #31471 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31472 [Debug] > │ points="585,124 590,124 "/>                                                  │

02:09:23 #31473 [Debug] > │ <text x="617" y="82" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31474 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31475 [Debug] > │ 0.0                                                                          │

02:09:23 #31476 [Debug] > │ </text>                                                                      │

02:09:23 #31477 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31478 [Debug] > │ points="585,82 590,82 "/>                                                    │

02:09:23 #31479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #31480 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 108,359 115,376 123,390 131,401  │

02:09:23 #31481 [Debug] > │ 138,409 146,413 154,415 161,412 169,407 177,398 184,385 192,371 200,353      │

02:09:23 #31482 [Debug] > │ 207,333 215,312 222,289 230,266 238,242 245,218 253,195 261,173 268,153      │

02:09:23 #31483 [Debug] > │ 276,135 284,119 291,106 299,96 307,89 314,85 322,85 330,89 337,96 345,106    │

02:09:23 #31484 [Debug] > │ 353,119 360,135 368,153 376,173 383,195 391,218 398,240 404,260 409,274      │

02:09:23 #31485 [Debug] > │ 411,278 411,272 409,261 409,255 410,254 410,250 409,242 409,238 410,235      │

02:09:23 #31486 [Debug] > │ 409,229 409,226 409,223 409,220 409,218 409,217 409,216 544,161 551,190      │

02:09:23 #31487 [Debug] > │ 569,257 567,250 "/>                                                          │

02:09:23 #31488 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:23 #31489 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:23 #31490 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:23 #31491 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31492 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31493 [Debug] > │ 27                                                                           │

02:09:23 #31494 [Debug] > │ </text>                                                                      │

02:09:23 #31495 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #31496 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:23 #31497 [Debug] > │ </svg>                                                                       │

02:09:23 #31498 [Debug] > │ </td></tr><tr><td>28</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:23 #31499 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:23 #31500 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:23 #31501 [Debug] > │ stroke="none"/>                                                              │

02:09:23 #31502 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:23 #31503 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31504 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31505 [Debug] > │ wave                                                                         │

02:09:23 #31506 [Debug] > │ </text>                                                                      │

02:09:23 #31507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:23 #31508 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #31510 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:23 #31512 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:23 #31514 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:23 #31516 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:23 #31518 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:23 #31519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:23 #31520 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #31521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:23 #31522 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:23 #31523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:23 #31524 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:23 #31525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:23 #31526 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:23 #31527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:23 #31528 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:23 #31529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:23 #31530 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #31531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:23 #31532 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:23 #31533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:23 #31534 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:23 #31535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:23 #31536 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:23 #31537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:23 #31538 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:23 #31539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:23 #31540 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:23 #31541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:23 #31542 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:23 #31543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:23 #31544 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:23 #31545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:23 #31546 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:23 #31547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:23 #31548 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:23 #31549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:23 #31550 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:23 #31551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:23 #31552 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:23 #31553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:23 #31554 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:23 #31555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:23 #31556 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:23 #31557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:23 #31558 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:23 #31559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:23 #31560 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #31561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:23 #31562 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:23 #31563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:23 #31564 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:23 #31565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:23 #31566 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:23 #31567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:23 #31568 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:23 #31569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:23 #31570 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:23 #31571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:23 #31572 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:23 #31573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:23 #31574 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:23 #31575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:23 #31576 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:23 #31577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:23 #31578 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:23 #31579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:23 #31580 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:23 #31581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:23 #31582 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:23 #31583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:23 #31584 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:23 #31585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:23 #31586 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:23 #31587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:23 #31588 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:23 #31589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:23 #31590 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:23 #31591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:23 #31592 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:23 #31593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:23 #31594 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:23 #31595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:23 #31596 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:23 #31597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:23 #31598 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:23 #31599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:23 #31600 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:23 #31601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:23 #31602 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:23 #31603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:23 #31604 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:23 #31605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:23 #31606 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:23 #31607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:23 #31608 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:23 #31609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:23 #31610 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:23 #31611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:23 #31612 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:23 #31613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:23 #31614 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:23 #31615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:23 #31616 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:23 #31617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:23 #31618 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:23 #31619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:23 #31620 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:23 #31621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:23 #31622 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:23 #31623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:23 #31624 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:23 #31625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:23 #31626 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:23 #31627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:23 #31628 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:23 #31629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:23 #31630 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:23 #31631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:23 #31632 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:23 #31633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:23 #31634 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:23 #31635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:23 #31636 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:23 #31637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:23 #31638 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:23 #31639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:23 #31640 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:23 #31641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="407"         │

02:09:23 #31642 [Debug] > │ x2="584" y2="407"/>                                                          │

02:09:23 #31643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="388"         │

02:09:23 #31644 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:23 #31645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:23 #31646 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:23 #31647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:23 #31648 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:23 #31649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:09:23 #31650 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:23 #31651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:23 #31652 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:23 #31653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:23 #31654 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:23 #31655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:23 #31656 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:23 #31657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:23 #31658 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #31659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="230"         │

02:09:23 #31660 [Debug] > │ x2="584" y2="230"/>                                                          │

02:09:23 #31661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="210"         │

02:09:23 #31662 [Debug] > │ x2="584" y2="210"/>                                                          │

02:09:23 #31663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="191"         │

02:09:23 #31664 [Debug] > │ x2="584" y2="191"/>                                                          │

02:09:23 #31665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:09:23 #31666 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:23 #31667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:23 #31668 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:23 #31669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:09:23 #31670 [Debug] > │ x2="584" y2="132"/>                                                          │

02:09:23 #31671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:23 #31672 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:23 #31673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:23 #31674 [Debug] > │ y2="92"/>                                                                    │

02:09:23 #31675 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:23 #31676 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31677 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31678 [Debug] > │ position (m)                                                                 │

02:09:23 #31679 [Debug] > │ </text>                                                                      │

02:09:23 #31680 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:23 #31681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31682 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:23 #31683 [Debug] > │ displacement (m)                                                             │

02:09:23 #31684 [Debug] > │ </text>                                                                      │

02:09:23 #31685 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:23 #31686 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31687 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31688 [Debug] > │ position (m)                                                                 │

02:09:23 #31689 [Debug] > │ </text>                                                                      │

02:09:23 #31690 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31691 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31692 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:23 #31693 [Debug] > │ displacement (m)                                                             │

02:09:23 #31694 [Debug] > │ </text>                                                                      │

02:09:23 #31695 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #31696 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #31697 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:23 #31698 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #31699 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:23 #31700 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #31701 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:23 #31702 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:23 #31703 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:23 #31704 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:23 #31705 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:23 #31706 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #31707 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:23 #31708 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:23 #31709 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:23 #31710 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:23 #31711 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:23 #31712 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:23 #31713 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:23 #31714 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:23 #31715 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:23 #31716 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:23 #31717 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:23 #31718 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:23 #31719 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:23 #31720 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:23 #31721 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:23 #31722 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:23 #31723 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="407"         │

02:09:23 #31724 [Debug] > │ x2="584" y2="407"/>                                                          │

02:09:23 #31725 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="368"         │

02:09:23 #31726 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:23 #31727 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="329"         │

02:09:23 #31728 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:23 #31729 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:09:23 #31730 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:23 #31731 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:23 #31732 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #31733 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="210"         │

02:09:23 #31734 [Debug] > │ x2="584" y2="210"/>                                                          │

02:09:23 #31735 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="171"         │

02:09:23 #31736 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:23 #31737 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="132"         │

02:09:23 #31738 [Debug] > │ x2="584" y2="132"/>                                                          │

02:09:23 #31739 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:23 #31740 [Debug] > │ y2="92"/>                                                                    │

02:09:23 #31741 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31742 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:23 #31743 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:23 #31744 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31745 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31746 [Debug] > │ 0.0                                                                          │

02:09:23 #31747 [Debug] > │ </text>                                                                      │

02:09:23 #31748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31749 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:23 #31750 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31751 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31752 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31753 [Debug] > │ 0.1                                                                          │

02:09:23 #31754 [Debug] > │ </text>                                                                      │

02:09:23 #31755 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31756 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:23 #31757 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31758 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31759 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31760 [Debug] > │ 0.1                                                                          │

02:09:23 #31761 [Debug] > │ </text>                                                                      │

02:09:23 #31762 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31763 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:23 #31764 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31765 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31766 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31767 [Debug] > │ 0.2                                                                          │

02:09:23 #31768 [Debug] > │ </text>                                                                      │

02:09:23 #31769 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31770 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:23 #31771 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31772 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31773 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31774 [Debug] > │ 0.2                                                                          │

02:09:23 #31775 [Debug] > │ </text>                                                                      │

02:09:23 #31776 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31777 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:23 #31778 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31779 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31780 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31781 [Debug] > │ 0.2                                                                          │

02:09:23 #31782 [Debug] > │ </text>                                                                      │

02:09:23 #31783 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31784 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:23 #31785 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31786 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31787 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31788 [Debug] > │ 0.3                                                                          │

02:09:23 #31789 [Debug] > │ </text>                                                                      │

02:09:23 #31790 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31791 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:23 #31792 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31793 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31794 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31795 [Debug] > │ 0.3                                                                          │

02:09:23 #31796 [Debug] > │ </text>                                                                      │

02:09:23 #31797 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31798 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:23 #31799 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31800 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31801 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31802 [Debug] > │ 0.4                                                                          │

02:09:23 #31803 [Debug] > │ </text>                                                                      │

02:09:23 #31804 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31805 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:23 #31806 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31807 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31808 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31809 [Debug] > │ 0.4                                                                          │

02:09:23 #31810 [Debug] > │ </text>                                                                      │

02:09:23 #31811 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31812 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:23 #31813 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31814 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31815 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31816 [Debug] > │ 0.5                                                                          │

02:09:23 #31817 [Debug] > │ </text>                                                                      │

02:09:23 #31818 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31819 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:23 #31820 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31821 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31822 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31823 [Debug] > │ 0.5                                                                          │

02:09:23 #31824 [Debug] > │ </text>                                                                      │

02:09:23 #31825 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31826 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:23 #31827 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31828 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31829 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31830 [Debug] > │ 0.6                                                                          │

02:09:23 #31831 [Debug] > │ </text>                                                                      │

02:09:23 #31832 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31833 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:23 #31834 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #31835 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31836 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31837 [Debug] > │ 0.7                                                                          │

02:09:23 #31838 [Debug] > │ </text>                                                                      │

02:09:23 #31839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31840 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:23 #31841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31842 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:23 #31843 [Debug] > │ <text x="45" y="407" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31844 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31845 [Debug] > │ -0.0                                                                         │

02:09:23 #31846 [Debug] > │ </text>                                                                      │

02:09:23 #31847 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31848 [Debug] > │ points="49,407 54,407 "/>                                                    │

02:09:23 #31849 [Debug] > │ <text x="45" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31850 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31851 [Debug] > │ -0.0                                                                         │

02:09:23 #31852 [Debug] > │ </text>                                                                      │

02:09:23 #31853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31854 [Debug] > │ points="49,368 54,368 "/>                                                    │

02:09:23 #31855 [Debug] > │ <text x="45" y="329" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31856 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31857 [Debug] > │ -0.0                                                                         │

02:09:23 #31858 [Debug] > │ </text>                                                                      │

02:09:23 #31859 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31860 [Debug] > │ points="49,329 54,329 "/>                                                    │

02:09:23 #31861 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31862 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31863 [Debug] > │ -0.0                                                                         │

02:09:23 #31864 [Debug] > │ </text>                                                                      │

02:09:23 #31865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31866 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:09:23 #31867 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31868 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31869 [Debug] > │ 0.0                                                                          │

02:09:23 #31870 [Debug] > │ </text>                                                                      │

02:09:23 #31871 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31872 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:23 #31873 [Debug] > │ <text x="45" y="210" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31874 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31875 [Debug] > │ 0.0                                                                          │

02:09:23 #31876 [Debug] > │ </text>                                                                      │

02:09:23 #31877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31878 [Debug] > │ points="49,210 54,210 "/>                                                    │

02:09:23 #31879 [Debug] > │ <text x="45" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31880 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31881 [Debug] > │ 0.0                                                                          │

02:09:23 #31882 [Debug] > │ </text>                                                                      │

02:09:23 #31883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31884 [Debug] > │ points="49,171 54,171 "/>                                                    │

02:09:23 #31885 [Debug] > │ <text x="45" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #31886 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31887 [Debug] > │ 0.0                                                                          │

02:09:23 #31888 [Debug] > │ </text>                                                                      │

02:09:23 #31889 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31890 [Debug] > │ points="49,132 54,132 "/>                                                    │

02:09:23 #31891 [Debug] > │ <text x="45" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:23 #31892 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #31893 [Debug] > │ 0.0                                                                          │

02:09:23 #31894 [Debug] > │ </text>                                                                      │

02:09:23 #31895 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31896 [Debug] > │ points="49,92 54,92 "/>                                                      │

02:09:23 #31897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31898 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:23 #31899 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:23 #31900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31901 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31902 [Debug] > │ 0.0                                                                          │

02:09:23 #31903 [Debug] > │ </text>                                                                      │

02:09:23 #31904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31905 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:23 #31906 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31907 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31908 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31909 [Debug] > │ 0.1                                                                          │

02:09:23 #31910 [Debug] > │ </text>                                                                      │

02:09:23 #31911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31912 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:23 #31913 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31914 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31915 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31916 [Debug] > │ 0.1                                                                          │

02:09:23 #31917 [Debug] > │ </text>                                                                      │

02:09:23 #31918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31919 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:23 #31920 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31921 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31922 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31923 [Debug] > │ 0.2                                                                          │

02:09:23 #31924 [Debug] > │ </text>                                                                      │

02:09:23 #31925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31926 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:23 #31927 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31928 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31929 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31930 [Debug] > │ 0.2                                                                          │

02:09:23 #31931 [Debug] > │ </text>                                                                      │

02:09:23 #31932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31933 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:23 #31934 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31935 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31936 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31937 [Debug] > │ 0.2                                                                          │

02:09:23 #31938 [Debug] > │ </text>                                                                      │

02:09:23 #31939 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31940 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:23 #31941 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31942 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31943 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31944 [Debug] > │ 0.3                                                                          │

02:09:23 #31945 [Debug] > │ </text>                                                                      │

02:09:23 #31946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31947 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:23 #31948 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31949 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31950 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31951 [Debug] > │ 0.3                                                                          │

02:09:23 #31952 [Debug] > │ </text>                                                                      │

02:09:23 #31953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31954 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:23 #31955 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31956 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31957 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31958 [Debug] > │ 0.4                                                                          │

02:09:23 #31959 [Debug] > │ </text>                                                                      │

02:09:23 #31960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31961 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:23 #31962 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31964 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31965 [Debug] > │ 0.4                                                                          │

02:09:23 #31966 [Debug] > │ </text>                                                                      │

02:09:23 #31967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31968 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:23 #31969 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31972 [Debug] > │ 0.5                                                                          │

02:09:23 #31973 [Debug] > │ </text>                                                                      │

02:09:23 #31974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31975 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:23 #31976 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31979 [Debug] > │ 0.5                                                                          │

02:09:23 #31980 [Debug] > │ </text>                                                                      │

02:09:23 #31981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31982 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:23 #31983 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31986 [Debug] > │ 0.6                                                                          │

02:09:23 #31987 [Debug] > │ </text>                                                                      │

02:09:23 #31988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31989 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:23 #31990 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #31991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #31992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #31993 [Debug] > │ 0.7                                                                          │

02:09:23 #31994 [Debug] > │ </text>                                                                      │

02:09:23 #31995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31996 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:23 #31997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #31998 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:23 #31999 [Debug] > │ <text x="595" y="407" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32000 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32001 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32002 [Debug] > │ -0.0                                                                         │

02:09:23 #32003 [Debug] > │ </text>                                                                      │

02:09:23 #32004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32005 [Debug] > │ points="585,407 590,407 "/>                                                  │

02:09:23 #32006 [Debug] > │ <text x="595" y="368" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32007 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32008 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32009 [Debug] > │ -0.0                                                                         │

02:09:23 #32010 [Debug] > │ </text>                                                                      │

02:09:23 #32011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32012 [Debug] > │ points="585,368 590,368 "/>                                                  │

02:09:23 #32013 [Debug] > │ <text x="595" y="329" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32016 [Debug] > │ -0.0                                                                         │

02:09:23 #32017 [Debug] > │ </text>                                                                      │

02:09:23 #32018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32019 [Debug] > │ points="585,329 590,329 "/>                                                  │

02:09:23 #32020 [Debug] > │ <text x="595" y="289" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32023 [Debug] > │ -0.0                                                                         │

02:09:23 #32024 [Debug] > │ </text>                                                                      │

02:09:23 #32025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32026 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:09:23 #32027 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32028 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32029 [Debug] > │ 0.0                                                                          │

02:09:23 #32030 [Debug] > │ </text>                                                                      │

02:09:23 #32031 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32032 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:23 #32033 [Debug] > │ <text x="617" y="210" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32034 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32035 [Debug] > │ 0.0                                                                          │

02:09:23 #32036 [Debug] > │ </text>                                                                      │

02:09:23 #32037 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32038 [Debug] > │ points="585,210 590,210 "/>                                                  │

02:09:23 #32039 [Debug] > │ <text x="617" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32040 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32041 [Debug] > │ 0.0                                                                          │

02:09:23 #32042 [Debug] > │ </text>                                                                      │

02:09:23 #32043 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32044 [Debug] > │ points="585,171 590,171 "/>                                                  │

02:09:23 #32045 [Debug] > │ <text x="617" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32046 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32047 [Debug] > │ 0.0                                                                          │

02:09:23 #32048 [Debug] > │ </text>                                                                      │

02:09:23 #32049 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32050 [Debug] > │ points="585,132 590,132 "/>                                                  │

02:09:23 #32051 [Debug] > │ <text x="617" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32052 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32053 [Debug] > │ 0.0                                                                          │

02:09:23 #32054 [Debug] > │ </text>                                                                      │

02:09:23 #32055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32056 [Debug] > │ points="585,92 590,92 "/>                                                    │

02:09:23 #32057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #32058 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:23 #32059 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:23 #32060 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:23 #32061 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 331,89 338,96 346,106    │

02:09:23 #32062 [Debug] > │ 354,119 361,135 369,153 377,173 384,195 392,217 398,238 404,255 407,265      │

02:09:23 #32063 [Debug] > │ 408,265 406,258 405,252 405,252 406,253 406,249 405,246 406,246 406,244      │

02:09:23 #32064 [Debug] > │ 406,241 406,241 406,239 406,238 406,237 406,236 406,236 545,167 553,194      │

02:09:23 #32065 [Debug] > │ 566,239 569,250 "/>                                                          │

02:09:23 #32066 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:23 #32067 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:23 #32068 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:23 #32069 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32070 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32071 [Debug] > │ 28                                                                           │

02:09:23 #32072 [Debug] > │ </text>                                                                      │

02:09:23 #32073 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #32074 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:23 #32075 [Debug] > │ </svg>                                                                       │

02:09:23 #32076 [Debug] > │ </td></tr><tr><td>29</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:23 #32077 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:23 #32078 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:23 #32079 [Debug] > │ stroke="none"/>                                                              │

02:09:23 #32080 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:23 #32081 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32082 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32083 [Debug] > │ wave                                                                         │

02:09:23 #32084 [Debug] > │ </text>                                                                      │

02:09:23 #32085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:23 #32086 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #32088 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:23 #32090 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:23 #32092 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:23 #32094 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:23 #32096 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:23 #32097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:23 #32098 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #32099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:23 #32100 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:23 #32101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:23 #32102 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:23 #32103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:23 #32104 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:23 #32105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:23 #32106 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:23 #32107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:23 #32108 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #32109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:23 #32110 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:23 #32111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:23 #32112 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:23 #32113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:23 #32114 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:23 #32115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:23 #32116 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:23 #32117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:23 #32118 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:23 #32119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:23 #32120 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:23 #32121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:23 #32122 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:23 #32123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:23 #32124 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:23 #32125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:23 #32126 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:23 #32127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:23 #32128 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:23 #32129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:23 #32130 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:23 #32131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:23 #32132 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:23 #32133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:23 #32134 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:23 #32135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:23 #32136 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:23 #32137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:23 #32138 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #32139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:23 #32140 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:23 #32141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:23 #32142 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:23 #32143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:23 #32144 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:23 #32145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:23 #32146 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:23 #32147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:23 #32148 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:23 #32149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:23 #32150 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:23 #32151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:23 #32152 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:23 #32153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:23 #32154 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:23 #32155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:23 #32156 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:23 #32157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:23 #32158 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:23 #32159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:23 #32160 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:23 #32161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:23 #32162 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:23 #32163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:23 #32164 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:23 #32165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:23 #32166 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:23 #32167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:23 #32168 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:23 #32169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:23 #32170 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:23 #32171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:23 #32172 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:23 #32173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:23 #32174 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:23 #32175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:23 #32176 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:23 #32177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:23 #32178 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:23 #32179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:23 #32180 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:23 #32181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:23 #32182 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:23 #32183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:23 #32184 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:23 #32185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:23 #32186 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:23 #32187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:23 #32188 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:23 #32189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:23 #32190 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:23 #32191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:23 #32192 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:23 #32193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:23 #32194 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:23 #32195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:23 #32196 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:23 #32197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:23 #32198 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:23 #32199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:23 #32200 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:23 #32201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:23 #32202 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:23 #32203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:23 #32204 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:23 #32205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:23 #32206 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:23 #32207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:23 #32208 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:23 #32209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:23 #32210 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:23 #32211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:23 #32212 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:23 #32213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:23 #32214 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:23 #32215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:23 #32216 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:23 #32217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:23 #32218 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:23 #32219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:23 #32220 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:23 #32221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:23 #32222 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:23 #32223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="380"         │

02:09:23 #32224 [Debug] > │ x2="584" y2="380"/>                                                          │

02:09:23 #32225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="362"         │

02:09:23 #32226 [Debug] > │ x2="584" y2="362"/>                                                          │

02:09:23 #32227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="343"         │

02:09:23 #32228 [Debug] > │ x2="584" y2="343"/>                                                          │

02:09:23 #32229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="324"         │

02:09:23 #32230 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:23 #32231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:09:23 #32232 [Debug] > │ x2="584" y2="306"/>                                                          │

02:09:23 #32233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:09:23 #32234 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:23 #32235 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:23 #32236 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:23 #32237 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:23 #32238 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #32239 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:09:23 #32240 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:23 #32241 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:23 #32242 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:23 #32243 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="194"         │

02:09:23 #32244 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:23 #32245 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:23 #32246 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:23 #32247 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:09:23 #32248 [Debug] > │ x2="584" y2="157"/>                                                          │

02:09:23 #32249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="138"         │

02:09:23 #32250 [Debug] > │ x2="584" y2="138"/>                                                          │

02:09:23 #32251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="119"         │

02:09:23 #32252 [Debug] > │ x2="584" y2="119"/>                                                          │

02:09:23 #32253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:23 #32254 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:23 #32255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:23 #32256 [Debug] > │ y2="82"/>                                                                    │

02:09:23 #32257 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:23 #32258 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32259 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32260 [Debug] > │ position (m)                                                                 │

02:09:23 #32261 [Debug] > │ </text>                                                                      │

02:09:23 #32262 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:23 #32263 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32264 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:23 #32265 [Debug] > │ displacement (m)                                                             │

02:09:23 #32266 [Debug] > │ </text>                                                                      │

02:09:23 #32267 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:23 #32268 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32269 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32270 [Debug] > │ position (m)                                                                 │

02:09:23 #32271 [Debug] > │ </text>                                                                      │

02:09:23 #32272 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32274 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:23 #32275 [Debug] > │ displacement (m)                                                             │

02:09:23 #32276 [Debug] > │ </text>                                                                      │

02:09:23 #32277 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #32278 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32279 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:23 #32280 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #32281 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:23 #32282 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #32283 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:23 #32284 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:23 #32285 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:23 #32286 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:23 #32287 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:23 #32288 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #32289 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:23 #32290 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:23 #32291 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:23 #32292 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:23 #32293 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:23 #32294 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:23 #32295 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:23 #32296 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:23 #32297 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:23 #32298 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:23 #32299 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:23 #32300 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:23 #32301 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:23 #32302 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:23 #32303 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:23 #32304 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:23 #32305 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="399"         │

02:09:23 #32306 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:23 #32307 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="362"         │

02:09:23 #32308 [Debug] > │ x2="584" y2="362"/>                                                          │

02:09:23 #32309 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="324"         │

02:09:23 #32310 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:23 #32311 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="287"         │

02:09:23 #32312 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:23 #32313 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:23 #32314 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #32315 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="213"         │

02:09:23 #32316 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:23 #32317 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="175"         │

02:09:23 #32318 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:23 #32319 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="138"         │

02:09:23 #32320 [Debug] > │ x2="584" y2="138"/>                                                          │

02:09:23 #32321 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="101"         │

02:09:23 #32322 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:23 #32323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32324 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:23 #32325 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:23 #32326 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32327 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32328 [Debug] > │ 0.0                                                                          │

02:09:23 #32329 [Debug] > │ </text>                                                                      │

02:09:23 #32330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32331 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:23 #32332 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32333 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32334 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32335 [Debug] > │ 0.1                                                                          │

02:09:23 #32336 [Debug] > │ </text>                                                                      │

02:09:23 #32337 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32338 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:23 #32339 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32340 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32341 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32342 [Debug] > │ 0.1                                                                          │

02:09:23 #32343 [Debug] > │ </text>                                                                      │

02:09:23 #32344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32345 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:23 #32346 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32347 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32348 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32349 [Debug] > │ 0.2                                                                          │

02:09:23 #32350 [Debug] > │ </text>                                                                      │

02:09:23 #32351 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32352 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:23 #32353 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32354 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32355 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32356 [Debug] > │ 0.2                                                                          │

02:09:23 #32357 [Debug] > │ </text>                                                                      │

02:09:23 #32358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32359 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:23 #32360 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32362 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32363 [Debug] > │ 0.2                                                                          │

02:09:23 #32364 [Debug] > │ </text>                                                                      │

02:09:23 #32365 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32366 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:23 #32367 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32368 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32369 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32370 [Debug] > │ 0.3                                                                          │

02:09:23 #32371 [Debug] > │ </text>                                                                      │

02:09:23 #32372 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32373 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:23 #32374 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32375 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32376 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32377 [Debug] > │ 0.3                                                                          │

02:09:23 #32378 [Debug] > │ </text>                                                                      │

02:09:23 #32379 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32380 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:23 #32381 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32382 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32383 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32384 [Debug] > │ 0.4                                                                          │

02:09:23 #32385 [Debug] > │ </text>                                                                      │

02:09:23 #32386 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32387 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:23 #32388 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32389 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32390 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32391 [Debug] > │ 0.4                                                                          │

02:09:23 #32392 [Debug] > │ </text>                                                                      │

02:09:23 #32393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32394 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:23 #32395 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32396 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32397 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32398 [Debug] > │ 0.5                                                                          │

02:09:23 #32399 [Debug] > │ </text>                                                                      │

02:09:23 #32400 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32401 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:23 #32402 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32403 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32404 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32405 [Debug] > │ 0.5                                                                          │

02:09:23 #32406 [Debug] > │ </text>                                                                      │

02:09:23 #32407 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32408 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:23 #32409 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32410 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32411 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32412 [Debug] > │ 0.6                                                                          │

02:09:23 #32413 [Debug] > │ </text>                                                                      │

02:09:23 #32414 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32415 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:23 #32416 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32417 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32418 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32419 [Debug] > │ 0.7                                                                          │

02:09:23 #32420 [Debug] > │ </text>                                                                      │

02:09:23 #32421 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32422 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:23 #32423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32424 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:23 #32425 [Debug] > │ <text x="45" y="399" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32426 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32427 [Debug] > │ -0.0                                                                         │

02:09:23 #32428 [Debug] > │ </text>                                                                      │

02:09:23 #32429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32430 [Debug] > │ points="49,399 54,399 "/>                                                    │

02:09:23 #32431 [Debug] > │ <text x="45" y="362" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32432 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32433 [Debug] > │ -0.0                                                                         │

02:09:23 #32434 [Debug] > │ </text>                                                                      │

02:09:23 #32435 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32436 [Debug] > │ points="49,362 54,362 "/>                                                    │

02:09:23 #32437 [Debug] > │ <text x="45" y="324" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32438 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32439 [Debug] > │ -0.0                                                                         │

02:09:23 #32440 [Debug] > │ </text>                                                                      │

02:09:23 #32441 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32442 [Debug] > │ points="49,324 54,324 "/>                                                    │

02:09:23 #32443 [Debug] > │ <text x="45" y="287" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32444 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32445 [Debug] > │ -0.0                                                                         │

02:09:23 #32446 [Debug] > │ </text>                                                                      │

02:09:23 #32447 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32448 [Debug] > │ points="49,287 54,287 "/>                                                    │

02:09:23 #32449 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32450 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32451 [Debug] > │ 0.0                                                                          │

02:09:23 #32452 [Debug] > │ </text>                                                                      │

02:09:23 #32453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32454 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:23 #32455 [Debug] > │ <text x="45" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32456 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32457 [Debug] > │ 0.0                                                                          │

02:09:23 #32458 [Debug] > │ </text>                                                                      │

02:09:23 #32459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32460 [Debug] > │ points="49,213 54,213 "/>                                                    │

02:09:23 #32461 [Debug] > │ <text x="45" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32462 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32463 [Debug] > │ 0.0                                                                          │

02:09:23 #32464 [Debug] > │ </text>                                                                      │

02:09:23 #32465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32466 [Debug] > │ points="49,175 54,175 "/>                                                    │

02:09:23 #32467 [Debug] > │ <text x="45" y="138" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32468 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32469 [Debug] > │ 0.0                                                                          │

02:09:23 #32470 [Debug] > │ </text>                                                                      │

02:09:23 #32471 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32472 [Debug] > │ points="49,138 54,138 "/>                                                    │

02:09:23 #32473 [Debug] > │ <text x="45" y="101" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:23 #32474 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32475 [Debug] > │ 0.0                                                                          │

02:09:23 #32476 [Debug] > │ </text>                                                                      │

02:09:23 #32477 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32478 [Debug] > │ points="49,101 54,101 "/>                                                    │

02:09:23 #32479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32480 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:23 #32481 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:23 #32482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32484 [Debug] > │ 0.0                                                                          │

02:09:23 #32485 [Debug] > │ </text>                                                                      │

02:09:23 #32486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32487 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:23 #32488 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32489 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32490 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32491 [Debug] > │ 0.1                                                                          │

02:09:23 #32492 [Debug] > │ </text>                                                                      │

02:09:23 #32493 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32494 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:23 #32495 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32496 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32497 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32498 [Debug] > │ 0.1                                                                          │

02:09:23 #32499 [Debug] > │ </text>                                                                      │

02:09:23 #32500 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32501 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:23 #32502 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32503 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32504 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32505 [Debug] > │ 0.2                                                                          │

02:09:23 #32506 [Debug] > │ </text>                                                                      │

02:09:23 #32507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32508 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:23 #32509 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32510 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32511 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32512 [Debug] > │ 0.2                                                                          │

02:09:23 #32513 [Debug] > │ </text>                                                                      │

02:09:23 #32514 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32515 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:23 #32516 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32517 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32518 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32519 [Debug] > │ 0.2                                                                          │

02:09:23 #32520 [Debug] > │ </text>                                                                      │

02:09:23 #32521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32522 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:23 #32523 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32524 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32525 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32526 [Debug] > │ 0.3                                                                          │

02:09:23 #32527 [Debug] > │ </text>                                                                      │

02:09:23 #32528 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32529 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:23 #32530 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32531 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32532 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32533 [Debug] > │ 0.3                                                                          │

02:09:23 #32534 [Debug] > │ </text>                                                                      │

02:09:23 #32535 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32536 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:23 #32537 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32538 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32539 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32540 [Debug] > │ 0.4                                                                          │

02:09:23 #32541 [Debug] > │ </text>                                                                      │

02:09:23 #32542 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32543 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:23 #32544 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32545 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32546 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32547 [Debug] > │ 0.4                                                                          │

02:09:23 #32548 [Debug] > │ </text>                                                                      │

02:09:23 #32549 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32550 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:23 #32551 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32552 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32553 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32554 [Debug] > │ 0.5                                                                          │

02:09:23 #32555 [Debug] > │ </text>                                                                      │

02:09:23 #32556 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32557 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:23 #32558 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32559 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32560 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32561 [Debug] > │ 0.5                                                                          │

02:09:23 #32562 [Debug] > │ </text>                                                                      │

02:09:23 #32563 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32564 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:23 #32565 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32566 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32567 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32568 [Debug] > │ 0.6                                                                          │

02:09:23 #32569 [Debug] > │ </text>                                                                      │

02:09:23 #32570 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32571 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:23 #32572 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32573 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32574 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32575 [Debug] > │ 0.7                                                                          │

02:09:23 #32576 [Debug] > │ </text>                                                                      │

02:09:23 #32577 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32578 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:23 #32579 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32580 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:23 #32581 [Debug] > │ <text x="595" y="399" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32582 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32583 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32584 [Debug] > │ -0.0                                                                         │

02:09:23 #32585 [Debug] > │ </text>                                                                      │

02:09:23 #32586 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32587 [Debug] > │ points="585,399 590,399 "/>                                                  │

02:09:23 #32588 [Debug] > │ <text x="595" y="362" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32589 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32590 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32591 [Debug] > │ -0.0                                                                         │

02:09:23 #32592 [Debug] > │ </text>                                                                      │

02:09:23 #32593 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32594 [Debug] > │ points="585,362 590,362 "/>                                                  │

02:09:23 #32595 [Debug] > │ <text x="595" y="324" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32596 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32597 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32598 [Debug] > │ -0.0                                                                         │

02:09:23 #32599 [Debug] > │ </text>                                                                      │

02:09:23 #32600 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32601 [Debug] > │ points="585,324 590,324 "/>                                                  │

02:09:23 #32602 [Debug] > │ <text x="595" y="287" dy="0.5ex" text-anchor="start"                         │

02:09:23 #32603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32604 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32605 [Debug] > │ -0.0                                                                         │

02:09:23 #32606 [Debug] > │ </text>                                                                      │

02:09:23 #32607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32608 [Debug] > │ points="585,287 590,287 "/>                                                  │

02:09:23 #32609 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32610 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32611 [Debug] > │ 0.0                                                                          │

02:09:23 #32612 [Debug] > │ </text>                                                                      │

02:09:23 #32613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32614 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:23 #32615 [Debug] > │ <text x="617" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32616 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32617 [Debug] > │ 0.0                                                                          │

02:09:23 #32618 [Debug] > │ </text>                                                                      │

02:09:23 #32619 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32620 [Debug] > │ points="585,213 590,213 "/>                                                  │

02:09:23 #32621 [Debug] > │ <text x="617" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32622 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32623 [Debug] > │ 0.0                                                                          │

02:09:23 #32624 [Debug] > │ </text>                                                                      │

02:09:23 #32625 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32626 [Debug] > │ points="585,175 590,175 "/>                                                  │

02:09:23 #32627 [Debug] > │ <text x="617" y="138" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32628 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32629 [Debug] > │ 0.0                                                                          │

02:09:23 #32630 [Debug] > │ </text>                                                                      │

02:09:23 #32631 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32632 [Debug] > │ points="585,138 590,138 "/>                                                  │

02:09:23 #32633 [Debug] > │ <text x="617" y="101" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:23 #32634 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:23 #32635 [Debug] > │ 0.0                                                                          │

02:09:23 #32636 [Debug] > │ </text>                                                                      │

02:09:23 #32637 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32638 [Debug] > │ points="585,101 590,101 "/>                                                  │

02:09:23 #32639 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #32640 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:23 #32641 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:23 #32642 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:23 #32643 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 331,89 338,96 346,106    │

02:09:23 #32644 [Debug] > │ 354,119 361,135 369,153 377,173 384,194 391,216 397,235 402,249 403,254      │

02:09:23 #32645 [Debug] > │ 402,251 400,246 400,246 401,250 401,251 401,249 401,250 401,252 401,251      │

02:09:23 #32646 [Debug] > │ 401,252 401,253 401,253 401,253 401,253 401,254 401,254 545,171 553,196      │

02:09:23 #32647 [Debug] > │ 562,227 569,250 "/>                                                          │

02:09:23 #32648 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:23 #32649 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:23 #32650 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:23 #32651 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32652 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32653 [Debug] > │ 29                                                                           │

02:09:23 #32654 [Debug] > │ </text>                                                                      │

02:09:23 #32655 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:23 #32656 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:23 #32657 [Debug] > │ </svg>                                                                       │

02:09:23 #32658 [Debug] > │ </td></tr><tr><td>30</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:23 #32659 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:23 #32660 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:23 #32661 [Debug] > │ stroke="none"/>                                                              │

02:09:23 #32662 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:23 #32663 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32664 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32665 [Debug] > │ wave                                                                         │

02:09:23 #32666 [Debug] > │ </text>                                                                      │

02:09:23 #32667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:23 #32668 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #32670 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:23 #32672 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:23 #32674 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:23 #32676 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:23 #32678 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:23 #32679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:23 #32680 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #32681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:23 #32682 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:23 #32683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:23 #32684 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:23 #32685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:23 #32686 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:23 #32687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:23 #32688 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:23 #32689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:23 #32690 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #32691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:23 #32692 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:23 #32693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:23 #32694 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:23 #32695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:23 #32696 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:23 #32697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:23 #32698 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:23 #32699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:23 #32700 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:23 #32701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:23 #32702 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:23 #32703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:23 #32704 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:23 #32705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:23 #32706 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:23 #32707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:23 #32708 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:23 #32709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:23 #32710 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:23 #32711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:23 #32712 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:23 #32713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:23 #32714 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:23 #32715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:23 #32716 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:23 #32717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:23 #32718 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:23 #32719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:23 #32720 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #32721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:23 #32722 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:23 #32723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:23 #32724 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:23 #32725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:23 #32726 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:23 #32727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:23 #32728 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:23 #32729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:23 #32730 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:23 #32731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:23 #32732 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:23 #32733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:23 #32734 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:23 #32735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:23 #32736 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:23 #32737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:23 #32738 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:23 #32739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:23 #32740 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:23 #32741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:23 #32742 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:23 #32743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:23 #32744 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:23 #32745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:23 #32746 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:23 #32747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:23 #32748 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:23 #32749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:23 #32750 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:23 #32751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:23 #32752 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:23 #32753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:23 #32754 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:23 #32755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:23 #32756 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:23 #32757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:23 #32758 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:23 #32759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:23 #32760 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:23 #32761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:23 #32762 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:23 #32763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:23 #32764 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:23 #32765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:23 #32766 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:23 #32767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:23 #32768 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:23 #32769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:23 #32770 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:23 #32771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:23 #32772 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:23 #32773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:23 #32774 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:23 #32775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:23 #32776 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:23 #32777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:23 #32778 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:23 #32779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:23 #32780 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:23 #32781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:23 #32782 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:23 #32783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:23 #32784 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:23 #32785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:23 #32786 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:23 #32787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:23 #32788 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:23 #32789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:23 #32790 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:23 #32791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:23 #32792 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:23 #32793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:23 #32794 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:23 #32795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:23 #32796 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:23 #32797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:23 #32798 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:23 #32799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:23 #32800 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:23 #32801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="411"         │

02:09:23 #32802 [Debug] > │ x2="584" y2="411"/>                                                          │

02:09:23 #32803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:23 #32804 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:23 #32805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="375"         │

02:09:23 #32806 [Debug] > │ x2="584" y2="375"/>                                                          │

02:09:23 #32807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="357"         │

02:09:23 #32808 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:23 #32809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:23 #32810 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:23 #32811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:23 #32812 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:23 #32813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="303"         │

02:09:23 #32814 [Debug] > │ x2="584" y2="303"/>                                                          │

02:09:23 #32815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:23 #32816 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:23 #32817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:23 #32818 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:23 #32819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:23 #32820 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #32821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:23 #32822 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:23 #32823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:23 #32824 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:23 #32825 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="196"         │

02:09:23 #32826 [Debug] > │ x2="584" y2="196"/>                                                          │

02:09:23 #32827 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:09:23 #32828 [Debug] > │ x2="584" y2="178"/>                                                          │

02:09:23 #32829 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:09:23 #32830 [Debug] > │ x2="584" y2="161"/>                                                          │

02:09:23 #32831 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="143"         │

02:09:23 #32832 [Debug] > │ x2="584" y2="143"/>                                                          │

02:09:23 #32833 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="125"         │

02:09:23 #32834 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:23 #32835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="107"         │

02:09:23 #32836 [Debug] > │ x2="584" y2="107"/>                                                          │

02:09:23 #32837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:09:23 #32838 [Debug] > │ y2="89"/>                                                                    │

02:09:23 #32839 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:23 #32840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32842 [Debug] > │ position (m)                                                                 │

02:09:23 #32843 [Debug] > │ </text>                                                                      │

02:09:23 #32844 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:23 #32845 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32846 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:23 #32847 [Debug] > │ displacement (m)                                                             │

02:09:23 #32848 [Debug] > │ </text>                                                                      │

02:09:23 #32849 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:23 #32850 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32851 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32852 [Debug] > │ position (m)                                                                 │

02:09:23 #32853 [Debug] > │ </text>                                                                      │

02:09:23 #32854 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:23 #32855 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32856 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:23 #32857 [Debug] > │ displacement (m)                                                             │

02:09:23 #32858 [Debug] > │ </text>                                                                      │

02:09:23 #32859 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:23 #32860 [Debug] > │ y2="75"/>                                                                    │

02:09:23 #32861 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:23 #32862 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:23 #32863 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:23 #32864 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:23 #32865 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:23 #32866 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:23 #32867 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:23 #32868 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:23 #32869 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:23 #32870 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:23 #32871 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:23 #32872 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:23 #32873 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:23 #32874 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:23 #32875 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:23 #32876 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:23 #32877 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:23 #32878 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:23 #32879 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:23 #32880 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:23 #32881 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:23 #32882 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:23 #32883 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:23 #32884 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:23 #32885 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:23 #32886 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:23 #32887 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="393"         │

02:09:23 #32888 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:23 #32889 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="357"         │

02:09:23 #32890 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:23 #32891 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:09:23 #32892 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:23 #32893 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="286"         │

02:09:23 #32894 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:23 #32895 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:23 #32896 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:23 #32897 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="214"         │

02:09:23 #32898 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:23 #32899 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="178"         │

02:09:23 #32900 [Debug] > │ x2="584" y2="178"/>                                                          │

02:09:23 #32901 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="143"         │

02:09:23 #32902 [Debug] > │ x2="584" y2="143"/>                                                          │

02:09:23 #32903 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="107"         │

02:09:23 #32904 [Debug] > │ x2="584" y2="107"/>                                                          │

02:09:23 #32905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32906 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:23 #32907 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:23 #32908 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32909 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32910 [Debug] > │ 0.0                                                                          │

02:09:23 #32911 [Debug] > │ </text>                                                                      │

02:09:23 #32912 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32913 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:23 #32914 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32915 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32916 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32917 [Debug] > │ 0.1                                                                          │

02:09:23 #32918 [Debug] > │ </text>                                                                      │

02:09:23 #32919 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32920 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:23 #32921 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32922 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32923 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32924 [Debug] > │ 0.1                                                                          │

02:09:23 #32925 [Debug] > │ </text>                                                                      │

02:09:23 #32926 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32927 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:23 #32928 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32929 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32930 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32931 [Debug] > │ 0.2                                                                          │

02:09:23 #32932 [Debug] > │ </text>                                                                      │

02:09:23 #32933 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32934 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:23 #32935 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32936 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32937 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32938 [Debug] > │ 0.2                                                                          │

02:09:23 #32939 [Debug] > │ </text>                                                                      │

02:09:23 #32940 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32941 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:23 #32942 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32943 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32944 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32945 [Debug] > │ 0.2                                                                          │

02:09:23 #32946 [Debug] > │ </text>                                                                      │

02:09:23 #32947 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32948 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:23 #32949 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32950 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32951 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32952 [Debug] > │ 0.3                                                                          │

02:09:23 #32953 [Debug] > │ </text>                                                                      │

02:09:23 #32954 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32955 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:23 #32956 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32957 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32958 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32959 [Debug] > │ 0.3                                                                          │

02:09:23 #32960 [Debug] > │ </text>                                                                      │

02:09:23 #32961 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32962 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:23 #32963 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32964 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32965 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32966 [Debug] > │ 0.4                                                                          │

02:09:23 #32967 [Debug] > │ </text>                                                                      │

02:09:23 #32968 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32969 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:23 #32970 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32971 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32972 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32973 [Debug] > │ 0.4                                                                          │

02:09:23 #32974 [Debug] > │ </text>                                                                      │

02:09:23 #32975 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32976 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:23 #32977 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32978 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:23 #32979 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:23 #32980 [Debug] > │ 0.5                                                                          │

02:09:23 #32981 [Debug] > │ </text>                                                                      │

02:09:23 #32982 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:23 #32983 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:23 #32984 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:23 #32985 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #32986 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #32987 [Debug] > │ 0.5                                                                          │

02:09:24 #32988 [Debug] > │ </text>                                                                      │

02:09:24 #32989 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #32990 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:24 #32991 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #32992 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #32993 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #32994 [Debug] > │ 0.6                                                                          │

02:09:24 #32995 [Debug] > │ </text>                                                                      │

02:09:24 #32996 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #32997 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:24 #32998 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #32999 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33000 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33001 [Debug] > │ 0.7                                                                          │

02:09:24 #33002 [Debug] > │ </text>                                                                      │

02:09:24 #33003 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33004 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:24 #33005 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33006 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:24 #33007 [Debug] > │ <text x="45" y="393" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33008 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33009 [Debug] > │ -0.0                                                                         │

02:09:24 #33010 [Debug] > │ </text>                                                                      │

02:09:24 #33011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33012 [Debug] > │ points="49,393 54,393 "/>                                                    │

02:09:24 #33013 [Debug] > │ <text x="45" y="357" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33015 [Debug] > │ -0.0                                                                         │

02:09:24 #33016 [Debug] > │ </text>                                                                      │

02:09:24 #33017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33018 [Debug] > │ points="49,357 54,357 "/>                                                    │

02:09:24 #33019 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33021 [Debug] > │ -0.0                                                                         │

02:09:24 #33022 [Debug] > │ </text>                                                                      │

02:09:24 #33023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33024 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:09:24 #33025 [Debug] > │ <text x="45" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33027 [Debug] > │ -0.0                                                                         │

02:09:24 #33028 [Debug] > │ </text>                                                                      │

02:09:24 #33029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33030 [Debug] > │ points="49,286 54,286 "/>                                                    │

02:09:24 #33031 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33032 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33033 [Debug] > │ 0.0                                                                          │

02:09:24 #33034 [Debug] > │ </text>                                                                      │

02:09:24 #33035 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33036 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:24 #33037 [Debug] > │ <text x="45" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33038 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33039 [Debug] > │ 0.0                                                                          │

02:09:24 #33040 [Debug] > │ </text>                                                                      │

02:09:24 #33041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33042 [Debug] > │ points="49,214 54,214 "/>                                                    │

02:09:24 #33043 [Debug] > │ <text x="45" y="178" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33044 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33045 [Debug] > │ 0.0                                                                          │

02:09:24 #33046 [Debug] > │ </text>                                                                      │

02:09:24 #33047 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33048 [Debug] > │ points="49,178 54,178 "/>                                                    │

02:09:24 #33049 [Debug] > │ <text x="45" y="143" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33050 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33051 [Debug] > │ 0.0                                                                          │

02:09:24 #33052 [Debug] > │ </text>                                                                      │

02:09:24 #33053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33054 [Debug] > │ points="49,143 54,143 "/>                                                    │

02:09:24 #33055 [Debug] > │ <text x="45" y="107" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33056 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33057 [Debug] > │ 0.0                                                                          │

02:09:24 #33058 [Debug] > │ </text>                                                                      │

02:09:24 #33059 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33060 [Debug] > │ points="49,107 54,107 "/>                                                    │

02:09:24 #33061 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33062 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:24 #33063 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:24 #33064 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33065 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33066 [Debug] > │ 0.0                                                                          │

02:09:24 #33067 [Debug] > │ </text>                                                                      │

02:09:24 #33068 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33069 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:24 #33070 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33071 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33072 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33073 [Debug] > │ 0.1                                                                          │

02:09:24 #33074 [Debug] > │ </text>                                                                      │

02:09:24 #33075 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33076 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:24 #33077 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33078 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33079 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33080 [Debug] > │ 0.1                                                                          │

02:09:24 #33081 [Debug] > │ </text>                                                                      │

02:09:24 #33082 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33083 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:24 #33084 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33085 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33086 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33087 [Debug] > │ 0.2                                                                          │

02:09:24 #33088 [Debug] > │ </text>                                                                      │

02:09:24 #33089 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33090 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:24 #33091 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33092 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33093 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33094 [Debug] > │ 0.2                                                                          │

02:09:24 #33095 [Debug] > │ </text>                                                                      │

02:09:24 #33096 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33097 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:24 #33098 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33099 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33100 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33101 [Debug] > │ 0.2                                                                          │

02:09:24 #33102 [Debug] > │ </text>                                                                      │

02:09:24 #33103 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33104 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:24 #33105 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33106 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33107 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33108 [Debug] > │ 0.3                                                                          │

02:09:24 #33109 [Debug] > │ </text>                                                                      │

02:09:24 #33110 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33111 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:24 #33112 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33113 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33114 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33115 [Debug] > │ 0.3                                                                          │

02:09:24 #33116 [Debug] > │ </text>                                                                      │

02:09:24 #33117 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33118 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:24 #33119 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33120 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33121 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33122 [Debug] > │ 0.4                                                                          │

02:09:24 #33123 [Debug] > │ </text>                                                                      │

02:09:24 #33124 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33125 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:24 #33126 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33127 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33128 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33129 [Debug] > │ 0.4                                                                          │

02:09:24 #33130 [Debug] > │ </text>                                                                      │

02:09:24 #33131 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33132 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:24 #33133 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33134 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33135 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33136 [Debug] > │ 0.5                                                                          │

02:09:24 #33137 [Debug] > │ </text>                                                                      │

02:09:24 #33138 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33139 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:24 #33140 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33141 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33142 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33143 [Debug] > │ 0.5                                                                          │

02:09:24 #33144 [Debug] > │ </text>                                                                      │

02:09:24 #33145 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33146 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:24 #33147 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33148 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33149 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33150 [Debug] > │ 0.6                                                                          │

02:09:24 #33151 [Debug] > │ </text>                                                                      │

02:09:24 #33152 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33153 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:24 #33154 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33155 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33156 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33157 [Debug] > │ 0.7                                                                          │

02:09:24 #33158 [Debug] > │ </text>                                                                      │

02:09:24 #33159 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33160 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:24 #33161 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33162 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:24 #33163 [Debug] > │ <text x="595" y="393" dy="0.5ex" text-anchor="start"                         │

02:09:24 #33164 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33165 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33166 [Debug] > │ -0.0                                                                         │

02:09:24 #33167 [Debug] > │ </text>                                                                      │

02:09:24 #33168 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33169 [Debug] > │ points="585,393 590,393 "/>                                                  │

02:09:24 #33170 [Debug] > │ <text x="595" y="357" dy="0.5ex" text-anchor="start"                         │

02:09:24 #33171 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33172 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33173 [Debug] > │ -0.0                                                                         │

02:09:24 #33174 [Debug] > │ </text>                                                                      │

02:09:24 #33175 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33176 [Debug] > │ points="585,357 590,357 "/>                                                  │

02:09:24 #33177 [Debug] > │ <text x="595" y="321" dy="0.5ex" text-anchor="start"                         │

02:09:24 #33178 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33179 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33180 [Debug] > │ -0.0                                                                         │

02:09:24 #33181 [Debug] > │ </text>                                                                      │

02:09:24 #33182 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33183 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:09:24 #33184 [Debug] > │ <text x="595" y="286" dy="0.5ex" text-anchor="start"                         │

02:09:24 #33185 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33186 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33187 [Debug] > │ -0.0                                                                         │

02:09:24 #33188 [Debug] > │ </text>                                                                      │

02:09:24 #33189 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33190 [Debug] > │ points="585,286 590,286 "/>                                                  │

02:09:24 #33191 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33192 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33193 [Debug] > │ 0.0                                                                          │

02:09:24 #33194 [Debug] > │ </text>                                                                      │

02:09:24 #33195 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33196 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:24 #33197 [Debug] > │ <text x="617" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33198 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33199 [Debug] > │ 0.0                                                                          │

02:09:24 #33200 [Debug] > │ </text>                                                                      │

02:09:24 #33201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33202 [Debug] > │ points="585,214 590,214 "/>                                                  │

02:09:24 #33203 [Debug] > │ <text x="617" y="178" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33204 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33205 [Debug] > │ 0.0                                                                          │

02:09:24 #33206 [Debug] > │ </text>                                                                      │

02:09:24 #33207 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33208 [Debug] > │ points="585,178 590,178 "/>                                                  │

02:09:24 #33209 [Debug] > │ <text x="617" y="143" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33210 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33211 [Debug] > │ 0.0                                                                          │

02:09:24 #33212 [Debug] > │ </text>                                                                      │

02:09:24 #33213 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33214 [Debug] > │ points="585,143 590,143 "/>                                                  │

02:09:24 #33215 [Debug] > │ <text x="617" y="107" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33216 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33217 [Debug] > │ 0.0                                                                          │

02:09:24 #33218 [Debug] > │ </text>                                                                      │

02:09:24 #33219 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33220 [Debug] > │ points="585,107 590,107 "/>                                                  │

02:09:24 #33221 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #33222 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:24 #33223 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:24 #33224 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:24 #33225 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 331,89 338,96 346,106    │

02:09:24 #33226 [Debug] > │ 354,119 361,135 369,153 376,173 384,194 390,213 395,230 398,239 398,240      │

02:09:24 #33227 [Debug] > │ 396,237 395,237 396,242 397,247 396,248 396,250 396,254 396,257 396,259      │

02:09:24 #33228 [Debug] > │ 396,262 396,264 396,266 396,267 396,269 396,270 396,270 545,175 553,199      │

02:09:24 #33229 [Debug] > │ 561,224 569,250 "/>                                                          │

02:09:24 #33230 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:24 #33231 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:24 #33232 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:24 #33233 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33234 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33235 [Debug] > │ 30                                                                           │

02:09:24 #33236 [Debug] > │ </text>                                                                      │

02:09:24 #33237 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #33238 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:24 #33239 [Debug] > │ </svg>                                                                       │

02:09:24 #33240 [Debug] > │ </td></tr><tr><td>31</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:24 #33241 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:24 #33242 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:24 #33243 [Debug] > │ stroke="none"/>                                                              │

02:09:24 #33244 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:24 #33245 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33246 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33247 [Debug] > │ wave                                                                         │

02:09:24 #33248 [Debug] > │ </text>                                                                      │

02:09:24 #33249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:24 #33250 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #33252 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:24 #33254 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:24 #33256 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33257 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:24 #33258 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33259 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:24 #33260 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:24 #33261 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:24 #33262 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:24 #33263 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:24 #33264 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:24 #33265 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:24 #33266 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:24 #33267 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:24 #33268 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:24 #33269 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:24 #33270 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:24 #33271 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:24 #33272 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:24 #33273 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:24 #33274 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:24 #33275 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:24 #33276 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:24 #33277 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:24 #33278 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:24 #33279 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:24 #33280 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:24 #33281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:24 #33282 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:24 #33283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:24 #33284 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:24 #33285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:24 #33286 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:24 #33287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:24 #33288 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:24 #33289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:24 #33290 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:24 #33291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:24 #33292 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:24 #33293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:24 #33294 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:24 #33295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:24 #33296 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:24 #33297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:24 #33298 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:24 #33299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:24 #33300 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:24 #33301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:24 #33302 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:24 #33303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:24 #33304 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:24 #33305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:24 #33306 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:24 #33307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:24 #33308 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:24 #33309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:24 #33310 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:24 #33311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:24 #33312 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:24 #33313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:24 #33314 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:24 #33315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:24 #33316 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:24 #33317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:24 #33318 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:24 #33319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:24 #33320 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:24 #33321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:24 #33322 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:24 #33323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:24 #33324 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:24 #33325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:24 #33326 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:24 #33327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:24 #33328 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:24 #33329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:24 #33330 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:24 #33331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:24 #33332 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:24 #33333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:24 #33334 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:24 #33335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:24 #33336 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:24 #33337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:24 #33338 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:24 #33339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:24 #33340 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:24 #33341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:24 #33342 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:24 #33343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:24 #33344 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:24 #33345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:24 #33346 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:24 #33347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:24 #33348 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:24 #33349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:24 #33350 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:24 #33351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:24 #33352 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:24 #33353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:24 #33354 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:24 #33355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:24 #33356 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:24 #33357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:24 #33358 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:24 #33359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:24 #33360 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:24 #33361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:24 #33362 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:24 #33363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:24 #33364 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:24 #33365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:24 #33366 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:24 #33367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:24 #33368 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:24 #33369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:24 #33370 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:24 #33371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:24 #33372 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:24 #33373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:24 #33374 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:24 #33375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:24 #33376 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:24 #33377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:24 #33378 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:24 #33379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:24 #33380 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:24 #33381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:24 #33382 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:24 #33383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="423"         │

02:09:24 #33384 [Debug] > │ x2="584" y2="423"/>                                                          │

02:09:24 #33385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:24 #33386 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:24 #33387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="388"         │

02:09:24 #33388 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:24 #33389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="371"         │

02:09:24 #33390 [Debug] > │ x2="584" y2="371"/>                                                          │

02:09:24 #33391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:24 #33392 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:24 #33393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:24 #33394 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:24 #33395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:24 #33396 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:24 #33397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:24 #33398 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:24 #33399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:24 #33400 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:24 #33401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:24 #33402 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:24 #33403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:24 #33404 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #33405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:24 #33406 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:24 #33407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:09:24 #33408 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:24 #33409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:24 #33410 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:24 #33411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="181"         │

02:09:24 #33412 [Debug] > │ x2="584" y2="181"/>                                                          │

02:09:24 #33413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="163"         │

02:09:24 #33414 [Debug] > │ x2="584" y2="163"/>                                                          │

02:09:24 #33415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="146"         │

02:09:24 #33416 [Debug] > │ x2="584" y2="146"/>                                                          │

02:09:24 #33417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="129"         │

02:09:24 #33418 [Debug] > │ x2="584" y2="129"/>                                                          │

02:09:24 #33419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:24 #33420 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:24 #33421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:24 #33422 [Debug] > │ y2="94"/>                                                                    │

02:09:24 #33423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="77" x2="584" │

02:09:24 #33424 [Debug] > │ y2="77"/>                                                                    │

02:09:24 #33425 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:24 #33426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33427 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33428 [Debug] > │ position (m)                                                                 │

02:09:24 #33429 [Debug] > │ </text>                                                                      │

02:09:24 #33430 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:24 #33431 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33432 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:24 #33433 [Debug] > │ displacement (m)                                                             │

02:09:24 #33434 [Debug] > │ </text>                                                                      │

02:09:24 #33435 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:24 #33436 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33437 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33438 [Debug] > │ position (m)                                                                 │

02:09:24 #33439 [Debug] > │ </text>                                                                      │

02:09:24 #33440 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33441 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33442 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:24 #33443 [Debug] > │ displacement (m)                                                             │

02:09:24 #33444 [Debug] > │ </text>                                                                      │

02:09:24 #33445 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #33446 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33447 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:24 #33448 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:24 #33449 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:24 #33450 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:24 #33451 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:24 #33452 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:24 #33453 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:24 #33454 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:24 #33455 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:24 #33456 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:24 #33457 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:24 #33458 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:24 #33459 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:24 #33460 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:24 #33461 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:24 #33462 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:24 #33463 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:24 #33464 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:24 #33465 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:24 #33466 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:24 #33467 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:24 #33468 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:24 #33469 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:24 #33470 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:24 #33471 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:24 #33472 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:24 #33473 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="388"         │

02:09:24 #33474 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:24 #33475 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:09:24 #33476 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:24 #33477 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:24 #33478 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #33479 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="181"         │

02:09:24 #33480 [Debug] > │ x2="584" y2="181"/>                                                          │

02:09:24 #33481 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="112"         │

02:09:24 #33482 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:24 #33483 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33484 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:24 #33485 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:24 #33486 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33487 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33488 [Debug] > │ 0.0                                                                          │

02:09:24 #33489 [Debug] > │ </text>                                                                      │

02:09:24 #33490 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33491 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:24 #33492 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33493 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33494 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33495 [Debug] > │ 0.1                                                                          │

02:09:24 #33496 [Debug] > │ </text>                                                                      │

02:09:24 #33497 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33498 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:24 #33499 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33500 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33501 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33502 [Debug] > │ 0.1                                                                          │

02:09:24 #33503 [Debug] > │ </text>                                                                      │

02:09:24 #33504 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33505 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:24 #33506 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33507 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33508 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33509 [Debug] > │ 0.2                                                                          │

02:09:24 #33510 [Debug] > │ </text>                                                                      │

02:09:24 #33511 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33512 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:24 #33513 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33514 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33515 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33516 [Debug] > │ 0.2                                                                          │

02:09:24 #33517 [Debug] > │ </text>                                                                      │

02:09:24 #33518 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33519 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:24 #33520 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33521 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33522 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33523 [Debug] > │ 0.2                                                                          │

02:09:24 #33524 [Debug] > │ </text>                                                                      │

02:09:24 #33525 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33526 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:24 #33527 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33528 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33529 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33530 [Debug] > │ 0.3                                                                          │

02:09:24 #33531 [Debug] > │ </text>                                                                      │

02:09:24 #33532 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33533 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:24 #33534 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33535 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33536 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33537 [Debug] > │ 0.3                                                                          │

02:09:24 #33538 [Debug] > │ </text>                                                                      │

02:09:24 #33539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33540 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:24 #33541 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33542 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33543 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33544 [Debug] > │ 0.4                                                                          │

02:09:24 #33545 [Debug] > │ </text>                                                                      │

02:09:24 #33546 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33547 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:24 #33548 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33549 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33550 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33551 [Debug] > │ 0.4                                                                          │

02:09:24 #33552 [Debug] > │ </text>                                                                      │

02:09:24 #33553 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33554 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:24 #33555 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33556 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33557 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33558 [Debug] > │ 0.5                                                                          │

02:09:24 #33559 [Debug] > │ </text>                                                                      │

02:09:24 #33560 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33561 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:24 #33562 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33563 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33564 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33565 [Debug] > │ 0.5                                                                          │

02:09:24 #33566 [Debug] > │ </text>                                                                      │

02:09:24 #33567 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33568 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:24 #33569 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33570 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33571 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33572 [Debug] > │ 0.6                                                                          │

02:09:24 #33573 [Debug] > │ </text>                                                                      │

02:09:24 #33574 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33575 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:24 #33576 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #33577 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33578 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33579 [Debug] > │ 0.7                                                                          │

02:09:24 #33580 [Debug] > │ </text>                                                                      │

02:09:24 #33581 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33582 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:24 #33583 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33584 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:24 #33585 [Debug] > │ <text x="45" y="388" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33586 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33587 [Debug] > │ -0.0                                                                         │

02:09:24 #33588 [Debug] > │ </text>                                                                      │

02:09:24 #33589 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33590 [Debug] > │ points="49,388 54,388 "/>                                                    │

02:09:24 #33591 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33592 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33593 [Debug] > │ -0.0                                                                         │

02:09:24 #33594 [Debug] > │ </text>                                                                      │

02:09:24 #33595 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33596 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:09:24 #33597 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33598 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33599 [Debug] > │ 0.0                                                                          │

02:09:24 #33600 [Debug] > │ </text>                                                                      │

02:09:24 #33601 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33602 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:24 #33603 [Debug] > │ <text x="45" y="181" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33604 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33605 [Debug] > │ 0.0                                                                          │

02:09:24 #33606 [Debug] > │ </text>                                                                      │

02:09:24 #33607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33608 [Debug] > │ points="49,181 54,181 "/>                                                    │

02:09:24 #33609 [Debug] > │ <text x="45" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #33610 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33611 [Debug] > │ 0.0                                                                          │

02:09:24 #33612 [Debug] > │ </text>                                                                      │

02:09:24 #33613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33614 [Debug] > │ points="49,112 54,112 "/>                                                    │

02:09:24 #33615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33616 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:24 #33617 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:24 #33618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33619 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33620 [Debug] > │ 0.0                                                                          │

02:09:24 #33621 [Debug] > │ </text>                                                                      │

02:09:24 #33622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33623 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:24 #33624 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33626 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33627 [Debug] > │ 0.1                                                                          │

02:09:24 #33628 [Debug] > │ </text>                                                                      │

02:09:24 #33629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33630 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:24 #33631 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33633 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33634 [Debug] > │ 0.1                                                                          │

02:09:24 #33635 [Debug] > │ </text>                                                                      │

02:09:24 #33636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33637 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:24 #33638 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33641 [Debug] > │ 0.2                                                                          │

02:09:24 #33642 [Debug] > │ </text>                                                                      │

02:09:24 #33643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33644 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:24 #33645 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33647 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33648 [Debug] > │ 0.2                                                                          │

02:09:24 #33649 [Debug] > │ </text>                                                                      │

02:09:24 #33650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33651 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:24 #33652 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33654 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33655 [Debug] > │ 0.2                                                                          │

02:09:24 #33656 [Debug] > │ </text>                                                                      │

02:09:24 #33657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33658 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:24 #33659 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33661 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33662 [Debug] > │ 0.3                                                                          │

02:09:24 #33663 [Debug] > │ </text>                                                                      │

02:09:24 #33664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33665 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:24 #33666 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33668 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33669 [Debug] > │ 0.3                                                                          │

02:09:24 #33670 [Debug] > │ </text>                                                                      │

02:09:24 #33671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33672 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:24 #33673 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33675 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33676 [Debug] > │ 0.4                                                                          │

02:09:24 #33677 [Debug] > │ </text>                                                                      │

02:09:24 #33678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33679 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:24 #33680 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33682 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33683 [Debug] > │ 0.4                                                                          │

02:09:24 #33684 [Debug] > │ </text>                                                                      │

02:09:24 #33685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33686 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:24 #33687 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33689 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33690 [Debug] > │ 0.5                                                                          │

02:09:24 #33691 [Debug] > │ </text>                                                                      │

02:09:24 #33692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33693 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:24 #33694 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33696 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33697 [Debug] > │ 0.5                                                                          │

02:09:24 #33698 [Debug] > │ </text>                                                                      │

02:09:24 #33699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33700 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:24 #33701 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33702 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33703 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33704 [Debug] > │ 0.6                                                                          │

02:09:24 #33705 [Debug] > │ </text>                                                                      │

02:09:24 #33706 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33707 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:24 #33708 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33709 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33710 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33711 [Debug] > │ 0.7                                                                          │

02:09:24 #33712 [Debug] > │ </text>                                                                      │

02:09:24 #33713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33714 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:24 #33715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33716 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:24 #33717 [Debug] > │ <text x="595" y="388" dy="0.5ex" text-anchor="start"                         │

02:09:24 #33718 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33719 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33720 [Debug] > │ -0.0                                                                         │

02:09:24 #33721 [Debug] > │ </text>                                                                      │

02:09:24 #33722 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33723 [Debug] > │ points="585,388 590,388 "/>                                                  │

02:09:24 #33724 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:09:24 #33725 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33726 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33727 [Debug] > │ -0.0                                                                         │

02:09:24 #33728 [Debug] > │ </text>                                                                      │

02:09:24 #33729 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33730 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:09:24 #33731 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33732 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33733 [Debug] > │ 0.0                                                                          │

02:09:24 #33734 [Debug] > │ </text>                                                                      │

02:09:24 #33735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33736 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:24 #33737 [Debug] > │ <text x="617" y="181" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33738 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33739 [Debug] > │ 0.0                                                                          │

02:09:24 #33740 [Debug] > │ </text>                                                                      │

02:09:24 #33741 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33742 [Debug] > │ points="585,181 590,181 "/>                                                  │

02:09:24 #33743 [Debug] > │ <text x="617" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #33744 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #33745 [Debug] > │ 0.0                                                                          │

02:09:24 #33746 [Debug] > │ </text>                                                                      │

02:09:24 #33747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #33748 [Debug] > │ points="585,112 590,112 "/>                                                  │

02:09:24 #33749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #33750 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:24 #33751 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:24 #33752 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:24 #33753 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 331,89 338,96 346,106    │

02:09:24 #33754 [Debug] > │ 354,119 361,135 369,153 376,172 383,192 389,210 393,222 393,227 392,226      │

02:09:24 #33755 [Debug] > │ 390,225 391,230 392,238 392,243 391,245 391,251 391,257 391,261 391,266      │

02:09:24 #33756 [Debug] > │ 391,271 391,274 391,278 391,280 391,283 391,284 391,285 545,177 553,200      │

02:09:24 #33757 [Debug] > │ 563,231 569,250 "/>                                                          │

02:09:24 #33758 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:24 #33759 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:24 #33760 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:24 #33761 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33762 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33763 [Debug] > │ 31                                                                           │

02:09:24 #33764 [Debug] > │ </text>                                                                      │

02:09:24 #33765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #33766 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:24 #33767 [Debug] > │ </svg>                                                                       │

02:09:24 #33768 [Debug] > │ </td></tr><tr><td>32</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:24 #33769 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:24 #33770 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:24 #33771 [Debug] > │ stroke="none"/>                                                              │

02:09:24 #33772 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:24 #33773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33774 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33775 [Debug] > │ wave                                                                         │

02:09:24 #33776 [Debug] > │ </text>                                                                      │

02:09:24 #33777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:24 #33778 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #33780 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:24 #33782 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:24 #33784 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:24 #33786 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:24 #33788 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:24 #33789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:24 #33790 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:24 #33791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:24 #33792 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:24 #33793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:24 #33794 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:24 #33795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:24 #33796 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:24 #33797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:24 #33798 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:24 #33799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:24 #33800 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:24 #33801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:24 #33802 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:24 #33803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:24 #33804 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:24 #33805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:24 #33806 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:24 #33807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:24 #33808 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:24 #33809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:24 #33810 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:24 #33811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:24 #33812 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:24 #33813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:24 #33814 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:24 #33815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:24 #33816 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:24 #33817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:24 #33818 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:24 #33819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:24 #33820 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:24 #33821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:24 #33822 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:24 #33823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:24 #33824 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:24 #33825 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:24 #33826 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:24 #33827 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:24 #33828 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:24 #33829 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:24 #33830 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:24 #33831 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:24 #33832 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:24 #33833 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:24 #33834 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:24 #33835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:24 #33836 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:24 #33837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:24 #33838 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:24 #33839 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:24 #33840 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:24 #33841 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:24 #33842 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:24 #33843 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:24 #33844 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:24 #33845 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:24 #33846 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:24 #33847 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:24 #33848 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:24 #33849 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:24 #33850 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:24 #33851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:24 #33852 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:24 #33853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:24 #33854 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:24 #33855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:24 #33856 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:24 #33857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:24 #33858 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:24 #33859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:24 #33860 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:24 #33861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:24 #33862 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:24 #33863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:24 #33864 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:24 #33865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:24 #33866 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:24 #33867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:24 #33868 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:24 #33869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:24 #33870 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:24 #33871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:24 #33872 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:24 #33873 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:24 #33874 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:24 #33875 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:24 #33876 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:24 #33877 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:24 #33878 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:24 #33879 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:24 #33880 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:24 #33881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:24 #33882 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:24 #33883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:24 #33884 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:24 #33885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:24 #33886 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:24 #33887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:24 #33888 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:24 #33889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:24 #33890 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:24 #33891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:24 #33892 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:24 #33893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:24 #33894 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:24 #33895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:24 #33896 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:24 #33897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:24 #33898 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:24 #33899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:24 #33900 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:24 #33901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:24 #33902 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:24 #33903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:24 #33904 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:24 #33905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:24 #33906 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:24 #33907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:24 #33908 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:24 #33909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:24 #33910 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:24 #33911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:24 #33912 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:24 #33913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="402"         │

02:09:24 #33914 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:24 #33915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="385"         │

02:09:24 #33916 [Debug] > │ x2="584" y2="385"/>                                                          │

02:09:24 #33917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:24 #33918 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:24 #33919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:24 #33920 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:24 #33921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:24 #33922 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:24 #33923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="317"         │

02:09:24 #33924 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:24 #33925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:24 #33926 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:24 #33927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:24 #33928 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:24 #33929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:24 #33930 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:24 #33931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:24 #33932 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #33933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:24 #33934 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:24 #33935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:24 #33936 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:24 #33937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:09:24 #33938 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:24 #33939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:24 #33940 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:24 #33941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:24 #33942 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:24 #33943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:09:24 #33944 [Debug] > │ x2="584" y2="149"/>                                                          │

02:09:24 #33945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:09:24 #33946 [Debug] > │ x2="584" y2="132"/>                                                          │

02:09:24 #33947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="115"         │

02:09:24 #33948 [Debug] > │ x2="584" y2="115"/>                                                          │

02:09:24 #33949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:09:24 #33950 [Debug] > │ y2="98"/>                                                                    │

02:09:24 #33951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="81" x2="584" │

02:09:24 #33952 [Debug] > │ y2="81"/>                                                                    │

02:09:24 #33953 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:24 #33954 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33955 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33956 [Debug] > │ position (m)                                                                 │

02:09:24 #33957 [Debug] > │ </text>                                                                      │

02:09:24 #33958 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:24 #33959 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33960 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:24 #33961 [Debug] > │ displacement (m)                                                             │

02:09:24 #33962 [Debug] > │ </text>                                                                      │

02:09:24 #33963 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:24 #33964 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33965 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #33966 [Debug] > │ position (m)                                                                 │

02:09:24 #33967 [Debug] > │ </text>                                                                      │

02:09:24 #33968 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:24 #33969 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #33970 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:24 #33971 [Debug] > │ displacement (m)                                                             │

02:09:24 #33972 [Debug] > │ </text>                                                                      │

02:09:24 #33973 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #33974 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #33975 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:24 #33976 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:24 #33977 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:24 #33978 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:24 #33979 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:24 #33980 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:24 #33981 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:24 #33982 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:24 #33983 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:24 #33984 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:24 #33985 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:24 #33986 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:24 #33987 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:24 #33988 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:24 #33989 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:24 #33990 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:24 #33991 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:24 #33992 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:24 #33993 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:24 #33994 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:24 #33995 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:24 #33996 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:24 #33997 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:24 #33998 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:24 #33999 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:24 #34000 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:24 #34001 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="385"         │

02:09:24 #34002 [Debug] > │ x2="584" y2="385"/>                                                          │

02:09:24 #34003 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="317"         │

02:09:24 #34004 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:24 #34005 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:24 #34006 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #34007 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="182"         │

02:09:24 #34008 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:24 #34009 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="115"         │

02:09:24 #34010 [Debug] > │ x2="584" y2="115"/>                                                          │

02:09:24 #34011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34012 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:24 #34013 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:24 #34014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34016 [Debug] > │ 0.0                                                                          │

02:09:24 #34017 [Debug] > │ </text>                                                                      │

02:09:24 #34018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34019 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:24 #34020 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34023 [Debug] > │ 0.1                                                                          │

02:09:24 #34024 [Debug] > │ </text>                                                                      │

02:09:24 #34025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34026 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:24 #34027 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34029 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34030 [Debug] > │ 0.1                                                                          │

02:09:24 #34031 [Debug] > │ </text>                                                                      │

02:09:24 #34032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34033 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:24 #34034 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34037 [Debug] > │ 0.2                                                                          │

02:09:24 #34038 [Debug] > │ </text>                                                                      │

02:09:24 #34039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34040 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:24 #34041 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34042 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34043 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34044 [Debug] > │ 0.2                                                                          │

02:09:24 #34045 [Debug] > │ </text>                                                                      │

02:09:24 #34046 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34047 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:24 #34048 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34049 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34050 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34051 [Debug] > │ 0.2                                                                          │

02:09:24 #34052 [Debug] > │ </text>                                                                      │

02:09:24 #34053 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34054 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:24 #34055 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34056 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34057 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34058 [Debug] > │ 0.3                                                                          │

02:09:24 #34059 [Debug] > │ </text>                                                                      │

02:09:24 #34060 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34061 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:24 #34062 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34063 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34064 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34065 [Debug] > │ 0.3                                                                          │

02:09:24 #34066 [Debug] > │ </text>                                                                      │

02:09:24 #34067 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34068 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:24 #34069 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34070 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34071 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34072 [Debug] > │ 0.4                                                                          │

02:09:24 #34073 [Debug] > │ </text>                                                                      │

02:09:24 #34074 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34075 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:24 #34076 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34077 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34078 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34079 [Debug] > │ 0.4                                                                          │

02:09:24 #34080 [Debug] > │ </text>                                                                      │

02:09:24 #34081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34082 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:24 #34083 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34084 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34085 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34086 [Debug] > │ 0.5                                                                          │

02:09:24 #34087 [Debug] > │ </text>                                                                      │

02:09:24 #34088 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34089 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:24 #34090 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34091 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34092 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34093 [Debug] > │ 0.5                                                                          │

02:09:24 #34094 [Debug] > │ </text>                                                                      │

02:09:24 #34095 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34096 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:24 #34097 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34100 [Debug] > │ 0.6                                                                          │

02:09:24 #34101 [Debug] > │ </text>                                                                      │

02:09:24 #34102 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34103 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:24 #34104 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34105 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34106 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34107 [Debug] > │ 0.7                                                                          │

02:09:24 #34108 [Debug] > │ </text>                                                                      │

02:09:24 #34109 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34110 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:24 #34111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34112 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:24 #34113 [Debug] > │ <text x="45" y="385" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34114 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34115 [Debug] > │ -0.0                                                                         │

02:09:24 #34116 [Debug] > │ </text>                                                                      │

02:09:24 #34117 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34118 [Debug] > │ points="49,385 54,385 "/>                                                    │

02:09:24 #34119 [Debug] > │ <text x="45" y="317" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34120 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34121 [Debug] > │ -0.0                                                                         │

02:09:24 #34122 [Debug] > │ </text>                                                                      │

02:09:24 #34123 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34124 [Debug] > │ points="49,317 54,317 "/>                                                    │

02:09:24 #34125 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34126 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34127 [Debug] > │ 0.0                                                                          │

02:09:24 #34128 [Debug] > │ </text>                                                                      │

02:09:24 #34129 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34130 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:24 #34131 [Debug] > │ <text x="45" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34132 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34133 [Debug] > │ 0.0                                                                          │

02:09:24 #34134 [Debug] > │ </text>                                                                      │

02:09:24 #34135 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34136 [Debug] > │ points="49,182 54,182 "/>                                                    │

02:09:24 #34137 [Debug] > │ <text x="45" y="115" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34138 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34139 [Debug] > │ 0.0                                                                          │

02:09:24 #34140 [Debug] > │ </text>                                                                      │

02:09:24 #34141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34142 [Debug] > │ points="49,115 54,115 "/>                                                    │

02:09:24 #34143 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34144 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:24 #34145 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:24 #34146 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34147 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34148 [Debug] > │ 0.0                                                                          │

02:09:24 #34149 [Debug] > │ </text>                                                                      │

02:09:24 #34150 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34151 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:24 #34152 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34153 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34154 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34155 [Debug] > │ 0.1                                                                          │

02:09:24 #34156 [Debug] > │ </text>                                                                      │

02:09:24 #34157 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34158 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:24 #34159 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34160 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34161 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34162 [Debug] > │ 0.1                                                                          │

02:09:24 #34163 [Debug] > │ </text>                                                                      │

02:09:24 #34164 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34165 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:24 #34166 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34167 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34168 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34169 [Debug] > │ 0.2                                                                          │

02:09:24 #34170 [Debug] > │ </text>                                                                      │

02:09:24 #34171 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34172 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:24 #34173 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34174 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34175 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34176 [Debug] > │ 0.2                                                                          │

02:09:24 #34177 [Debug] > │ </text>                                                                      │

02:09:24 #34178 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34179 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:24 #34180 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34181 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34182 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34183 [Debug] > │ 0.2                                                                          │

02:09:24 #34184 [Debug] > │ </text>                                                                      │

02:09:24 #34185 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34186 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:24 #34187 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34188 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34189 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34190 [Debug] > │ 0.3                                                                          │

02:09:24 #34191 [Debug] > │ </text>                                                                      │

02:09:24 #34192 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34193 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:24 #34194 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34195 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34196 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34197 [Debug] > │ 0.3                                                                          │

02:09:24 #34198 [Debug] > │ </text>                                                                      │

02:09:24 #34199 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34200 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:24 #34201 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34202 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34203 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34204 [Debug] > │ 0.4                                                                          │

02:09:24 #34205 [Debug] > │ </text>                                                                      │

02:09:24 #34206 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34207 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:24 #34208 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34209 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34210 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34211 [Debug] > │ 0.4                                                                          │

02:09:24 #34212 [Debug] > │ </text>                                                                      │

02:09:24 #34213 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34214 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:24 #34215 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34216 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34217 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34218 [Debug] > │ 0.5                                                                          │

02:09:24 #34219 [Debug] > │ </text>                                                                      │

02:09:24 #34220 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34221 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:24 #34222 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34223 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34224 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34225 [Debug] > │ 0.5                                                                          │

02:09:24 #34226 [Debug] > │ </text>                                                                      │

02:09:24 #34227 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34228 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:24 #34229 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34230 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34231 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34232 [Debug] > │ 0.6                                                                          │

02:09:24 #34233 [Debug] > │ </text>                                                                      │

02:09:24 #34234 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34235 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:24 #34236 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34237 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34238 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34239 [Debug] > │ 0.7                                                                          │

02:09:24 #34240 [Debug] > │ </text>                                                                      │

02:09:24 #34241 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34242 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:24 #34243 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34244 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:24 #34245 [Debug] > │ <text x="595" y="385" dy="0.5ex" text-anchor="start"                         │

02:09:24 #34246 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34247 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34248 [Debug] > │ -0.0                                                                         │

02:09:24 #34249 [Debug] > │ </text>                                                                      │

02:09:24 #34250 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34251 [Debug] > │ points="585,385 590,385 "/>                                                  │

02:09:24 #34252 [Debug] > │ <text x="595" y="317" dy="0.5ex" text-anchor="start"                         │

02:09:24 #34253 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34254 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34255 [Debug] > │ -0.0                                                                         │

02:09:24 #34256 [Debug] > │ </text>                                                                      │

02:09:24 #34257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34258 [Debug] > │ points="585,317 590,317 "/>                                                  │

02:09:24 #34259 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #34260 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34261 [Debug] > │ 0.0                                                                          │

02:09:24 #34262 [Debug] > │ </text>                                                                      │

02:09:24 #34263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34264 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:24 #34265 [Debug] > │ <text x="617" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #34266 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34267 [Debug] > │ 0.0                                                                          │

02:09:24 #34268 [Debug] > │ </text>                                                                      │

02:09:24 #34269 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34270 [Debug] > │ points="585,182 590,182 "/>                                                  │

02:09:24 #34271 [Debug] > │ <text x="617" y="115" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #34272 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34273 [Debug] > │ 0.0                                                                          │

02:09:24 #34274 [Debug] > │ </text>                                                                      │

02:09:24 #34275 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34276 [Debug] > │ points="585,115 590,115 "/>                                                  │

02:09:24 #34277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #34278 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:24 #34279 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:24 #34280 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:24 #34281 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 331,89 338,96 346,106    │

02:09:24 #34282 [Debug] > │ 354,119 361,134 369,152 376,171 382,189 387,204 389,212 388,214 386,213      │

02:09:24 #34283 [Debug] > │ 385,216 386,225 387,233 386,238 386,244 387,253 386,259 386,266 386,273      │

02:09:24 #34284 [Debug] > │ 386,279 386,284 386,289 386,293 386,296 386,298 386,299 545,179 553,202      │

02:09:24 #34285 [Debug] > │ 567,245 569,250 "/>                                                          │

02:09:24 #34286 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:24 #34287 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:24 #34288 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:24 #34289 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34290 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34291 [Debug] > │ 32                                                                           │

02:09:24 #34292 [Debug] > │ </text>                                                                      │

02:09:24 #34293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #34294 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:24 #34295 [Debug] > │ </svg>                                                                       │

02:09:24 #34296 [Debug] > │ </td></tr><tr><td>33</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:24 #34297 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:24 #34298 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:24 #34299 [Debug] > │ stroke="none"/>                                                              │

02:09:24 #34300 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:24 #34301 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34302 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34303 [Debug] > │ wave                                                                         │

02:09:24 #34304 [Debug] > │ </text>                                                                      │

02:09:24 #34305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:24 #34306 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #34308 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:24 #34310 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:24 #34312 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:24 #34314 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:24 #34316 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:24 #34317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:24 #34318 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:24 #34319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:24 #34320 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:24 #34321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:24 #34322 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:24 #34323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:24 #34324 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:24 #34325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:24 #34326 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:24 #34327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:24 #34328 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:24 #34329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:24 #34330 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:24 #34331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:24 #34332 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:24 #34333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:24 #34334 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:24 #34335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:24 #34336 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:24 #34337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:24 #34338 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:24 #34339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:24 #34340 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:24 #34341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:24 #34342 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:24 #34343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:24 #34344 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:24 #34345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:24 #34346 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:24 #34347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:24 #34348 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:24 #34349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:24 #34350 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:24 #34351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:24 #34352 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:24 #34353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:24 #34354 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:24 #34355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:24 #34356 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:24 #34357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:24 #34358 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:24 #34359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:24 #34360 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:24 #34361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:24 #34362 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:24 #34363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:24 #34364 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:24 #34365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:24 #34366 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:24 #34367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:09:24 #34368 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:24 #34369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:24 #34370 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:24 #34371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:24 #34372 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:24 #34373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:09:24 #34374 [Debug] > │ x2="321" y2="75"/>                                                           │

02:09:24 #34375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:24 #34376 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:24 #34377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:24 #34378 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:24 #34379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:09:24 #34380 [Debug] > │ x2="344" y2="75"/>                                                           │

02:09:24 #34381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:24 #34382 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:24 #34383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:24 #34384 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:24 #34385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:24 #34386 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:24 #34387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:24 #34388 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:24 #34389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="382" y1="424"        │

02:09:24 #34390 [Debug] > │ x2="382" y2="75"/>                                                           │

02:09:24 #34391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:24 #34392 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:24 #34393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="398" y1="424"        │

02:09:24 #34394 [Debug] > │ x2="398" y2="75"/>                                                           │

02:09:24 #34395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:09:24 #34396 [Debug] > │ x2="405" y2="75"/>                                                           │

02:09:24 #34397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:24 #34398 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:24 #34399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="421" y1="424"        │

02:09:24 #34400 [Debug] > │ x2="421" y2="75"/>                                                           │

02:09:24 #34401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:24 #34402 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:24 #34403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="436" y1="424"        │

02:09:24 #34404 [Debug] > │ x2="436" y2="75"/>                                                           │

02:09:24 #34405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="443" y1="424"        │

02:09:24 #34406 [Debug] > │ x2="443" y2="75"/>                                                           │

02:09:24 #34407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:24 #34408 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:24 #34409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:24 #34410 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:24 #34411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="466" y1="424"        │

02:09:24 #34412 [Debug] > │ x2="466" y2="75"/>                                                           │

02:09:24 #34413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="474" y1="424"        │

02:09:24 #34414 [Debug] > │ x2="474" y2="75"/>                                                           │

02:09:24 #34415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="482" y1="424"        │

02:09:24 #34416 [Debug] > │ x2="482" y2="75"/>                                                           │

02:09:24 #34417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:24 #34418 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:24 #34419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:09:24 #34420 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:24 #34421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="504" y1="424"        │

02:09:24 #34422 [Debug] > │ x2="504" y2="75"/>                                                           │

02:09:24 #34423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:24 #34424 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:24 #34425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="520" y1="424"        │

02:09:24 #34426 [Debug] > │ x2="520" y2="75"/>                                                           │

02:09:24 #34427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:09:24 #34428 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:24 #34429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:09:24 #34430 [Debug] > │ x2="535" y2="75"/>                                                           │

02:09:24 #34431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="543" y1="424"        │

02:09:24 #34432 [Debug] > │ x2="543" y2="75"/>                                                           │

02:09:24 #34433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="550" y1="424"        │

02:09:24 #34434 [Debug] > │ x2="550" y2="75"/>                                                           │

02:09:24 #34435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="558" y1="424"        │

02:09:24 #34436 [Debug] > │ x2="558" y2="75"/>                                                           │

02:09:24 #34437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="565" y1="424"        │

02:09:24 #34438 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:24 #34439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="573" y1="424"        │

02:09:24 #34440 [Debug] > │ x2="573" y2="75"/>                                                           │

02:09:24 #34441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:24 #34442 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:24 #34443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:24 #34444 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:24 #34445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:24 #34446 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:24 #34447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:24 #34448 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:24 #34449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:24 #34450 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:24 #34451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:24 #34452 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:24 #34453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:24 #34454 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:24 #34455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:24 #34456 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:24 #34457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:24 #34458 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:24 #34459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:24 #34460 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:24 #34461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:24 #34462 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #34463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:24 #34464 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:24 #34465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:24 #34466 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:24 #34467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:24 #34468 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:24 #34469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:24 #34470 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:24 #34471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:09:24 #34472 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:24 #34473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:24 #34474 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:24 #34475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:24 #34476 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:24 #34477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:09:24 #34478 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:24 #34479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="100"         │

02:09:24 #34480 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:24 #34481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:24 #34482 [Debug] > │ y2="84"/>                                                                    │

02:09:24 #34483 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:24 #34484 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34485 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34486 [Debug] > │ position (m)                                                                 │

02:09:24 #34487 [Debug] > │ </text>                                                                      │

02:09:24 #34488 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:24 #34489 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34490 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:24 #34491 [Debug] > │ displacement (m)                                                             │

02:09:24 #34492 [Debug] > │ </text>                                                                      │

02:09:24 #34493 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:24 #34494 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34495 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34496 [Debug] > │ position (m)                                                                 │

02:09:24 #34497 [Debug] > │ </text>                                                                      │

02:09:24 #34498 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34499 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34500 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:24 #34501 [Debug] > │ displacement (m)                                                             │

02:09:24 #34502 [Debug] > │ </text>                                                                      │

02:09:24 #34503 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #34504 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34505 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:24 #34506 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:24 #34507 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:24 #34508 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:24 #34509 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:24 #34510 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:24 #34511 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:24 #34512 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:24 #34513 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:24 #34514 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:24 #34515 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="298" y1="424"        │

02:09:24 #34516 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:24 #34517 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:24 #34518 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:24 #34519 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:24 #34520 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:24 #34521 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:24 #34522 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:24 #34523 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:24 #34524 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:24 #34525 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="489" y1="424"        │

02:09:24 #34526 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:24 #34527 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:09:24 #34528 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:24 #34529 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="565" y1="424"        │

02:09:24 #34530 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:24 #34531 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="383"         │

02:09:24 #34532 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:24 #34533 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:24 #34534 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:24 #34535 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:24 #34536 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #34537 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:24 #34538 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:24 #34539 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="117"         │

02:09:24 #34540 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:24 #34541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34542 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:24 #34543 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:24 #34544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34545 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34546 [Debug] > │ 0.0                                                                          │

02:09:24 #34547 [Debug] > │ </text>                                                                      │

02:09:24 #34548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34549 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:24 #34550 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34551 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34552 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34553 [Debug] > │ 0.1                                                                          │

02:09:24 #34554 [Debug] > │ </text>                                                                      │

02:09:24 #34555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34556 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:24 #34557 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34559 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34560 [Debug] > │ 0.1                                                                          │

02:09:24 #34561 [Debug] > │ </text>                                                                      │

02:09:24 #34562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34563 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:24 #34564 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34565 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34566 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34567 [Debug] > │ 0.2                                                                          │

02:09:24 #34568 [Debug] > │ </text>                                                                      │

02:09:24 #34569 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34570 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:24 #34571 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34572 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34573 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34574 [Debug] > │ 0.2                                                                          │

02:09:24 #34575 [Debug] > │ </text>                                                                      │

02:09:24 #34576 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34577 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:24 #34578 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34579 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34580 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34581 [Debug] > │ 0.2                                                                          │

02:09:24 #34582 [Debug] > │ </text>                                                                      │

02:09:24 #34583 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34584 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:24 #34585 [Debug] > │ <text x="298" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34586 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34587 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34588 [Debug] > │ 0.3                                                                          │

02:09:24 #34589 [Debug] > │ </text>                                                                      │

02:09:24 #34590 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34591 [Debug] > │ points="298,69 298,74 "/>                                                    │

02:09:24 #34592 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34593 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34594 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34595 [Debug] > │ 0.3                                                                          │

02:09:24 #34596 [Debug] > │ </text>                                                                      │

02:09:24 #34597 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34598 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:24 #34599 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34601 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34602 [Debug] > │ 0.4                                                                          │

02:09:24 #34603 [Debug] > │ </text>                                                                      │

02:09:24 #34604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34605 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:24 #34606 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34607 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34608 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34609 [Debug] > │ 0.4                                                                          │

02:09:24 #34610 [Debug] > │ </text>                                                                      │

02:09:24 #34611 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34612 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:24 #34613 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34614 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34615 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34616 [Debug] > │ 0.5                                                                          │

02:09:24 #34617 [Debug] > │ </text>                                                                      │

02:09:24 #34618 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34619 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:24 #34620 [Debug] > │ <text x="489" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34621 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34622 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34623 [Debug] > │ 0.5                                                                          │

02:09:24 #34624 [Debug] > │ </text>                                                                      │

02:09:24 #34625 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34626 [Debug] > │ points="489,69 489,74 "/>                                                    │

02:09:24 #34627 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34628 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34629 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34630 [Debug] > │ 0.6                                                                          │

02:09:24 #34631 [Debug] > │ </text>                                                                      │

02:09:24 #34632 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34633 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:09:24 #34634 [Debug] > │ <text x="565" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #34635 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34636 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34637 [Debug] > │ 0.7                                                                          │

02:09:24 #34638 [Debug] > │ </text>                                                                      │

02:09:24 #34639 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34640 [Debug] > │ points="565,69 565,74 "/>                                                    │

02:09:24 #34641 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34642 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:24 #34643 [Debug] > │ <text x="45" y="383" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34644 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34645 [Debug] > │ -0.0                                                                         │

02:09:24 #34646 [Debug] > │ </text>                                                                      │

02:09:24 #34647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34648 [Debug] > │ points="49,383 54,383 "/>                                                    │

02:09:24 #34649 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34650 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34651 [Debug] > │ -0.0                                                                         │

02:09:24 #34652 [Debug] > │ </text>                                                                      │

02:09:24 #34653 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34654 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:24 #34655 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34656 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34657 [Debug] > │ 0.0                                                                          │

02:09:24 #34658 [Debug] > │ </text>                                                                      │

02:09:24 #34659 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34660 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:24 #34661 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34662 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34663 [Debug] > │ 0.0                                                                          │

02:09:24 #34664 [Debug] > │ </text>                                                                      │

02:09:24 #34665 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34666 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:24 #34667 [Debug] > │ <text x="45" y="117" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #34668 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34669 [Debug] > │ 0.0                                                                          │

02:09:24 #34670 [Debug] > │ </text>                                                                      │

02:09:24 #34671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34672 [Debug] > │ points="49,117 54,117 "/>                                                    │

02:09:24 #34673 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34674 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:24 #34675 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:24 #34676 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34677 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34678 [Debug] > │ 0.0                                                                          │

02:09:24 #34679 [Debug] > │ </text>                                                                      │

02:09:24 #34680 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34681 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:24 #34682 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34683 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34684 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34685 [Debug] > │ 0.1                                                                          │

02:09:24 #34686 [Debug] > │ </text>                                                                      │

02:09:24 #34687 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34688 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:24 #34689 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34690 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34691 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34692 [Debug] > │ 0.1                                                                          │

02:09:24 #34693 [Debug] > │ </text>                                                                      │

02:09:24 #34694 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34695 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:24 #34696 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34697 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34698 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34699 [Debug] > │ 0.2                                                                          │

02:09:24 #34700 [Debug] > │ </text>                                                                      │

02:09:24 #34701 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34702 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:24 #34703 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34704 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34705 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34706 [Debug] > │ 0.2                                                                          │

02:09:24 #34707 [Debug] > │ </text>                                                                      │

02:09:24 #34708 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34709 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:24 #34710 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34711 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34712 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34713 [Debug] > │ 0.2                                                                          │

02:09:24 #34714 [Debug] > │ </text>                                                                      │

02:09:24 #34715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34716 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:24 #34717 [Debug] > │ <text x="298" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34718 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34719 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34720 [Debug] > │ 0.3                                                                          │

02:09:24 #34721 [Debug] > │ </text>                                                                      │

02:09:24 #34722 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34723 [Debug] > │ points="298,425 298,430 "/>                                                  │

02:09:24 #34724 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34725 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34726 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34727 [Debug] > │ 0.3                                                                          │

02:09:24 #34728 [Debug] > │ </text>                                                                      │

02:09:24 #34729 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34730 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:24 #34731 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34732 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34733 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34734 [Debug] > │ 0.4                                                                          │

02:09:24 #34735 [Debug] > │ </text>                                                                      │

02:09:24 #34736 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34737 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:24 #34738 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34739 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34740 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34741 [Debug] > │ 0.4                                                                          │

02:09:24 #34742 [Debug] > │ </text>                                                                      │

02:09:24 #34743 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34744 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:24 #34745 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34746 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34747 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34748 [Debug] > │ 0.5                                                                          │

02:09:24 #34749 [Debug] > │ </text>                                                                      │

02:09:24 #34750 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34751 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:24 #34752 [Debug] > │ <text x="489" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34753 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34754 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34755 [Debug] > │ 0.5                                                                          │

02:09:24 #34756 [Debug] > │ </text>                                                                      │

02:09:24 #34757 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34758 [Debug] > │ points="489,425 489,430 "/>                                                  │

02:09:24 #34759 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34760 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34761 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34762 [Debug] > │ 0.6                                                                          │

02:09:24 #34763 [Debug] > │ </text>                                                                      │

02:09:24 #34764 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34765 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:09:24 #34766 [Debug] > │ <text x="565" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #34767 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34768 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34769 [Debug] > │ 0.7                                                                          │

02:09:24 #34770 [Debug] > │ </text>                                                                      │

02:09:24 #34771 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34772 [Debug] > │ points="565,425 565,430 "/>                                                  │

02:09:24 #34773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34774 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:24 #34775 [Debug] > │ <text x="595" y="383" dy="0.5ex" text-anchor="start"                         │

02:09:24 #34776 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34777 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34778 [Debug] > │ -0.0                                                                         │

02:09:24 #34779 [Debug] > │ </text>                                                                      │

02:09:24 #34780 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34781 [Debug] > │ points="585,383 590,383 "/>                                                  │

02:09:24 #34782 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:24 #34783 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34784 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34785 [Debug] > │ -0.0                                                                         │

02:09:24 #34786 [Debug] > │ </text>                                                                      │

02:09:24 #34787 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34788 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:24 #34789 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #34790 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34791 [Debug] > │ 0.0                                                                          │

02:09:24 #34792 [Debug] > │ </text>                                                                      │

02:09:24 #34793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34794 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:24 #34795 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #34796 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34797 [Debug] > │ 0.0                                                                          │

02:09:24 #34798 [Debug] > │ </text>                                                                      │

02:09:24 #34799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34800 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:24 #34801 [Debug] > │ <text x="617" y="117" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #34802 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #34803 [Debug] > │ 0.0                                                                          │

02:09:24 #34804 [Debug] > │ </text>                                                                      │

02:09:24 #34805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #34806 [Debug] > │ points="585,117 590,117 "/>                                                  │

02:09:24 #34807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #34808 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 108,359 115,376 123,390 131,401  │

02:09:24 #34809 [Debug] > │ 138,409 146,413 153,415 161,412 169,407 176,398 184,385 192,371 199,353      │

02:09:24 #34810 [Debug] > │ 207,333 214,312 222,289 230,266 237,242 245,218 253,195 260,173 268,153      │

02:09:24 #34811 [Debug] > │ 276,135 283,119 291,106 298,96 306,89 314,85 321,85 329,89 337,96 344,106    │

02:09:24 #34812 [Debug] > │ 352,119 359,134 367,152 373,169 378,185 381,195 382,199 380,199 379,201      │

02:09:24 #34813 [Debug] > │ 379,209 380,219 380,227 379,234 380,244 380,254 379,261 380,271 380,279      │

02:09:24 #34814 [Debug] > │ 380,286 380,294 380,300 380,305 380,309 380,311 380,312 543,180 550,202      │

02:09:24 #34815 [Debug] > │ 569,259 565,250 "/>                                                          │

02:09:24 #34816 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:24 #34817 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:24 #34818 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:24 #34819 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34820 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34821 [Debug] > │ 33                                                                           │

02:09:24 #34822 [Debug] > │ </text>                                                                      │

02:09:24 #34823 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #34824 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:24 #34825 [Debug] > │ </svg>                                                                       │

02:09:24 #34826 [Debug] > │ </td></tr><tr><td>34</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:24 #34827 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:24 #34828 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:24 #34829 [Debug] > │ stroke="none"/>                                                              │

02:09:24 #34830 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:24 #34831 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #34832 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #34833 [Debug] > │ wave                                                                         │

02:09:24 #34834 [Debug] > │ </text>                                                                      │

02:09:24 #34835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:24 #34836 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #34838 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34839 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:24 #34840 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34841 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:24 #34842 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34843 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:24 #34844 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #34845 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:24 #34846 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:24 #34847 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:24 #34848 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:24 #34849 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:24 #34850 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:24 #34851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:24 #34852 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:24 #34853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:24 #34854 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:24 #34855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:24 #34856 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:24 #34857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:24 #34858 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:24 #34859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:24 #34860 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:24 #34861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:24 #34862 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:24 #34863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:24 #34864 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:24 #34865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:24 #34866 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:24 #34867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:24 #34868 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:24 #34869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:24 #34870 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:24 #34871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:24 #34872 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:24 #34873 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:24 #34874 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:24 #34875 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:24 #34876 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:24 #34877 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:24 #34878 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:24 #34879 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:24 #34880 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:24 #34881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:24 #34882 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:24 #34883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:24 #34884 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:24 #34885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:24 #34886 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:24 #34887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:24 #34888 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:24 #34889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:24 #34890 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:24 #34891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:24 #34892 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:24 #34893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:24 #34894 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:24 #34895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:24 #34896 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:24 #34897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:24 #34898 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:24 #34899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:24 #34900 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:24 #34901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:24 #34902 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:24 #34903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:24 #34904 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:24 #34905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:24 #34906 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:24 #34907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:24 #34908 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:24 #34909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:24 #34910 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:24 #34911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:24 #34912 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:24 #34913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:24 #34914 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:24 #34915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:24 #34916 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:24 #34917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:24 #34918 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:24 #34919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:24 #34920 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:24 #34921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:24 #34922 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:24 #34923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:24 #34924 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:24 #34925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:24 #34926 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:24 #34927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:24 #34928 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:24 #34929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:24 #34930 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:24 #34931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:24 #34932 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:24 #34933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:24 #34934 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:24 #34935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:24 #34936 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:24 #34937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:24 #34938 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:24 #34939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:24 #34940 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:24 #34941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:24 #34942 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:24 #34943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:24 #34944 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:24 #34945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:24 #34946 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:24 #34947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:24 #34948 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:24 #34949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:24 #34950 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:24 #34951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:24 #34952 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:24 #34953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:24 #34954 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:24 #34955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:24 #34956 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:24 #34957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:24 #34958 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:24 #34959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:24 #34960 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:24 #34961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:24 #34962 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:24 #34963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:24 #34964 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:24 #34965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:24 #34966 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:24 #34967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:24 #34968 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:24 #34969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:24 #34970 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:24 #34971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:24 #34972 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:24 #34973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:09:24 #34974 [Debug] > │ x2="584" y2="398"/>                                                          │

02:09:24 #34975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:24 #34976 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:24 #34977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:09:24 #34978 [Debug] > │ x2="584" y2="365"/>                                                          │

02:09:24 #34979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:24 #34980 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:24 #34981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:09:24 #34982 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:24 #34983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:24 #34984 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:24 #34985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:24 #34986 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:24 #34987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:24 #34988 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:24 #34989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:24 #34990 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:24 #34991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:24 #34992 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #34993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:24 #34994 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:24 #34995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:24 #34996 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:24 #34997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:24 #34998 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:24 #34999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:24 #35000 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:24 #35001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:09:24 #35002 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:24 #35003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:24 #35004 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:24 #35005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:24 #35006 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:24 #35007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:24 #35008 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:24 #35009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:24 #35010 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:24 #35011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:24 #35012 [Debug] > │ y2="85"/>                                                                    │

02:09:24 #35013 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:24 #35014 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35015 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35016 [Debug] > │ position (m)                                                                 │

02:09:24 #35017 [Debug] > │ </text>                                                                      │

02:09:24 #35018 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:24 #35019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35020 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:24 #35021 [Debug] > │ displacement (m)                                                             │

02:09:24 #35022 [Debug] > │ </text>                                                                      │

02:09:24 #35023 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:24 #35024 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35025 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35026 [Debug] > │ position (m)                                                                 │

02:09:24 #35027 [Debug] > │ </text>                                                                      │

02:09:24 #35028 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35029 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35030 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:24 #35031 [Debug] > │ displacement (m)                                                             │

02:09:24 #35032 [Debug] > │ </text>                                                                      │

02:09:24 #35033 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #35034 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35035 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:24 #35036 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:24 #35037 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:24 #35038 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:24 #35039 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:24 #35040 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:24 #35041 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:24 #35042 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:24 #35043 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:24 #35044 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:24 #35045 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:24 #35046 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:24 #35047 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:24 #35048 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:24 #35049 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:24 #35050 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:24 #35051 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:24 #35052 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:24 #35053 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:24 #35054 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:24 #35055 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:24 #35056 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:24 #35057 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:24 #35058 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:24 #35059 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:24 #35060 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:24 #35061 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="382"         │

02:09:24 #35062 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:24 #35063 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:24 #35064 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:24 #35065 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:24 #35066 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #35067 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:24 #35068 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:24 #35069 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:24 #35070 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:24 #35071 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35072 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:24 #35073 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:24 #35074 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35075 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35076 [Debug] > │ 0.0                                                                          │

02:09:24 #35077 [Debug] > │ </text>                                                                      │

02:09:24 #35078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35079 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:24 #35080 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35081 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35082 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35083 [Debug] > │ 0.1                                                                          │

02:09:24 #35084 [Debug] > │ </text>                                                                      │

02:09:24 #35085 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35086 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:24 #35087 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35088 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35089 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35090 [Debug] > │ 0.1                                                                          │

02:09:24 #35091 [Debug] > │ </text>                                                                      │

02:09:24 #35092 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35093 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:24 #35094 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35095 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35096 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35097 [Debug] > │ 0.2                                                                          │

02:09:24 #35098 [Debug] > │ </text>                                                                      │

02:09:24 #35099 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35100 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:24 #35101 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35102 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35103 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35104 [Debug] > │ 0.2                                                                          │

02:09:24 #35105 [Debug] > │ </text>                                                                      │

02:09:24 #35106 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35107 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:24 #35108 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35109 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35110 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35111 [Debug] > │ 0.2                                                                          │

02:09:24 #35112 [Debug] > │ </text>                                                                      │

02:09:24 #35113 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35114 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:24 #35115 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35116 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35117 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35118 [Debug] > │ 0.3                                                                          │

02:09:24 #35119 [Debug] > │ </text>                                                                      │

02:09:24 #35120 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35121 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:24 #35122 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35123 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35124 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35125 [Debug] > │ 0.3                                                                          │

02:09:24 #35126 [Debug] > │ </text>                                                                      │

02:09:24 #35127 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35128 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:24 #35129 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35130 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35131 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35132 [Debug] > │ 0.4                                                                          │

02:09:24 #35133 [Debug] > │ </text>                                                                      │

02:09:24 #35134 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35135 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:24 #35136 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35137 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35138 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35139 [Debug] > │ 0.4                                                                          │

02:09:24 #35140 [Debug] > │ </text>                                                                      │

02:09:24 #35141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35142 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:24 #35143 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35144 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35145 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35146 [Debug] > │ 0.5                                                                          │

02:09:24 #35147 [Debug] > │ </text>                                                                      │

02:09:24 #35148 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35149 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:24 #35150 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35151 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35152 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35153 [Debug] > │ 0.5                                                                          │

02:09:24 #35154 [Debug] > │ </text>                                                                      │

02:09:24 #35155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35156 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:24 #35157 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35158 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35159 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35160 [Debug] > │ 0.6                                                                          │

02:09:24 #35161 [Debug] > │ </text>                                                                      │

02:09:24 #35162 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35163 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:24 #35164 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35165 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35166 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35167 [Debug] > │ 0.7                                                                          │

02:09:24 #35168 [Debug] > │ </text>                                                                      │

02:09:24 #35169 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35170 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:24 #35171 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35172 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:24 #35173 [Debug] > │ <text x="45" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35174 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35175 [Debug] > │ -0.0                                                                         │

02:09:24 #35176 [Debug] > │ </text>                                                                      │

02:09:24 #35177 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35178 [Debug] > │ points="49,382 54,382 "/>                                                    │

02:09:24 #35179 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35180 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35181 [Debug] > │ -0.0                                                                         │

02:09:24 #35182 [Debug] > │ </text>                                                                      │

02:09:24 #35183 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35184 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:24 #35185 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35186 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35187 [Debug] > │ 0.0                                                                          │

02:09:24 #35188 [Debug] > │ </text>                                                                      │

02:09:24 #35189 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35190 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:24 #35191 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35192 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35193 [Debug] > │ 0.0                                                                          │

02:09:24 #35194 [Debug] > │ </text>                                                                      │

02:09:24 #35195 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35196 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:24 #35197 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35198 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35199 [Debug] > │ 0.0                                                                          │

02:09:24 #35200 [Debug] > │ </text>                                                                      │

02:09:24 #35201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35202 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:24 #35203 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35204 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:24 #35205 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:24 #35206 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35207 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35208 [Debug] > │ 0.0                                                                          │

02:09:24 #35209 [Debug] > │ </text>                                                                      │

02:09:24 #35210 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35211 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:24 #35212 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35213 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35214 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35215 [Debug] > │ 0.1                                                                          │

02:09:24 #35216 [Debug] > │ </text>                                                                      │

02:09:24 #35217 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35218 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:24 #35219 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35220 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35221 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35222 [Debug] > │ 0.1                                                                          │

02:09:24 #35223 [Debug] > │ </text>                                                                      │

02:09:24 #35224 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35225 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:24 #35226 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35227 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35228 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35229 [Debug] > │ 0.2                                                                          │

02:09:24 #35230 [Debug] > │ </text>                                                                      │

02:09:24 #35231 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35232 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:24 #35233 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35234 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35235 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35236 [Debug] > │ 0.2                                                                          │

02:09:24 #35237 [Debug] > │ </text>                                                                      │

02:09:24 #35238 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35239 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:24 #35240 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35241 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35242 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35243 [Debug] > │ 0.2                                                                          │

02:09:24 #35244 [Debug] > │ </text>                                                                      │

02:09:24 #35245 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35246 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:24 #35247 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35248 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35249 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35250 [Debug] > │ 0.3                                                                          │

02:09:24 #35251 [Debug] > │ </text>                                                                      │

02:09:24 #35252 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35253 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:24 #35254 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35255 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35256 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35257 [Debug] > │ 0.3                                                                          │

02:09:24 #35258 [Debug] > │ </text>                                                                      │

02:09:24 #35259 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35260 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:24 #35261 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35262 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35263 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35264 [Debug] > │ 0.4                                                                          │

02:09:24 #35265 [Debug] > │ </text>                                                                      │

02:09:24 #35266 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35267 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:24 #35268 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35269 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35270 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35271 [Debug] > │ 0.4                                                                          │

02:09:24 #35272 [Debug] > │ </text>                                                                      │

02:09:24 #35273 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35274 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:24 #35275 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35277 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35278 [Debug] > │ 0.5                                                                          │

02:09:24 #35279 [Debug] > │ </text>                                                                      │

02:09:24 #35280 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35281 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:24 #35282 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35283 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35284 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35285 [Debug] > │ 0.5                                                                          │

02:09:24 #35286 [Debug] > │ </text>                                                                      │

02:09:24 #35287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35288 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:24 #35289 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35290 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35291 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35292 [Debug] > │ 0.6                                                                          │

02:09:24 #35293 [Debug] > │ </text>                                                                      │

02:09:24 #35294 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35295 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:24 #35296 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35297 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35298 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35299 [Debug] > │ 0.7                                                                          │

02:09:24 #35300 [Debug] > │ </text>                                                                      │

02:09:24 #35301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35302 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:24 #35303 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35304 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:24 #35305 [Debug] > │ <text x="595" y="382" dy="0.5ex" text-anchor="start"                         │

02:09:24 #35306 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35307 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35308 [Debug] > │ -0.0                                                                         │

02:09:24 #35309 [Debug] > │ </text>                                                                      │

02:09:24 #35310 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35311 [Debug] > │ points="585,382 590,382 "/>                                                  │

02:09:24 #35312 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:24 #35313 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35314 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35315 [Debug] > │ -0.0                                                                         │

02:09:24 #35316 [Debug] > │ </text>                                                                      │

02:09:24 #35317 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35318 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:24 #35319 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #35320 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35321 [Debug] > │ 0.0                                                                          │

02:09:24 #35322 [Debug] > │ </text>                                                                      │

02:09:24 #35323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35324 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:24 #35325 [Debug] > │ <text x="617" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #35326 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35327 [Debug] > │ 0.0                                                                          │

02:09:24 #35328 [Debug] > │ </text>                                                                      │

02:09:24 #35329 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35330 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:24 #35331 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:24 #35332 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35333 [Debug] > │ 0.0                                                                          │

02:09:24 #35334 [Debug] > │ </text>                                                                      │

02:09:24 #35335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35336 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:24 #35337 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #35338 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 107,359 115,376 123,390 130,401  │

02:09:24 #35339 [Debug] > │ 138,409 145,413 153,415 160,412 168,407 176,398 183,385 191,371 198,353      │

02:09:24 #35340 [Debug] > │ 206,333 213,312 221,289 229,266 236,242 244,218 251,195 259,173 267,153      │

02:09:24 #35341 [Debug] > │ 274,135 282,119 289,106 297,96 304,89 312,85 320,85 327,89 335,96 342,106    │

02:09:24 #35342 [Debug] > │ 350,119 357,134 364,150 370,166 374,178 375,184 374,185 372,186 372,192      │

02:09:24 #35343 [Debug] > │ 373,203 373,213 373,221 372,231 373,243 373,254 373,264 373,275 373,285      │

02:09:24 #35344 [Debug] > │ 373,294 373,303 373,310 373,316 373,321 373,324 373,326 539,180 547,203      │

02:09:24 #35345 [Debug] > │ 569,270 562,250 "/>                                                          │

02:09:24 #35346 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:24 #35347 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:24 #35348 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:24 #35349 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35350 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35351 [Debug] > │ 34                                                                           │

02:09:24 #35352 [Debug] > │ </text>                                                                      │

02:09:24 #35353 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:24 #35354 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:24 #35355 [Debug] > │ </svg>                                                                       │

02:09:24 #35356 [Debug] > │ </td></tr><tr><td>35</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:24 #35357 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:24 #35358 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:24 #35359 [Debug] > │ stroke="none"/>                                                              │

02:09:24 #35360 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:24 #35361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35362 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35363 [Debug] > │ wave                                                                         │

02:09:24 #35364 [Debug] > │ </text>                                                                      │

02:09:24 #35365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:24 #35366 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #35368 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:24 #35370 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:24 #35372 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:24 #35374 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:24 #35376 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:24 #35377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:24 #35378 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:24 #35379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:24 #35380 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:24 #35381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:24 #35382 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:24 #35383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:24 #35384 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:24 #35385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:24 #35386 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:24 #35387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:24 #35388 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:24 #35389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:24 #35390 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:24 #35391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:24 #35392 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:24 #35393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:24 #35394 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:24 #35395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:24 #35396 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:24 #35397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:24 #35398 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:24 #35399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="190" y1="424"        │

02:09:24 #35400 [Debug] > │ x2="190" y2="75"/>                                                           │

02:09:24 #35401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:24 #35402 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:24 #35403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:24 #35404 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:24 #35405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:24 #35406 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:24 #35407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:24 #35408 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:24 #35409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:24 #35410 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:24 #35411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:24 #35412 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:24 #35413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="243" y1="424"        │

02:09:24 #35414 [Debug] > │ x2="243" y2="75"/>                                                           │

02:09:24 #35415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:24 #35416 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:24 #35417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:24 #35418 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:24 #35419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:24 #35420 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:24 #35421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:24 #35422 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:24 #35423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:24 #35424 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:24 #35425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:24 #35426 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:24 #35427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:24 #35428 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:24 #35429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:24 #35430 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:24 #35431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:24 #35432 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:24 #35433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:24 #35434 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:24 #35435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:24 #35436 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:24 #35437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:24 #35438 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:24 #35439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:24 #35440 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:24 #35441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:24 #35442 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:24 #35443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:24 #35444 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:24 #35445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="364" y1="424"        │

02:09:24 #35446 [Debug] > │ x2="364" y2="75"/>                                                           │

02:09:24 #35447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:24 #35448 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:24 #35449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:24 #35450 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:24 #35451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:24 #35452 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:24 #35453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:24 #35454 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:24 #35455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:24 #35456 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:24 #35457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:24 #35458 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:24 #35459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="417" y1="424"        │

02:09:24 #35460 [Debug] > │ x2="417" y2="75"/>                                                           │

02:09:24 #35461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:24 #35462 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:24 #35463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:24 #35464 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:24 #35465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:24 #35466 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:24 #35467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:24 #35468 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:24 #35469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:24 #35470 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:24 #35471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:24 #35472 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:24 #35473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="470" y1="424"        │

02:09:24 #35474 [Debug] > │ x2="470" y2="75"/>                                                           │

02:09:24 #35475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:24 #35476 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:24 #35477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="485" y1="424"        │

02:09:24 #35478 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:24 #35479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:24 #35480 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:24 #35481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:24 #35482 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:24 #35483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:24 #35484 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:24 #35485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:24 #35486 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:24 #35487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:24 #35488 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:24 #35489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:24 #35490 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:24 #35491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:24 #35492 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:24 #35493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:24 #35494 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:24 #35495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:24 #35496 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:24 #35497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:24 #35498 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:24 #35499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:24 #35500 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:24 #35501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:24 #35502 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:24 #35503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:09:24 #35504 [Debug] > │ x2="584" y2="398"/>                                                          │

02:09:24 #35505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:24 #35506 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:24 #35507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:09:24 #35508 [Debug] > │ x2="584" y2="365"/>                                                          │

02:09:24 #35509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:24 #35510 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:24 #35511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:09:24 #35512 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:24 #35513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:24 #35514 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:24 #35515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:24 #35516 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:24 #35517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:24 #35518 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:24 #35519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:24 #35520 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:24 #35521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:24 #35522 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #35523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:24 #35524 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:24 #35525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:24 #35526 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:24 #35527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:24 #35528 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:24 #35529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:24 #35530 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:24 #35531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:09:24 #35532 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:24 #35533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:24 #35534 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:24 #35535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:24 #35536 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:24 #35537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:24 #35538 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:24 #35539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:24 #35540 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:24 #35541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:24 #35542 [Debug] > │ y2="85"/>                                                                    │

02:09:24 #35543 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:24 #35544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35545 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35546 [Debug] > │ position (m)                                                                 │

02:09:24 #35547 [Debug] > │ </text>                                                                      │

02:09:24 #35548 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:24 #35549 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35550 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:24 #35551 [Debug] > │ displacement (m)                                                             │

02:09:24 #35552 [Debug] > │ </text>                                                                      │

02:09:24 #35553 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:24 #35554 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35555 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35556 [Debug] > │ position (m)                                                                 │

02:09:24 #35557 [Debug] > │ </text>                                                                      │

02:09:24 #35558 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35559 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35560 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:24 #35561 [Debug] > │ displacement (m)                                                             │

02:09:24 #35562 [Debug] > │ </text>                                                                      │

02:09:24 #35563 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:24 #35564 [Debug] > │ y2="75"/>                                                                    │

02:09:24 #35565 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:24 #35566 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:24 #35567 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:24 #35568 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:24 #35569 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:24 #35570 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:24 #35571 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:24 #35572 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:24 #35573 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:24 #35574 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:24 #35575 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:24 #35576 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:24 #35577 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:24 #35578 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:24 #35579 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:24 #35580 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:24 #35581 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:24 #35582 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:24 #35583 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:24 #35584 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:24 #35585 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="485" y1="424"        │

02:09:24 #35586 [Debug] > │ x2="485" y2="75"/>                                                           │

02:09:24 #35587 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:24 #35588 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:24 #35589 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:24 #35590 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:24 #35591 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="382"         │

02:09:24 #35592 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:24 #35593 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:24 #35594 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:24 #35595 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:24 #35596 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:24 #35597 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:24 #35598 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:24 #35599 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:24 #35600 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:24 #35601 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35602 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:24 #35603 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:24 #35604 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35605 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35606 [Debug] > │ 0.0                                                                          │

02:09:24 #35607 [Debug] > │ </text>                                                                      │

02:09:24 #35608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35609 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:24 #35610 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35612 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35613 [Debug] > │ 0.1                                                                          │

02:09:24 #35614 [Debug] > │ </text>                                                                      │

02:09:24 #35615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35616 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:24 #35617 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35619 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35620 [Debug] > │ 0.1                                                                          │

02:09:24 #35621 [Debug] > │ </text>                                                                      │

02:09:24 #35622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35623 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:24 #35624 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35626 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35627 [Debug] > │ 0.2                                                                          │

02:09:24 #35628 [Debug] > │ </text>                                                                      │

02:09:24 #35629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35630 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:24 #35631 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35633 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35634 [Debug] > │ 0.2                                                                          │

02:09:24 #35635 [Debug] > │ </text>                                                                      │

02:09:24 #35636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35637 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:24 #35638 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35641 [Debug] > │ 0.2                                                                          │

02:09:24 #35642 [Debug] > │ </text>                                                                      │

02:09:24 #35643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35644 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:24 #35645 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35647 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35648 [Debug] > │ 0.3                                                                          │

02:09:24 #35649 [Debug] > │ </text>                                                                      │

02:09:24 #35650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35651 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:24 #35652 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35654 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35655 [Debug] > │ 0.3                                                                          │

02:09:24 #35656 [Debug] > │ </text>                                                                      │

02:09:24 #35657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35658 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:24 #35659 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35661 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35662 [Debug] > │ 0.4                                                                          │

02:09:24 #35663 [Debug] > │ </text>                                                                      │

02:09:24 #35664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35665 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:24 #35666 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35668 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35669 [Debug] > │ 0.4                                                                          │

02:09:24 #35670 [Debug] > │ </text>                                                                      │

02:09:24 #35671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35672 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:24 #35673 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35675 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35676 [Debug] > │ 0.5                                                                          │

02:09:24 #35677 [Debug] > │ </text>                                                                      │

02:09:24 #35678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35679 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:24 #35680 [Debug] > │ <text x="485" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35682 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35683 [Debug] > │ 0.5                                                                          │

02:09:24 #35684 [Debug] > │ </text>                                                                      │

02:09:24 #35685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35686 [Debug] > │ points="485,69 485,74 "/>                                                    │

02:09:24 #35687 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35688 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35689 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35690 [Debug] > │ 0.6                                                                          │

02:09:24 #35691 [Debug] > │ </text>                                                                      │

02:09:24 #35692 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35693 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:24 #35694 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:24 #35695 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35696 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35697 [Debug] > │ 0.7                                                                          │

02:09:24 #35698 [Debug] > │ </text>                                                                      │

02:09:24 #35699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35700 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:24 #35701 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35702 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:24 #35703 [Debug] > │ <text x="45" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35704 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35705 [Debug] > │ -0.0                                                                         │

02:09:24 #35706 [Debug] > │ </text>                                                                      │

02:09:24 #35707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35708 [Debug] > │ points="49,382 54,382 "/>                                                    │

02:09:24 #35709 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35710 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35711 [Debug] > │ -0.0                                                                         │

02:09:24 #35712 [Debug] > │ </text>                                                                      │

02:09:24 #35713 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35714 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:24 #35715 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35716 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35717 [Debug] > │ 0.0                                                                          │

02:09:24 #35718 [Debug] > │ </text>                                                                      │

02:09:24 #35719 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35720 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:24 #35721 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35722 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35723 [Debug] > │ 0.0                                                                          │

02:09:24 #35724 [Debug] > │ </text>                                                                      │

02:09:24 #35725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35726 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:24 #35727 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:24 #35728 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:24 #35729 [Debug] > │ 0.0                                                                          │

02:09:24 #35730 [Debug] > │ </text>                                                                      │

02:09:24 #35731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35732 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:24 #35733 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35734 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:24 #35735 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:24 #35736 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:24 #35737 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:24 #35738 [Debug] > │ 0.0                                                                          │

02:09:24 #35739 [Debug] > │ </text>                                                                      │

02:09:24 #35740 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:24 #35741 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:24 #35742 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:24 #35743 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35744 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35745 [Debug] > │ 0.1                                                                          │

02:09:25 #35746 [Debug] > │ </text>                                                                      │

02:09:25 #35747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35748 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:25 #35749 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35750 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35751 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35752 [Debug] > │ 0.1                                                                          │

02:09:25 #35753 [Debug] > │ </text>                                                                      │

02:09:25 #35754 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35755 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:25 #35756 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35757 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35758 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35759 [Debug] > │ 0.2                                                                          │

02:09:25 #35760 [Debug] > │ </text>                                                                      │

02:09:25 #35761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35762 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:25 #35763 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35764 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35765 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35766 [Debug] > │ 0.2                                                                          │

02:09:25 #35767 [Debug] > │ </text>                                                                      │

02:09:25 #35768 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35769 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:25 #35770 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35771 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35772 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35773 [Debug] > │ 0.2                                                                          │

02:09:25 #35774 [Debug] > │ </text>                                                                      │

02:09:25 #35775 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35776 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:25 #35777 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35779 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35780 [Debug] > │ 0.3                                                                          │

02:09:25 #35781 [Debug] > │ </text>                                                                      │

02:09:25 #35782 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35783 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:25 #35784 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35785 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35786 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35787 [Debug] > │ 0.3                                                                          │

02:09:25 #35788 [Debug] > │ </text>                                                                      │

02:09:25 #35789 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35790 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:25 #35791 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35793 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35794 [Debug] > │ 0.4                                                                          │

02:09:25 #35795 [Debug] > │ </text>                                                                      │

02:09:25 #35796 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35797 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:25 #35798 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35799 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35800 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35801 [Debug] > │ 0.4                                                                          │

02:09:25 #35802 [Debug] > │ </text>                                                                      │

02:09:25 #35803 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35804 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:25 #35805 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35806 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35807 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35808 [Debug] > │ 0.5                                                                          │

02:09:25 #35809 [Debug] > │ </text>                                                                      │

02:09:25 #35810 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35811 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:25 #35812 [Debug] > │ <text x="485" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35813 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35814 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35815 [Debug] > │ 0.5                                                                          │

02:09:25 #35816 [Debug] > │ </text>                                                                      │

02:09:25 #35817 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35818 [Debug] > │ points="485,425 485,430 "/>                                                  │

02:09:25 #35819 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35820 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35821 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35822 [Debug] > │ 0.6                                                                          │

02:09:25 #35823 [Debug] > │ </text>                                                                      │

02:09:25 #35824 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35825 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:25 #35826 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #35827 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35828 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35829 [Debug] > │ 0.7                                                                          │

02:09:25 #35830 [Debug] > │ </text>                                                                      │

02:09:25 #35831 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35832 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:25 #35833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35834 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:25 #35835 [Debug] > │ <text x="595" y="382" dy="0.5ex" text-anchor="start"                         │

02:09:25 #35836 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35837 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35838 [Debug] > │ -0.0                                                                         │

02:09:25 #35839 [Debug] > │ </text>                                                                      │

02:09:25 #35840 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35841 [Debug] > │ points="585,382 590,382 "/>                                                  │

02:09:25 #35842 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:25 #35843 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35844 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35845 [Debug] > │ -0.0                                                                         │

02:09:25 #35846 [Debug] > │ </text>                                                                      │

02:09:25 #35847 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35848 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:25 #35849 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #35850 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #35851 [Debug] > │ 0.0                                                                          │

02:09:25 #35852 [Debug] > │ </text>                                                                      │

02:09:25 #35853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35854 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:25 #35855 [Debug] > │ <text x="617" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #35856 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #35857 [Debug] > │ 0.0                                                                          │

02:09:25 #35858 [Debug] > │ </text>                                                                      │

02:09:25 #35859 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35860 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:25 #35861 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #35862 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #35863 [Debug] > │ 0.0                                                                          │

02:09:25 #35864 [Debug] > │ </text>                                                                      │

02:09:25 #35865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #35866 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:25 #35867 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #35868 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 107,359 115,376 122,390 130,401  │

02:09:25 #35869 [Debug] > │ 138,409 145,413 153,415 160,412 168,407 175,398 183,385 190,371 198,353      │

02:09:25 #35870 [Debug] > │ 206,333 213,312 221,289 228,266 236,242 243,218 251,195 259,173 266,153      │

02:09:25 #35871 [Debug] > │ 274,135 281,119 289,106 296,96 304,89 312,85 319,85 327,89 334,96 342,106    │

02:09:25 #35872 [Debug] > │ 349,118 356,133 362,147 367,160 369,168 369,170 367,170 366,173 367,183      │

02:09:25 #35873 [Debug] > │ 368,196 368,205 367,215 367,228 368,242 367,254 367,267 367,280 367,291      │

02:09:25 #35874 [Debug] > │ 367,302 367,312 367,321 367,328 367,333 367,337 367,339 538,180 546,203      │

02:09:25 #35875 [Debug] > │ 569,273 561,250 "/>                                                          │

02:09:25 #35876 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:25 #35877 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:25 #35878 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:25 #35879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35880 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35881 [Debug] > │ 35                                                                           │

02:09:25 #35882 [Debug] > │ </text>                                                                      │

02:09:25 #35883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #35884 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:25 #35885 [Debug] > │ </svg>                                                                       │

02:09:25 #35886 [Debug] > │ </td></tr><tr><td>36</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:25 #35887 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:25 #35888 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:25 #35889 [Debug] > │ stroke="none"/>                                                              │

02:09:25 #35890 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:25 #35891 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #35892 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #35893 [Debug] > │ wave                                                                         │

02:09:25 #35894 [Debug] > │ </text>                                                                      │

02:09:25 #35895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:25 #35896 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #35897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #35898 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #35899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:25 #35900 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #35901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:25 #35902 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #35903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:25 #35904 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #35905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:25 #35906 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:25 #35907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:25 #35908 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:25 #35909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:25 #35910 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:25 #35911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:25 #35912 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:25 #35913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:25 #35914 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:25 #35915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:25 #35916 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:25 #35917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:25 #35918 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:25 #35919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:25 #35920 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:25 #35921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:25 #35922 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:25 #35923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:25 #35924 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:25 #35925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:25 #35926 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:25 #35927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:25 #35928 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:25 #35929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:25 #35930 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:25 #35931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:25 #35932 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:25 #35933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:25 #35934 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:25 #35935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:25 #35936 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:25 #35937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:25 #35938 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:25 #35939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:25 #35940 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:25 #35941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:25 #35942 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:25 #35943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:25 #35944 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:25 #35945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:25 #35946 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:25 #35947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:25 #35948 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:25 #35949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:25 #35950 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:25 #35951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:25 #35952 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:25 #35953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:25 #35954 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:25 #35955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:09:25 #35956 [Debug] > │ x2="290" y2="75"/>                                                           │

02:09:25 #35957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:25 #35958 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:25 #35959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:25 #35960 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:25 #35961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:25 #35962 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:25 #35963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:25 #35964 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:25 #35965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="328" y1="424"        │

02:09:25 #35966 [Debug] > │ x2="328" y2="75"/>                                                           │

02:09:25 #35967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:25 #35968 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:25 #35969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="343" y1="424"        │

02:09:25 #35970 [Debug] > │ x2="343" y2="75"/>                                                           │

02:09:25 #35971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:25 #35972 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:25 #35973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:25 #35974 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:25 #35975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="366" y1="424"        │

02:09:25 #35976 [Debug] > │ x2="366" y2="75"/>                                                           │

02:09:25 #35977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:25 #35978 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:25 #35979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:09:25 #35980 [Debug] > │ x2="381" y2="75"/>                                                           │

02:09:25 #35981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:25 #35982 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:25 #35983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:25 #35984 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:25 #35985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="404" y1="424"        │

02:09:25 #35986 [Debug] > │ x2="404" y2="75"/>                                                           │

02:09:25 #35987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:25 #35988 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:25 #35989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:25 #35990 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:25 #35991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:25 #35992 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:25 #35993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="434" y1="424"        │

02:09:25 #35994 [Debug] > │ x2="434" y2="75"/>                                                           │

02:09:25 #35995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="442" y1="424"        │

02:09:25 #35996 [Debug] > │ x2="442" y2="75"/>                                                           │

02:09:25 #35997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:25 #35998 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:25 #35999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="457" y1="424"        │

02:09:25 #36000 [Debug] > │ x2="457" y2="75"/>                                                           │

02:09:25 #36001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:25 #36002 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:25 #36003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="472" y1="424"        │

02:09:25 #36004 [Debug] > │ x2="472" y2="75"/>                                                           │

02:09:25 #36005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:25 #36006 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:25 #36007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:25 #36008 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:25 #36009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="495" y1="424"        │

02:09:25 #36010 [Debug] > │ x2="495" y2="75"/>                                                           │

02:09:25 #36011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:25 #36012 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:25 #36013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:09:25 #36014 [Debug] > │ x2="510" y2="75"/>                                                           │

02:09:25 #36015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:25 #36016 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:25 #36017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="525" y1="424"        │

02:09:25 #36018 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:25 #36019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="533" y1="424"        │

02:09:25 #36020 [Debug] > │ x2="533" y2="75"/>                                                           │

02:09:25 #36021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:25 #36022 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:25 #36023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="548" y1="424"        │

02:09:25 #36024 [Debug] > │ x2="548" y2="75"/>                                                           │

02:09:25 #36025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="555" y1="424"        │

02:09:25 #36026 [Debug] > │ x2="555" y2="75"/>                                                           │

02:09:25 #36027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="563" y1="424"        │

02:09:25 #36028 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:25 #36029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="571" y1="424"        │

02:09:25 #36030 [Debug] > │ x2="571" y2="75"/>                                                           │

02:09:25 #36031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="417"         │

02:09:25 #36032 [Debug] > │ x2="584" y2="417"/>                                                          │

02:09:25 #36033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="400"         │

02:09:25 #36034 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:25 #36035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:25 #36036 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:25 #36037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:09:25 #36038 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:25 #36039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:25 #36040 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:25 #36041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:25 #36042 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:25 #36043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="317"         │

02:09:25 #36044 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:25 #36045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:25 #36046 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:25 #36047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:25 #36048 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:25 #36049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:25 #36050 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:25 #36051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:25 #36052 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #36053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:25 #36054 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:25 #36055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:25 #36056 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:25 #36057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:25 #36058 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:25 #36059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:25 #36060 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:25 #36061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:25 #36062 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:25 #36063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:25 #36064 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:25 #36065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:25 #36066 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:25 #36067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:09:25 #36068 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:25 #36069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="100"         │

02:09:25 #36070 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:25 #36071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:25 #36072 [Debug] > │ y2="83"/>                                                                    │

02:09:25 #36073 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:25 #36074 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36075 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36076 [Debug] > │ position (m)                                                                 │

02:09:25 #36077 [Debug] > │ </text>                                                                      │

02:09:25 #36078 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:25 #36079 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36080 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:25 #36081 [Debug] > │ displacement (m)                                                             │

02:09:25 #36082 [Debug] > │ </text>                                                                      │

02:09:25 #36083 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:25 #36084 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36085 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36086 [Debug] > │ position (m)                                                                 │

02:09:25 #36087 [Debug] > │ </text>                                                                      │

02:09:25 #36088 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36089 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36090 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:25 #36091 [Debug] > │ displacement (m)                                                             │

02:09:25 #36092 [Debug] > │ </text>                                                                      │

02:09:25 #36093 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #36094 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36095 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:25 #36096 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:25 #36097 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:25 #36098 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:25 #36099 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:25 #36100 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:25 #36101 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:25 #36102 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:25 #36103 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:25 #36104 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:25 #36105 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:25 #36106 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:25 #36107 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:25 #36108 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:25 #36109 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:25 #36110 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:25 #36111 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:25 #36112 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:25 #36113 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:25 #36114 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:25 #36115 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:25 #36116 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:25 #36117 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="525" y1="424"        │

02:09:25 #36118 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:25 #36119 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="563" y1="424"        │

02:09:25 #36120 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:25 #36121 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="383"         │

02:09:25 #36122 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:25 #36123 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="317"         │

02:09:25 #36124 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:25 #36125 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:25 #36126 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #36127 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:25 #36128 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:25 #36129 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="116"         │

02:09:25 #36130 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:25 #36131 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36132 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:25 #36133 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:25 #36134 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36135 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36136 [Debug] > │ 0.0                                                                          │

02:09:25 #36137 [Debug] > │ </text>                                                                      │

02:09:25 #36138 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36139 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:25 #36140 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36141 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36142 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36143 [Debug] > │ 0.1                                                                          │

02:09:25 #36144 [Debug] > │ </text>                                                                      │

02:09:25 #36145 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36146 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:25 #36147 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36148 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36149 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36150 [Debug] > │ 0.1                                                                          │

02:09:25 #36151 [Debug] > │ </text>                                                                      │

02:09:25 #36152 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36153 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:25 #36154 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36155 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36156 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36157 [Debug] > │ 0.2                                                                          │

02:09:25 #36158 [Debug] > │ </text>                                                                      │

02:09:25 #36159 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36160 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:25 #36161 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36162 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36163 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36164 [Debug] > │ 0.2                                                                          │

02:09:25 #36165 [Debug] > │ </text>                                                                      │

02:09:25 #36166 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36167 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:25 #36168 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36169 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36170 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36171 [Debug] > │ 0.2                                                                          │

02:09:25 #36172 [Debug] > │ </text>                                                                      │

02:09:25 #36173 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36174 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:25 #36175 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36176 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36177 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36178 [Debug] > │ 0.3                                                                          │

02:09:25 #36179 [Debug] > │ </text>                                                                      │

02:09:25 #36180 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36181 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:25 #36182 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36183 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36184 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36185 [Debug] > │ 0.3                                                                          │

02:09:25 #36186 [Debug] > │ </text>                                                                      │

02:09:25 #36187 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36188 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:25 #36189 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36190 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36191 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36192 [Debug] > │ 0.4                                                                          │

02:09:25 #36193 [Debug] > │ </text>                                                                      │

02:09:25 #36194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36195 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:25 #36196 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36197 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36198 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36199 [Debug] > │ 0.4                                                                          │

02:09:25 #36200 [Debug] > │ </text>                                                                      │

02:09:25 #36201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36202 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:25 #36203 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36204 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36205 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36206 [Debug] > │ 0.5                                                                          │

02:09:25 #36207 [Debug] > │ </text>                                                                      │

02:09:25 #36208 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36209 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:25 #36210 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36211 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36212 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36213 [Debug] > │ 0.5                                                                          │

02:09:25 #36214 [Debug] > │ </text>                                                                      │

02:09:25 #36215 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36216 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:25 #36217 [Debug] > │ <text x="525" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36218 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36219 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36220 [Debug] > │ 0.6                                                                          │

02:09:25 #36221 [Debug] > │ </text>                                                                      │

02:09:25 #36222 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36223 [Debug] > │ points="525,69 525,74 "/>                                                    │

02:09:25 #36224 [Debug] > │ <text x="563" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36225 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36226 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36227 [Debug] > │ 0.7                                                                          │

02:09:25 #36228 [Debug] > │ </text>                                                                      │

02:09:25 #36229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36230 [Debug] > │ points="563,69 563,74 "/>                                                    │

02:09:25 #36231 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36232 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:25 #36233 [Debug] > │ <text x="45" y="383" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36234 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36235 [Debug] > │ -0.0                                                                         │

02:09:25 #36236 [Debug] > │ </text>                                                                      │

02:09:25 #36237 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36238 [Debug] > │ points="49,383 54,383 "/>                                                    │

02:09:25 #36239 [Debug] > │ <text x="45" y="317" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36240 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36241 [Debug] > │ -0.0                                                                         │

02:09:25 #36242 [Debug] > │ </text>                                                                      │

02:09:25 #36243 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36244 [Debug] > │ points="49,317 54,317 "/>                                                    │

02:09:25 #36245 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36246 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36247 [Debug] > │ 0.0                                                                          │

02:09:25 #36248 [Debug] > │ </text>                                                                      │

02:09:25 #36249 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36250 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:25 #36251 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36252 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36253 [Debug] > │ 0.0                                                                          │

02:09:25 #36254 [Debug] > │ </text>                                                                      │

02:09:25 #36255 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36256 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:25 #36257 [Debug] > │ <text x="45" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36258 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36259 [Debug] > │ 0.0                                                                          │

02:09:25 #36260 [Debug] > │ </text>                                                                      │

02:09:25 #36261 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36262 [Debug] > │ points="49,116 54,116 "/>                                                    │

02:09:25 #36263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36264 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:25 #36265 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:25 #36266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36267 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36268 [Debug] > │ 0.0                                                                          │

02:09:25 #36269 [Debug] > │ </text>                                                                      │

02:09:25 #36270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36271 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:25 #36272 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36274 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36275 [Debug] > │ 0.1                                                                          │

02:09:25 #36276 [Debug] > │ </text>                                                                      │

02:09:25 #36277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36278 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:25 #36279 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36280 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36281 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36282 [Debug] > │ 0.1                                                                          │

02:09:25 #36283 [Debug] > │ </text>                                                                      │

02:09:25 #36284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36285 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:25 #36286 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36287 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36288 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36289 [Debug] > │ 0.2                                                                          │

02:09:25 #36290 [Debug] > │ </text>                                                                      │

02:09:25 #36291 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36292 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:25 #36293 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36294 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36295 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36296 [Debug] > │ 0.2                                                                          │

02:09:25 #36297 [Debug] > │ </text>                                                                      │

02:09:25 #36298 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36299 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:25 #36300 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36301 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36302 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36303 [Debug] > │ 0.2                                                                          │

02:09:25 #36304 [Debug] > │ </text>                                                                      │

02:09:25 #36305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36306 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:25 #36307 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36308 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36309 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36310 [Debug] > │ 0.3                                                                          │

02:09:25 #36311 [Debug] > │ </text>                                                                      │

02:09:25 #36312 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36313 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:25 #36314 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36316 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36317 [Debug] > │ 0.3                                                                          │

02:09:25 #36318 [Debug] > │ </text>                                                                      │

02:09:25 #36319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36320 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:25 #36321 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36323 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36324 [Debug] > │ 0.4                                                                          │

02:09:25 #36325 [Debug] > │ </text>                                                                      │

02:09:25 #36326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36327 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:25 #36328 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36329 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36330 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36331 [Debug] > │ 0.4                                                                          │

02:09:25 #36332 [Debug] > │ </text>                                                                      │

02:09:25 #36333 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36334 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:25 #36335 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36336 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36337 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36338 [Debug] > │ 0.5                                                                          │

02:09:25 #36339 [Debug] > │ </text>                                                                      │

02:09:25 #36340 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36341 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:25 #36342 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36343 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36344 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36345 [Debug] > │ 0.5                                                                          │

02:09:25 #36346 [Debug] > │ </text>                                                                      │

02:09:25 #36347 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36348 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:25 #36349 [Debug] > │ <text x="525" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36350 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36351 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36352 [Debug] > │ 0.6                                                                          │

02:09:25 #36353 [Debug] > │ </text>                                                                      │

02:09:25 #36354 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36355 [Debug] > │ points="525,425 525,430 "/>                                                  │

02:09:25 #36356 [Debug] > │ <text x="563" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36357 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36358 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36359 [Debug] > │ 0.7                                                                          │

02:09:25 #36360 [Debug] > │ </text>                                                                      │

02:09:25 #36361 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36362 [Debug] > │ points="563,425 563,430 "/>                                                  │

02:09:25 #36363 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36364 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:25 #36365 [Debug] > │ <text x="595" y="383" dy="0.5ex" text-anchor="start"                         │

02:09:25 #36366 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36367 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36368 [Debug] > │ -0.0                                                                         │

02:09:25 #36369 [Debug] > │ </text>                                                                      │

02:09:25 #36370 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36371 [Debug] > │ points="585,383 590,383 "/>                                                  │

02:09:25 #36372 [Debug] > │ <text x="595" y="317" dy="0.5ex" text-anchor="start"                         │

02:09:25 #36373 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36374 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36375 [Debug] > │ -0.0                                                                         │

02:09:25 #36376 [Debug] > │ </text>                                                                      │

02:09:25 #36377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36378 [Debug] > │ points="585,317 590,317 "/>                                                  │

02:09:25 #36379 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #36380 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36381 [Debug] > │ 0.0                                                                          │

02:09:25 #36382 [Debug] > │ </text>                                                                      │

02:09:25 #36383 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36384 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:25 #36385 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #36386 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36387 [Debug] > │ 0.0                                                                          │

02:09:25 #36388 [Debug] > │ </text>                                                                      │

02:09:25 #36389 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36390 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:25 #36391 [Debug] > │ <text x="617" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #36392 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36393 [Debug] > │ 0.0                                                                          │

02:09:25 #36394 [Debug] > │ </text>                                                                      │

02:09:25 #36395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36396 [Debug] > │ points="585,116 590,116 "/>                                                  │

02:09:25 #36397 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #36398 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 107,359 115,376 123,390 130,401  │

02:09:25 #36399 [Debug] > │ 138,409 145,413 153,415 161,412 168,407 176,398 183,385 191,371 199,353      │

02:09:25 #36400 [Debug] > │ 206,333 214,312 221,289 229,266 237,242 244,218 252,195 259,173 267,153      │

02:09:25 #36401 [Debug] > │ 274,135 282,119 290,106 297,96 305,89 312,85 320,85 328,89 335,96 343,105    │

02:09:25 #36402 [Debug] > │ 350,117 357,131 362,143 365,152 366,155 364,154 363,155 363,163 364,176      │

02:09:25 #36403 [Debug] > │ 364,187 363,197 363,210 364,226 364,240 363,254 364,270 364,284 364,297      │

02:09:25 #36404 [Debug] > │ 364,310 364,321 364,331 364,339 364,346 364,350 364,352 540,179 548,202      │

02:09:25 #36405 [Debug] > │ 569,267 563,250 "/>                                                          │

02:09:25 #36406 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:25 #36407 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:25 #36408 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:25 #36409 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36410 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36411 [Debug] > │ 36                                                                           │

02:09:25 #36412 [Debug] > │ </text>                                                                      │

02:09:25 #36413 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #36414 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:25 #36415 [Debug] > │ </svg>                                                                       │

02:09:25 #36416 [Debug] > │ </td></tr><tr><td>37</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:25 #36417 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:25 #36418 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:25 #36419 [Debug] > │ stroke="none"/>                                                              │

02:09:25 #36420 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:25 #36421 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36422 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36423 [Debug] > │ wave                                                                         │

02:09:25 #36424 [Debug] > │ </text>                                                                      │

02:09:25 #36425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:25 #36426 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #36428 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:25 #36430 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:25 #36432 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:25 #36434 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:25 #36436 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:25 #36437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:25 #36438 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #36439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:25 #36440 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:25 #36441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:25 #36442 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:25 #36443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:25 #36444 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:25 #36445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:25 #36446 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:25 #36447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:25 #36448 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #36449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:25 #36450 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:25 #36451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:25 #36452 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:25 #36453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:25 #36454 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:25 #36455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:25 #36456 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:25 #36457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:25 #36458 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:25 #36459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:25 #36460 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:25 #36461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:25 #36462 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:25 #36463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:25 #36464 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:25 #36465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:25 #36466 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:25 #36467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:25 #36468 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #36469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:25 #36470 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:25 #36471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:25 #36472 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:25 #36473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:25 #36474 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:25 #36475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:25 #36476 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:25 #36477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:25 #36478 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #36479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:25 #36480 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:25 #36481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:25 #36482 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:25 #36483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:25 #36484 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:25 #36485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:25 #36486 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:25 #36487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:25 #36488 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:25 #36489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:25 #36490 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:25 #36491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:25 #36492 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:25 #36493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:25 #36494 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:25 #36495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="330" y1="424"        │

02:09:25 #36496 [Debug] > │ x2="330" y2="75"/>                                                           │

02:09:25 #36497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="337" y1="424"        │

02:09:25 #36498 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:25 #36499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:25 #36500 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:25 #36501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="353" y1="424"        │

02:09:25 #36502 [Debug] > │ x2="353" y2="75"/>                                                           │

02:09:25 #36503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:25 #36504 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:25 #36505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:25 #36506 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:25 #36507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="376" y1="424"        │

02:09:25 #36508 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:25 #36509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:25 #36510 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:25 #36511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="391" y1="424"        │

02:09:25 #36512 [Debug] > │ x2="391" y2="75"/>                                                           │

02:09:25 #36513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:09:25 #36514 [Debug] > │ x2="399" y2="75"/>                                                           │

02:09:25 #36515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:25 #36516 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:25 #36517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="414" y1="424"        │

02:09:25 #36518 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:25 #36519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="422" y1="424"        │

02:09:25 #36520 [Debug] > │ x2="422" y2="75"/>                                                           │

02:09:25 #36521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:25 #36522 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:25 #36523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="437" y1="424"        │

02:09:25 #36524 [Debug] > │ x2="437" y2="75"/>                                                           │

02:09:25 #36525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="445" y1="424"        │

02:09:25 #36526 [Debug] > │ x2="445" y2="75"/>                                                           │

02:09:25 #36527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:09:25 #36528 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:25 #36529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:09:25 #36530 [Debug] > │ x2="460" y2="75"/>                                                           │

02:09:25 #36531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="468" y1="424"        │

02:09:25 #36532 [Debug] > │ x2="468" y2="75"/>                                                           │

02:09:25 #36533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="475" y1="424"        │

02:09:25 #36534 [Debug] > │ x2="475" y2="75"/>                                                           │

02:09:25 #36535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="483" y1="424"        │

02:09:25 #36536 [Debug] > │ x2="483" y2="75"/>                                                           │

02:09:25 #36537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="490" y1="424"        │

02:09:25 #36538 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:25 #36539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="498" y1="424"        │

02:09:25 #36540 [Debug] > │ x2="498" y2="75"/>                                                           │

02:09:25 #36541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:09:25 #36542 [Debug] > │ x2="506" y2="75"/>                                                           │

02:09:25 #36543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="513" y1="424"        │

02:09:25 #36544 [Debug] > │ x2="513" y2="75"/>                                                           │

02:09:25 #36545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="521" y1="424"        │

02:09:25 #36546 [Debug] > │ x2="521" y2="75"/>                                                           │

02:09:25 #36547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:25 #36548 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:25 #36549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="536" y1="424"        │

02:09:25 #36550 [Debug] > │ x2="536" y2="75"/>                                                           │

02:09:25 #36551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:09:25 #36552 [Debug] > │ x2="544" y2="75"/>                                                           │

02:09:25 #36553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:09:25 #36554 [Debug] > │ x2="552" y2="75"/>                                                           │

02:09:25 #36555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="559" y1="424"        │

02:09:25 #36556 [Debug] > │ x2="559" y2="75"/>                                                           │

02:09:25 #36557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="567" y1="424"        │

02:09:25 #36558 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:25 #36559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="575" y1="424"        │

02:09:25 #36560 [Debug] > │ x2="575" y2="75"/>                                                           │

02:09:25 #36561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="420"         │

02:09:25 #36562 [Debug] > │ x2="584" y2="420"/>                                                          │

02:09:25 #36563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="403"         │

02:09:25 #36564 [Debug] > │ x2="584" y2="403"/>                                                          │

02:09:25 #36565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:25 #36566 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:25 #36567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="369"         │

02:09:25 #36568 [Debug] > │ x2="584" y2="369"/>                                                          │

02:09:25 #36569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="352"         │

02:09:25 #36570 [Debug] > │ x2="584" y2="352"/>                                                          │

02:09:25 #36571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="335"         │

02:09:25 #36572 [Debug] > │ x2="584" y2="335"/>                                                          │

02:09:25 #36573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="318"         │

02:09:25 #36574 [Debug] > │ x2="584" y2="318"/>                                                          │

02:09:25 #36575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:25 #36576 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:25 #36577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:25 #36578 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:25 #36579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:25 #36580 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:25 #36581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:25 #36582 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #36583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:25 #36584 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:25 #36585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:25 #36586 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:25 #36587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="199"         │

02:09:25 #36588 [Debug] > │ x2="584" y2="199"/>                                                          │

02:09:25 #36589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:25 #36590 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:25 #36591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:25 #36592 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:25 #36593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="148"         │

02:09:25 #36594 [Debug] > │ x2="584" y2="148"/>                                                          │

02:09:25 #36595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:25 #36596 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:25 #36597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:09:25 #36598 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:25 #36599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:25 #36600 [Debug] > │ y2="97"/>                                                                    │

02:09:25 #36601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="80" x2="584" │

02:09:25 #36602 [Debug] > │ y2="80"/>                                                                    │

02:09:25 #36603 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:25 #36604 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36605 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36606 [Debug] > │ position (m)                                                                 │

02:09:25 #36607 [Debug] > │ </text>                                                                      │

02:09:25 #36608 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:25 #36609 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36610 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:25 #36611 [Debug] > │ displacement (m)                                                             │

02:09:25 #36612 [Debug] > │ </text>                                                                      │

02:09:25 #36613 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:25 #36614 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36615 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36616 [Debug] > │ position (m)                                                                 │

02:09:25 #36617 [Debug] > │ </text>                                                                      │

02:09:25 #36618 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36619 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36620 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:25 #36621 [Debug] > │ displacement (m)                                                             │

02:09:25 #36622 [Debug] > │ </text>                                                                      │

02:09:25 #36623 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #36624 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36625 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:25 #36626 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #36627 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:25 #36628 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #36629 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:25 #36630 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:25 #36631 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:25 #36632 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #36633 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:25 #36634 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #36635 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:25 #36636 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:25 #36637 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="337" y1="424"        │

02:09:25 #36638 [Debug] > │ x2="337" y2="75"/>                                                           │

02:09:25 #36639 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="376" y1="424"        │

02:09:25 #36640 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:25 #36641 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="414" y1="424"        │

02:09:25 #36642 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:25 #36643 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="452" y1="424"        │

02:09:25 #36644 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:25 #36645 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="490" y1="424"        │

02:09:25 #36646 [Debug] > │ x2="490" y2="75"/>                                                           │

02:09:25 #36647 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="529" y1="424"        │

02:09:25 #36648 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:25 #36649 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="567" y1="424"        │

02:09:25 #36650 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:25 #36651 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="386"         │

02:09:25 #36652 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:25 #36653 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="318"         │

02:09:25 #36654 [Debug] > │ x2="584" y2="318"/>                                                          │

02:09:25 #36655 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:25 #36656 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #36657 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="182"         │

02:09:25 #36658 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:25 #36659 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="114"         │

02:09:25 #36660 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:25 #36661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36662 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:25 #36663 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:25 #36664 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36665 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36666 [Debug] > │ 0.0                                                                          │

02:09:25 #36667 [Debug] > │ </text>                                                                      │

02:09:25 #36668 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36669 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:25 #36670 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36671 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36672 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36673 [Debug] > │ 0.1                                                                          │

02:09:25 #36674 [Debug] > │ </text>                                                                      │

02:09:25 #36675 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36676 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:25 #36677 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36678 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36679 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36680 [Debug] > │ 0.1                                                                          │

02:09:25 #36681 [Debug] > │ </text>                                                                      │

02:09:25 #36682 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36683 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:25 #36684 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36686 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36687 [Debug] > │ 0.2                                                                          │

02:09:25 #36688 [Debug] > │ </text>                                                                      │

02:09:25 #36689 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36690 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:25 #36691 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36692 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36693 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36694 [Debug] > │ 0.2                                                                          │

02:09:25 #36695 [Debug] > │ </text>                                                                      │

02:09:25 #36696 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36697 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:25 #36698 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36699 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36700 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36701 [Debug] > │ 0.2                                                                          │

02:09:25 #36702 [Debug] > │ </text>                                                                      │

02:09:25 #36703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36704 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:25 #36705 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36706 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36707 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36708 [Debug] > │ 0.3                                                                          │

02:09:25 #36709 [Debug] > │ </text>                                                                      │

02:09:25 #36710 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36711 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:25 #36712 [Debug] > │ <text x="337" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36713 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36714 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36715 [Debug] > │ 0.3                                                                          │

02:09:25 #36716 [Debug] > │ </text>                                                                      │

02:09:25 #36717 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36718 [Debug] > │ points="337,69 337,74 "/>                                                    │

02:09:25 #36719 [Debug] > │ <text x="376" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36720 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36721 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36722 [Debug] > │ 0.4                                                                          │

02:09:25 #36723 [Debug] > │ </text>                                                                      │

02:09:25 #36724 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36725 [Debug] > │ points="376,69 376,74 "/>                                                    │

02:09:25 #36726 [Debug] > │ <text x="414" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36727 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36728 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36729 [Debug] > │ 0.4                                                                          │

02:09:25 #36730 [Debug] > │ </text>                                                                      │

02:09:25 #36731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36732 [Debug] > │ points="414,69 414,74 "/>                                                    │

02:09:25 #36733 [Debug] > │ <text x="452" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36734 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36735 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36736 [Debug] > │ 0.5                                                                          │

02:09:25 #36737 [Debug] > │ </text>                                                                      │

02:09:25 #36738 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36739 [Debug] > │ points="452,69 452,74 "/>                                                    │

02:09:25 #36740 [Debug] > │ <text x="490" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36741 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36742 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36743 [Debug] > │ 0.5                                                                          │

02:09:25 #36744 [Debug] > │ </text>                                                                      │

02:09:25 #36745 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36746 [Debug] > │ points="490,69 490,74 "/>                                                    │

02:09:25 #36747 [Debug] > │ <text x="529" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36748 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36749 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36750 [Debug] > │ 0.6                                                                          │

02:09:25 #36751 [Debug] > │ </text>                                                                      │

02:09:25 #36752 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36753 [Debug] > │ points="529,69 529,74 "/>                                                    │

02:09:25 #36754 [Debug] > │ <text x="567" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #36755 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36756 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36757 [Debug] > │ 0.7                                                                          │

02:09:25 #36758 [Debug] > │ </text>                                                                      │

02:09:25 #36759 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36760 [Debug] > │ points="567,69 567,74 "/>                                                    │

02:09:25 #36761 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36762 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:25 #36763 [Debug] > │ <text x="45" y="386" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36764 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36765 [Debug] > │ -0.0                                                                         │

02:09:25 #36766 [Debug] > │ </text>                                                                      │

02:09:25 #36767 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36768 [Debug] > │ points="49,386 54,386 "/>                                                    │

02:09:25 #36769 [Debug] > │ <text x="45" y="318" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36770 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36771 [Debug] > │ -0.0                                                                         │

02:09:25 #36772 [Debug] > │ </text>                                                                      │

02:09:25 #36773 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36774 [Debug] > │ points="49,318 54,318 "/>                                                    │

02:09:25 #36775 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36776 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36777 [Debug] > │ 0.0                                                                          │

02:09:25 #36778 [Debug] > │ </text>                                                                      │

02:09:25 #36779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36780 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:25 #36781 [Debug] > │ <text x="45" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36782 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36783 [Debug] > │ 0.0                                                                          │

02:09:25 #36784 [Debug] > │ </text>                                                                      │

02:09:25 #36785 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36786 [Debug] > │ points="49,182 54,182 "/>                                                    │

02:09:25 #36787 [Debug] > │ <text x="45" y="114" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #36788 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36789 [Debug] > │ 0.0                                                                          │

02:09:25 #36790 [Debug] > │ </text>                                                                      │

02:09:25 #36791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36792 [Debug] > │ points="49,114 54,114 "/>                                                    │

02:09:25 #36793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36794 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:25 #36795 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:25 #36796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36797 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36798 [Debug] > │ 0.0                                                                          │

02:09:25 #36799 [Debug] > │ </text>                                                                      │

02:09:25 #36800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36801 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:25 #36802 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36803 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36804 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36805 [Debug] > │ 0.1                                                                          │

02:09:25 #36806 [Debug] > │ </text>                                                                      │

02:09:25 #36807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36808 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:25 #36809 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36810 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36811 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36812 [Debug] > │ 0.1                                                                          │

02:09:25 #36813 [Debug] > │ </text>                                                                      │

02:09:25 #36814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36815 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:25 #36816 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36817 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36818 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36819 [Debug] > │ 0.2                                                                          │

02:09:25 #36820 [Debug] > │ </text>                                                                      │

02:09:25 #36821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36822 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:25 #36823 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36824 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36825 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36826 [Debug] > │ 0.2                                                                          │

02:09:25 #36827 [Debug] > │ </text>                                                                      │

02:09:25 #36828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36829 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:25 #36830 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36831 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36832 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36833 [Debug] > │ 0.2                                                                          │

02:09:25 #36834 [Debug] > │ </text>                                                                      │

02:09:25 #36835 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36836 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:25 #36837 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36838 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36839 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36840 [Debug] > │ 0.3                                                                          │

02:09:25 #36841 [Debug] > │ </text>                                                                      │

02:09:25 #36842 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36843 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:25 #36844 [Debug] > │ <text x="337" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36845 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36846 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36847 [Debug] > │ 0.3                                                                          │

02:09:25 #36848 [Debug] > │ </text>                                                                      │

02:09:25 #36849 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36850 [Debug] > │ points="337,425 337,430 "/>                                                  │

02:09:25 #36851 [Debug] > │ <text x="376" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36852 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36853 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36854 [Debug] > │ 0.4                                                                          │

02:09:25 #36855 [Debug] > │ </text>                                                                      │

02:09:25 #36856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36857 [Debug] > │ points="376,425 376,430 "/>                                                  │

02:09:25 #36858 [Debug] > │ <text x="414" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36859 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36860 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36861 [Debug] > │ 0.4                                                                          │

02:09:25 #36862 [Debug] > │ </text>                                                                      │

02:09:25 #36863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36864 [Debug] > │ points="414,425 414,430 "/>                                                  │

02:09:25 #36865 [Debug] > │ <text x="452" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36866 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36867 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36868 [Debug] > │ 0.5                                                                          │

02:09:25 #36869 [Debug] > │ </text>                                                                      │

02:09:25 #36870 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36871 [Debug] > │ points="452,425 452,430 "/>                                                  │

02:09:25 #36872 [Debug] > │ <text x="490" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36873 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36874 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36875 [Debug] > │ 0.5                                                                          │

02:09:25 #36876 [Debug] > │ </text>                                                                      │

02:09:25 #36877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36878 [Debug] > │ points="490,425 490,430 "/>                                                  │

02:09:25 #36879 [Debug] > │ <text x="529" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36880 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36881 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36882 [Debug] > │ 0.6                                                                          │

02:09:25 #36883 [Debug] > │ </text>                                                                      │

02:09:25 #36884 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36885 [Debug] > │ points="529,425 529,430 "/>                                                  │

02:09:25 #36886 [Debug] > │ <text x="567" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #36887 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36888 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36889 [Debug] > │ 0.7                                                                          │

02:09:25 #36890 [Debug] > │ </text>                                                                      │

02:09:25 #36891 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36892 [Debug] > │ points="567,425 567,430 "/>                                                  │

02:09:25 #36893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36894 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:25 #36895 [Debug] > │ <text x="595" y="386" dy="0.5ex" text-anchor="start"                         │

02:09:25 #36896 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36897 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36898 [Debug] > │ -0.0                                                                         │

02:09:25 #36899 [Debug] > │ </text>                                                                      │

02:09:25 #36900 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36901 [Debug] > │ points="585,386 590,386 "/>                                                  │

02:09:25 #36902 [Debug] > │ <text x="595" y="318" dy="0.5ex" text-anchor="start"                         │

02:09:25 #36903 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36904 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36905 [Debug] > │ -0.0                                                                         │

02:09:25 #36906 [Debug] > │ </text>                                                                      │

02:09:25 #36907 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36908 [Debug] > │ points="585,318 590,318 "/>                                                  │

02:09:25 #36909 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #36910 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36911 [Debug] > │ 0.0                                                                          │

02:09:25 #36912 [Debug] > │ </text>                                                                      │

02:09:25 #36913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36914 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:25 #36915 [Debug] > │ <text x="617" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #36916 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36917 [Debug] > │ 0.0                                                                          │

02:09:25 #36918 [Debug] > │ </text>                                                                      │

02:09:25 #36919 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36920 [Debug] > │ points="585,182 590,182 "/>                                                  │

02:09:25 #36921 [Debug] > │ <text x="617" y="114" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #36922 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #36923 [Debug] > │ 0.0                                                                          │

02:09:25 #36924 [Debug] > │ </text>                                                                      │

02:09:25 #36925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #36926 [Debug] > │ points="585,114 590,114 "/>                                                  │

02:09:25 #36927 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #36928 [Debug] > │ points="69,250 77,274 85,297 92,319 100,340 108,359 115,376 123,390 131,401  │

02:09:25 #36929 [Debug] > │ 138,409 146,413 154,415 161,412 169,407 177,398 184,385 192,371 200,353      │

02:09:25 #36930 [Debug] > │ 207,333 215,312 223,289 230,266 238,242 246,218 253,195 261,173 268,153      │

02:09:25 #36931 [Debug] > │ 276,135 284,119 291,106 299,96 307,89 314,85 322,85 330,89 337,95 345,105    │

02:09:25 #36932 [Debug] > │ 352,116 358,127 362,136 364,140 363,139 361,138 360,142 361,154 362,166      │

02:09:25 #36933 [Debug] > │ 361,177 361,190 361,206 361,223 361,238 361,255 361,273 361,288 361,304      │

02:09:25 #36934 [Debug] > │ 361,318 361,331 361,342 361,351 361,359 361,363 361,366 544,178 552,201      │

02:09:25 #36935 [Debug] > │ 569,255 567,250 "/>                                                          │

02:09:25 #36936 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:25 #36937 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:25 #36938 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:25 #36939 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36940 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36941 [Debug] > │ 37                                                                           │

02:09:25 #36942 [Debug] > │ </text>                                                                      │

02:09:25 #36943 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #36944 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:25 #36945 [Debug] > │ </svg>                                                                       │

02:09:25 #36946 [Debug] > │ </td></tr><tr><td>38</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:25 #36947 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:25 #36948 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:25 #36949 [Debug] > │ stroke="none"/>                                                              │

02:09:25 #36950 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:25 #36951 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #36952 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #36953 [Debug] > │ wave                                                                         │

02:09:25 #36954 [Debug] > │ </text>                                                                      │

02:09:25 #36955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:25 #36956 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #36958 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:25 #36960 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:25 #36962 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:25 #36964 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #36965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:25 #36966 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:25 #36967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:25 #36968 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #36969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:25 #36970 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:25 #36971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:25 #36972 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:25 #36973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:25 #36974 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:25 #36975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:25 #36976 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:25 #36977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:25 #36978 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #36979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:25 #36980 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:25 #36981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:25 #36982 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:25 #36983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:25 #36984 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:25 #36985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:25 #36986 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:25 #36987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:25 #36988 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:25 #36989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:25 #36990 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:25 #36991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:25 #36992 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:25 #36993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:25 #36994 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:25 #36995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:25 #36996 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:25 #36997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:25 #36998 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #36999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:25 #37000 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:25 #37001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:25 #37002 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:25 #37003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:25 #37004 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:25 #37005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:25 #37006 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:25 #37007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:25 #37008 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #37009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:25 #37010 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:25 #37011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:25 #37012 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:25 #37013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:25 #37014 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:25 #37015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:25 #37016 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:25 #37017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:25 #37018 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:25 #37019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:25 #37020 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:25 #37021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:25 #37022 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:25 #37023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:25 #37024 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:25 #37025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:25 #37026 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:25 #37027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:25 #37028 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:25 #37029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:25 #37030 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:25 #37031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:25 #37032 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:25 #37033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:25 #37034 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:25 #37035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:25 #37036 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:25 #37037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:25 #37038 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:25 #37039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:25 #37040 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:25 #37041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:25 #37042 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:25 #37043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:25 #37044 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:25 #37045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:25 #37046 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:25 #37047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:25 #37048 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:25 #37049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:25 #37050 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:25 #37051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:25 #37052 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:25 #37053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:25 #37054 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:25 #37055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:25 #37056 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:25 #37057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:25 #37058 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:25 #37059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:25 #37060 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:25 #37061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:25 #37062 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:25 #37063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:25 #37064 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:25 #37065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:25 #37066 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:25 #37067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:25 #37068 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:25 #37069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:25 #37070 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:25 #37071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:25 #37072 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:25 #37073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:25 #37074 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:25 #37075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:25 #37076 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:25 #37077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:25 #37078 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:25 #37079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:25 #37080 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:25 #37081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:25 #37082 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:25 #37083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:25 #37084 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:25 #37085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:25 #37086 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:25 #37087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:25 #37088 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:25 #37089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="407"         │

02:09:25 #37090 [Debug] > │ x2="584" y2="407"/>                                                          │

02:09:25 #37091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="390"         │

02:09:25 #37092 [Debug] > │ x2="584" y2="390"/>                                                          │

02:09:25 #37093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="372"         │

02:09:25 #37094 [Debug] > │ x2="584" y2="372"/>                                                          │

02:09:25 #37095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="355"         │

02:09:25 #37096 [Debug] > │ x2="584" y2="355"/>                                                          │

02:09:25 #37097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="337"         │

02:09:25 #37098 [Debug] > │ x2="584" y2="337"/>                                                          │

02:09:25 #37099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="320"         │

02:09:25 #37100 [Debug] > │ x2="584" y2="320"/>                                                          │

02:09:25 #37101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:25 #37102 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:25 #37103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:25 #37104 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:25 #37105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:25 #37106 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:25 #37107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:25 #37108 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #37109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:25 #37110 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:25 #37111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:09:25 #37112 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:25 #37113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="197"         │

02:09:25 #37114 [Debug] > │ x2="584" y2="197"/>                                                          │

02:09:25 #37115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:25 #37116 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:25 #37117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:09:25 #37118 [Debug] > │ x2="584" y2="162"/>                                                          │

02:09:25 #37119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:09:25 #37120 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:25 #37121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="128"         │

02:09:25 #37122 [Debug] > │ x2="584" y2="128"/>                                                          │

02:09:25 #37123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:09:25 #37124 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:25 #37125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:09:25 #37126 [Debug] > │ y2="93"/>                                                                    │

02:09:25 #37127 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:25 #37128 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37129 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37130 [Debug] > │ position (m)                                                                 │

02:09:25 #37131 [Debug] > │ </text>                                                                      │

02:09:25 #37132 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:25 #37133 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37134 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:25 #37135 [Debug] > │ displacement (m)                                                             │

02:09:25 #37136 [Debug] > │ </text>                                                                      │

02:09:25 #37137 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:25 #37138 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37139 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37140 [Debug] > │ position (m)                                                                 │

02:09:25 #37141 [Debug] > │ </text>                                                                      │

02:09:25 #37142 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37143 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37144 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:25 #37145 [Debug] > │ displacement (m)                                                             │

02:09:25 #37146 [Debug] > │ </text>                                                                      │

02:09:25 #37147 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #37148 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37149 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:25 #37150 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #37151 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:25 #37152 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #37153 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:25 #37154 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:25 #37155 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:25 #37156 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #37157 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:25 #37158 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #37159 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:25 #37160 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:25 #37161 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:25 #37162 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:25 #37163 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:25 #37164 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:25 #37165 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:25 #37166 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:25 #37167 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:25 #37168 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:25 #37169 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:25 #37170 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:25 #37171 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:25 #37172 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:25 #37173 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:25 #37174 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:25 #37175 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="390"         │

02:09:25 #37176 [Debug] > │ x2="584" y2="390"/>                                                          │

02:09:25 #37177 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="355"         │

02:09:25 #37178 [Debug] > │ x2="584" y2="355"/>                                                          │

02:09:25 #37179 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="320"         │

02:09:25 #37180 [Debug] > │ x2="584" y2="320"/>                                                          │

02:09:25 #37181 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="285"         │

02:09:25 #37182 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:25 #37183 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:25 #37184 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #37185 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="215"         │

02:09:25 #37186 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:25 #37187 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="180"         │

02:09:25 #37188 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:25 #37189 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="145"         │

02:09:25 #37190 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:25 #37191 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="110"         │

02:09:25 #37192 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:25 #37193 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37194 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:25 #37195 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:25 #37196 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37197 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37198 [Debug] > │ 0.0                                                                          │

02:09:25 #37199 [Debug] > │ </text>                                                                      │

02:09:25 #37200 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37201 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:25 #37202 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37203 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37204 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37205 [Debug] > │ 0.1                                                                          │

02:09:25 #37206 [Debug] > │ </text>                                                                      │

02:09:25 #37207 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37208 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:25 #37209 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37210 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37211 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37212 [Debug] > │ 0.1                                                                          │

02:09:25 #37213 [Debug] > │ </text>                                                                      │

02:09:25 #37214 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37215 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:25 #37216 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37217 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37218 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37219 [Debug] > │ 0.2                                                                          │

02:09:25 #37220 [Debug] > │ </text>                                                                      │

02:09:25 #37221 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37222 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:25 #37223 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37224 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37225 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37226 [Debug] > │ 0.2                                                                          │

02:09:25 #37227 [Debug] > │ </text>                                                                      │

02:09:25 #37228 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37229 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:25 #37230 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37231 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37232 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37233 [Debug] > │ 0.2                                                                          │

02:09:25 #37234 [Debug] > │ </text>                                                                      │

02:09:25 #37235 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37236 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:25 #37237 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37238 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37239 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37240 [Debug] > │ 0.3                                                                          │

02:09:25 #37241 [Debug] > │ </text>                                                                      │

02:09:25 #37242 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37243 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:25 #37244 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37245 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37246 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37247 [Debug] > │ 0.3                                                                          │

02:09:25 #37248 [Debug] > │ </text>                                                                      │

02:09:25 #37249 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37250 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:25 #37251 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37252 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37253 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37254 [Debug] > │ 0.4                                                                          │

02:09:25 #37255 [Debug] > │ </text>                                                                      │

02:09:25 #37256 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37257 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:25 #37258 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37259 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37260 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37261 [Debug] > │ 0.4                                                                          │

02:09:25 #37262 [Debug] > │ </text>                                                                      │

02:09:25 #37263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37264 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:25 #37265 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37267 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37268 [Debug] > │ 0.5                                                                          │

02:09:25 #37269 [Debug] > │ </text>                                                                      │

02:09:25 #37270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37271 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:25 #37272 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37274 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37275 [Debug] > │ 0.5                                                                          │

02:09:25 #37276 [Debug] > │ </text>                                                                      │

02:09:25 #37277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37278 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:25 #37279 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37280 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37281 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37282 [Debug] > │ 0.6                                                                          │

02:09:25 #37283 [Debug] > │ </text>                                                                      │

02:09:25 #37284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37285 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:25 #37286 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37287 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37288 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37289 [Debug] > │ 0.7                                                                          │

02:09:25 #37290 [Debug] > │ </text>                                                                      │

02:09:25 #37291 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37292 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:25 #37293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37294 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:25 #37295 [Debug] > │ <text x="45" y="390" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37296 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37297 [Debug] > │ -0.0                                                                         │

02:09:25 #37298 [Debug] > │ </text>                                                                      │

02:09:25 #37299 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37300 [Debug] > │ points="49,390 54,390 "/>                                                    │

02:09:25 #37301 [Debug] > │ <text x="45" y="355" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37302 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37303 [Debug] > │ -0.0                                                                         │

02:09:25 #37304 [Debug] > │ </text>                                                                      │

02:09:25 #37305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37306 [Debug] > │ points="49,355 54,355 "/>                                                    │

02:09:25 #37307 [Debug] > │ <text x="45" y="320" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37308 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37309 [Debug] > │ -0.0                                                                         │

02:09:25 #37310 [Debug] > │ </text>                                                                      │

02:09:25 #37311 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37312 [Debug] > │ points="49,320 54,320 "/>                                                    │

02:09:25 #37313 [Debug] > │ <text x="45" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37314 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37315 [Debug] > │ -0.0                                                                         │

02:09:25 #37316 [Debug] > │ </text>                                                                      │

02:09:25 #37317 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37318 [Debug] > │ points="49,285 54,285 "/>                                                    │

02:09:25 #37319 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37320 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37321 [Debug] > │ 0.0                                                                          │

02:09:25 #37322 [Debug] > │ </text>                                                                      │

02:09:25 #37323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37324 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:25 #37325 [Debug] > │ <text x="45" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37326 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37327 [Debug] > │ 0.0                                                                          │

02:09:25 #37328 [Debug] > │ </text>                                                                      │

02:09:25 #37329 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37330 [Debug] > │ points="49,215 54,215 "/>                                                    │

02:09:25 #37331 [Debug] > │ <text x="45" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37332 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37333 [Debug] > │ 0.0                                                                          │

02:09:25 #37334 [Debug] > │ </text>                                                                      │

02:09:25 #37335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37336 [Debug] > │ points="49,180 54,180 "/>                                                    │

02:09:25 #37337 [Debug] > │ <text x="45" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37338 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37339 [Debug] > │ 0.0                                                                          │

02:09:25 #37340 [Debug] > │ </text>                                                                      │

02:09:25 #37341 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37342 [Debug] > │ points="49,145 54,145 "/>                                                    │

02:09:25 #37343 [Debug] > │ <text x="45" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37344 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37345 [Debug] > │ 0.0                                                                          │

02:09:25 #37346 [Debug] > │ </text>                                                                      │

02:09:25 #37347 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37348 [Debug] > │ points="49,110 54,110 "/>                                                    │

02:09:25 #37349 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37350 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:25 #37351 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:25 #37352 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37353 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37354 [Debug] > │ 0.0                                                                          │

02:09:25 #37355 [Debug] > │ </text>                                                                      │

02:09:25 #37356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37357 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:25 #37358 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37359 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37360 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37361 [Debug] > │ 0.1                                                                          │

02:09:25 #37362 [Debug] > │ </text>                                                                      │

02:09:25 #37363 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37364 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:25 #37365 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37366 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37367 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37368 [Debug] > │ 0.1                                                                          │

02:09:25 #37369 [Debug] > │ </text>                                                                      │

02:09:25 #37370 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37371 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:25 #37372 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37373 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37374 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37375 [Debug] > │ 0.2                                                                          │

02:09:25 #37376 [Debug] > │ </text>                                                                      │

02:09:25 #37377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37378 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:25 #37379 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37380 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37381 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37382 [Debug] > │ 0.2                                                                          │

02:09:25 #37383 [Debug] > │ </text>                                                                      │

02:09:25 #37384 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37385 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:25 #37386 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37387 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37388 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37389 [Debug] > │ 0.2                                                                          │

02:09:25 #37390 [Debug] > │ </text>                                                                      │

02:09:25 #37391 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37392 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:25 #37393 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37394 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37395 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37396 [Debug] > │ 0.3                                                                          │

02:09:25 #37397 [Debug] > │ </text>                                                                      │

02:09:25 #37398 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37399 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:25 #37400 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37401 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37402 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37403 [Debug] > │ 0.3                                                                          │

02:09:25 #37404 [Debug] > │ </text>                                                                      │

02:09:25 #37405 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37406 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:25 #37407 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37408 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37409 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37410 [Debug] > │ 0.4                                                                          │

02:09:25 #37411 [Debug] > │ </text>                                                                      │

02:09:25 #37412 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37413 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:25 #37414 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37415 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37416 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37417 [Debug] > │ 0.4                                                                          │

02:09:25 #37418 [Debug] > │ </text>                                                                      │

02:09:25 #37419 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37420 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:25 #37421 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37422 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37423 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37424 [Debug] > │ 0.5                                                                          │

02:09:25 #37425 [Debug] > │ </text>                                                                      │

02:09:25 #37426 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37427 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:25 #37428 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37429 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37430 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37431 [Debug] > │ 0.5                                                                          │

02:09:25 #37432 [Debug] > │ </text>                                                                      │

02:09:25 #37433 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37434 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:25 #37435 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37436 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37437 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37438 [Debug] > │ 0.6                                                                          │

02:09:25 #37439 [Debug] > │ </text>                                                                      │

02:09:25 #37440 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37441 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:25 #37442 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37443 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37444 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37445 [Debug] > │ 0.7                                                                          │

02:09:25 #37446 [Debug] > │ </text>                                                                      │

02:09:25 #37447 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37448 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:25 #37449 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37450 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:25 #37451 [Debug] > │ <text x="595" y="390" dy="0.5ex" text-anchor="start"                         │

02:09:25 #37452 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37453 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37454 [Debug] > │ -0.0                                                                         │

02:09:25 #37455 [Debug] > │ </text>                                                                      │

02:09:25 #37456 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37457 [Debug] > │ points="585,390 590,390 "/>                                                  │

02:09:25 #37458 [Debug] > │ <text x="595" y="355" dy="0.5ex" text-anchor="start"                         │

02:09:25 #37459 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37460 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37461 [Debug] > │ -0.0                                                                         │

02:09:25 #37462 [Debug] > │ </text>                                                                      │

02:09:25 #37463 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37464 [Debug] > │ points="585,355 590,355 "/>                                                  │

02:09:25 #37465 [Debug] > │ <text x="595" y="320" dy="0.5ex" text-anchor="start"                         │

02:09:25 #37466 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37467 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37468 [Debug] > │ -0.0                                                                         │

02:09:25 #37469 [Debug] > │ </text>                                                                      │

02:09:25 #37470 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37471 [Debug] > │ points="585,320 590,320 "/>                                                  │

02:09:25 #37472 [Debug] > │ <text x="595" y="285" dy="0.5ex" text-anchor="start"                         │

02:09:25 #37473 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37474 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37475 [Debug] > │ -0.0                                                                         │

02:09:25 #37476 [Debug] > │ </text>                                                                      │

02:09:25 #37477 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37478 [Debug] > │ points="585,285 590,285 "/>                                                  │

02:09:25 #37479 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #37480 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37481 [Debug] > │ 0.0                                                                          │

02:09:25 #37482 [Debug] > │ </text>                                                                      │

02:09:25 #37483 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37484 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:25 #37485 [Debug] > │ <text x="617" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #37486 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37487 [Debug] > │ 0.0                                                                          │

02:09:25 #37488 [Debug] > │ </text>                                                                      │

02:09:25 #37489 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37490 [Debug] > │ points="585,215 590,215 "/>                                                  │

02:09:25 #37491 [Debug] > │ <text x="617" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #37492 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37493 [Debug] > │ 0.0                                                                          │

02:09:25 #37494 [Debug] > │ </text>                                                                      │

02:09:25 #37495 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37496 [Debug] > │ points="585,180 590,180 "/>                                                  │

02:09:25 #37497 [Debug] > │ <text x="617" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #37498 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37499 [Debug] > │ 0.0                                                                          │

02:09:25 #37500 [Debug] > │ </text>                                                                      │

02:09:25 #37501 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37502 [Debug] > │ points="585,145 590,145 "/>                                                  │

02:09:25 #37503 [Debug] > │ <text x="617" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #37504 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37505 [Debug] > │ 0.0                                                                          │

02:09:25 #37506 [Debug] > │ </text>                                                                      │

02:09:25 #37507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37508 [Debug] > │ points="585,110 590,110 "/>                                                  │

02:09:25 #37509 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #37510 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:25 #37511 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:25 #37512 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:25 #37513 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 330,89 338,95 345,104    │

02:09:25 #37514 [Debug] > │ 352,113 357,122 359,126 359,125 358,122 356,123 357,131 358,144 358,155      │

02:09:25 #37515 [Debug] > │ 357,167 357,183 358,201 357,219 357,237 357,257 357,275 357,293 357,311      │

02:09:25 #37516 [Debug] > │ 357,326 357,341 357,354 357,364 357,372 357,377 357,380 545,176 553,200      │

02:09:25 #37517 [Debug] > │ 565,239 569,250 "/>                                                          │

02:09:25 #37518 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:25 #37519 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:25 #37520 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:25 #37521 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37522 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37523 [Debug] > │ 38                                                                           │

02:09:25 #37524 [Debug] > │ </text>                                                                      │

02:09:25 #37525 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #37526 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:25 #37527 [Debug] > │ </svg>                                                                       │

02:09:25 #37528 [Debug] > │ </td></tr><tr><td>39</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:25 #37529 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:25 #37530 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:25 #37531 [Debug] > │ stroke="none"/>                                                              │

02:09:25 #37532 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:25 #37533 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37534 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37535 [Debug] > │ wave                                                                         │

02:09:25 #37536 [Debug] > │ </text>                                                                      │

02:09:25 #37537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:25 #37538 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #37540 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:25 #37542 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:25 #37544 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:25 #37546 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:25 #37548 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:25 #37549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:25 #37550 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #37551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:25 #37552 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:25 #37553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:25 #37554 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:25 #37555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:25 #37556 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:25 #37557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:25 #37558 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:25 #37559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:25 #37560 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #37561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:25 #37562 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:25 #37563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:25 #37564 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:25 #37565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:25 #37566 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:25 #37567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:25 #37568 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:25 #37569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:25 #37570 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:25 #37571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:25 #37572 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:25 #37573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:25 #37574 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:25 #37575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:25 #37576 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:25 #37577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:25 #37578 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:25 #37579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:25 #37580 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #37581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:25 #37582 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:25 #37583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:25 #37584 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:25 #37585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:25 #37586 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:25 #37587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:25 #37588 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:25 #37589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:25 #37590 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #37591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:25 #37592 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:25 #37593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:25 #37594 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:25 #37595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:25 #37596 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:25 #37597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:25 #37598 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:25 #37599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:25 #37600 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:25 #37601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:25 #37602 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:25 #37603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:25 #37604 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:25 #37605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:25 #37606 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:25 #37607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:25 #37608 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:25 #37609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:25 #37610 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:25 #37611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:25 #37612 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:25 #37613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:25 #37614 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:25 #37615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:25 #37616 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:25 #37617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:25 #37618 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:25 #37619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:25 #37620 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:25 #37621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:25 #37622 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:25 #37623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:25 #37624 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:25 #37625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:25 #37626 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:25 #37627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:25 #37628 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:25 #37629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:25 #37630 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:25 #37631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:25 #37632 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:25 #37633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:25 #37634 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:25 #37635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:25 #37636 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:25 #37637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:25 #37638 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:25 #37639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:25 #37640 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:25 #37641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:25 #37642 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:25 #37643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:25 #37644 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:25 #37645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:25 #37646 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:25 #37647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:25 #37648 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:25 #37649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:25 #37650 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:25 #37651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:25 #37652 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:25 #37653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:25 #37654 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:25 #37655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:25 #37656 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:25 #37657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:25 #37658 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:25 #37659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:25 #37660 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:25 #37661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:25 #37662 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:25 #37663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:25 #37664 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:25 #37665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:25 #37666 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:25 #37667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:25 #37668 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:25 #37669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:25 #37670 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:25 #37671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="413"         │

02:09:25 #37672 [Debug] > │ x2="584" y2="413"/>                                                          │

02:09:25 #37673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:09:25 #37674 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:25 #37675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="377"         │

02:09:25 #37676 [Debug] > │ x2="584" y2="377"/>                                                          │

02:09:25 #37677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="359"         │

02:09:25 #37678 [Debug] > │ x2="584" y2="359"/>                                                          │

02:09:25 #37679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="341"         │

02:09:25 #37680 [Debug] > │ x2="584" y2="341"/>                                                          │

02:09:25 #37681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="322"         │

02:09:25 #37682 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:25 #37683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="304"         │

02:09:25 #37684 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:25 #37685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:25 #37686 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:25 #37687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:25 #37688 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:25 #37689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:25 #37690 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #37691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:25 #37692 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:25 #37693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:25 #37694 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:25 #37695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:09:25 #37696 [Debug] > │ x2="584" y2="195"/>                                                          │

02:09:25 #37697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:09:25 #37698 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:25 #37699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:09:25 #37700 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:25 #37701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="141"         │

02:09:25 #37702 [Debug] > │ x2="584" y2="141"/>                                                          │

02:09:25 #37703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="123"         │

02:09:25 #37704 [Debug] > │ x2="584" y2="123"/>                                                          │

02:09:25 #37705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="105"         │

02:09:25 #37706 [Debug] > │ x2="584" y2="105"/>                                                          │

02:09:25 #37707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="87" x2="584" │

02:09:25 #37708 [Debug] > │ y2="87"/>                                                                    │

02:09:25 #37709 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:25 #37710 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37711 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37712 [Debug] > │ position (m)                                                                 │

02:09:25 #37713 [Debug] > │ </text>                                                                      │

02:09:25 #37714 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:25 #37715 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37716 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:25 #37717 [Debug] > │ displacement (m)                                                             │

02:09:25 #37718 [Debug] > │ </text>                                                                      │

02:09:25 #37719 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:25 #37720 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37721 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37722 [Debug] > │ position (m)                                                                 │

02:09:25 #37723 [Debug] > │ </text>                                                                      │

02:09:25 #37724 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37725 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37726 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:25 #37727 [Debug] > │ displacement (m)                                                             │

02:09:25 #37728 [Debug] > │ </text>                                                                      │

02:09:25 #37729 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #37730 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #37731 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:25 #37732 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #37733 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:25 #37734 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #37735 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:25 #37736 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:25 #37737 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:25 #37738 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #37739 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:25 #37740 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #37741 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:25 #37742 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:25 #37743 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:25 #37744 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:25 #37745 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:25 #37746 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:25 #37747 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:25 #37748 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:25 #37749 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:25 #37750 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:25 #37751 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:25 #37752 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:25 #37753 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:25 #37754 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:25 #37755 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:25 #37756 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:25 #37757 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="395"         │

02:09:25 #37758 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:25 #37759 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="359"         │

02:09:25 #37760 [Debug] > │ x2="584" y2="359"/>                                                          │

02:09:25 #37761 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="322"         │

02:09:25 #37762 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:25 #37763 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="286"         │

02:09:25 #37764 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:25 #37765 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:25 #37766 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #37767 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="214"         │

02:09:25 #37768 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:25 #37769 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="177"         │

02:09:25 #37770 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:25 #37771 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="141"         │

02:09:25 #37772 [Debug] > │ x2="584" y2="141"/>                                                          │

02:09:25 #37773 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="105"         │

02:09:25 #37774 [Debug] > │ x2="584" y2="105"/>                                                          │

02:09:25 #37775 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37776 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:25 #37777 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:25 #37778 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37779 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37780 [Debug] > │ 0.0                                                                          │

02:09:25 #37781 [Debug] > │ </text>                                                                      │

02:09:25 #37782 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37783 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:25 #37784 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37785 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37786 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37787 [Debug] > │ 0.1                                                                          │

02:09:25 #37788 [Debug] > │ </text>                                                                      │

02:09:25 #37789 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37790 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:25 #37791 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37792 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37793 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37794 [Debug] > │ 0.1                                                                          │

02:09:25 #37795 [Debug] > │ </text>                                                                      │

02:09:25 #37796 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37797 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:25 #37798 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37799 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37800 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37801 [Debug] > │ 0.2                                                                          │

02:09:25 #37802 [Debug] > │ </text>                                                                      │

02:09:25 #37803 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37804 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:25 #37805 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37806 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37807 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37808 [Debug] > │ 0.2                                                                          │

02:09:25 #37809 [Debug] > │ </text>                                                                      │

02:09:25 #37810 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37811 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:25 #37812 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37813 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37814 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37815 [Debug] > │ 0.2                                                                          │

02:09:25 #37816 [Debug] > │ </text>                                                                      │

02:09:25 #37817 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37818 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:25 #37819 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37820 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37821 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37822 [Debug] > │ 0.3                                                                          │

02:09:25 #37823 [Debug] > │ </text>                                                                      │

02:09:25 #37824 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37825 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:25 #37826 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37827 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37828 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37829 [Debug] > │ 0.3                                                                          │

02:09:25 #37830 [Debug] > │ </text>                                                                      │

02:09:25 #37831 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37832 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:25 #37833 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37834 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37835 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37836 [Debug] > │ 0.4                                                                          │

02:09:25 #37837 [Debug] > │ </text>                                                                      │

02:09:25 #37838 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37839 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:25 #37840 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37841 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37842 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37843 [Debug] > │ 0.4                                                                          │

02:09:25 #37844 [Debug] > │ </text>                                                                      │

02:09:25 #37845 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37846 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:25 #37847 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37848 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37849 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37850 [Debug] > │ 0.5                                                                          │

02:09:25 #37851 [Debug] > │ </text>                                                                      │

02:09:25 #37852 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37853 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:25 #37854 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37855 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37856 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37857 [Debug] > │ 0.5                                                                          │

02:09:25 #37858 [Debug] > │ </text>                                                                      │

02:09:25 #37859 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37860 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:25 #37861 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37862 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37863 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37864 [Debug] > │ 0.6                                                                          │

02:09:25 #37865 [Debug] > │ </text>                                                                      │

02:09:25 #37866 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37867 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:25 #37868 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #37869 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37870 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37871 [Debug] > │ 0.7                                                                          │

02:09:25 #37872 [Debug] > │ </text>                                                                      │

02:09:25 #37873 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37874 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:25 #37875 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37876 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:25 #37877 [Debug] > │ <text x="45" y="395" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37878 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37879 [Debug] > │ -0.0                                                                         │

02:09:25 #37880 [Debug] > │ </text>                                                                      │

02:09:25 #37881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37882 [Debug] > │ points="49,395 54,395 "/>                                                    │

02:09:25 #37883 [Debug] > │ <text x="45" y="359" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37884 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37885 [Debug] > │ -0.0                                                                         │

02:09:25 #37886 [Debug] > │ </text>                                                                      │

02:09:25 #37887 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37888 [Debug] > │ points="49,359 54,359 "/>                                                    │

02:09:25 #37889 [Debug] > │ <text x="45" y="322" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37890 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37891 [Debug] > │ -0.0                                                                         │

02:09:25 #37892 [Debug] > │ </text>                                                                      │

02:09:25 #37893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37894 [Debug] > │ points="49,322 54,322 "/>                                                    │

02:09:25 #37895 [Debug] > │ <text x="45" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37896 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37897 [Debug] > │ -0.0                                                                         │

02:09:25 #37898 [Debug] > │ </text>                                                                      │

02:09:25 #37899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37900 [Debug] > │ points="49,286 54,286 "/>                                                    │

02:09:25 #37901 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37902 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37903 [Debug] > │ 0.0                                                                          │

02:09:25 #37904 [Debug] > │ </text>                                                                      │

02:09:25 #37905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37906 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:25 #37907 [Debug] > │ <text x="45" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37908 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37909 [Debug] > │ 0.0                                                                          │

02:09:25 #37910 [Debug] > │ </text>                                                                      │

02:09:25 #37911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37912 [Debug] > │ points="49,214 54,214 "/>                                                    │

02:09:25 #37913 [Debug] > │ <text x="45" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37914 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37915 [Debug] > │ 0.0                                                                          │

02:09:25 #37916 [Debug] > │ </text>                                                                      │

02:09:25 #37917 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37918 [Debug] > │ points="49,177 54,177 "/>                                                    │

02:09:25 #37919 [Debug] > │ <text x="45" y="141" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37920 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37921 [Debug] > │ 0.0                                                                          │

02:09:25 #37922 [Debug] > │ </text>                                                                      │

02:09:25 #37923 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37924 [Debug] > │ points="49,141 54,141 "/>                                                    │

02:09:25 #37925 [Debug] > │ <text x="45" y="105" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #37926 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #37927 [Debug] > │ 0.0                                                                          │

02:09:25 #37928 [Debug] > │ </text>                                                                      │

02:09:25 #37929 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37930 [Debug] > │ points="49,105 54,105 "/>                                                    │

02:09:25 #37931 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37932 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:25 #37933 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:25 #37934 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37935 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37936 [Debug] > │ 0.0                                                                          │

02:09:25 #37937 [Debug] > │ </text>                                                                      │

02:09:25 #37938 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37939 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:25 #37940 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37941 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37942 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37943 [Debug] > │ 0.1                                                                          │

02:09:25 #37944 [Debug] > │ </text>                                                                      │

02:09:25 #37945 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37946 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:25 #37947 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37948 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37949 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37950 [Debug] > │ 0.1                                                                          │

02:09:25 #37951 [Debug] > │ </text>                                                                      │

02:09:25 #37952 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37953 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:25 #37954 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37955 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37956 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37957 [Debug] > │ 0.2                                                                          │

02:09:25 #37958 [Debug] > │ </text>                                                                      │

02:09:25 #37959 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37960 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:25 #37961 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37962 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37963 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37964 [Debug] > │ 0.2                                                                          │

02:09:25 #37965 [Debug] > │ </text>                                                                      │

02:09:25 #37966 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37967 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:25 #37968 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37969 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37970 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37971 [Debug] > │ 0.2                                                                          │

02:09:25 #37972 [Debug] > │ </text>                                                                      │

02:09:25 #37973 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37974 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:25 #37975 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37976 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37977 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37978 [Debug] > │ 0.3                                                                          │

02:09:25 #37979 [Debug] > │ </text>                                                                      │

02:09:25 #37980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37981 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:25 #37982 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37983 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37984 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37985 [Debug] > │ 0.3                                                                          │

02:09:25 #37986 [Debug] > │ </text>                                                                      │

02:09:25 #37987 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37988 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:25 #37989 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37990 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37991 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37992 [Debug] > │ 0.4                                                                          │

02:09:25 #37993 [Debug] > │ </text>                                                                      │

02:09:25 #37994 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #37995 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:25 #37996 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #37997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #37998 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #37999 [Debug] > │ 0.4                                                                          │

02:09:25 #38000 [Debug] > │ </text>                                                                      │

02:09:25 #38001 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38002 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:25 #38003 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #38004 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38005 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38006 [Debug] > │ 0.5                                                                          │

02:09:25 #38007 [Debug] > │ </text>                                                                      │

02:09:25 #38008 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38009 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:25 #38010 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #38011 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38012 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38013 [Debug] > │ 0.5                                                                          │

02:09:25 #38014 [Debug] > │ </text>                                                                      │

02:09:25 #38015 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38016 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:25 #38017 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #38018 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38019 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38020 [Debug] > │ 0.6                                                                          │

02:09:25 #38021 [Debug] > │ </text>                                                                      │

02:09:25 #38022 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38023 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:25 #38024 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:25 #38025 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38026 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38027 [Debug] > │ 0.7                                                                          │

02:09:25 #38028 [Debug] > │ </text>                                                                      │

02:09:25 #38029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38030 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:25 #38031 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38032 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:25 #38033 [Debug] > │ <text x="595" y="395" dy="0.5ex" text-anchor="start"                         │

02:09:25 #38034 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38035 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38036 [Debug] > │ -0.0                                                                         │

02:09:25 #38037 [Debug] > │ </text>                                                                      │

02:09:25 #38038 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38039 [Debug] > │ points="585,395 590,395 "/>                                                  │

02:09:25 #38040 [Debug] > │ <text x="595" y="359" dy="0.5ex" text-anchor="start"                         │

02:09:25 #38041 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38042 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38043 [Debug] > │ -0.0                                                                         │

02:09:25 #38044 [Debug] > │ </text>                                                                      │

02:09:25 #38045 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38046 [Debug] > │ points="585,359 590,359 "/>                                                  │

02:09:25 #38047 [Debug] > │ <text x="595" y="322" dy="0.5ex" text-anchor="start"                         │

02:09:25 #38048 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38049 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38050 [Debug] > │ -0.0                                                                         │

02:09:25 #38051 [Debug] > │ </text>                                                                      │

02:09:25 #38052 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38053 [Debug] > │ points="585,322 590,322 "/>                                                  │

02:09:25 #38054 [Debug] > │ <text x="595" y="286" dy="0.5ex" text-anchor="start"                         │

02:09:25 #38055 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38056 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38057 [Debug] > │ -0.0                                                                         │

02:09:25 #38058 [Debug] > │ </text>                                                                      │

02:09:25 #38059 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38060 [Debug] > │ points="585,286 590,286 "/>                                                  │

02:09:25 #38061 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #38062 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38063 [Debug] > │ 0.0                                                                          │

02:09:25 #38064 [Debug] > │ </text>                                                                      │

02:09:25 #38065 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38066 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:25 #38067 [Debug] > │ <text x="617" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #38068 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38069 [Debug] > │ 0.0                                                                          │

02:09:25 #38070 [Debug] > │ </text>                                                                      │

02:09:25 #38071 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38072 [Debug] > │ points="585,214 590,214 "/>                                                  │

02:09:25 #38073 [Debug] > │ <text x="617" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #38074 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38075 [Debug] > │ 0.0                                                                          │

02:09:25 #38076 [Debug] > │ </text>                                                                      │

02:09:25 #38077 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38078 [Debug] > │ points="585,177 590,177 "/>                                                  │

02:09:25 #38079 [Debug] > │ <text x="617" y="141" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #38080 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38081 [Debug] > │ 0.0                                                                          │

02:09:25 #38082 [Debug] > │ </text>                                                                      │

02:09:25 #38083 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38084 [Debug] > │ points="585,141 590,141 "/>                                                  │

02:09:25 #38085 [Debug] > │ <text x="617" y="105" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:25 #38086 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38087 [Debug] > │ 0.0                                                                          │

02:09:25 #38088 [Debug] > │ </text>                                                                      │

02:09:25 #38089 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38090 [Debug] > │ points="585,105 590,105 "/>                                                  │

02:09:25 #38091 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #38092 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:25 #38093 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,385 192,371 200,353      │

02:09:25 #38094 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:25 #38095 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,85 323,85 330,89 338,94 345,102    │

02:09:25 #38096 [Debug] > │ 350,109 354,113 355,112 354,107 352,104 351,108 352,119 353,132 352,143      │

02:09:25 #38097 [Debug] > │ 352,157 353,176 353,195 352,214 352,236 353,257 352,278 352,299 352,318      │

02:09:25 #38098 [Debug] > │ 352,336 352,352 352,366 352,378 352,386 352,393 352,396 545,173 553,198      │

02:09:25 #38099 [Debug] > │ 562,227 569,250 "/>                                                          │

02:09:25 #38100 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:25 #38101 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:25 #38102 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:25 #38103 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38104 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38105 [Debug] > │ 39                                                                           │

02:09:25 #38106 [Debug] > │ </text>                                                                      │

02:09:25 #38107 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:25 #38108 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:25 #38109 [Debug] > │ </svg>                                                                       │

02:09:25 #38110 [Debug] > │ </td></tr><tr><td>40</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:25 #38111 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:25 #38112 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:25 #38113 [Debug] > │ stroke="none"/>                                                              │

02:09:25 #38114 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:25 #38115 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38116 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38117 [Debug] > │ wave                                                                         │

02:09:25 #38118 [Debug] > │ </text>                                                                      │

02:09:25 #38119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:25 #38120 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #38121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #38122 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #38123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:25 #38124 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #38125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:25 #38126 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #38127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:25 #38128 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #38129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:25 #38130 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:25 #38131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:25 #38132 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #38133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:25 #38134 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:25 #38135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:25 #38136 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:25 #38137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:25 #38138 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:25 #38139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:25 #38140 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:25 #38141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:25 #38142 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #38143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:25 #38144 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:25 #38145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:25 #38146 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:25 #38147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:25 #38148 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:25 #38149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:25 #38150 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:25 #38151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:25 #38152 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:25 #38153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:25 #38154 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:25 #38155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:25 #38156 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:25 #38157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:25 #38158 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:25 #38159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:25 #38160 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:25 #38161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:25 #38162 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #38163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:25 #38164 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:25 #38165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:25 #38166 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:25 #38167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:25 #38168 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:25 #38169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:25 #38170 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:25 #38171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:25 #38172 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #38173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:25 #38174 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:25 #38175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:25 #38176 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:25 #38177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:25 #38178 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:25 #38179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:25 #38180 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:25 #38181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:25 #38182 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:25 #38183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:25 #38184 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:25 #38185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:25 #38186 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:25 #38187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:25 #38188 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:25 #38189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:25 #38190 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:25 #38191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:25 #38192 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:25 #38193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:25 #38194 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:25 #38195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:25 #38196 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:25 #38197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:25 #38198 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:25 #38199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:25 #38200 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:25 #38201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:25 #38202 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:25 #38203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:25 #38204 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:25 #38205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:25 #38206 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:25 #38207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:25 #38208 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:25 #38209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:25 #38210 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:25 #38211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:25 #38212 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:25 #38213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:25 #38214 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:25 #38215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:25 #38216 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:25 #38217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:25 #38218 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:25 #38219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:25 #38220 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:25 #38221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:25 #38222 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:25 #38223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:25 #38224 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:25 #38225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:25 #38226 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:25 #38227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:25 #38228 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:25 #38229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:25 #38230 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:25 #38231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:25 #38232 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:25 #38233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:25 #38234 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:25 #38235 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:25 #38236 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:25 #38237 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:25 #38238 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:25 #38239 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:25 #38240 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:25 #38241 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:25 #38242 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:25 #38243 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:25 #38244 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:25 #38245 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:25 #38246 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:25 #38247 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:25 #38248 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:25 #38249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:25 #38250 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:25 #38251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:25 #38252 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:25 #38253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="421"         │

02:09:25 #38254 [Debug] > │ x2="584" y2="421"/>                                                          │

02:09:25 #38255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="402"         │

02:09:25 #38256 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:25 #38257 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:25 #38258 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:25 #38259 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="364"         │

02:09:25 #38260 [Debug] > │ x2="584" y2="364"/>                                                          │

02:09:25 #38261 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="345"         │

02:09:25 #38262 [Debug] > │ x2="584" y2="345"/>                                                          │

02:09:25 #38263 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="326"         │

02:09:25 #38264 [Debug] > │ x2="584" y2="326"/>                                                          │

02:09:25 #38265 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="307"         │

02:09:25 #38266 [Debug] > │ x2="584" y2="307"/>                                                          │

02:09:25 #38267 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:09:25 #38268 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:25 #38269 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:25 #38270 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:25 #38271 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:25 #38272 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #38273 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:09:25 #38274 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:25 #38275 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="212"         │

02:09:25 #38276 [Debug] > │ x2="584" y2="212"/>                                                          │

02:09:25 #38277 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="193"         │

02:09:25 #38278 [Debug] > │ x2="584" y2="193"/>                                                          │

02:09:25 #38279 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="174"         │

02:09:25 #38280 [Debug] > │ x2="584" y2="174"/>                                                          │

02:09:25 #38281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="155"         │

02:09:25 #38282 [Debug] > │ x2="584" y2="155"/>                                                          │

02:09:25 #38283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="136"         │

02:09:25 #38284 [Debug] > │ x2="584" y2="136"/>                                                          │

02:09:25 #38285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:09:25 #38286 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:25 #38287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:09:25 #38288 [Debug] > │ y2="98"/>                                                                    │

02:09:25 #38289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:25 #38290 [Debug] > │ y2="79"/>                                                                    │

02:09:25 #38291 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:25 #38292 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38293 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38294 [Debug] > │ position (m)                                                                 │

02:09:25 #38295 [Debug] > │ </text>                                                                      │

02:09:25 #38296 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:25 #38297 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38298 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:25 #38299 [Debug] > │ displacement (m)                                                             │

02:09:25 #38300 [Debug] > │ </text>                                                                      │

02:09:25 #38301 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:25 #38302 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38303 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38304 [Debug] > │ position (m)                                                                 │

02:09:25 #38305 [Debug] > │ </text>                                                                      │

02:09:25 #38306 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:25 #38307 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38308 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:25 #38309 [Debug] > │ displacement (m)                                                             │

02:09:25 #38310 [Debug] > │ </text>                                                                      │

02:09:25 #38311 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:25 #38312 [Debug] > │ y2="75"/>                                                                    │

02:09:25 #38313 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:25 #38314 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:25 #38315 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:25 #38316 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:25 #38317 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:25 #38318 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:25 #38319 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:25 #38320 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:25 #38321 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:25 #38322 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:25 #38323 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:25 #38324 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:25 #38325 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:25 #38326 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:25 #38327 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:25 #38328 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:25 #38329 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:25 #38330 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:25 #38331 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:25 #38332 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:25 #38333 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:25 #38334 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:25 #38335 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:25 #38336 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:25 #38337 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:25 #38338 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:25 #38339 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="402"         │

02:09:25 #38340 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:25 #38341 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="364"         │

02:09:25 #38342 [Debug] > │ x2="584" y2="364"/>                                                          │

02:09:25 #38343 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="326"         │

02:09:25 #38344 [Debug] > │ x2="584" y2="326"/>                                                          │

02:09:25 #38345 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="288"         │

02:09:25 #38346 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:25 #38347 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:25 #38348 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:25 #38349 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="212"         │

02:09:25 #38350 [Debug] > │ x2="584" y2="212"/>                                                          │

02:09:25 #38351 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="174"         │

02:09:25 #38352 [Debug] > │ x2="584" y2="174"/>                                                          │

02:09:25 #38353 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="136"         │

02:09:25 #38354 [Debug] > │ x2="584" y2="136"/>                                                          │

02:09:25 #38355 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="98" x2="584" │

02:09:25 #38356 [Debug] > │ y2="98"/>                                                                    │

02:09:25 #38357 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38358 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:25 #38359 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:25 #38360 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38361 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38362 [Debug] > │ 0.0                                                                          │

02:09:25 #38363 [Debug] > │ </text>                                                                      │

02:09:25 #38364 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38365 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:25 #38366 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38367 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38368 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38369 [Debug] > │ 0.1                                                                          │

02:09:25 #38370 [Debug] > │ </text>                                                                      │

02:09:25 #38371 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38372 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:25 #38373 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38374 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38375 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38376 [Debug] > │ 0.1                                                                          │

02:09:25 #38377 [Debug] > │ </text>                                                                      │

02:09:25 #38378 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38379 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:25 #38380 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38381 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38382 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38383 [Debug] > │ 0.2                                                                          │

02:09:25 #38384 [Debug] > │ </text>                                                                      │

02:09:25 #38385 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38386 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:25 #38387 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38388 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38389 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38390 [Debug] > │ 0.2                                                                          │

02:09:25 #38391 [Debug] > │ </text>                                                                      │

02:09:25 #38392 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38393 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:25 #38394 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38395 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38396 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38397 [Debug] > │ 0.2                                                                          │

02:09:25 #38398 [Debug] > │ </text>                                                                      │

02:09:25 #38399 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38400 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:25 #38401 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38402 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38403 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38404 [Debug] > │ 0.3                                                                          │

02:09:25 #38405 [Debug] > │ </text>                                                                      │

02:09:25 #38406 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38407 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:25 #38408 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38409 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38410 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38411 [Debug] > │ 0.3                                                                          │

02:09:25 #38412 [Debug] > │ </text>                                                                      │

02:09:25 #38413 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38414 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:25 #38415 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38416 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38417 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38418 [Debug] > │ 0.4                                                                          │

02:09:25 #38419 [Debug] > │ </text>                                                                      │

02:09:25 #38420 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38421 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:25 #38422 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38423 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38424 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38425 [Debug] > │ 0.4                                                                          │

02:09:25 #38426 [Debug] > │ </text>                                                                      │

02:09:25 #38427 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38428 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:25 #38429 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38430 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38431 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38432 [Debug] > │ 0.5                                                                          │

02:09:25 #38433 [Debug] > │ </text>                                                                      │

02:09:25 #38434 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38435 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:25 #38436 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38437 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38438 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38439 [Debug] > │ 0.5                                                                          │

02:09:25 #38440 [Debug] > │ </text>                                                                      │

02:09:25 #38441 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38442 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:25 #38443 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38444 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38445 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38446 [Debug] > │ 0.6                                                                          │

02:09:25 #38447 [Debug] > │ </text>                                                                      │

02:09:25 #38448 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38449 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:25 #38450 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:25 #38451 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:25 #38452 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:25 #38453 [Debug] > │ 0.7                                                                          │

02:09:25 #38454 [Debug] > │ </text>                                                                      │

02:09:25 #38455 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38456 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:25 #38457 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38458 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:25 #38459 [Debug] > │ <text x="45" y="402" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #38460 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38461 [Debug] > │ -0.0                                                                         │

02:09:25 #38462 [Debug] > │ </text>                                                                      │

02:09:25 #38463 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38464 [Debug] > │ points="49,402 54,402 "/>                                                    │

02:09:25 #38465 [Debug] > │ <text x="45" y="364" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #38466 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:25 #38467 [Debug] > │ -0.0                                                                         │

02:09:25 #38468 [Debug] > │ </text>                                                                      │

02:09:25 #38469 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:25 #38470 [Debug] > │ points="49,364 54,364 "/>                                                    │

02:09:25 #38471 [Debug] > │ <text x="45" y="326" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:25 #38472 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38473 [Debug] > │ -0.0                                                                         │

02:09:26 #38474 [Debug] > │ </text>                                                                      │

02:09:26 #38475 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38476 [Debug] > │ points="49,326 54,326 "/>                                                    │

02:09:26 #38477 [Debug] > │ <text x="45" y="288" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #38478 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38479 [Debug] > │ -0.0                                                                         │

02:09:26 #38480 [Debug] > │ </text>                                                                      │

02:09:26 #38481 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38482 [Debug] > │ points="49,288 54,288 "/>                                                    │

02:09:26 #38483 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #38484 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38485 [Debug] > │ 0.0                                                                          │

02:09:26 #38486 [Debug] > │ </text>                                                                      │

02:09:26 #38487 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38488 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:26 #38489 [Debug] > │ <text x="45" y="212" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #38490 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38491 [Debug] > │ 0.0                                                                          │

02:09:26 #38492 [Debug] > │ </text>                                                                      │

02:09:26 #38493 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38494 [Debug] > │ points="49,212 54,212 "/>                                                    │

02:09:26 #38495 [Debug] > │ <text x="45" y="174" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #38496 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38497 [Debug] > │ 0.0                                                                          │

02:09:26 #38498 [Debug] > │ </text>                                                                      │

02:09:26 #38499 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38500 [Debug] > │ points="49,174 54,174 "/>                                                    │

02:09:26 #38501 [Debug] > │ <text x="45" y="136" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #38502 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38503 [Debug] > │ 0.0                                                                          │

02:09:26 #38504 [Debug] > │ </text>                                                                      │

02:09:26 #38505 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38506 [Debug] > │ points="49,136 54,136 "/>                                                    │

02:09:26 #38507 [Debug] > │ <text x="45" y="98" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:26 #38508 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38509 [Debug] > │ 0.0                                                                          │

02:09:26 #38510 [Debug] > │ </text>                                                                      │

02:09:26 #38511 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38512 [Debug] > │ points="49,98 54,98 "/>                                                      │

02:09:26 #38513 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38514 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:26 #38515 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:26 #38516 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38517 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38518 [Debug] > │ 0.0                                                                          │

02:09:26 #38519 [Debug] > │ </text>                                                                      │

02:09:26 #38520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38521 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:26 #38522 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38523 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38524 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38525 [Debug] > │ 0.1                                                                          │

02:09:26 #38526 [Debug] > │ </text>                                                                      │

02:09:26 #38527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38528 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:26 #38529 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38530 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38531 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38532 [Debug] > │ 0.1                                                                          │

02:09:26 #38533 [Debug] > │ </text>                                                                      │

02:09:26 #38534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38535 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:26 #38536 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38537 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38538 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38539 [Debug] > │ 0.2                                                                          │

02:09:26 #38540 [Debug] > │ </text>                                                                      │

02:09:26 #38541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38542 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:26 #38543 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38545 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38546 [Debug] > │ 0.2                                                                          │

02:09:26 #38547 [Debug] > │ </text>                                                                      │

02:09:26 #38548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38549 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:26 #38550 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38551 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38552 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38553 [Debug] > │ 0.2                                                                          │

02:09:26 #38554 [Debug] > │ </text>                                                                      │

02:09:26 #38555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38556 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:26 #38557 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38559 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38560 [Debug] > │ 0.3                                                                          │

02:09:26 #38561 [Debug] > │ </text>                                                                      │

02:09:26 #38562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38563 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:26 #38564 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38565 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38566 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38567 [Debug] > │ 0.3                                                                          │

02:09:26 #38568 [Debug] > │ </text>                                                                      │

02:09:26 #38569 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38570 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:26 #38571 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38572 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38573 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38574 [Debug] > │ 0.4                                                                          │

02:09:26 #38575 [Debug] > │ </text>                                                                      │

02:09:26 #38576 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38577 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:26 #38578 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38579 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38580 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38581 [Debug] > │ 0.4                                                                          │

02:09:26 #38582 [Debug] > │ </text>                                                                      │

02:09:26 #38583 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38584 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:26 #38585 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38586 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38587 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38588 [Debug] > │ 0.5                                                                          │

02:09:26 #38589 [Debug] > │ </text>                                                                      │

02:09:26 #38590 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38591 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:26 #38592 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38593 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38594 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38595 [Debug] > │ 0.5                                                                          │

02:09:26 #38596 [Debug] > │ </text>                                                                      │

02:09:26 #38597 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38598 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:26 #38599 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38601 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38602 [Debug] > │ 0.6                                                                          │

02:09:26 #38603 [Debug] > │ </text>                                                                      │

02:09:26 #38604 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38605 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:26 #38606 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38607 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38608 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38609 [Debug] > │ 0.7                                                                          │

02:09:26 #38610 [Debug] > │ </text>                                                                      │

02:09:26 #38611 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38612 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:26 #38613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38614 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:26 #38615 [Debug] > │ <text x="595" y="402" dy="0.5ex" text-anchor="start"                         │

02:09:26 #38616 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38617 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38618 [Debug] > │ -0.0                                                                         │

02:09:26 #38619 [Debug] > │ </text>                                                                      │

02:09:26 #38620 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38621 [Debug] > │ points="585,402 590,402 "/>                                                  │

02:09:26 #38622 [Debug] > │ <text x="595" y="364" dy="0.5ex" text-anchor="start"                         │

02:09:26 #38623 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38624 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38625 [Debug] > │ -0.0                                                                         │

02:09:26 #38626 [Debug] > │ </text>                                                                      │

02:09:26 #38627 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38628 [Debug] > │ points="585,364 590,364 "/>                                                  │

02:09:26 #38629 [Debug] > │ <text x="595" y="326" dy="0.5ex" text-anchor="start"                         │

02:09:26 #38630 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38631 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38632 [Debug] > │ -0.0                                                                         │

02:09:26 #38633 [Debug] > │ </text>                                                                      │

02:09:26 #38634 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38635 [Debug] > │ points="585,326 590,326 "/>                                                  │

02:09:26 #38636 [Debug] > │ <text x="595" y="288" dy="0.5ex" text-anchor="start"                         │

02:09:26 #38637 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38638 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38639 [Debug] > │ -0.0                                                                         │

02:09:26 #38640 [Debug] > │ </text>                                                                      │

02:09:26 #38641 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38642 [Debug] > │ points="585,288 590,288 "/>                                                  │

02:09:26 #38643 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #38644 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38645 [Debug] > │ 0.0                                                                          │

02:09:26 #38646 [Debug] > │ </text>                                                                      │

02:09:26 #38647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38648 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:26 #38649 [Debug] > │ <text x="617" y="212" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #38650 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38651 [Debug] > │ 0.0                                                                          │

02:09:26 #38652 [Debug] > │ </text>                                                                      │

02:09:26 #38653 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38654 [Debug] > │ points="585,212 590,212 "/>                                                  │

02:09:26 #38655 [Debug] > │ <text x="617" y="174" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #38656 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38657 [Debug] > │ 0.0                                                                          │

02:09:26 #38658 [Debug] > │ </text>                                                                      │

02:09:26 #38659 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38660 [Debug] > │ points="585,174 590,174 "/>                                                  │

02:09:26 #38661 [Debug] > │ <text x="617" y="136" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #38662 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38663 [Debug] > │ 0.0                                                                          │

02:09:26 #38664 [Debug] > │ </text>                                                                      │

02:09:26 #38665 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38666 [Debug] > │ points="585,136 590,136 "/>                                                  │

02:09:26 #38667 [Debug] > │ <text x="617" y="98" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #38668 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #38669 [Debug] > │ 0.0                                                                          │

02:09:26 #38670 [Debug] > │ </text>                                                                      │

02:09:26 #38671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38672 [Debug] > │ points="585,98 590,98 "/>                                                    │

02:09:26 #38673 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #38674 [Debug] > │ points="69,250 77,274 85,297 93,319 100,340 108,359 116,376 123,390 131,401  │

02:09:26 #38675 [Debug] > │ 139,409 146,413 154,415 162,412 169,407 177,398 185,386 192,371 200,353      │

02:09:26 #38676 [Debug] > │ 208,333 215,312 223,289 231,266 238,242 246,218 254,195 261,173 269,153      │

02:09:26 #38677 [Debug] > │ 277,135 284,119 292,106 300,96 307,89 315,86 323,85 330,88 337,93 343,98     │

02:09:26 #38678 [Debug] > │ 348,102 350,100 349,94 348,87 346,86 347,94 348,106 348,117 347,130 347,147  │

02:09:26 #38679 [Debug] > │ 348,168 347,188 347,210 348,235 348,258 347,281 348,304 347,325 348,346      │

02:09:26 #38680 [Debug] > │ 348,364 348,379 348,392 348,402 348,409 348,412 545,170 553,196 561,223      │

02:09:26 #38681 [Debug] > │ 569,250 "/>                                                                  │

02:09:26 #38682 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:26 #38683 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:26 #38684 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:26 #38685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38686 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38687 [Debug] > │ 40                                                                           │

02:09:26 #38688 [Debug] > │ </text>                                                                      │

02:09:26 #38689 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #38690 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:26 #38691 [Debug] > │ </svg>                                                                       │

02:09:26 #38692 [Debug] > │ </td></tr><tr><td>41</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:26 #38693 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:26 #38694 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:26 #38695 [Debug] > │ stroke="none"/>                                                              │

02:09:26 #38696 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:26 #38697 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38698 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38699 [Debug] > │ wave                                                                         │

02:09:26 #38700 [Debug] > │ </text>                                                                      │

02:09:26 #38701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:26 #38702 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #38703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #38704 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #38705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:26 #38706 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #38707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:26 #38708 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #38709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:26 #38710 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #38711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:26 #38712 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:26 #38713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:26 #38714 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:26 #38715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:26 #38716 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:26 #38717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:26 #38718 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:26 #38719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:26 #38720 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:26 #38721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:26 #38722 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:26 #38723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:26 #38724 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:26 #38725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:26 #38726 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:26 #38727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:26 #38728 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:26 #38729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:26 #38730 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:26 #38731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:26 #38732 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:26 #38733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:26 #38734 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:26 #38735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:26 #38736 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:26 #38737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:26 #38738 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:26 #38739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:26 #38740 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:26 #38741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:26 #38742 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:26 #38743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:26 #38744 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:26 #38745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:26 #38746 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:26 #38747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:26 #38748 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:26 #38749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:26 #38750 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:26 #38751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:26 #38752 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:26 #38753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:26 #38754 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:26 #38755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:26 #38756 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:26 #38757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:26 #38758 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:26 #38759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:26 #38760 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:26 #38761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:26 #38762 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:26 #38763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:26 #38764 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:26 #38765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:26 #38766 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:26 #38767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:26 #38768 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:26 #38769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:26 #38770 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:26 #38771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:26 #38772 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:26 #38773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:26 #38774 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:26 #38775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:26 #38776 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:26 #38777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:26 #38778 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:26 #38779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:26 #38780 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:26 #38781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:26 #38782 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:26 #38783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:26 #38784 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:26 #38785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:26 #38786 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:26 #38787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:26 #38788 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:26 #38789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:26 #38790 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:26 #38791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:26 #38792 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:26 #38793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:26 #38794 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:26 #38795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:26 #38796 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:26 #38797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:26 #38798 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:26 #38799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:26 #38800 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:26 #38801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:26 #38802 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:26 #38803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:26 #38804 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:26 #38805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:26 #38806 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:26 #38807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:26 #38808 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:26 #38809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:26 #38810 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:26 #38811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:26 #38812 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:26 #38813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:26 #38814 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:26 #38815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:26 #38816 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:26 #38817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:26 #38818 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:26 #38819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:26 #38820 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:26 #38821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:26 #38822 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:26 #38823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:26 #38824 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:26 #38825 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:26 #38826 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:26 #38827 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:26 #38828 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:26 #38829 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:26 #38830 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:26 #38831 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:26 #38832 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:26 #38833 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:26 #38834 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:26 #38835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:26 #38836 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:26 #38837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="397"         │

02:09:26 #38838 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:26 #38839 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:26 #38840 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:26 #38841 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="361"         │

02:09:26 #38842 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:26 #38843 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="342"         │

02:09:26 #38844 [Debug] > │ x2="584" y2="342"/>                                                          │

02:09:26 #38845 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="324"         │

02:09:26 #38846 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:26 #38847 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:09:26 #38848 [Debug] > │ x2="584" y2="306"/>                                                          │

02:09:26 #38849 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:09:26 #38850 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:26 #38851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:26 #38852 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:26 #38853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:26 #38854 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:26 #38855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:26 #38856 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:26 #38857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="215"         │

02:09:26 #38858 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:26 #38859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="197"         │

02:09:26 #38860 [Debug] > │ x2="584" y2="197"/>                                                          │

02:09:26 #38861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="179"         │

02:09:26 #38862 [Debug] > │ x2="584" y2="179"/>                                                          │

02:09:26 #38863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:09:26 #38864 [Debug] > │ x2="584" y2="161"/>                                                          │

02:09:26 #38865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:26 #38866 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:26 #38867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:09:26 #38868 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:26 #38869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="106"         │

02:09:26 #38870 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:26 #38871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="88" x2="584" │

02:09:26 #38872 [Debug] > │ y2="88"/>                                                                    │

02:09:26 #38873 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:26 #38874 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38875 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38876 [Debug] > │ position (m)                                                                 │

02:09:26 #38877 [Debug] > │ </text>                                                                      │

02:09:26 #38878 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:26 #38879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38880 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:26 #38881 [Debug] > │ displacement (m)                                                             │

02:09:26 #38882 [Debug] > │ </text>                                                                      │

02:09:26 #38883 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:26 #38884 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38885 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38886 [Debug] > │ position (m)                                                                 │

02:09:26 #38887 [Debug] > │ </text>                                                                      │

02:09:26 #38888 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:26 #38889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38890 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:26 #38891 [Debug] > │ displacement (m)                                                             │

02:09:26 #38892 [Debug] > │ </text>                                                                      │

02:09:26 #38893 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #38894 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #38895 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:26 #38896 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:26 #38897 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:26 #38898 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:26 #38899 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:26 #38900 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:26 #38901 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:26 #38902 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:26 #38903 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:26 #38904 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:26 #38905 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:26 #38906 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:26 #38907 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:26 #38908 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:26 #38909 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:26 #38910 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:26 #38911 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:26 #38912 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:26 #38913 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:26 #38914 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:26 #38915 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:26 #38916 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:26 #38917 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:26 #38918 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:26 #38919 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:26 #38920 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:26 #38921 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="397"         │

02:09:26 #38922 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:26 #38923 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="361"         │

02:09:26 #38924 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:26 #38925 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="324"         │

02:09:26 #38926 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:26 #38927 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="288"         │

02:09:26 #38928 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:26 #38929 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:26 #38930 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:26 #38931 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="215"         │

02:09:26 #38932 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:26 #38933 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="179"         │

02:09:26 #38934 [Debug] > │ x2="584" y2="179"/>                                                          │

02:09:26 #38935 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="142"         │

02:09:26 #38936 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:26 #38937 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="106"         │

02:09:26 #38938 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:26 #38939 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38940 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:26 #38941 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:26 #38942 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38943 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38944 [Debug] > │ 0.0                                                                          │

02:09:26 #38945 [Debug] > │ </text>                                                                      │

02:09:26 #38946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38947 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:26 #38948 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38949 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38950 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38951 [Debug] > │ 0.1                                                                          │

02:09:26 #38952 [Debug] > │ </text>                                                                      │

02:09:26 #38953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38954 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:26 #38955 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38956 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38957 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38958 [Debug] > │ 0.1                                                                          │

02:09:26 #38959 [Debug] > │ </text>                                                                      │

02:09:26 #38960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38961 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:26 #38962 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38964 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38965 [Debug] > │ 0.2                                                                          │

02:09:26 #38966 [Debug] > │ </text>                                                                      │

02:09:26 #38967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38968 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:26 #38969 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38972 [Debug] > │ 0.2                                                                          │

02:09:26 #38973 [Debug] > │ </text>                                                                      │

02:09:26 #38974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38975 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:26 #38976 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38979 [Debug] > │ 0.2                                                                          │

02:09:26 #38980 [Debug] > │ </text>                                                                      │

02:09:26 #38981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38982 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:26 #38983 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38986 [Debug] > │ 0.3                                                                          │

02:09:26 #38987 [Debug] > │ </text>                                                                      │

02:09:26 #38988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38989 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:26 #38990 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #38993 [Debug] > │ 0.3                                                                          │

02:09:26 #38994 [Debug] > │ </text>                                                                      │

02:09:26 #38995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #38996 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:26 #38997 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #38998 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #38999 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39000 [Debug] > │ 0.4                                                                          │

02:09:26 #39001 [Debug] > │ </text>                                                                      │

02:09:26 #39002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39003 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:26 #39004 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39005 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39006 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39007 [Debug] > │ 0.4                                                                          │

02:09:26 #39008 [Debug] > │ </text>                                                                      │

02:09:26 #39009 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39010 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:26 #39011 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39012 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39013 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39014 [Debug] > │ 0.5                                                                          │

02:09:26 #39015 [Debug] > │ </text>                                                                      │

02:09:26 #39016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39017 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:26 #39018 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39020 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39021 [Debug] > │ 0.5                                                                          │

02:09:26 #39022 [Debug] > │ </text>                                                                      │

02:09:26 #39023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39024 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:26 #39025 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39026 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39027 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39028 [Debug] > │ 0.6                                                                          │

02:09:26 #39029 [Debug] > │ </text>                                                                      │

02:09:26 #39030 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39031 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:26 #39032 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39033 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39034 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39035 [Debug] > │ 0.7                                                                          │

02:09:26 #39036 [Debug] > │ </text>                                                                      │

02:09:26 #39037 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39038 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:26 #39039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39040 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:26 #39041 [Debug] > │ <text x="45" y="397" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39042 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39043 [Debug] > │ -0.0                                                                         │

02:09:26 #39044 [Debug] > │ </text>                                                                      │

02:09:26 #39045 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39046 [Debug] > │ points="49,397 54,397 "/>                                                    │

02:09:26 #39047 [Debug] > │ <text x="45" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39048 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39049 [Debug] > │ -0.0                                                                         │

02:09:26 #39050 [Debug] > │ </text>                                                                      │

02:09:26 #39051 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39052 [Debug] > │ points="49,361 54,361 "/>                                                    │

02:09:26 #39053 [Debug] > │ <text x="45" y="324" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39054 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39055 [Debug] > │ -0.0                                                                         │

02:09:26 #39056 [Debug] > │ </text>                                                                      │

02:09:26 #39057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39058 [Debug] > │ points="49,324 54,324 "/>                                                    │

02:09:26 #39059 [Debug] > │ <text x="45" y="288" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39060 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39061 [Debug] > │ -0.0                                                                         │

02:09:26 #39062 [Debug] > │ </text>                                                                      │

02:09:26 #39063 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39064 [Debug] > │ points="49,288 54,288 "/>                                                    │

02:09:26 #39065 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39066 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39067 [Debug] > │ 0.0                                                                          │

02:09:26 #39068 [Debug] > │ </text>                                                                      │

02:09:26 #39069 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39070 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:26 #39071 [Debug] > │ <text x="45" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39072 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39073 [Debug] > │ 0.0                                                                          │

02:09:26 #39074 [Debug] > │ </text>                                                                      │

02:09:26 #39075 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39076 [Debug] > │ points="49,215 54,215 "/>                                                    │

02:09:26 #39077 [Debug] > │ <text x="45" y="179" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39078 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39079 [Debug] > │ 0.0                                                                          │

02:09:26 #39080 [Debug] > │ </text>                                                                      │

02:09:26 #39081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39082 [Debug] > │ points="49,179 54,179 "/>                                                    │

02:09:26 #39083 [Debug] > │ <text x="45" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39084 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39085 [Debug] > │ 0.0                                                                          │

02:09:26 #39086 [Debug] > │ </text>                                                                      │

02:09:26 #39087 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39088 [Debug] > │ points="49,142 54,142 "/>                                                    │

02:09:26 #39089 [Debug] > │ <text x="45" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39090 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39091 [Debug] > │ 0.0                                                                          │

02:09:26 #39092 [Debug] > │ </text>                                                                      │

02:09:26 #39093 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39094 [Debug] > │ points="49,106 54,106 "/>                                                    │

02:09:26 #39095 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39096 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:26 #39097 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:26 #39098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39100 [Debug] > │ 0.0                                                                          │

02:09:26 #39101 [Debug] > │ </text>                                                                      │

02:09:26 #39102 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39103 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:26 #39104 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39105 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39106 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39107 [Debug] > │ 0.1                                                                          │

02:09:26 #39108 [Debug] > │ </text>                                                                      │

02:09:26 #39109 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39110 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:26 #39111 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39112 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39113 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39114 [Debug] > │ 0.1                                                                          │

02:09:26 #39115 [Debug] > │ </text>                                                                      │

02:09:26 #39116 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39117 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:26 #39118 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39119 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39120 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39121 [Debug] > │ 0.2                                                                          │

02:09:26 #39122 [Debug] > │ </text>                                                                      │

02:09:26 #39123 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39124 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:26 #39125 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39126 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39127 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39128 [Debug] > │ 0.2                                                                          │

02:09:26 #39129 [Debug] > │ </text>                                                                      │

02:09:26 #39130 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39131 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:26 #39132 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39133 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39134 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39135 [Debug] > │ 0.2                                                                          │

02:09:26 #39136 [Debug] > │ </text>                                                                      │

02:09:26 #39137 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39138 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:26 #39139 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39140 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39141 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39142 [Debug] > │ 0.3                                                                          │

02:09:26 #39143 [Debug] > │ </text>                                                                      │

02:09:26 #39144 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39145 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:26 #39146 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39147 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39148 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39149 [Debug] > │ 0.3                                                                          │

02:09:26 #39150 [Debug] > │ </text>                                                                      │

02:09:26 #39151 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39152 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:26 #39153 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39154 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39155 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39156 [Debug] > │ 0.4                                                                          │

02:09:26 #39157 [Debug] > │ </text>                                                                      │

02:09:26 #39158 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39159 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:26 #39160 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39161 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39162 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39163 [Debug] > │ 0.4                                                                          │

02:09:26 #39164 [Debug] > │ </text>                                                                      │

02:09:26 #39165 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39166 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:26 #39167 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39168 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39169 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39170 [Debug] > │ 0.5                                                                          │

02:09:26 #39171 [Debug] > │ </text>                                                                      │

02:09:26 #39172 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39173 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:26 #39174 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39175 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39176 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39177 [Debug] > │ 0.5                                                                          │

02:09:26 #39178 [Debug] > │ </text>                                                                      │

02:09:26 #39179 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39180 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:26 #39181 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39182 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39183 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39184 [Debug] > │ 0.6                                                                          │

02:09:26 #39185 [Debug] > │ </text>                                                                      │

02:09:26 #39186 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39187 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:26 #39188 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39189 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39190 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39191 [Debug] > │ 0.7                                                                          │

02:09:26 #39192 [Debug] > │ </text>                                                                      │

02:09:26 #39193 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39194 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:26 #39195 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39196 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:26 #39197 [Debug] > │ <text x="595" y="397" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39198 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39199 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39200 [Debug] > │ -0.0                                                                         │

02:09:26 #39201 [Debug] > │ </text>                                                                      │

02:09:26 #39202 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39203 [Debug] > │ points="585,397 590,397 "/>                                                  │

02:09:26 #39204 [Debug] > │ <text x="595" y="361" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39205 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39206 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39207 [Debug] > │ -0.0                                                                         │

02:09:26 #39208 [Debug] > │ </text>                                                                      │

02:09:26 #39209 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39210 [Debug] > │ points="585,361 590,361 "/>                                                  │

02:09:26 #39211 [Debug] > │ <text x="595" y="324" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39212 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39213 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39214 [Debug] > │ -0.0                                                                         │

02:09:26 #39215 [Debug] > │ </text>                                                                      │

02:09:26 #39216 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39217 [Debug] > │ points="585,324 590,324 "/>                                                  │

02:09:26 #39218 [Debug] > │ <text x="595" y="288" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39219 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39220 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39221 [Debug] > │ -0.0                                                                         │

02:09:26 #39222 [Debug] > │ </text>                                                                      │

02:09:26 #39223 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39224 [Debug] > │ points="585,288 590,288 "/>                                                  │

02:09:26 #39225 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39226 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39227 [Debug] > │ 0.0                                                                          │

02:09:26 #39228 [Debug] > │ </text>                                                                      │

02:09:26 #39229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39230 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:26 #39231 [Debug] > │ <text x="617" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39232 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39233 [Debug] > │ 0.0                                                                          │

02:09:26 #39234 [Debug] > │ </text>                                                                      │

02:09:26 #39235 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39236 [Debug] > │ points="585,215 590,215 "/>                                                  │

02:09:26 #39237 [Debug] > │ <text x="617" y="179" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39238 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39239 [Debug] > │ 0.0                                                                          │

02:09:26 #39240 [Debug] > │ </text>                                                                      │

02:09:26 #39241 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39242 [Debug] > │ points="585,179 590,179 "/>                                                  │

02:09:26 #39243 [Debug] > │ <text x="617" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39244 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39245 [Debug] > │ 0.0                                                                          │

02:09:26 #39246 [Debug] > │ </text>                                                                      │

02:09:26 #39247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39248 [Debug] > │ points="585,142 590,142 "/>                                                  │

02:09:26 #39249 [Debug] > │ <text x="617" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39250 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39251 [Debug] > │ 0.0                                                                          │

02:09:26 #39252 [Debug] > │ </text>                                                                      │

02:09:26 #39253 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39254 [Debug] > │ points="585,106 590,106 "/>                                                  │

02:09:26 #39255 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #39256 [Debug] > │ points="69,251 77,273 85,294 93,314 100,333 108,350 116,365 123,378 131,388  │

02:09:26 #39257 [Debug] > │ 139,395 146,399 154,400 162,398 169,393 177,385 185,374 192,360 200,345      │

02:09:26 #39258 [Debug] > │ 208,327 215,308 223,287 231,266 238,244 246,223 254,202 261,182 269,164      │

02:09:26 #39259 [Debug] > │ 277,148 284,133 292,122 300,112 307,106 315,103 323,103 330,104 336,107      │

02:09:26 #39260 [Debug] > │ 342,109 345,107 345,101 343,92 342,85 342,87 343,97 343,107 343,117 342,130  │

02:09:26 #39261 [Debug] > │ 343,150 343,169 342,189 343,212 343,236 343,259 343,283 343,306 343,327      │

02:09:26 #39262 [Debug] > │ 343,348 343,366 343,382 343,394 343,404 343,411 343,415 545,175 553,200      │

02:09:26 #39263 [Debug] > │ 563,233 569,251 "/>                                                          │

02:09:26 #39264 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:26 #39265 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:26 #39266 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:26 #39267 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39268 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39269 [Debug] > │ 41                                                                           │

02:09:26 #39270 [Debug] > │ </text>                                                                      │

02:09:26 #39271 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #39272 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:26 #39273 [Debug] > │ </svg>                                                                       │

02:09:26 #39274 [Debug] > │ </td></tr><tr><td>42</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:26 #39275 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:26 #39276 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:26 #39277 [Debug] > │ stroke="none"/>                                                              │

02:09:26 #39278 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:26 #39279 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39280 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39281 [Debug] > │ wave                                                                         │

02:09:26 #39282 [Debug] > │ </text>                                                                      │

02:09:26 #39283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:26 #39284 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #39286 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:26 #39288 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:26 #39290 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:26 #39292 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:26 #39294 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:26 #39295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:26 #39296 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:26 #39297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:26 #39298 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:26 #39299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:26 #39300 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:26 #39301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:26 #39302 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:26 #39303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:26 #39304 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:26 #39305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:26 #39306 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:26 #39307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:26 #39308 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:26 #39309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:26 #39310 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:26 #39311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:26 #39312 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:26 #39313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:26 #39314 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:26 #39315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:26 #39316 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:26 #39317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:26 #39318 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:26 #39319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:26 #39320 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:26 #39321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:26 #39322 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:26 #39323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:26 #39324 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:26 #39325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:26 #39326 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:26 #39327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:26 #39328 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:26 #39329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:26 #39330 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:26 #39331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:26 #39332 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:26 #39333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:26 #39334 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:26 #39335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:26 #39336 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:26 #39337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:26 #39338 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:26 #39339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:26 #39340 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:26 #39341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:26 #39342 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:26 #39343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:26 #39344 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:26 #39345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:26 #39346 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:26 #39347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:26 #39348 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:26 #39349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:26 #39350 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:26 #39351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:26 #39352 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:26 #39353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:26 #39354 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:26 #39355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:26 #39356 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:26 #39357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:26 #39358 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:26 #39359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:26 #39360 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:26 #39361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:26 #39362 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:26 #39363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:26 #39364 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:26 #39365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:26 #39366 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:26 #39367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:26 #39368 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:26 #39369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:26 #39370 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:26 #39371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:26 #39372 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:26 #39373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:26 #39374 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:26 #39375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:26 #39376 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:26 #39377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:26 #39378 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:26 #39379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:26 #39380 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:26 #39381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:26 #39382 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:26 #39383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:26 #39384 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:26 #39385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:26 #39386 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:26 #39387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:26 #39388 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:26 #39389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:26 #39390 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:26 #39391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:26 #39392 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:26 #39393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:26 #39394 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:26 #39395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:26 #39396 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:26 #39397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:26 #39398 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:26 #39399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:26 #39400 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:26 #39401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:26 #39402 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:26 #39403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:26 #39404 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:26 #39405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:26 #39406 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:26 #39407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:26 #39408 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:26 #39409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:26 #39410 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:26 #39411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:26 #39412 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:26 #39413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:26 #39414 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:26 #39415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:26 #39416 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:26 #39417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="409"         │

02:09:26 #39418 [Debug] > │ x2="584" y2="409"/>                                                          │

02:09:26 #39419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="391"         │

02:09:26 #39420 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:26 #39421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:26 #39422 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:26 #39423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="356"         │

02:09:26 #39424 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:26 #39425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:26 #39426 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:26 #39427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="322"         │

02:09:26 #39428 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:26 #39429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="304"         │

02:09:26 #39430 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:26 #39431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:09:26 #39432 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:26 #39433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:26 #39434 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:26 #39435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="252"         │

02:09:26 #39436 [Debug] > │ x2="584" y2="252"/>                                                          │

02:09:26 #39437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:26 #39438 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:26 #39439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:26 #39440 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:26 #39441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:26 #39442 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:26 #39443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:26 #39444 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:26 #39445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:26 #39446 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:26 #39447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:09:26 #39448 [Debug] > │ x2="584" y2="147"/>                                                          │

02:09:26 #39449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="130"         │

02:09:26 #39450 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:26 #39451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="112"         │

02:09:26 #39452 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:26 #39453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="95" x2="584" │

02:09:26 #39454 [Debug] > │ y2="95"/>                                                                    │

02:09:26 #39455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="78" x2="584" │

02:09:26 #39456 [Debug] > │ y2="78"/>                                                                    │

02:09:26 #39457 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:26 #39458 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39459 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39460 [Debug] > │ position (m)                                                                 │

02:09:26 #39461 [Debug] > │ </text>                                                                      │

02:09:26 #39462 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:26 #39463 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39464 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:26 #39465 [Debug] > │ displacement (m)                                                             │

02:09:26 #39466 [Debug] > │ </text>                                                                      │

02:09:26 #39467 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:26 #39468 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39469 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39470 [Debug] > │ position (m)                                                                 │

02:09:26 #39471 [Debug] > │ </text>                                                                      │

02:09:26 #39472 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39473 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39474 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:26 #39475 [Debug] > │ displacement (m)                                                             │

02:09:26 #39476 [Debug] > │ </text>                                                                      │

02:09:26 #39477 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #39478 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39479 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:26 #39480 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:26 #39481 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:26 #39482 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:26 #39483 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:26 #39484 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:26 #39485 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:26 #39486 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:26 #39487 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:26 #39488 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:26 #39489 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:26 #39490 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:26 #39491 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:26 #39492 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:26 #39493 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:26 #39494 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:26 #39495 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:26 #39496 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:26 #39497 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:26 #39498 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:26 #39499 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:26 #39500 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:26 #39501 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:26 #39502 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:26 #39503 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:26 #39504 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:26 #39505 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="391"         │

02:09:26 #39506 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:26 #39507 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="356"         │

02:09:26 #39508 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:26 #39509 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="322"         │

02:09:26 #39510 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:26 #39511 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="287"         │

02:09:26 #39512 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:26 #39513 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="252"         │

02:09:26 #39514 [Debug] > │ x2="584" y2="252"/>                                                          │

02:09:26 #39515 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="217"         │

02:09:26 #39516 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:26 #39517 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="182"         │

02:09:26 #39518 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:26 #39519 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="147"         │

02:09:26 #39520 [Debug] > │ x2="584" y2="147"/>                                                          │

02:09:26 #39521 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="112"         │

02:09:26 #39522 [Debug] > │ x2="584" y2="112"/>                                                          │

02:09:26 #39523 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="78" x2="584" │

02:09:26 #39524 [Debug] > │ y2="78"/>                                                                    │

02:09:26 #39525 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39526 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:26 #39527 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:26 #39528 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39529 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39530 [Debug] > │ 0.0                                                                          │

02:09:26 #39531 [Debug] > │ </text>                                                                      │

02:09:26 #39532 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39533 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:26 #39534 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39535 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39536 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39537 [Debug] > │ 0.1                                                                          │

02:09:26 #39538 [Debug] > │ </text>                                                                      │

02:09:26 #39539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39540 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:26 #39541 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39542 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39543 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39544 [Debug] > │ 0.1                                                                          │

02:09:26 #39545 [Debug] > │ </text>                                                                      │

02:09:26 #39546 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39547 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:26 #39548 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39549 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39550 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39551 [Debug] > │ 0.2                                                                          │

02:09:26 #39552 [Debug] > │ </text>                                                                      │

02:09:26 #39553 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39554 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:26 #39555 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39556 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39557 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39558 [Debug] > │ 0.2                                                                          │

02:09:26 #39559 [Debug] > │ </text>                                                                      │

02:09:26 #39560 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39561 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:26 #39562 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39563 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39564 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39565 [Debug] > │ 0.2                                                                          │

02:09:26 #39566 [Debug] > │ </text>                                                                      │

02:09:26 #39567 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39568 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:26 #39569 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39570 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39571 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39572 [Debug] > │ 0.3                                                                          │

02:09:26 #39573 [Debug] > │ </text>                                                                      │

02:09:26 #39574 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39575 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:26 #39576 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39577 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39578 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39579 [Debug] > │ 0.3                                                                          │

02:09:26 #39580 [Debug] > │ </text>                                                                      │

02:09:26 #39581 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39582 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:26 #39583 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39584 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39585 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39586 [Debug] > │ 0.4                                                                          │

02:09:26 #39587 [Debug] > │ </text>                                                                      │

02:09:26 #39588 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39589 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:26 #39590 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39591 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39592 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39593 [Debug] > │ 0.4                                                                          │

02:09:26 #39594 [Debug] > │ </text>                                                                      │

02:09:26 #39595 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39596 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:26 #39597 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39598 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39599 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39600 [Debug] > │ 0.5                                                                          │

02:09:26 #39601 [Debug] > │ </text>                                                                      │

02:09:26 #39602 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39603 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:26 #39604 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39605 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39606 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39607 [Debug] > │ 0.5                                                                          │

02:09:26 #39608 [Debug] > │ </text>                                                                      │

02:09:26 #39609 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39610 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:26 #39611 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39612 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39613 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39614 [Debug] > │ 0.6                                                                          │

02:09:26 #39615 [Debug] > │ </text>                                                                      │

02:09:26 #39616 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39617 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:26 #39618 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #39619 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39620 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39621 [Debug] > │ 0.7                                                                          │

02:09:26 #39622 [Debug] > │ </text>                                                                      │

02:09:26 #39623 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39624 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:26 #39625 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39626 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:26 #39627 [Debug] > │ <text x="45" y="391" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39628 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39629 [Debug] > │ -0.0                                                                         │

02:09:26 #39630 [Debug] > │ </text>                                                                      │

02:09:26 #39631 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39632 [Debug] > │ points="49,391 54,391 "/>                                                    │

02:09:26 #39633 [Debug] > │ <text x="45" y="356" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39634 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39635 [Debug] > │ -0.0                                                                         │

02:09:26 #39636 [Debug] > │ </text>                                                                      │

02:09:26 #39637 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39638 [Debug] > │ points="49,356 54,356 "/>                                                    │

02:09:26 #39639 [Debug] > │ <text x="45" y="322" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39640 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39641 [Debug] > │ -0.0                                                                         │

02:09:26 #39642 [Debug] > │ </text>                                                                      │

02:09:26 #39643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39644 [Debug] > │ points="49,322 54,322 "/>                                                    │

02:09:26 #39645 [Debug] > │ <text x="45" y="287" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39646 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39647 [Debug] > │ -0.0                                                                         │

02:09:26 #39648 [Debug] > │ </text>                                                                      │

02:09:26 #39649 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39650 [Debug] > │ points="49,287 54,287 "/>                                                    │

02:09:26 #39651 [Debug] > │ <text x="45" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39652 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39653 [Debug] > │ 0.0                                                                          │

02:09:26 #39654 [Debug] > │ </text>                                                                      │

02:09:26 #39655 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39656 [Debug] > │ points="49,252 54,252 "/>                                                    │

02:09:26 #39657 [Debug] > │ <text x="45" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39658 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39659 [Debug] > │ 0.0                                                                          │

02:09:26 #39660 [Debug] > │ </text>                                                                      │

02:09:26 #39661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39662 [Debug] > │ points="49,217 54,217 "/>                                                    │

02:09:26 #39663 [Debug] > │ <text x="45" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39664 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39665 [Debug] > │ 0.0                                                                          │

02:09:26 #39666 [Debug] > │ </text>                                                                      │

02:09:26 #39667 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39668 [Debug] > │ points="49,182 54,182 "/>                                                    │

02:09:26 #39669 [Debug] > │ <text x="45" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39670 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39671 [Debug] > │ 0.0                                                                          │

02:09:26 #39672 [Debug] > │ </text>                                                                      │

02:09:26 #39673 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39674 [Debug] > │ points="49,147 54,147 "/>                                                    │

02:09:26 #39675 [Debug] > │ <text x="45" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39676 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39677 [Debug] > │ 0.0                                                                          │

02:09:26 #39678 [Debug] > │ </text>                                                                      │

02:09:26 #39679 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39680 [Debug] > │ points="49,112 54,112 "/>                                                    │

02:09:26 #39681 [Debug] > │ <text x="45" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:26 #39682 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39683 [Debug] > │ 0.0                                                                          │

02:09:26 #39684 [Debug] > │ </text>                                                                      │

02:09:26 #39685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39686 [Debug] > │ points="49,78 54,78 "/>                                                      │

02:09:26 #39687 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39688 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:26 #39689 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:26 #39690 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39691 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39692 [Debug] > │ 0.0                                                                          │

02:09:26 #39693 [Debug] > │ </text>                                                                      │

02:09:26 #39694 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39695 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:26 #39696 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39697 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39698 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39699 [Debug] > │ 0.1                                                                          │

02:09:26 #39700 [Debug] > │ </text>                                                                      │

02:09:26 #39701 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39702 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:26 #39703 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39704 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39705 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39706 [Debug] > │ 0.1                                                                          │

02:09:26 #39707 [Debug] > │ </text>                                                                      │

02:09:26 #39708 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39709 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:26 #39710 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39711 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39712 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39713 [Debug] > │ 0.2                                                                          │

02:09:26 #39714 [Debug] > │ </text>                                                                      │

02:09:26 #39715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39716 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:26 #39717 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39718 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39719 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39720 [Debug] > │ 0.2                                                                          │

02:09:26 #39721 [Debug] > │ </text>                                                                      │

02:09:26 #39722 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39723 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:26 #39724 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39725 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39726 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39727 [Debug] > │ 0.2                                                                          │

02:09:26 #39728 [Debug] > │ </text>                                                                      │

02:09:26 #39729 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39730 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:26 #39731 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39732 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39733 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39734 [Debug] > │ 0.3                                                                          │

02:09:26 #39735 [Debug] > │ </text>                                                                      │

02:09:26 #39736 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39737 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:26 #39738 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39739 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39740 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39741 [Debug] > │ 0.3                                                                          │

02:09:26 #39742 [Debug] > │ </text>                                                                      │

02:09:26 #39743 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39744 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:26 #39745 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39746 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39747 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39748 [Debug] > │ 0.4                                                                          │

02:09:26 #39749 [Debug] > │ </text>                                                                      │

02:09:26 #39750 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39751 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:26 #39752 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39753 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39754 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39755 [Debug] > │ 0.4                                                                          │

02:09:26 #39756 [Debug] > │ </text>                                                                      │

02:09:26 #39757 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39758 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:26 #39759 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39760 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39761 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39762 [Debug] > │ 0.5                                                                          │

02:09:26 #39763 [Debug] > │ </text>                                                                      │

02:09:26 #39764 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39765 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:26 #39766 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39767 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39768 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39769 [Debug] > │ 0.5                                                                          │

02:09:26 #39770 [Debug] > │ </text>                                                                      │

02:09:26 #39771 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39772 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:26 #39773 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39774 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39775 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39776 [Debug] > │ 0.6                                                                          │

02:09:26 #39777 [Debug] > │ </text>                                                                      │

02:09:26 #39778 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39779 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:26 #39780 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #39781 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39782 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39783 [Debug] > │ 0.7                                                                          │

02:09:26 #39784 [Debug] > │ </text>                                                                      │

02:09:26 #39785 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39786 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:26 #39787 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39788 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:26 #39789 [Debug] > │ <text x="595" y="391" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39790 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39791 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39792 [Debug] > │ -0.0                                                                         │

02:09:26 #39793 [Debug] > │ </text>                                                                      │

02:09:26 #39794 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39795 [Debug] > │ points="585,391 590,391 "/>                                                  │

02:09:26 #39796 [Debug] > │ <text x="595" y="356" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39797 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39798 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39799 [Debug] > │ -0.0                                                                         │

02:09:26 #39800 [Debug] > │ </text>                                                                      │

02:09:26 #39801 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39802 [Debug] > │ points="585,356 590,356 "/>                                                  │

02:09:26 #39803 [Debug] > │ <text x="595" y="322" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39804 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39805 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39806 [Debug] > │ -0.0                                                                         │

02:09:26 #39807 [Debug] > │ </text>                                                                      │

02:09:26 #39808 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39809 [Debug] > │ points="585,322 590,322 "/>                                                  │

02:09:26 #39810 [Debug] > │ <text x="595" y="287" dy="0.5ex" text-anchor="start"                         │

02:09:26 #39811 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39812 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39813 [Debug] > │ -0.0                                                                         │

02:09:26 #39814 [Debug] > │ </text>                                                                      │

02:09:26 #39815 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39816 [Debug] > │ points="585,287 590,287 "/>                                                  │

02:09:26 #39817 [Debug] > │ <text x="617" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39818 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39819 [Debug] > │ 0.0                                                                          │

02:09:26 #39820 [Debug] > │ </text>                                                                      │

02:09:26 #39821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39822 [Debug] > │ points="585,252 590,252 "/>                                                  │

02:09:26 #39823 [Debug] > │ <text x="617" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39824 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39825 [Debug] > │ 0.0                                                                          │

02:09:26 #39826 [Debug] > │ </text>                                                                      │

02:09:26 #39827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39828 [Debug] > │ points="585,217 590,217 "/>                                                  │

02:09:26 #39829 [Debug] > │ <text x="617" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39830 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39831 [Debug] > │ 0.0                                                                          │

02:09:26 #39832 [Debug] > │ </text>                                                                      │

02:09:26 #39833 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39834 [Debug] > │ points="585,182 590,182 "/>                                                  │

02:09:26 #39835 [Debug] > │ <text x="617" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39836 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39837 [Debug] > │ 0.0                                                                          │

02:09:26 #39838 [Debug] > │ </text>                                                                      │

02:09:26 #39839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39840 [Debug] > │ points="585,147 590,147 "/>                                                  │

02:09:26 #39841 [Debug] > │ <text x="617" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #39842 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39843 [Debug] > │ 0.0                                                                          │

02:09:26 #39844 [Debug] > │ </text>                                                                      │

02:09:26 #39845 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39846 [Debug] > │ points="585,112 590,112 "/>                                                  │

02:09:26 #39847 [Debug] > │ <text x="617" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #39848 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #39849 [Debug] > │ 0.0                                                                          │

02:09:26 #39850 [Debug] > │ </text>                                                                      │

02:09:26 #39851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #39852 [Debug] > │ points="585,78 590,78 "/>                                                    │

02:09:26 #39853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #39854 [Debug] > │ points="69,252 77,271 85,290 93,308 100,325 108,340 116,353 123,365 131,374  │

02:09:26 #39855 [Debug] > │ 139,380 146,384 154,385 162,383 169,378 177,371 185,361 192,349 200,335      │

02:09:26 #39856 [Debug] > │ 208,319 215,302 223,284 231,265 238,245 246,226 254,208 261,190 269,174      │

02:09:26 #39857 [Debug] > │ 277,159 284,146 292,136 300,128 307,122 315,119 322,118 329,119 335,119      │

02:09:26 #39858 [Debug] > │ 339,116 340,109 339,99 338,89 337,85 338,90 338,99 338,106 337,116 338,132   │

02:09:26 #39859 [Debug] > │ 338,151 338,169 338,190 338,213 338,236 338,260 338,283 338,306 338,328      │

02:09:26 #39860 [Debug] > │ 338,348 338,366 338,382 338,394 338,404 338,411 338,415 545,178 553,202      │

02:09:26 #39861 [Debug] > │ 567,247 569,252 "/>                                                          │

02:09:26 #39862 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:26 #39863 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:26 #39864 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:26 #39865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39866 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39867 [Debug] > │ 42                                                                           │

02:09:26 #39868 [Debug] > │ </text>                                                                      │

02:09:26 #39869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #39870 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:26 #39871 [Debug] > │ </svg>                                                                       │

02:09:26 #39872 [Debug] > │ </td></tr><tr><td>43</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:26 #39873 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:26 #39874 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:26 #39875 [Debug] > │ stroke="none"/>                                                              │

02:09:26 #39876 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:26 #39877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #39878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #39879 [Debug] > │ wave                                                                         │

02:09:26 #39880 [Debug] > │ </text>                                                                      │

02:09:26 #39881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:26 #39882 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #39884 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:26 #39886 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:26 #39888 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:26 #39890 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #39891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:26 #39892 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:26 #39893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:26 #39894 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:26 #39895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:26 #39896 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:26 #39897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:26 #39898 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:26 #39899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:26 #39900 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:26 #39901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:26 #39902 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:26 #39903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:26 #39904 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:26 #39905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:26 #39906 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:26 #39907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:26 #39908 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:26 #39909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:26 #39910 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:26 #39911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:26 #39912 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:26 #39913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:26 #39914 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:26 #39915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:26 #39916 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:26 #39917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:26 #39918 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:26 #39919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:26 #39920 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:26 #39921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:26 #39922 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:26 #39923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:26 #39924 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:26 #39925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:26 #39926 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:26 #39927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:26 #39928 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:26 #39929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:26 #39930 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:26 #39931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:26 #39932 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:26 #39933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:26 #39934 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:26 #39935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:26 #39936 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:26 #39937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="275" y1="424"        │

02:09:26 #39938 [Debug] > │ x2="275" y2="75"/>                                                           │

02:09:26 #39939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:26 #39940 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:26 #39941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:26 #39942 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:26 #39943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:09:26 #39944 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:26 #39945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:26 #39946 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:26 #39947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="314" y1="424"        │

02:09:26 #39948 [Debug] > │ x2="314" y2="75"/>                                                           │

02:09:26 #39949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:09:26 #39950 [Debug] > │ x2="321" y2="75"/>                                                           │

02:09:26 #39951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:26 #39952 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:26 #39953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:09:26 #39954 [Debug] > │ x2="336" y2="75"/>                                                           │

02:09:26 #39955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:09:26 #39956 [Debug] > │ x2="344" y2="75"/>                                                           │

02:09:26 #39957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:26 #39958 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:26 #39959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:26 #39960 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:26 #39961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:26 #39962 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:26 #39963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="375" y1="424"        │

02:09:26 #39964 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:26 #39965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="382" y1="424"        │

02:09:26 #39966 [Debug] > │ x2="382" y2="75"/>                                                           │

02:09:26 #39967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:26 #39968 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:26 #39969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="397" y1="424"        │

02:09:26 #39970 [Debug] > │ x2="397" y2="75"/>                                                           │

02:09:26 #39971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:09:26 #39972 [Debug] > │ x2="405" y2="75"/>                                                           │

02:09:26 #39973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:26 #39974 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:26 #39975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="420" y1="424"        │

02:09:26 #39976 [Debug] > │ x2="420" y2="75"/>                                                           │

02:09:26 #39977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:26 #39978 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:26 #39979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="436" y1="424"        │

02:09:26 #39980 [Debug] > │ x2="436" y2="75"/>                                                           │

02:09:26 #39981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="443" y1="424"        │

02:09:26 #39982 [Debug] > │ x2="443" y2="75"/>                                                           │

02:09:26 #39983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:26 #39984 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:26 #39985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="459" y1="424"        │

02:09:26 #39986 [Debug] > │ x2="459" y2="75"/>                                                           │

02:09:26 #39987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="466" y1="424"        │

02:09:26 #39988 [Debug] > │ x2="466" y2="75"/>                                                           │

02:09:26 #39989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="474" y1="424"        │

02:09:26 #39990 [Debug] > │ x2="474" y2="75"/>                                                           │

02:09:26 #39991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:09:26 #39992 [Debug] > │ x2="481" y2="75"/>                                                           │

02:09:26 #39993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:26 #39994 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:26 #39995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="497" y1="424"        │

02:09:26 #39996 [Debug] > │ x2="497" y2="75"/>                                                           │

02:09:26 #39997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="504" y1="424"        │

02:09:26 #39998 [Debug] > │ x2="504" y2="75"/>                                                           │

02:09:26 #39999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:26 #40000 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:26 #40001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="520" y1="424"        │

02:09:26 #40002 [Debug] > │ x2="520" y2="75"/>                                                           │

02:09:26 #40003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:09:26 #40004 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:26 #40005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:09:26 #40006 [Debug] > │ x2="535" y2="75"/>                                                           │

02:09:26 #40007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="542" y1="424"        │

02:09:26 #40008 [Debug] > │ x2="542" y2="75"/>                                                           │

02:09:26 #40009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="550" y1="424"        │

02:09:26 #40010 [Debug] > │ x2="550" y2="75"/>                                                           │

02:09:26 #40011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="558" y1="424"        │

02:09:26 #40012 [Debug] > │ x2="558" y2="75"/>                                                           │

02:09:26 #40013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="565" y1="424"        │

02:09:26 #40014 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:26 #40015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="573" y1="424"        │

02:09:26 #40016 [Debug] > │ x2="573" y2="75"/>                                                           │

02:09:26 #40017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="421"         │

02:09:26 #40018 [Debug] > │ x2="584" y2="421"/>                                                          │

02:09:26 #40019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="404"         │

02:09:26 #40020 [Debug] > │ x2="584" y2="404"/>                                                          │

02:09:26 #40021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:26 #40022 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:26 #40023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="370"         │

02:09:26 #40024 [Debug] > │ x2="584" y2="370"/>                                                          │

02:09:26 #40025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:26 #40026 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:26 #40027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:26 #40028 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:26 #40029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:26 #40030 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:26 #40031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:26 #40032 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:26 #40033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:26 #40034 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:26 #40035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:26 #40036 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:26 #40037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:26 #40038 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:26 #40039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:26 #40040 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:26 #40041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:26 #40042 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:26 #40043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:26 #40044 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:26 #40045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:26 #40046 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:26 #40047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:26 #40048 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:26 #40049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="149"         │

02:09:26 #40050 [Debug] > │ x2="584" y2="149"/>                                                          │

02:09:26 #40051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="132"         │

02:09:26 #40052 [Debug] > │ x2="584" y2="132"/>                                                          │

02:09:26 #40053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:09:26 #40054 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:26 #40055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:26 #40056 [Debug] > │ y2="99"/>                                                                    │

02:09:26 #40057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:26 #40058 [Debug] > │ y2="82"/>                                                                    │

02:09:26 #40059 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:26 #40060 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40061 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40062 [Debug] > │ position (m)                                                                 │

02:09:26 #40063 [Debug] > │ </text>                                                                      │

02:09:26 #40064 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:26 #40065 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40066 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:26 #40067 [Debug] > │ displacement (m)                                                             │

02:09:26 #40068 [Debug] > │ </text>                                                                      │

02:09:26 #40069 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:26 #40070 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40071 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40072 [Debug] > │ position (m)                                                                 │

02:09:26 #40073 [Debug] > │ </text>                                                                      │

02:09:26 #40074 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40075 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40076 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:26 #40077 [Debug] > │ displacement (m)                                                             │

02:09:26 #40078 [Debug] > │ </text>                                                                      │

02:09:26 #40079 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #40080 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40081 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:26 #40082 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:26 #40083 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:26 #40084 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:26 #40085 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:26 #40086 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:26 #40087 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:26 #40088 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:26 #40089 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:26 #40090 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:26 #40091 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="298" y1="424"        │

02:09:26 #40092 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:26 #40093 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:09:26 #40094 [Debug] > │ x2="336" y2="75"/>                                                           │

02:09:26 #40095 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="375" y1="424"        │

02:09:26 #40096 [Debug] > │ x2="375" y2="75"/>                                                           │

02:09:26 #40097 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:26 #40098 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:26 #40099 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:26 #40100 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:26 #40101 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="489" y1="424"        │

02:09:26 #40102 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:26 #40103 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:09:26 #40104 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:26 #40105 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="565" y1="424"        │

02:09:26 #40106 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:26 #40107 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="387"         │

02:09:26 #40108 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:26 #40109 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:09:26 #40110 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:26 #40111 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:26 #40112 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:26 #40113 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:26 #40114 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:26 #40115 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="116"         │

02:09:26 #40116 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:26 #40117 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40118 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:26 #40119 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:26 #40120 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40121 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40122 [Debug] > │ 0.0                                                                          │

02:09:26 #40123 [Debug] > │ </text>                                                                      │

02:09:26 #40124 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40125 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:26 #40126 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40127 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40128 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40129 [Debug] > │ 0.1                                                                          │

02:09:26 #40130 [Debug] > │ </text>                                                                      │

02:09:26 #40131 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40132 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:26 #40133 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40134 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40135 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40136 [Debug] > │ 0.1                                                                          │

02:09:26 #40137 [Debug] > │ </text>                                                                      │

02:09:26 #40138 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40139 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:26 #40140 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40141 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40142 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40143 [Debug] > │ 0.2                                                                          │

02:09:26 #40144 [Debug] > │ </text>                                                                      │

02:09:26 #40145 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40146 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:26 #40147 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40148 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40149 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40150 [Debug] > │ 0.2                                                                          │

02:09:26 #40151 [Debug] > │ </text>                                                                      │

02:09:26 #40152 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40153 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:26 #40154 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40155 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40156 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40157 [Debug] > │ 0.2                                                                          │

02:09:26 #40158 [Debug] > │ </text>                                                                      │

02:09:26 #40159 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40160 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:26 #40161 [Debug] > │ <text x="298" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40162 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40163 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40164 [Debug] > │ 0.3                                                                          │

02:09:26 #40165 [Debug] > │ </text>                                                                      │

02:09:26 #40166 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40167 [Debug] > │ points="298,69 298,74 "/>                                                    │

02:09:26 #40168 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40169 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40170 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40171 [Debug] > │ 0.3                                                                          │

02:09:26 #40172 [Debug] > │ </text>                                                                      │

02:09:26 #40173 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40174 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:09:26 #40175 [Debug] > │ <text x="375" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40176 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40177 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40178 [Debug] > │ 0.4                                                                          │

02:09:26 #40179 [Debug] > │ </text>                                                                      │

02:09:26 #40180 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40181 [Debug] > │ points="375,69 375,74 "/>                                                    │

02:09:26 #40182 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40183 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40184 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40185 [Debug] > │ 0.4                                                                          │

02:09:26 #40186 [Debug] > │ </text>                                                                      │

02:09:26 #40187 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40188 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:26 #40189 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40190 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40191 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40192 [Debug] > │ 0.5                                                                          │

02:09:26 #40193 [Debug] > │ </text>                                                                      │

02:09:26 #40194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40195 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:26 #40196 [Debug] > │ <text x="489" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40197 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40198 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40199 [Debug] > │ 0.5                                                                          │

02:09:26 #40200 [Debug] > │ </text>                                                                      │

02:09:26 #40201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40202 [Debug] > │ points="489,69 489,74 "/>                                                    │

02:09:26 #40203 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40204 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40205 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40206 [Debug] > │ 0.6                                                                          │

02:09:26 #40207 [Debug] > │ </text>                                                                      │

02:09:26 #40208 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40209 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:09:26 #40210 [Debug] > │ <text x="565" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40211 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40212 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40213 [Debug] > │ 0.7                                                                          │

02:09:26 #40214 [Debug] > │ </text>                                                                      │

02:09:26 #40215 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40216 [Debug] > │ points="565,69 565,74 "/>                                                    │

02:09:26 #40217 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40218 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:26 #40219 [Debug] > │ <text x="45" y="387" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40220 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40221 [Debug] > │ -0.0                                                                         │

02:09:26 #40222 [Debug] > │ </text>                                                                      │

02:09:26 #40223 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40224 [Debug] > │ points="49,387 54,387 "/>                                                    │

02:09:26 #40225 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40226 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40227 [Debug] > │ -0.0                                                                         │

02:09:26 #40228 [Debug] > │ </text>                                                                      │

02:09:26 #40229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40230 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:09:26 #40231 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40232 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40233 [Debug] > │ 0.0                                                                          │

02:09:26 #40234 [Debug] > │ </text>                                                                      │

02:09:26 #40235 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40236 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:26 #40237 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40238 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40239 [Debug] > │ 0.0                                                                          │

02:09:26 #40240 [Debug] > │ </text>                                                                      │

02:09:26 #40241 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40242 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:26 #40243 [Debug] > │ <text x="45" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40244 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40245 [Debug] > │ 0.0                                                                          │

02:09:26 #40246 [Debug] > │ </text>                                                                      │

02:09:26 #40247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40248 [Debug] > │ points="49,116 54,116 "/>                                                    │

02:09:26 #40249 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40250 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:26 #40251 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:26 #40252 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40253 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40254 [Debug] > │ 0.0                                                                          │

02:09:26 #40255 [Debug] > │ </text>                                                                      │

02:09:26 #40256 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40257 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:26 #40258 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40259 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40260 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40261 [Debug] > │ 0.1                                                                          │

02:09:26 #40262 [Debug] > │ </text>                                                                      │

02:09:26 #40263 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40264 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:26 #40265 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40266 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40267 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40268 [Debug] > │ 0.1                                                                          │

02:09:26 #40269 [Debug] > │ </text>                                                                      │

02:09:26 #40270 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40271 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:26 #40272 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40273 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40274 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40275 [Debug] > │ 0.2                                                                          │

02:09:26 #40276 [Debug] > │ </text>                                                                      │

02:09:26 #40277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40278 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:26 #40279 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40280 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40281 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40282 [Debug] > │ 0.2                                                                          │

02:09:26 #40283 [Debug] > │ </text>                                                                      │

02:09:26 #40284 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40285 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:26 #40286 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40287 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40288 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40289 [Debug] > │ 0.2                                                                          │

02:09:26 #40290 [Debug] > │ </text>                                                                      │

02:09:26 #40291 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40292 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:26 #40293 [Debug] > │ <text x="298" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40294 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40295 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40296 [Debug] > │ 0.3                                                                          │

02:09:26 #40297 [Debug] > │ </text>                                                                      │

02:09:26 #40298 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40299 [Debug] > │ points="298,425 298,430 "/>                                                  │

02:09:26 #40300 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40301 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40302 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40303 [Debug] > │ 0.3                                                                          │

02:09:26 #40304 [Debug] > │ </text>                                                                      │

02:09:26 #40305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40306 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:09:26 #40307 [Debug] > │ <text x="375" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40308 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40309 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40310 [Debug] > │ 0.4                                                                          │

02:09:26 #40311 [Debug] > │ </text>                                                                      │

02:09:26 #40312 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40313 [Debug] > │ points="375,425 375,430 "/>                                                  │

02:09:26 #40314 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40316 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40317 [Debug] > │ 0.4                                                                          │

02:09:26 #40318 [Debug] > │ </text>                                                                      │

02:09:26 #40319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40320 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:26 #40321 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40322 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40323 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40324 [Debug] > │ 0.5                                                                          │

02:09:26 #40325 [Debug] > │ </text>                                                                      │

02:09:26 #40326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40327 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:26 #40328 [Debug] > │ <text x="489" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40329 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40330 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40331 [Debug] > │ 0.5                                                                          │

02:09:26 #40332 [Debug] > │ </text>                                                                      │

02:09:26 #40333 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40334 [Debug] > │ points="489,425 489,430 "/>                                                  │

02:09:26 #40335 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40336 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40337 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40338 [Debug] > │ 0.6                                                                          │

02:09:26 #40339 [Debug] > │ </text>                                                                      │

02:09:26 #40340 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40341 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:09:26 #40342 [Debug] > │ <text x="565" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40343 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40344 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40345 [Debug] > │ 0.7                                                                          │

02:09:26 #40346 [Debug] > │ </text>                                                                      │

02:09:26 #40347 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40348 [Debug] > │ points="565,425 565,430 "/>                                                  │

02:09:26 #40349 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40350 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:26 #40351 [Debug] > │ <text x="595" y="387" dy="0.5ex" text-anchor="start"                         │

02:09:26 #40352 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40353 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40354 [Debug] > │ -0.0                                                                         │

02:09:26 #40355 [Debug] > │ </text>                                                                      │

02:09:26 #40356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40357 [Debug] > │ points="585,387 590,387 "/>                                                  │

02:09:26 #40358 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:09:26 #40359 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40360 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40361 [Debug] > │ -0.0                                                                         │

02:09:26 #40362 [Debug] > │ </text>                                                                      │

02:09:26 #40363 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40364 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:09:26 #40365 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #40366 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40367 [Debug] > │ 0.0                                                                          │

02:09:26 #40368 [Debug] > │ </text>                                                                      │

02:09:26 #40369 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40370 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:26 #40371 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #40372 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40373 [Debug] > │ 0.0                                                                          │

02:09:26 #40374 [Debug] > │ </text>                                                                      │

02:09:26 #40375 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40376 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:26 #40377 [Debug] > │ <text x="617" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #40378 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40379 [Debug] > │ 0.0                                                                          │

02:09:26 #40380 [Debug] > │ </text>                                                                      │

02:09:26 #40381 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40382 [Debug] > │ points="585,116 590,116 "/>                                                  │

02:09:26 #40383 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #40384 [Debug] > │ points="69,251 77,268 85,285 92,301 100,316 108,330 115,342 123,352 130,360  │

02:09:26 #40385 [Debug] > │ 138,366 146,369 153,370 161,368 169,364 176,358 184,349 192,338 199,326      │

02:09:26 #40386 [Debug] > │ 207,312 214,296 222,280 230,263 237,246 245,229 253,212 260,196 268,182      │

02:09:26 #40387 [Debug] > │ 275,168 283,157 291,147 298,140 306,135 313,132 320,130 327,129 331,126      │

02:09:26 #40388 [Debug] > │ 334,119 333,107 332,94 330,86 330,85 332,91 332,97 331,104 331,115 332,132   │

02:09:26 #40389 [Debug] > │ 331,149 331,168 331,190 331,212 331,235 331,259 331,283 331,305 331,328      │

02:09:26 #40390 [Debug] > │ 331,347 331,366 331,381 331,394 331,404 331,411 331,415 542,180 550,203      │

02:09:26 #40391 [Debug] > │ 569,262 565,251 "/>                                                          │

02:09:26 #40392 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:26 #40393 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:26 #40394 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:26 #40395 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40396 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40397 [Debug] > │ 43                                                                           │

02:09:26 #40398 [Debug] > │ </text>                                                                      │

02:09:26 #40399 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #40400 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:26 #40401 [Debug] > │ </svg>                                                                       │

02:09:26 #40402 [Debug] > │ </td></tr><tr><td>44</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:26 #40403 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:26 #40404 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:26 #40405 [Debug] > │ stroke="none"/>                                                              │

02:09:26 #40406 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:26 #40407 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40408 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40409 [Debug] > │ wave                                                                         │

02:09:26 #40410 [Debug] > │ </text>                                                                      │

02:09:26 #40411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:26 #40412 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #40414 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:26 #40416 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:26 #40418 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:26 #40420 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:26 #40422 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:26 #40423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:26 #40424 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:26 #40425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:26 #40426 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:26 #40427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:26 #40428 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:26 #40429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:26 #40430 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:26 #40431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:26 #40432 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:26 #40433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:26 #40434 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:26 #40435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:26 #40436 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:26 #40437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:26 #40438 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:26 #40439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:26 #40440 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:26 #40441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:26 #40442 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:26 #40443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:26 #40444 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:26 #40445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:26 #40446 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:26 #40447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:26 #40448 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:26 #40449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:26 #40450 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:26 #40451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:26 #40452 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:26 #40453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:26 #40454 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:26 #40455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:26 #40456 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:26 #40457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:26 #40458 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:26 #40459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:26 #40460 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:26 #40461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:26 #40462 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:26 #40463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:26 #40464 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:26 #40465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:26 #40466 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:26 #40467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:26 #40468 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:26 #40469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:26 #40470 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:26 #40471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:26 #40472 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:26 #40473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:26 #40474 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:26 #40475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:26 #40476 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:26 #40477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:26 #40478 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:26 #40479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:26 #40480 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:26 #40481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:26 #40482 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:26 #40483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:26 #40484 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:26 #40485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:26 #40486 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:26 #40487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:26 #40488 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:26 #40489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:26 #40490 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:26 #40491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:26 #40492 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:26 #40493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:26 #40494 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:26 #40495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:26 #40496 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:26 #40497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:26 #40498 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:26 #40499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:26 #40500 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:26 #40501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:26 #40502 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:26 #40503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:26 #40504 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:26 #40505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:26 #40506 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:26 #40507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:26 #40508 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:26 #40509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:26 #40510 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:26 #40511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:26 #40512 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:26 #40513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:26 #40514 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:26 #40515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:26 #40516 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:26 #40517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:26 #40518 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:26 #40519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:26 #40520 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:26 #40521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:26 #40522 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:26 #40523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:26 #40524 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:26 #40525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:26 #40526 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:26 #40527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:26 #40528 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:26 #40529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:26 #40530 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:26 #40531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="517" y1="424"        │

02:09:26 #40532 [Debug] > │ x2="517" y2="75"/>                                                           │

02:09:26 #40533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:26 #40534 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:26 #40535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:26 #40536 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:26 #40537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:26 #40538 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:26 #40539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:26 #40540 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:26 #40541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:26 #40542 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:26 #40543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:26 #40544 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:26 #40545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="570" y1="424"        │

02:09:26 #40546 [Debug] > │ x2="570" y2="75"/>                                                           │

02:09:26 #40547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:26 #40548 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:26 #40549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:09:26 #40550 [Debug] > │ x2="584" y2="401"/>                                                          │

02:09:26 #40551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:09:26 #40552 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:26 #40553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:26 #40554 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:26 #40555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:26 #40556 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:26 #40557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:26 #40558 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:26 #40559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="318"         │

02:09:26 #40560 [Debug] > │ x2="584" y2="318"/>                                                          │

02:09:26 #40561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:26 #40562 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:26 #40563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:26 #40564 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:26 #40565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:26 #40566 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:26 #40567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:26 #40568 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:26 #40569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="235"         │

02:09:26 #40570 [Debug] > │ x2="584" y2="235"/>                                                          │

02:09:26 #40571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="218"         │

02:09:26 #40572 [Debug] > │ x2="584" y2="218"/>                                                          │

02:09:26 #40573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:26 #40574 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:26 #40575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="185"         │

02:09:26 #40576 [Debug] > │ x2="584" y2="185"/>                                                          │

02:09:26 #40577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:09:26 #40578 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:26 #40579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:26 #40580 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:26 #40581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:09:26 #40582 [Debug] > │ x2="584" y2="135"/>                                                          │

02:09:26 #40583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:26 #40584 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:26 #40585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:26 #40586 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:26 #40587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:26 #40588 [Debug] > │ y2="85"/>                                                                    │

02:09:26 #40589 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:26 #40590 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40591 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40592 [Debug] > │ position (m)                                                                 │

02:09:26 #40593 [Debug] > │ </text>                                                                      │

02:09:26 #40594 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:26 #40595 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40596 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:26 #40597 [Debug] > │ displacement (m)                                                             │

02:09:26 #40598 [Debug] > │ </text>                                                                      │

02:09:26 #40599 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:26 #40600 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40601 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40602 [Debug] > │ position (m)                                                                 │

02:09:26 #40603 [Debug] > │ </text>                                                                      │

02:09:26 #40604 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40605 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40606 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:26 #40607 [Debug] > │ displacement (m)                                                             │

02:09:26 #40608 [Debug] > │ </text>                                                                      │

02:09:26 #40609 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #40610 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40611 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:26 #40612 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:26 #40613 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:26 #40614 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:26 #40615 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:26 #40616 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:26 #40617 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:26 #40618 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:26 #40619 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:26 #40620 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:26 #40621 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:26 #40622 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:26 #40623 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:26 #40624 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:26 #40625 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:26 #40626 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:26 #40627 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:26 #40628 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:26 #40629 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:26 #40630 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:26 #40631 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:26 #40632 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:26 #40633 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:26 #40634 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:26 #40635 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:26 #40636 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:26 #40637 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="384"         │

02:09:26 #40638 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:26 #40639 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="318"         │

02:09:26 #40640 [Debug] > │ x2="584" y2="318"/>                                                          │

02:09:26 #40641 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:26 #40642 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:26 #40643 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="185"         │

02:09:26 #40644 [Debug] > │ x2="584" y2="185"/>                                                          │

02:09:26 #40645 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:26 #40646 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:26 #40647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40648 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:26 #40649 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:26 #40650 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40651 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40652 [Debug] > │ 0.0                                                                          │

02:09:26 #40653 [Debug] > │ </text>                                                                      │

02:09:26 #40654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40655 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:26 #40656 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40657 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40658 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40659 [Debug] > │ 0.1                                                                          │

02:09:26 #40660 [Debug] > │ </text>                                                                      │

02:09:26 #40661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40662 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:26 #40663 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40664 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40665 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40666 [Debug] > │ 0.1                                                                          │

02:09:26 #40667 [Debug] > │ </text>                                                                      │

02:09:26 #40668 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40669 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:26 #40670 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40671 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40672 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40673 [Debug] > │ 0.2                                                                          │

02:09:26 #40674 [Debug] > │ </text>                                                                      │

02:09:26 #40675 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40676 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:26 #40677 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40678 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40679 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40680 [Debug] > │ 0.2                                                                          │

02:09:26 #40681 [Debug] > │ </text>                                                                      │

02:09:26 #40682 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40683 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:26 #40684 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40685 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40686 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40687 [Debug] > │ 0.2                                                                          │

02:09:26 #40688 [Debug] > │ </text>                                                                      │

02:09:26 #40689 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40690 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:26 #40691 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40692 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40693 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40694 [Debug] > │ 0.3                                                                          │

02:09:26 #40695 [Debug] > │ </text>                                                                      │

02:09:26 #40696 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40697 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:26 #40698 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40699 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40700 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40701 [Debug] > │ 0.3                                                                          │

02:09:26 #40702 [Debug] > │ </text>                                                                      │

02:09:26 #40703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40704 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:26 #40705 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40706 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40707 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40708 [Debug] > │ 0.4                                                                          │

02:09:26 #40709 [Debug] > │ </text>                                                                      │

02:09:26 #40710 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40711 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:26 #40712 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40713 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40714 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40715 [Debug] > │ 0.4                                                                          │

02:09:26 #40716 [Debug] > │ </text>                                                                      │

02:09:26 #40717 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40718 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:26 #40719 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40720 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40721 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40722 [Debug] > │ 0.5                                                                          │

02:09:26 #40723 [Debug] > │ </text>                                                                      │

02:09:26 #40724 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40725 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:26 #40726 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40727 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40728 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40729 [Debug] > │ 0.5                                                                          │

02:09:26 #40730 [Debug] > │ </text>                                                                      │

02:09:26 #40731 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40732 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:26 #40733 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40734 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40735 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40736 [Debug] > │ 0.6                                                                          │

02:09:26 #40737 [Debug] > │ </text>                                                                      │

02:09:26 #40738 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40739 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:26 #40740 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #40741 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40742 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40743 [Debug] > │ 0.7                                                                          │

02:09:26 #40744 [Debug] > │ </text>                                                                      │

02:09:26 #40745 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40746 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:26 #40747 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40748 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:26 #40749 [Debug] > │ <text x="45" y="384" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40750 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40751 [Debug] > │ -0.0                                                                         │

02:09:26 #40752 [Debug] > │ </text>                                                                      │

02:09:26 #40753 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40754 [Debug] > │ points="49,384 54,384 "/>                                                    │

02:09:26 #40755 [Debug] > │ <text x="45" y="318" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40756 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40757 [Debug] > │ -0.0                                                                         │

02:09:26 #40758 [Debug] > │ </text>                                                                      │

02:09:26 #40759 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40760 [Debug] > │ points="49,318 54,318 "/>                                                    │

02:09:26 #40761 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40762 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40763 [Debug] > │ 0.0                                                                          │

02:09:26 #40764 [Debug] > │ </text>                                                                      │

02:09:26 #40765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40766 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:26 #40767 [Debug] > │ <text x="45" y="185" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40768 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40769 [Debug] > │ 0.0                                                                          │

02:09:26 #40770 [Debug] > │ </text>                                                                      │

02:09:26 #40771 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40772 [Debug] > │ points="49,185 54,185 "/>                                                    │

02:09:26 #40773 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:26 #40774 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40775 [Debug] > │ 0.0                                                                          │

02:09:26 #40776 [Debug] > │ </text>                                                                      │

02:09:26 #40777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40778 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:26 #40779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40780 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:26 #40781 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:26 #40782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40783 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40784 [Debug] > │ 0.0                                                                          │

02:09:26 #40785 [Debug] > │ </text>                                                                      │

02:09:26 #40786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40787 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:26 #40788 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40789 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40790 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40791 [Debug] > │ 0.1                                                                          │

02:09:26 #40792 [Debug] > │ </text>                                                                      │

02:09:26 #40793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40794 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:26 #40795 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40797 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40798 [Debug] > │ 0.1                                                                          │

02:09:26 #40799 [Debug] > │ </text>                                                                      │

02:09:26 #40800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40801 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:26 #40802 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40803 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40804 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40805 [Debug] > │ 0.2                                                                          │

02:09:26 #40806 [Debug] > │ </text>                                                                      │

02:09:26 #40807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40808 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:26 #40809 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40810 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40811 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40812 [Debug] > │ 0.2                                                                          │

02:09:26 #40813 [Debug] > │ </text>                                                                      │

02:09:26 #40814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40815 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:26 #40816 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40817 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40818 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40819 [Debug] > │ 0.2                                                                          │

02:09:26 #40820 [Debug] > │ </text>                                                                      │

02:09:26 #40821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40822 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:26 #40823 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40824 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40825 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40826 [Debug] > │ 0.3                                                                          │

02:09:26 #40827 [Debug] > │ </text>                                                                      │

02:09:26 #40828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40829 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:26 #40830 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40831 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40832 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40833 [Debug] > │ 0.3                                                                          │

02:09:26 #40834 [Debug] > │ </text>                                                                      │

02:09:26 #40835 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40836 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:26 #40837 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40838 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40839 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40840 [Debug] > │ 0.4                                                                          │

02:09:26 #40841 [Debug] > │ </text>                                                                      │

02:09:26 #40842 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40843 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:26 #40844 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40845 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40846 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40847 [Debug] > │ 0.4                                                                          │

02:09:26 #40848 [Debug] > │ </text>                                                                      │

02:09:26 #40849 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40850 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:26 #40851 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40852 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40853 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40854 [Debug] > │ 0.5                                                                          │

02:09:26 #40855 [Debug] > │ </text>                                                                      │

02:09:26 #40856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40857 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:26 #40858 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40859 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40860 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40861 [Debug] > │ 0.5                                                                          │

02:09:26 #40862 [Debug] > │ </text>                                                                      │

02:09:26 #40863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40864 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:26 #40865 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40866 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40867 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40868 [Debug] > │ 0.6                                                                          │

02:09:26 #40869 [Debug] > │ </text>                                                                      │

02:09:26 #40870 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40871 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:26 #40872 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:26 #40873 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40874 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40875 [Debug] > │ 0.7                                                                          │

02:09:26 #40876 [Debug] > │ </text>                                                                      │

02:09:26 #40877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40878 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:26 #40879 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40880 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:26 #40881 [Debug] > │ <text x="595" y="384" dy="0.5ex" text-anchor="start"                         │

02:09:26 #40882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40883 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40884 [Debug] > │ -0.0                                                                         │

02:09:26 #40885 [Debug] > │ </text>                                                                      │

02:09:26 #40886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40887 [Debug] > │ points="585,384 590,384 "/>                                                  │

02:09:26 #40888 [Debug] > │ <text x="595" y="318" dy="0.5ex" text-anchor="start"                         │

02:09:26 #40889 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40890 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40891 [Debug] > │ -0.0                                                                         │

02:09:26 #40892 [Debug] > │ </text>                                                                      │

02:09:26 #40893 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40894 [Debug] > │ points="585,318 590,318 "/>                                                  │

02:09:26 #40895 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #40896 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40897 [Debug] > │ 0.0                                                                          │

02:09:26 #40898 [Debug] > │ </text>                                                                      │

02:09:26 #40899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40900 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:26 #40901 [Debug] > │ <text x="617" y="185" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #40902 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40903 [Debug] > │ 0.0                                                                          │

02:09:26 #40904 [Debug] > │ </text>                                                                      │

02:09:26 #40905 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40906 [Debug] > │ points="585,185 590,185 "/>                                                  │

02:09:26 #40907 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:26 #40908 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:26 #40909 [Debug] > │ 0.0                                                                          │

02:09:26 #40910 [Debug] > │ </text>                                                                      │

02:09:26 #40911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #40912 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:26 #40913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #40914 [Debug] > │ points="69,251 77,266 85,281 92,295 100,309 107,321 115,331 123,340 130,348  │

02:09:26 #40915 [Debug] > │ 138,353 145,356 153,356 160,355 168,351 176,345 183,338 191,328 198,317      │

02:09:26 #40916 [Debug] > │ 206,304 213,291 221,276 229,261 236,246 244,231 251,216 259,202 266,189      │

02:09:26 #40917 [Debug] > │ 274,178 282,168 289,159 297,153 304,148 311,145 318,142 323,138 326,131      │

02:09:26 #40918 [Debug] > │ 327,119 326,104 324,91 324,85 325,87 325,92 325,96 324,103 325,116 325,132   │

02:09:26 #40919 [Debug] > │ 325,148 325,168 325,190 325,212 325,235 325,259 325,282 325,306 325,327      │

02:09:26 #40920 [Debug] > │ 325,347 325,366 325,381 325,394 325,404 325,411 325,415 539,181 547,204      │

02:09:26 #40921 [Debug] > │ 569,272 562,251 "/>                                                          │

02:09:26 #40922 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:26 #40923 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:26 #40924 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:26 #40925 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40926 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40927 [Debug] > │ 44                                                                           │

02:09:26 #40928 [Debug] > │ </text>                                                                      │

02:09:26 #40929 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:26 #40930 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:26 #40931 [Debug] > │ </svg>                                                                       │

02:09:26 #40932 [Debug] > │ </td></tr><tr><td>45</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:26 #40933 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:26 #40934 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:26 #40935 [Debug] > │ stroke="none"/>                                                              │

02:09:26 #40936 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:26 #40937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #40938 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #40939 [Debug] > │ wave                                                                         │

02:09:26 #40940 [Debug] > │ </text>                                                                      │

02:09:26 #40941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:26 #40942 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #40944 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:26 #40946 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:26 #40948 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:26 #40950 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #40951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:26 #40952 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:26 #40953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:26 #40954 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:26 #40955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:26 #40956 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:26 #40957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:26 #40958 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:26 #40959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:26 #40960 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:26 #40961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:26 #40962 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:26 #40963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:26 #40964 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:26 #40965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:26 #40966 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:26 #40967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:26 #40968 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:26 #40969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:26 #40970 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:26 #40971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:26 #40972 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:26 #40973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:26 #40974 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:26 #40975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:26 #40976 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:26 #40977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:26 #40978 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:26 #40979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:26 #40980 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:26 #40981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:26 #40982 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:26 #40983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:26 #40984 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:26 #40985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:26 #40986 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:26 #40987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:26 #40988 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:26 #40989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="243" y1="424"        │

02:09:26 #40990 [Debug] > │ x2="243" y2="75"/>                                                           │

02:09:26 #40991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:26 #40992 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:26 #40993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:26 #40994 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:26 #40995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:26 #40996 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:26 #40997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:26 #40998 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:26 #40999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:26 #41000 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:26 #41001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:26 #41002 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:26 #41003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:26 #41004 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:26 #41005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:26 #41006 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:26 #41007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:26 #41008 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:26 #41009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:26 #41010 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:26 #41011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:26 #41012 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:26 #41013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:26 #41014 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:26 #41015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:26 #41016 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:26 #41017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:26 #41018 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:26 #41019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:26 #41020 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:26 #41021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="364" y1="424"        │

02:09:26 #41022 [Debug] > │ x2="364" y2="75"/>                                                           │

02:09:26 #41023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:26 #41024 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:26 #41025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:26 #41026 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:26 #41027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:26 #41028 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:26 #41029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:26 #41030 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:26 #41031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:26 #41032 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:26 #41033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:26 #41034 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:26 #41035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="417" y1="424"        │

02:09:26 #41036 [Debug] > │ x2="417" y2="75"/>                                                           │

02:09:26 #41037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:26 #41038 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:26 #41039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:26 #41040 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:26 #41041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:26 #41042 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:26 #41043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:26 #41044 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:26 #41045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:26 #41046 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:26 #41047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:26 #41048 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:26 #41049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="470" y1="424"        │

02:09:26 #41050 [Debug] > │ x2="470" y2="75"/>                                                           │

02:09:26 #41051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:26 #41052 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:26 #41053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:26 #41054 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:26 #41055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:26 #41056 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:26 #41057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:26 #41058 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:26 #41059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:26 #41060 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:26 #41061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:26 #41062 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:26 #41063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:26 #41064 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:26 #41065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:26 #41066 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:26 #41067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:26 #41068 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:26 #41069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:26 #41070 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:26 #41071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:26 #41072 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:26 #41073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:26 #41074 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:26 #41075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:26 #41076 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:26 #41077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:26 #41078 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:26 #41079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:26 #41080 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:26 #41081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:26 #41082 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:26 #41083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:26 #41084 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:26 #41085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:26 #41086 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:26 #41087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:26 #41088 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:26 #41089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="317"         │

02:09:26 #41090 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:26 #41091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:26 #41092 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:26 #41093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:26 #41094 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:26 #41095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:26 #41096 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:26 #41097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:26 #41098 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:26 #41099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:26 #41100 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:26 #41101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:26 #41102 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:26 #41103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:26 #41104 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:26 #41105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:26 #41106 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:26 #41107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="168"         │

02:09:26 #41108 [Debug] > │ x2="584" y2="168"/>                                                          │

02:09:26 #41109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:26 #41110 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:26 #41111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="135"         │

02:09:26 #41112 [Debug] > │ x2="584" y2="135"/>                                                          │

02:09:26 #41113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="118"         │

02:09:26 #41114 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:26 #41115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="102"         │

02:09:26 #41116 [Debug] > │ x2="584" y2="102"/>                                                          │

02:09:26 #41117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:26 #41118 [Debug] > │ y2="85"/>                                                                    │

02:09:26 #41119 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:26 #41120 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41121 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41122 [Debug] > │ position (m)                                                                 │

02:09:26 #41123 [Debug] > │ </text>                                                                      │

02:09:26 #41124 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:26 #41125 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41126 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:26 #41127 [Debug] > │ displacement (m)                                                             │

02:09:26 #41128 [Debug] > │ </text>                                                                      │

02:09:26 #41129 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:26 #41130 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41131 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41132 [Debug] > │ position (m)                                                                 │

02:09:26 #41133 [Debug] > │ </text>                                                                      │

02:09:26 #41134 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:26 #41135 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41136 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:26 #41137 [Debug] > │ displacement (m)                                                             │

02:09:26 #41138 [Debug] > │ </text>                                                                      │

02:09:26 #41139 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:26 #41140 [Debug] > │ y2="75"/>                                                                    │

02:09:26 #41141 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:26 #41142 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:26 #41143 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:26 #41144 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:26 #41145 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:26 #41146 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:26 #41147 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:26 #41148 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:26 #41149 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:26 #41150 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:26 #41151 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:26 #41152 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:26 #41153 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:26 #41154 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:26 #41155 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:26 #41156 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:26 #41157 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:26 #41158 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:26 #41159 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:26 #41160 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:26 #41161 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:26 #41162 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:26 #41163 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:26 #41164 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:26 #41165 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:26 #41166 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:26 #41167 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="383"         │

02:09:26 #41168 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:26 #41169 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="317"         │

02:09:26 #41170 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:26 #41171 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:26 #41172 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:26 #41173 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:26 #41174 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:26 #41175 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="118"         │

02:09:26 #41176 [Debug] > │ x2="584" y2="118"/>                                                          │

02:09:26 #41177 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41178 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:26 #41179 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:26 #41180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41181 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41182 [Debug] > │ 0.0                                                                          │

02:09:26 #41183 [Debug] > │ </text>                                                                      │

02:09:26 #41184 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41185 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:26 #41186 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41187 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41188 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41189 [Debug] > │ 0.1                                                                          │

02:09:26 #41190 [Debug] > │ </text>                                                                      │

02:09:26 #41191 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41192 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:26 #41193 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41194 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41195 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41196 [Debug] > │ 0.1                                                                          │

02:09:26 #41197 [Debug] > │ </text>                                                                      │

02:09:26 #41198 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41199 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:26 #41200 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41201 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41202 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41203 [Debug] > │ 0.2                                                                          │

02:09:26 #41204 [Debug] > │ </text>                                                                      │

02:09:26 #41205 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41206 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:26 #41207 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41208 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41209 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41210 [Debug] > │ 0.2                                                                          │

02:09:26 #41211 [Debug] > │ </text>                                                                      │

02:09:26 #41212 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41213 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:26 #41214 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41215 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41216 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41217 [Debug] > │ 0.2                                                                          │

02:09:26 #41218 [Debug] > │ </text>                                                                      │

02:09:26 #41219 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41220 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:26 #41221 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41222 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41223 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41224 [Debug] > │ 0.3                                                                          │

02:09:26 #41225 [Debug] > │ </text>                                                                      │

02:09:26 #41226 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41227 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:26 #41228 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41229 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41230 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41231 [Debug] > │ 0.3                                                                          │

02:09:26 #41232 [Debug] > │ </text>                                                                      │

02:09:26 #41233 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41234 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:26 #41235 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41236 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41237 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41238 [Debug] > │ 0.4                                                                          │

02:09:26 #41239 [Debug] > │ </text>                                                                      │

02:09:26 #41240 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41241 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:26 #41242 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41243 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41244 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41245 [Debug] > │ 0.4                                                                          │

02:09:26 #41246 [Debug] > │ </text>                                                                      │

02:09:26 #41247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41248 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:26 #41249 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41250 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41251 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41252 [Debug] > │ 0.5                                                                          │

02:09:26 #41253 [Debug] > │ </text>                                                                      │

02:09:26 #41254 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41255 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:26 #41256 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41257 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41258 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41259 [Debug] > │ 0.5                                                                          │

02:09:26 #41260 [Debug] > │ </text>                                                                      │

02:09:26 #41261 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41262 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:26 #41263 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41264 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41265 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41266 [Debug] > │ 0.6                                                                          │

02:09:26 #41267 [Debug] > │ </text>                                                                      │

02:09:26 #41268 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:26 #41269 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:26 #41270 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:26 #41271 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:26 #41272 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:26 #41273 [Debug] > │ 0.7                                                                          │

02:09:26 #41274 [Debug] > │ </text>                                                                      │

02:09:26 #41275 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41276 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:27 #41277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41278 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:27 #41279 [Debug] > │ <text x="45" y="383" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41280 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41281 [Debug] > │ -0.0                                                                         │

02:09:27 #41282 [Debug] > │ </text>                                                                      │

02:09:27 #41283 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41284 [Debug] > │ points="49,383 54,383 "/>                                                    │

02:09:27 #41285 [Debug] > │ <text x="45" y="317" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41286 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41287 [Debug] > │ -0.0                                                                         │

02:09:27 #41288 [Debug] > │ </text>                                                                      │

02:09:27 #41289 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41290 [Debug] > │ points="49,317 54,317 "/>                                                    │

02:09:27 #41291 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41292 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41293 [Debug] > │ 0.0                                                                          │

02:09:27 #41294 [Debug] > │ </text>                                                                      │

02:09:27 #41295 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41296 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:27 #41297 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41298 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41299 [Debug] > │ 0.0                                                                          │

02:09:27 #41300 [Debug] > │ </text>                                                                      │

02:09:27 #41301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41302 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:27 #41303 [Debug] > │ <text x="45" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41304 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41305 [Debug] > │ 0.0                                                                          │

02:09:27 #41306 [Debug] > │ </text>                                                                      │

02:09:27 #41307 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41308 [Debug] > │ points="49,118 54,118 "/>                                                    │

02:09:27 #41309 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41310 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:27 #41311 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:27 #41312 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41313 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41314 [Debug] > │ 0.0                                                                          │

02:09:27 #41315 [Debug] > │ </text>                                                                      │

02:09:27 #41316 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41317 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:27 #41318 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41319 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41320 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41321 [Debug] > │ 0.1                                                                          │

02:09:27 #41322 [Debug] > │ </text>                                                                      │

02:09:27 #41323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41324 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:27 #41325 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41326 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41327 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41328 [Debug] > │ 0.1                                                                          │

02:09:27 #41329 [Debug] > │ </text>                                                                      │

02:09:27 #41330 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41331 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:27 #41332 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41333 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41334 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41335 [Debug] > │ 0.2                                                                          │

02:09:27 #41336 [Debug] > │ </text>                                                                      │

02:09:27 #41337 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41338 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:27 #41339 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41340 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41341 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41342 [Debug] > │ 0.2                                                                          │

02:09:27 #41343 [Debug] > │ </text>                                                                      │

02:09:27 #41344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41345 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:27 #41346 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41347 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41348 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41349 [Debug] > │ 0.2                                                                          │

02:09:27 #41350 [Debug] > │ </text>                                                                      │

02:09:27 #41351 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41352 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:27 #41353 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41354 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41355 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41356 [Debug] > │ 0.3                                                                          │

02:09:27 #41357 [Debug] > │ </text>                                                                      │

02:09:27 #41358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41359 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:27 #41360 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41362 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41363 [Debug] > │ 0.3                                                                          │

02:09:27 #41364 [Debug] > │ </text>                                                                      │

02:09:27 #41365 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41366 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:27 #41367 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41368 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41369 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41370 [Debug] > │ 0.4                                                                          │

02:09:27 #41371 [Debug] > │ </text>                                                                      │

02:09:27 #41372 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41373 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:27 #41374 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41375 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41376 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41377 [Debug] > │ 0.4                                                                          │

02:09:27 #41378 [Debug] > │ </text>                                                                      │

02:09:27 #41379 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41380 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:27 #41381 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41382 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41383 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41384 [Debug] > │ 0.5                                                                          │

02:09:27 #41385 [Debug] > │ </text>                                                                      │

02:09:27 #41386 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41387 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:27 #41388 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41389 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41390 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41391 [Debug] > │ 0.5                                                                          │

02:09:27 #41392 [Debug] > │ </text>                                                                      │

02:09:27 #41393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41394 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:27 #41395 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41396 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41397 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41398 [Debug] > │ 0.6                                                                          │

02:09:27 #41399 [Debug] > │ </text>                                                                      │

02:09:27 #41400 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41401 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:27 #41402 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41403 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41404 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41405 [Debug] > │ 0.7                                                                          │

02:09:27 #41406 [Debug] > │ </text>                                                                      │

02:09:27 #41407 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41408 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:27 #41409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41410 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:27 #41411 [Debug] > │ <text x="595" y="383" dy="0.5ex" text-anchor="start"                         │

02:09:27 #41412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41414 [Debug] > │ -0.0                                                                         │

02:09:27 #41415 [Debug] > │ </text>                                                                      │

02:09:27 #41416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41417 [Debug] > │ points="585,383 590,383 "/>                                                  │

02:09:27 #41418 [Debug] > │ <text x="595" y="317" dy="0.5ex" text-anchor="start"                         │

02:09:27 #41419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41420 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41421 [Debug] > │ -0.0                                                                         │

02:09:27 #41422 [Debug] > │ </text>                                                                      │

02:09:27 #41423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41424 [Debug] > │ points="585,317 590,317 "/>                                                  │

02:09:27 #41425 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #41426 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41427 [Debug] > │ 0.0                                                                          │

02:09:27 #41428 [Debug] > │ </text>                                                                      │

02:09:27 #41429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41430 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:27 #41431 [Debug] > │ <text x="617" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #41432 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41433 [Debug] > │ 0.0                                                                          │

02:09:27 #41434 [Debug] > │ </text>                                                                      │

02:09:27 #41435 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41436 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:27 #41437 [Debug] > │ <text x="617" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #41438 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41439 [Debug] > │ 0.0                                                                          │

02:09:27 #41440 [Debug] > │ </text>                                                                      │

02:09:27 #41441 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41442 [Debug] > │ points="585,118 590,118 "/>                                                  │

02:09:27 #41443 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #41444 [Debug] > │ points="69,250 77,264 85,277 92,289 100,301 107,312 115,321 122,329 130,335  │

02:09:27 #41445 [Debug] > │ 138,339 145,342 153,343 160,341 168,338 175,333 183,326 191,318 198,308      │

02:09:27 #41446 [Debug] > │ 206,297 213,285 221,273 228,259 236,246 243,233 251,220 259,208 266,196      │

02:09:27 #41447 [Debug] > │ 274,186 281,177 289,170 296,164 304,159 310,155 316,151 320,143 322,132      │

02:09:27 #41448 [Debug] > │ 321,116 320,100 318,88 319,85 320,87 320,90 319,93 319,102 320,116 320,130   │

02:09:27 #41449 [Debug] > │ 319,147 320,167 320,189 319,211 320,235 320,259 319,282 320,305 319,327      │

02:09:27 #41450 [Debug] > │ 320,347 320,365 320,381 320,394 320,404 320,411 320,415 538,181 546,203      │

02:09:27 #41451 [Debug] > │ 569,274 561,250 "/>                                                          │

02:09:27 #41452 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:27 #41453 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:27 #41454 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:27 #41455 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41456 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41457 [Debug] > │ 45                                                                           │

02:09:27 #41458 [Debug] > │ </text>                                                                      │

02:09:27 #41459 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #41460 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:27 #41461 [Debug] > │ </svg>                                                                       │

02:09:27 #41462 [Debug] > │ </td></tr><tr><td>46</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:27 #41463 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:27 #41464 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:27 #41465 [Debug] > │ stroke="none"/>                                                              │

02:09:27 #41466 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:27 #41467 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41468 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41469 [Debug] > │ wave                                                                         │

02:09:27 #41470 [Debug] > │ </text>                                                                      │

02:09:27 #41471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:27 #41472 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #41473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #41474 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #41475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:27 #41476 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #41477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:27 #41478 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #41479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:27 #41480 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #41481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:27 #41482 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:27 #41483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:27 #41484 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:27 #41485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:27 #41486 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:27 #41487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:27 #41488 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:27 #41489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:27 #41490 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:27 #41491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:27 #41492 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:27 #41493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:27 #41494 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:27 #41495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:27 #41496 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:27 #41497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:27 #41498 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:27 #41499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:27 #41500 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:27 #41501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:27 #41502 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:27 #41503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:27 #41504 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:27 #41505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:27 #41506 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:27 #41507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:27 #41508 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:27 #41509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:27 #41510 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:27 #41511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:27 #41512 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:27 #41513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:27 #41514 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:27 #41515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:27 #41516 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:27 #41517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:27 #41518 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:27 #41519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:27 #41520 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:27 #41521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:27 #41522 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:27 #41523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:27 #41524 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:27 #41525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:27 #41526 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:27 #41527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="275" y1="424"        │

02:09:27 #41528 [Debug] > │ x2="275" y2="75"/>                                                           │

02:09:27 #41529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:27 #41530 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:27 #41531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:09:27 #41532 [Debug] > │ x2="290" y2="75"/>                                                           │

02:09:27 #41533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:27 #41534 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:27 #41535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:27 #41536 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:27 #41537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="313" y1="424"        │

02:09:27 #41538 [Debug] > │ x2="313" y2="75"/>                                                           │

02:09:27 #41539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:27 #41540 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:27 #41541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="328" y1="424"        │

02:09:27 #41542 [Debug] > │ x2="328" y2="75"/>                                                           │

02:09:27 #41543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:27 #41544 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:27 #41545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="343" y1="424"        │

02:09:27 #41546 [Debug] > │ x2="343" y2="75"/>                                                           │

02:09:27 #41547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="351" y1="424"        │

02:09:27 #41548 [Debug] > │ x2="351" y2="75"/>                                                           │

02:09:27 #41549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:27 #41550 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:27 #41551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="366" y1="424"        │

02:09:27 #41552 [Debug] > │ x2="366" y2="75"/>                                                           │

02:09:27 #41553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:27 #41554 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:27 #41555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:09:27 #41556 [Debug] > │ x2="381" y2="75"/>                                                           │

02:09:27 #41557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:27 #41558 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:27 #41559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:27 #41560 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:27 #41561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="404" y1="424"        │

02:09:27 #41562 [Debug] > │ x2="404" y2="75"/>                                                           │

02:09:27 #41563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:27 #41564 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:27 #41565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:27 #41566 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:27 #41567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:27 #41568 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:27 #41569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="434" y1="424"        │

02:09:27 #41570 [Debug] > │ x2="434" y2="75"/>                                                           │

02:09:27 #41571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="442" y1="424"        │

02:09:27 #41572 [Debug] > │ x2="442" y2="75"/>                                                           │

02:09:27 #41573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:27 #41574 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:27 #41575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="457" y1="424"        │

02:09:27 #41576 [Debug] > │ x2="457" y2="75"/>                                                           │

02:09:27 #41577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="464" y1="424"        │

02:09:27 #41578 [Debug] > │ x2="464" y2="75"/>                                                           │

02:09:27 #41579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="472" y1="424"        │

02:09:27 #41580 [Debug] > │ x2="472" y2="75"/>                                                           │

02:09:27 #41581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="480" y1="424"        │

02:09:27 #41582 [Debug] > │ x2="480" y2="75"/>                                                           │

02:09:27 #41583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:27 #41584 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:27 #41585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="495" y1="424"        │

02:09:27 #41586 [Debug] > │ x2="495" y2="75"/>                                                           │

02:09:27 #41587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="502" y1="424"        │

02:09:27 #41588 [Debug] > │ x2="502" y2="75"/>                                                           │

02:09:27 #41589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:09:27 #41590 [Debug] > │ x2="510" y2="75"/>                                                           │

02:09:27 #41591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="518" y1="424"        │

02:09:27 #41592 [Debug] > │ x2="518" y2="75"/>                                                           │

02:09:27 #41593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="525" y1="424"        │

02:09:27 #41594 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:27 #41595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="533" y1="424"        │

02:09:27 #41596 [Debug] > │ x2="533" y2="75"/>                                                           │

02:09:27 #41597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="540" y1="424"        │

02:09:27 #41598 [Debug] > │ x2="540" y2="75"/>                                                           │

02:09:27 #41599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="548" y1="424"        │

02:09:27 #41600 [Debug] > │ x2="548" y2="75"/>                                                           │

02:09:27 #41601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="556" y1="424"        │

02:09:27 #41602 [Debug] > │ x2="556" y2="75"/>                                                           │

02:09:27 #41603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="563" y1="424"        │

02:09:27 #41604 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:27 #41605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="571" y1="424"        │

02:09:27 #41606 [Debug] > │ x2="571" y2="75"/>                                                           │

02:09:27 #41607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="415"         │

02:09:27 #41608 [Debug] > │ x2="584" y2="415"/>                                                          │

02:09:27 #41609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:27 #41610 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:27 #41611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="382"         │

02:09:27 #41612 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:27 #41613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="365"         │

02:09:27 #41614 [Debug] > │ x2="584" y2="365"/>                                                          │

02:09:27 #41615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:27 #41616 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:27 #41617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="332"         │

02:09:27 #41618 [Debug] > │ x2="584" y2="332"/>                                                          │

02:09:27 #41619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:27 #41620 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:27 #41621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:27 #41622 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:27 #41623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:27 #41624 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:27 #41625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:27 #41626 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:27 #41627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="249"         │

02:09:27 #41628 [Debug] > │ x2="584" y2="249"/>                                                          │

02:09:27 #41629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:27 #41630 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:27 #41631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:27 #41632 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:27 #41633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:27 #41634 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:27 #41635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:27 #41636 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:27 #41637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:09:27 #41638 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:27 #41639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:27 #41640 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:27 #41641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:27 #41642 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:27 #41643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:09:27 #41644 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:27 #41645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="100"         │

02:09:27 #41646 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:27 #41647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:27 #41648 [Debug] > │ y2="84"/>                                                                    │

02:09:27 #41649 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:27 #41650 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41651 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41652 [Debug] > │ position (m)                                                                 │

02:09:27 #41653 [Debug] > │ </text>                                                                      │

02:09:27 #41654 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:27 #41655 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41656 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:27 #41657 [Debug] > │ displacement (m)                                                             │

02:09:27 #41658 [Debug] > │ </text>                                                                      │

02:09:27 #41659 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:27 #41660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41661 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41662 [Debug] > │ position (m)                                                                 │

02:09:27 #41663 [Debug] > │ </text>                                                                      │

02:09:27 #41664 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41665 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41666 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:27 #41667 [Debug] > │ displacement (m)                                                             │

02:09:27 #41668 [Debug] > │ </text>                                                                      │

02:09:27 #41669 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #41670 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #41671 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:27 #41672 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:27 #41673 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:27 #41674 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:27 #41675 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:27 #41676 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:27 #41677 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:27 #41678 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:27 #41679 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:27 #41680 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:27 #41681 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:27 #41682 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:27 #41683 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:27 #41684 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:27 #41685 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:27 #41686 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:27 #41687 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:27 #41688 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:27 #41689 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:27 #41690 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:27 #41691 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:27 #41692 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:27 #41693 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="525" y1="424"        │

02:09:27 #41694 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:27 #41695 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="563" y1="424"        │

02:09:27 #41696 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:27 #41697 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="382"         │

02:09:27 #41698 [Debug] > │ x2="584" y2="382"/>                                                          │

02:09:27 #41699 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:27 #41700 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:27 #41701 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="249"         │

02:09:27 #41702 [Debug] > │ x2="584" y2="249"/>                                                          │

02:09:27 #41703 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:27 #41704 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:27 #41705 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="117"         │

02:09:27 #41706 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:27 #41707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41708 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:27 #41709 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:27 #41710 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41711 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41712 [Debug] > │ 0.0                                                                          │

02:09:27 #41713 [Debug] > │ </text>                                                                      │

02:09:27 #41714 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41715 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:27 #41716 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41717 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41718 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41719 [Debug] > │ 0.1                                                                          │

02:09:27 #41720 [Debug] > │ </text>                                                                      │

02:09:27 #41721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41722 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:27 #41723 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41724 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41725 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41726 [Debug] > │ 0.1                                                                          │

02:09:27 #41727 [Debug] > │ </text>                                                                      │

02:09:27 #41728 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41729 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:27 #41730 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41731 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41732 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41733 [Debug] > │ 0.2                                                                          │

02:09:27 #41734 [Debug] > │ </text>                                                                      │

02:09:27 #41735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41736 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:27 #41737 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41739 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41740 [Debug] > │ 0.2                                                                          │

02:09:27 #41741 [Debug] > │ </text>                                                                      │

02:09:27 #41742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41743 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:27 #41744 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41746 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41747 [Debug] > │ 0.2                                                                          │

02:09:27 #41748 [Debug] > │ </text>                                                                      │

02:09:27 #41749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41750 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:27 #41751 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41753 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41754 [Debug] > │ 0.3                                                                          │

02:09:27 #41755 [Debug] > │ </text>                                                                      │

02:09:27 #41756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41757 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:27 #41758 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41759 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41760 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41761 [Debug] > │ 0.3                                                                          │

02:09:27 #41762 [Debug] > │ </text>                                                                      │

02:09:27 #41763 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41764 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:27 #41765 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41766 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41767 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41768 [Debug] > │ 0.4                                                                          │

02:09:27 #41769 [Debug] > │ </text>                                                                      │

02:09:27 #41770 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41771 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:27 #41772 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41773 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41774 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41775 [Debug] > │ 0.4                                                                          │

02:09:27 #41776 [Debug] > │ </text>                                                                      │

02:09:27 #41777 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41778 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:27 #41779 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41781 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41782 [Debug] > │ 0.5                                                                          │

02:09:27 #41783 [Debug] > │ </text>                                                                      │

02:09:27 #41784 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41785 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:27 #41786 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41787 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41788 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41789 [Debug] > │ 0.5                                                                          │

02:09:27 #41790 [Debug] > │ </text>                                                                      │

02:09:27 #41791 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41792 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:27 #41793 [Debug] > │ <text x="525" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41794 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41795 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41796 [Debug] > │ 0.6                                                                          │

02:09:27 #41797 [Debug] > │ </text>                                                                      │

02:09:27 #41798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41799 [Debug] > │ points="525,69 525,74 "/>                                                    │

02:09:27 #41800 [Debug] > │ <text x="563" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #41801 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41802 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41803 [Debug] > │ 0.7                                                                          │

02:09:27 #41804 [Debug] > │ </text>                                                                      │

02:09:27 #41805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41806 [Debug] > │ points="563,69 563,74 "/>                                                    │

02:09:27 #41807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41808 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:27 #41809 [Debug] > │ <text x="45" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41810 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41811 [Debug] > │ -0.0                                                                         │

02:09:27 #41812 [Debug] > │ </text>                                                                      │

02:09:27 #41813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41814 [Debug] > │ points="49,382 54,382 "/>                                                    │

02:09:27 #41815 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41816 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41817 [Debug] > │ -0.0                                                                         │

02:09:27 #41818 [Debug] > │ </text>                                                                      │

02:09:27 #41819 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41820 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:27 #41821 [Debug] > │ <text x="45" y="249" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41822 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41823 [Debug] > │ 0.0                                                                          │

02:09:27 #41824 [Debug] > │ </text>                                                                      │

02:09:27 #41825 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41826 [Debug] > │ points="49,249 54,249 "/>                                                    │

02:09:27 #41827 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41828 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41829 [Debug] > │ 0.0                                                                          │

02:09:27 #41830 [Debug] > │ </text>                                                                      │

02:09:27 #41831 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41832 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:27 #41833 [Debug] > │ <text x="45" y="117" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #41834 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41835 [Debug] > │ 0.0                                                                          │

02:09:27 #41836 [Debug] > │ </text>                                                                      │

02:09:27 #41837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41838 [Debug] > │ points="49,117 54,117 "/>                                                    │

02:09:27 #41839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41840 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:27 #41841 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:27 #41842 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41843 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41844 [Debug] > │ 0.0                                                                          │

02:09:27 #41845 [Debug] > │ </text>                                                                      │

02:09:27 #41846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41847 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:27 #41848 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41849 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41850 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41851 [Debug] > │ 0.1                                                                          │

02:09:27 #41852 [Debug] > │ </text>                                                                      │

02:09:27 #41853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41854 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:27 #41855 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41856 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41857 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41858 [Debug] > │ 0.1                                                                          │

02:09:27 #41859 [Debug] > │ </text>                                                                      │

02:09:27 #41860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41861 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:27 #41862 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41863 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41864 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41865 [Debug] > │ 0.2                                                                          │

02:09:27 #41866 [Debug] > │ </text>                                                                      │

02:09:27 #41867 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41868 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:27 #41869 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41871 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41872 [Debug] > │ 0.2                                                                          │

02:09:27 #41873 [Debug] > │ </text>                                                                      │

02:09:27 #41874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41875 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:27 #41876 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41879 [Debug] > │ 0.2                                                                          │

02:09:27 #41880 [Debug] > │ </text>                                                                      │

02:09:27 #41881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41882 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:27 #41883 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41884 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41885 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41886 [Debug] > │ 0.3                                                                          │

02:09:27 #41887 [Debug] > │ </text>                                                                      │

02:09:27 #41888 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41889 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:27 #41890 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41891 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41892 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41893 [Debug] > │ 0.3                                                                          │

02:09:27 #41894 [Debug] > │ </text>                                                                      │

02:09:27 #41895 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41896 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:27 #41897 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41898 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41899 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41900 [Debug] > │ 0.4                                                                          │

02:09:27 #41901 [Debug] > │ </text>                                                                      │

02:09:27 #41902 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41903 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:27 #41904 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41905 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41906 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41907 [Debug] > │ 0.4                                                                          │

02:09:27 #41908 [Debug] > │ </text>                                                                      │

02:09:27 #41909 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41910 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:27 #41911 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41912 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41913 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41914 [Debug] > │ 0.5                                                                          │

02:09:27 #41915 [Debug] > │ </text>                                                                      │

02:09:27 #41916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41917 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:27 #41918 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41919 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41920 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41921 [Debug] > │ 0.5                                                                          │

02:09:27 #41922 [Debug] > │ </text>                                                                      │

02:09:27 #41923 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41924 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:27 #41925 [Debug] > │ <text x="525" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41926 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41927 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41928 [Debug] > │ 0.6                                                                          │

02:09:27 #41929 [Debug] > │ </text>                                                                      │

02:09:27 #41930 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41931 [Debug] > │ points="525,425 525,430 "/>                                                  │

02:09:27 #41932 [Debug] > │ <text x="563" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #41933 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41934 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41935 [Debug] > │ 0.7                                                                          │

02:09:27 #41936 [Debug] > │ </text>                                                                      │

02:09:27 #41937 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41938 [Debug] > │ points="563,425 563,430 "/>                                                  │

02:09:27 #41939 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41940 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:27 #41941 [Debug] > │ <text x="595" y="382" dy="0.5ex" text-anchor="start"                         │

02:09:27 #41942 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41943 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41944 [Debug] > │ -0.0                                                                         │

02:09:27 #41945 [Debug] > │ </text>                                                                      │

02:09:27 #41946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41947 [Debug] > │ points="585,382 590,382 "/>                                                  │

02:09:27 #41948 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:27 #41949 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41950 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41951 [Debug] > │ -0.0                                                                         │

02:09:27 #41952 [Debug] > │ </text>                                                                      │

02:09:27 #41953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41954 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:27 #41955 [Debug] > │ <text x="617" y="249" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #41956 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41957 [Debug] > │ 0.0                                                                          │

02:09:27 #41958 [Debug] > │ </text>                                                                      │

02:09:27 #41959 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41960 [Debug] > │ points="585,249 590,249 "/>                                                  │

02:09:27 #41961 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #41962 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41963 [Debug] > │ 0.0                                                                          │

02:09:27 #41964 [Debug] > │ </text>                                                                      │

02:09:27 #41965 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41966 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:27 #41967 [Debug] > │ <text x="617" y="117" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #41968 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #41969 [Debug] > │ 0.0                                                                          │

02:09:27 #41970 [Debug] > │ </text>                                                                      │

02:09:27 #41971 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #41972 [Debug] > │ points="585,117 590,117 "/>                                                  │

02:09:27 #41973 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #41974 [Debug] > │ points="69,249 77,261 85,272 92,283 100,293 107,302 115,310 123,317 130,322  │

02:09:27 #41975 [Debug] > │ 138,326 145,328 153,329 161,328 168,325 176,321 183,315 191,308 199,299      │

02:09:27 #41976 [Debug] > │ 206,290 214,279 221,268 229,257 237,246 244,234 252,223 259,213 267,203      │

02:09:27 #41977 [Debug] > │ 275,194 282,186 290,180 297,174 304,170 310,164 315,157 318,146 318,129      │

02:09:27 #41978 [Debug] > │ 316,111 315,95 315,87 316,85 316,86 316,86 315,91 316,101 316,114 316,128    │

02:09:27 #41979 [Debug] > │ 316,145 316,166 316,187 316,210 316,234 316,257 316,281 316,305 316,326      │

02:09:27 #41980 [Debug] > │ 316,347 316,365 316,381 316,394 316,404 316,411 316,415 540,180 548,202      │

02:09:27 #41981 [Debug] > │ 569,266 563,249 "/>                                                          │

02:09:27 #41982 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:27 #41983 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:27 #41984 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:27 #41985 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41986 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41987 [Debug] > │ 46                                                                           │

02:09:27 #41988 [Debug] > │ </text>                                                                      │

02:09:27 #41989 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #41990 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:27 #41991 [Debug] > │ </svg>                                                                       │

02:09:27 #41992 [Debug] > │ </td></tr><tr><td>47</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:27 #41993 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:27 #41994 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:27 #41995 [Debug] > │ stroke="none"/>                                                              │

02:09:27 #41996 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:27 #41997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #41998 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #41999 [Debug] > │ wave                                                                         │

02:09:27 #42000 [Debug] > │ </text>                                                                      │

02:09:27 #42001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:27 #42002 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #42004 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:27 #42006 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:27 #42008 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:27 #42010 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:27 #42012 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:27 #42013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:27 #42014 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #42015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:27 #42016 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:27 #42017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:27 #42018 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:27 #42019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:27 #42020 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:27 #42021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:27 #42022 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:27 #42023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:27 #42024 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #42025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:27 #42026 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:27 #42027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:27 #42028 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:27 #42029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:27 #42030 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:27 #42031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:27 #42032 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:27 #42033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:27 #42034 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:27 #42035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:27 #42036 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:27 #42037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:27 #42038 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:27 #42039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:27 #42040 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:27 #42041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:27 #42042 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:27 #42043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:27 #42044 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #42045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:27 #42046 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:27 #42047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:27 #42048 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:27 #42049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:27 #42050 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:27 #42051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:27 #42052 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:27 #42053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:27 #42054 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #42055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:27 #42056 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:27 #42057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:27 #42058 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:27 #42059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:27 #42060 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:27 #42061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:27 #42062 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:27 #42063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:27 #42064 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:27 #42065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:27 #42066 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:27 #42067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:27 #42068 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:27 #42069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:27 #42070 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:27 #42071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="330" y1="424"        │

02:09:27 #42072 [Debug] > │ x2="330" y2="75"/>                                                           │

02:09:27 #42073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:27 #42074 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #42075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:27 #42076 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:27 #42077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="353" y1="424"        │

02:09:27 #42078 [Debug] > │ x2="353" y2="75"/>                                                           │

02:09:27 #42079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="360" y1="424"        │

02:09:27 #42080 [Debug] > │ x2="360" y2="75"/>                                                           │

02:09:27 #42081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:27 #42082 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:27 #42083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="376" y1="424"        │

02:09:27 #42084 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:27 #42085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="383" y1="424"        │

02:09:27 #42086 [Debug] > │ x2="383" y2="75"/>                                                           │

02:09:27 #42087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="391" y1="424"        │

02:09:27 #42088 [Debug] > │ x2="391" y2="75"/>                                                           │

02:09:27 #42089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:09:27 #42090 [Debug] > │ x2="399" y2="75"/>                                                           │

02:09:27 #42091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="406" y1="424"        │

02:09:27 #42092 [Debug] > │ x2="406" y2="75"/>                                                           │

02:09:27 #42093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="414" y1="424"        │

02:09:27 #42094 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:27 #42095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="422" y1="424"        │

02:09:27 #42096 [Debug] > │ x2="422" y2="75"/>                                                           │

02:09:27 #42097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="429" y1="424"        │

02:09:27 #42098 [Debug] > │ x2="429" y2="75"/>                                                           │

02:09:27 #42099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="437" y1="424"        │

02:09:27 #42100 [Debug] > │ x2="437" y2="75"/>                                                           │

02:09:27 #42101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="445" y1="424"        │

02:09:27 #42102 [Debug] > │ x2="445" y2="75"/>                                                           │

02:09:27 #42103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="452" y1="424"        │

02:09:27 #42104 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:27 #42105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:09:27 #42106 [Debug] > │ x2="460" y2="75"/>                                                           │

02:09:27 #42107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="468" y1="424"        │

02:09:27 #42108 [Debug] > │ x2="468" y2="75"/>                                                           │

02:09:27 #42109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="475" y1="424"        │

02:09:27 #42110 [Debug] > │ x2="475" y2="75"/>                                                           │

02:09:27 #42111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="483" y1="424"        │

02:09:27 #42112 [Debug] > │ x2="483" y2="75"/>                                                           │

02:09:27 #42113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="491" y1="424"        │

02:09:27 #42114 [Debug] > │ x2="491" y2="75"/>                                                           │

02:09:27 #42115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="498" y1="424"        │

02:09:27 #42116 [Debug] > │ x2="498" y2="75"/>                                                           │

02:09:27 #42117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:09:27 #42118 [Debug] > │ x2="506" y2="75"/>                                                           │

02:09:27 #42119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="514" y1="424"        │

02:09:27 #42120 [Debug] > │ x2="514" y2="75"/>                                                           │

02:09:27 #42121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="521" y1="424"        │

02:09:27 #42122 [Debug] > │ x2="521" y2="75"/>                                                           │

02:09:27 #42123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:27 #42124 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:27 #42125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="537" y1="424"        │

02:09:27 #42126 [Debug] > │ x2="537" y2="75"/>                                                           │

02:09:27 #42127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:09:27 #42128 [Debug] > │ x2="544" y2="75"/>                                                           │

02:09:27 #42129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:09:27 #42130 [Debug] > │ x2="552" y2="75"/>                                                           │

02:09:27 #42131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:09:27 #42132 [Debug] > │ x2="560" y2="75"/>                                                           │

02:09:27 #42133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="567" y1="424"        │

02:09:27 #42134 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:27 #42135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="575" y1="424"        │

02:09:27 #42136 [Debug] > │ x2="575" y2="75"/>                                                           │

02:09:27 #42137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:27 #42138 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:27 #42139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:27 #42140 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:27 #42141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="383"         │

02:09:27 #42142 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:27 #42143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:27 #42144 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:27 #42145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:27 #42146 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:27 #42147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:27 #42148 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:27 #42149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:27 #42150 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:27 #42151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:27 #42152 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:27 #42153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="283"         │

02:09:27 #42154 [Debug] > │ x2="584" y2="283"/>                                                          │

02:09:27 #42155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="266"         │

02:09:27 #42156 [Debug] > │ x2="584" y2="266"/>                                                          │

02:09:27 #42157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:27 #42158 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:27 #42159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:27 #42160 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:27 #42161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:27 #42162 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:27 #42163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:27 #42164 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:27 #42165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:27 #42166 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:27 #42167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:27 #42168 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:27 #42169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:27 #42170 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:27 #42171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:27 #42172 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:27 #42173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="117"         │

02:09:27 #42174 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:27 #42175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="100"         │

02:09:27 #42176 [Debug] > │ x2="584" y2="100"/>                                                          │

02:09:27 #42177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:27 #42178 [Debug] > │ y2="83"/>                                                                    │

02:09:27 #42179 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:27 #42180 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42181 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42182 [Debug] > │ position (m)                                                                 │

02:09:27 #42183 [Debug] > │ </text>                                                                      │

02:09:27 #42184 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:27 #42185 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42186 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:27 #42187 [Debug] > │ displacement (m)                                                             │

02:09:27 #42188 [Debug] > │ </text>                                                                      │

02:09:27 #42189 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:27 #42190 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42191 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42192 [Debug] > │ position (m)                                                                 │

02:09:27 #42193 [Debug] > │ </text>                                                                      │

02:09:27 #42194 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42195 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42196 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:27 #42197 [Debug] > │ displacement (m)                                                             │

02:09:27 #42198 [Debug] > │ </text>                                                                      │

02:09:27 #42199 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #42200 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42201 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:27 #42202 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #42203 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:27 #42204 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #42205 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:27 #42206 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:27 #42207 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:27 #42208 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #42209 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:27 #42210 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #42211 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:27 #42212 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:27 #42213 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:27 #42214 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #42215 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="376" y1="424"        │

02:09:27 #42216 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:27 #42217 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="414" y1="424"        │

02:09:27 #42218 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:27 #42219 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="452" y1="424"        │

02:09:27 #42220 [Debug] > │ x2="452" y2="75"/>                                                           │

02:09:27 #42221 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="491" y1="424"        │

02:09:27 #42222 [Debug] > │ x2="491" y2="75"/>                                                           │

02:09:27 #42223 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="529" y1="424"        │

02:09:27 #42224 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:27 #42225 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="567" y1="424"        │

02:09:27 #42226 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:27 #42227 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="383"         │

02:09:27 #42228 [Debug] > │ x2="584" y2="383"/>                                                          │

02:09:27 #42229 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="316"         │

02:09:27 #42230 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:27 #42231 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:27 #42232 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:27 #42233 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:27 #42234 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:27 #42235 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="117"         │

02:09:27 #42236 [Debug] > │ x2="584" y2="117"/>                                                          │

02:09:27 #42237 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42238 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:27 #42239 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:27 #42240 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42241 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42242 [Debug] > │ 0.0                                                                          │

02:09:27 #42243 [Debug] > │ </text>                                                                      │

02:09:27 #42244 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42245 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:27 #42246 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42247 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42248 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42249 [Debug] > │ 0.1                                                                          │

02:09:27 #42250 [Debug] > │ </text>                                                                      │

02:09:27 #42251 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42252 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:27 #42253 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42254 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42255 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42256 [Debug] > │ 0.1                                                                          │

02:09:27 #42257 [Debug] > │ </text>                                                                      │

02:09:27 #42258 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42259 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:27 #42260 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42261 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42262 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42263 [Debug] > │ 0.2                                                                          │

02:09:27 #42264 [Debug] > │ </text>                                                                      │

02:09:27 #42265 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42266 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:27 #42267 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42268 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42269 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42270 [Debug] > │ 0.2                                                                          │

02:09:27 #42271 [Debug] > │ </text>                                                                      │

02:09:27 #42272 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42273 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:27 #42274 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42275 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42276 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42277 [Debug] > │ 0.2                                                                          │

02:09:27 #42278 [Debug] > │ </text>                                                                      │

02:09:27 #42279 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42280 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:27 #42281 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42282 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42283 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42284 [Debug] > │ 0.3                                                                          │

02:09:27 #42285 [Debug] > │ </text>                                                                      │

02:09:27 #42286 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42287 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:27 #42288 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42289 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42290 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42291 [Debug] > │ 0.3                                                                          │

02:09:27 #42292 [Debug] > │ </text>                                                                      │

02:09:27 #42293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42294 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:27 #42295 [Debug] > │ <text x="376" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42296 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42297 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42298 [Debug] > │ 0.4                                                                          │

02:09:27 #42299 [Debug] > │ </text>                                                                      │

02:09:27 #42300 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42301 [Debug] > │ points="376,69 376,74 "/>                                                    │

02:09:27 #42302 [Debug] > │ <text x="414" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42303 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42304 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42305 [Debug] > │ 0.4                                                                          │

02:09:27 #42306 [Debug] > │ </text>                                                                      │

02:09:27 #42307 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42308 [Debug] > │ points="414,69 414,74 "/>                                                    │

02:09:27 #42309 [Debug] > │ <text x="452" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42310 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42311 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42312 [Debug] > │ 0.5                                                                          │

02:09:27 #42313 [Debug] > │ </text>                                                                      │

02:09:27 #42314 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42315 [Debug] > │ points="452,69 452,74 "/>                                                    │

02:09:27 #42316 [Debug] > │ <text x="491" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42317 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42318 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42319 [Debug] > │ 0.5                                                                          │

02:09:27 #42320 [Debug] > │ </text>                                                                      │

02:09:27 #42321 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42322 [Debug] > │ points="491,69 491,74 "/>                                                    │

02:09:27 #42323 [Debug] > │ <text x="529" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42324 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42325 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42326 [Debug] > │ 0.6                                                                          │

02:09:27 #42327 [Debug] > │ </text>                                                                      │

02:09:27 #42328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42329 [Debug] > │ points="529,69 529,74 "/>                                                    │

02:09:27 #42330 [Debug] > │ <text x="567" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42331 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42332 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42333 [Debug] > │ 0.7                                                                          │

02:09:27 #42334 [Debug] > │ </text>                                                                      │

02:09:27 #42335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42336 [Debug] > │ points="567,69 567,74 "/>                                                    │

02:09:27 #42337 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42338 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:27 #42339 [Debug] > │ <text x="45" y="383" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42340 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42341 [Debug] > │ -0.0                                                                         │

02:09:27 #42342 [Debug] > │ </text>                                                                      │

02:09:27 #42343 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42344 [Debug] > │ points="49,383 54,383 "/>                                                    │

02:09:27 #42345 [Debug] > │ <text x="45" y="316" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42346 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42347 [Debug] > │ -0.0                                                                         │

02:09:27 #42348 [Debug] > │ </text>                                                                      │

02:09:27 #42349 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42350 [Debug] > │ points="49,316 54,316 "/>                                                    │

02:09:27 #42351 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42352 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42353 [Debug] > │ 0.0                                                                          │

02:09:27 #42354 [Debug] > │ </text>                                                                      │

02:09:27 #42355 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42356 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:27 #42357 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42358 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42359 [Debug] > │ 0.0                                                                          │

02:09:27 #42360 [Debug] > │ </text>                                                                      │

02:09:27 #42361 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42362 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:27 #42363 [Debug] > │ <text x="45" y="117" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42364 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42365 [Debug] > │ 0.0                                                                          │

02:09:27 #42366 [Debug] > │ </text>                                                                      │

02:09:27 #42367 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42368 [Debug] > │ points="49,117 54,117 "/>                                                    │

02:09:27 #42369 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42370 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:27 #42371 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:27 #42372 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42373 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42374 [Debug] > │ 0.0                                                                          │

02:09:27 #42375 [Debug] > │ </text>                                                                      │

02:09:27 #42376 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42377 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:27 #42378 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42379 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42380 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42381 [Debug] > │ 0.1                                                                          │

02:09:27 #42382 [Debug] > │ </text>                                                                      │

02:09:27 #42383 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42384 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:27 #42385 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42386 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42387 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42388 [Debug] > │ 0.1                                                                          │

02:09:27 #42389 [Debug] > │ </text>                                                                      │

02:09:27 #42390 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42391 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:27 #42392 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42393 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42394 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42395 [Debug] > │ 0.2                                                                          │

02:09:27 #42396 [Debug] > │ </text>                                                                      │

02:09:27 #42397 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42398 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:27 #42399 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42400 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42401 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42402 [Debug] > │ 0.2                                                                          │

02:09:27 #42403 [Debug] > │ </text>                                                                      │

02:09:27 #42404 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42405 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:27 #42406 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42407 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42408 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42409 [Debug] > │ 0.2                                                                          │

02:09:27 #42410 [Debug] > │ </text>                                                                      │

02:09:27 #42411 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42412 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:27 #42413 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42414 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42415 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42416 [Debug] > │ 0.3                                                                          │

02:09:27 #42417 [Debug] > │ </text>                                                                      │

02:09:27 #42418 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42419 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:27 #42420 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42421 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42422 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42423 [Debug] > │ 0.3                                                                          │

02:09:27 #42424 [Debug] > │ </text>                                                                      │

02:09:27 #42425 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42426 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:27 #42427 [Debug] > │ <text x="376" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42428 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42429 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42430 [Debug] > │ 0.4                                                                          │

02:09:27 #42431 [Debug] > │ </text>                                                                      │

02:09:27 #42432 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42433 [Debug] > │ points="376,425 376,430 "/>                                                  │

02:09:27 #42434 [Debug] > │ <text x="414" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42435 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42436 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42437 [Debug] > │ 0.4                                                                          │

02:09:27 #42438 [Debug] > │ </text>                                                                      │

02:09:27 #42439 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42440 [Debug] > │ points="414,425 414,430 "/>                                                  │

02:09:27 #42441 [Debug] > │ <text x="452" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42442 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42443 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42444 [Debug] > │ 0.5                                                                          │

02:09:27 #42445 [Debug] > │ </text>                                                                      │

02:09:27 #42446 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42447 [Debug] > │ points="452,425 452,430 "/>                                                  │

02:09:27 #42448 [Debug] > │ <text x="491" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42449 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42450 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42451 [Debug] > │ 0.5                                                                          │

02:09:27 #42452 [Debug] > │ </text>                                                                      │

02:09:27 #42453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42454 [Debug] > │ points="491,425 491,430 "/>                                                  │

02:09:27 #42455 [Debug] > │ <text x="529" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42456 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42457 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42458 [Debug] > │ 0.6                                                                          │

02:09:27 #42459 [Debug] > │ </text>                                                                      │

02:09:27 #42460 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42461 [Debug] > │ points="529,425 529,430 "/>                                                  │

02:09:27 #42462 [Debug] > │ <text x="567" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42463 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42464 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42465 [Debug] > │ 0.7                                                                          │

02:09:27 #42466 [Debug] > │ </text>                                                                      │

02:09:27 #42467 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42468 [Debug] > │ points="567,425 567,430 "/>                                                  │

02:09:27 #42469 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42470 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:27 #42471 [Debug] > │ <text x="595" y="383" dy="0.5ex" text-anchor="start"                         │

02:09:27 #42472 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42473 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42474 [Debug] > │ -0.0                                                                         │

02:09:27 #42475 [Debug] > │ </text>                                                                      │

02:09:27 #42476 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42477 [Debug] > │ points="585,383 590,383 "/>                                                  │

02:09:27 #42478 [Debug] > │ <text x="595" y="316" dy="0.5ex" text-anchor="start"                         │

02:09:27 #42479 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42480 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42481 [Debug] > │ -0.0                                                                         │

02:09:27 #42482 [Debug] > │ </text>                                                                      │

02:09:27 #42483 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42484 [Debug] > │ points="585,316 590,316 "/>                                                  │

02:09:27 #42485 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #42486 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42487 [Debug] > │ 0.0                                                                          │

02:09:27 #42488 [Debug] > │ </text>                                                                      │

02:09:27 #42489 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42490 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:27 #42491 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #42492 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42493 [Debug] > │ 0.0                                                                          │

02:09:27 #42494 [Debug] > │ </text>                                                                      │

02:09:27 #42495 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42496 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:27 #42497 [Debug] > │ <text x="617" y="117" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #42498 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42499 [Debug] > │ 0.0                                                                          │

02:09:27 #42500 [Debug] > │ </text>                                                                      │

02:09:27 #42501 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42502 [Debug] > │ points="585,117 590,117 "/>                                                  │

02:09:27 #42503 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #42504 [Debug] > │ points="69,250 77,259 85,268 92,277 100,286 108,293 115,300 123,306 131,310  │

02:09:27 #42505 [Debug] > │ 138,313 146,315 154,316 161,315 169,312 177,309 184,304 192,298 200,291      │

02:09:27 #42506 [Debug] > │ 207,283 215,274 223,265 230,256 238,246 246,237 253,228 261,219 269,211      │

02:09:27 #42507 [Debug] > │ 276,203 284,197 291,191 299,186 305,181 311,174 314,163 316,147 314,127      │

02:09:27 #42508 [Debug] > │ 313,108 312,95 313,89 314,87 313,85 313,85 313,91 313,102 313,114 313,128    │

02:09:27 #42509 [Debug] > │ 313,146 313,166 313,187 313,210 313,234 313,257 313,282 313,304 313,326      │

02:09:27 #42510 [Debug] > │ 313,347 313,365 313,381 313,394 313,404 313,411 313,415 544,180 552,202      │

02:09:27 #42511 [Debug] > │ 569,254 567,250 "/>                                                          │

02:09:27 #42512 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:27 #42513 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:27 #42514 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:27 #42515 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42516 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42517 [Debug] > │ 47                                                                           │

02:09:27 #42518 [Debug] > │ </text>                                                                      │

02:09:27 #42519 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #42520 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:27 #42521 [Debug] > │ </svg>                                                                       │

02:09:27 #42522 [Debug] > │ </td></tr><tr><td>48</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:27 #42523 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:27 #42524 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:27 #42525 [Debug] > │ stroke="none"/>                                                              │

02:09:27 #42526 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:27 #42527 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42528 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42529 [Debug] > │ wave                                                                         │

02:09:27 #42530 [Debug] > │ </text>                                                                      │

02:09:27 #42531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:27 #42532 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #42534 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:27 #42536 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:27 #42538 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:27 #42540 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:27 #42542 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:27 #42543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:27 #42544 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #42545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:27 #42546 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:27 #42547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:27 #42548 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:27 #42549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:27 #42550 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:27 #42551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:27 #42552 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:27 #42553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:27 #42554 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #42555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:27 #42556 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:27 #42557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:27 #42558 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:27 #42559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:27 #42560 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:27 #42561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:27 #42562 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:27 #42563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:27 #42564 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:27 #42565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:27 #42566 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:27 #42567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:27 #42568 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:27 #42569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:27 #42570 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:27 #42571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:27 #42572 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:27 #42573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:27 #42574 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #42575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:27 #42576 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:27 #42577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:27 #42578 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:27 #42579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:27 #42580 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:27 #42581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:27 #42582 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:27 #42583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:27 #42584 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #42585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:27 #42586 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:27 #42587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:27 #42588 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:27 #42589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:27 #42590 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:27 #42591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:27 #42592 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:27 #42593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:27 #42594 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:27 #42595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:27 #42596 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:27 #42597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:27 #42598 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:27 #42599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:27 #42600 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:27 #42601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:27 #42602 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:27 #42603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:27 #42604 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #42605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:27 #42606 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:27 #42607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:27 #42608 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:27 #42609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:27 #42610 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:27 #42611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:27 #42612 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:27 #42613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:27 #42614 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:27 #42615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:27 #42616 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:27 #42617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:27 #42618 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:27 #42619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:27 #42620 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:27 #42621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:27 #42622 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:27 #42623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:27 #42624 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:27 #42625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:27 #42626 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:27 #42627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:27 #42628 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:27 #42629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:27 #42630 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:27 #42631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:27 #42632 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:27 #42633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:27 #42634 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:27 #42635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:27 #42636 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:27 #42637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:27 #42638 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:27 #42639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:27 #42640 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:27 #42641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:27 #42642 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:27 #42643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:27 #42644 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:27 #42645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:27 #42646 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:27 #42647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:27 #42648 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:27 #42649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:27 #42650 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:27 #42651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:27 #42652 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:27 #42653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:27 #42654 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:27 #42655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:27 #42656 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:27 #42657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:27 #42658 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:27 #42659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:27 #42660 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:27 #42661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:27 #42662 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:27 #42663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:27 #42664 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:27 #42665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="418"         │

02:09:27 #42666 [Debug] > │ x2="584" y2="418"/>                                                          │

02:09:27 #42667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="401"         │

02:09:27 #42668 [Debug] > │ x2="584" y2="401"/>                                                          │

02:09:27 #42669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="385"         │

02:09:27 #42670 [Debug] > │ x2="584" y2="385"/>                                                          │

02:09:27 #42671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:27 #42672 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:27 #42673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:27 #42674 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:27 #42675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:27 #42676 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:27 #42677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="317"         │

02:09:27 #42678 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:27 #42679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="301"         │

02:09:27 #42680 [Debug] > │ x2="584" y2="301"/>                                                          │

02:09:27 #42681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:27 #42682 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:27 #42683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:27 #42684 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:27 #42685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:27 #42686 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:27 #42687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:27 #42688 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:27 #42689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:27 #42690 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:27 #42691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:27 #42692 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:27 #42693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="183"         │

02:09:27 #42694 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:27 #42695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:27 #42696 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:27 #42697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:27 #42698 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:27 #42699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:27 #42700 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:27 #42701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:09:27 #42702 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:27 #42703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:27 #42704 [Debug] > │ y2="99"/>                                                                    │

02:09:27 #42705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:27 #42706 [Debug] > │ y2="83"/>                                                                    │

02:09:27 #42707 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:27 #42708 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42709 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42710 [Debug] > │ position (m)                                                                 │

02:09:27 #42711 [Debug] > │ </text>                                                                      │

02:09:27 #42712 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:27 #42713 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42714 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:27 #42715 [Debug] > │ displacement (m)                                                             │

02:09:27 #42716 [Debug] > │ </text>                                                                      │

02:09:27 #42717 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:27 #42718 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42719 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42720 [Debug] > │ position (m)                                                                 │

02:09:27 #42721 [Debug] > │ </text>                                                                      │

02:09:27 #42722 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42723 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42724 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:27 #42725 [Debug] > │ displacement (m)                                                             │

02:09:27 #42726 [Debug] > │ </text>                                                                      │

02:09:27 #42727 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #42728 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #42729 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:27 #42730 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #42731 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:27 #42732 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #42733 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:27 #42734 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:27 #42735 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:27 #42736 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #42737 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:27 #42738 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #42739 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:27 #42740 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:27 #42741 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:27 #42742 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #42743 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:27 #42744 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:27 #42745 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:27 #42746 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:27 #42747 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:27 #42748 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:27 #42749 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:27 #42750 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:27 #42751 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:27 #42752 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:27 #42753 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:27 #42754 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:27 #42755 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="385"         │

02:09:27 #42756 [Debug] > │ x2="584" y2="385"/>                                                          │

02:09:27 #42757 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="317"         │

02:09:27 #42758 [Debug] > │ x2="584" y2="317"/>                                                          │

02:09:27 #42759 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:27 #42760 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:27 #42761 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="183"         │

02:09:27 #42762 [Debug] > │ x2="584" y2="183"/>                                                          │

02:09:27 #42763 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="116"         │

02:09:27 #42764 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:27 #42765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42766 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:27 #42767 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:27 #42768 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42769 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42770 [Debug] > │ 0.0                                                                          │

02:09:27 #42771 [Debug] > │ </text>                                                                      │

02:09:27 #42772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42773 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:27 #42774 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42776 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42777 [Debug] > │ 0.1                                                                          │

02:09:27 #42778 [Debug] > │ </text>                                                                      │

02:09:27 #42779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42780 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:27 #42781 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42783 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42784 [Debug] > │ 0.1                                                                          │

02:09:27 #42785 [Debug] > │ </text>                                                                      │

02:09:27 #42786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42787 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:27 #42788 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42789 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42790 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42791 [Debug] > │ 0.2                                                                          │

02:09:27 #42792 [Debug] > │ </text>                                                                      │

02:09:27 #42793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42794 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:27 #42795 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42797 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42798 [Debug] > │ 0.2                                                                          │

02:09:27 #42799 [Debug] > │ </text>                                                                      │

02:09:27 #42800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42801 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:27 #42802 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42803 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42804 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42805 [Debug] > │ 0.2                                                                          │

02:09:27 #42806 [Debug] > │ </text>                                                                      │

02:09:27 #42807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42808 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:27 #42809 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42810 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42811 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42812 [Debug] > │ 0.3                                                                          │

02:09:27 #42813 [Debug] > │ </text>                                                                      │

02:09:27 #42814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42815 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:27 #42816 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42817 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42818 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42819 [Debug] > │ 0.3                                                                          │

02:09:27 #42820 [Debug] > │ </text>                                                                      │

02:09:27 #42821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42822 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:27 #42823 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42824 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42825 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42826 [Debug] > │ 0.4                                                                          │

02:09:27 #42827 [Debug] > │ </text>                                                                      │

02:09:27 #42828 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42829 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:27 #42830 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42831 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42832 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42833 [Debug] > │ 0.4                                                                          │

02:09:27 #42834 [Debug] > │ </text>                                                                      │

02:09:27 #42835 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42836 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:27 #42837 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42838 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42839 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42840 [Debug] > │ 0.5                                                                          │

02:09:27 #42841 [Debug] > │ </text>                                                                      │

02:09:27 #42842 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42843 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:27 #42844 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42845 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42846 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42847 [Debug] > │ 0.5                                                                          │

02:09:27 #42848 [Debug] > │ </text>                                                                      │

02:09:27 #42849 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42850 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:27 #42851 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42852 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42853 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42854 [Debug] > │ 0.6                                                                          │

02:09:27 #42855 [Debug] > │ </text>                                                                      │

02:09:27 #42856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42857 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:27 #42858 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #42859 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42860 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42861 [Debug] > │ 0.7                                                                          │

02:09:27 #42862 [Debug] > │ </text>                                                                      │

02:09:27 #42863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42864 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:27 #42865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42866 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:27 #42867 [Debug] > │ <text x="45" y="385" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42868 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42869 [Debug] > │ -0.0                                                                         │

02:09:27 #42870 [Debug] > │ </text>                                                                      │

02:09:27 #42871 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42872 [Debug] > │ points="49,385 54,385 "/>                                                    │

02:09:27 #42873 [Debug] > │ <text x="45" y="317" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42874 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42875 [Debug] > │ -0.0                                                                         │

02:09:27 #42876 [Debug] > │ </text>                                                                      │

02:09:27 #42877 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42878 [Debug] > │ points="49,317 54,317 "/>                                                    │

02:09:27 #42879 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42880 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42881 [Debug] > │ 0.0                                                                          │

02:09:27 #42882 [Debug] > │ </text>                                                                      │

02:09:27 #42883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42884 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:27 #42885 [Debug] > │ <text x="45" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42886 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42887 [Debug] > │ 0.0                                                                          │

02:09:27 #42888 [Debug] > │ </text>                                                                      │

02:09:27 #42889 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42890 [Debug] > │ points="49,183 54,183 "/>                                                    │

02:09:27 #42891 [Debug] > │ <text x="45" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #42892 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #42893 [Debug] > │ 0.0                                                                          │

02:09:27 #42894 [Debug] > │ </text>                                                                      │

02:09:27 #42895 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42896 [Debug] > │ points="49,116 54,116 "/>                                                    │

02:09:27 #42897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42898 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:27 #42899 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:27 #42900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42901 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42902 [Debug] > │ 0.0                                                                          │

02:09:27 #42903 [Debug] > │ </text>                                                                      │

02:09:27 #42904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42905 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:27 #42906 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42907 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42908 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42909 [Debug] > │ 0.1                                                                          │

02:09:27 #42910 [Debug] > │ </text>                                                                      │

02:09:27 #42911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42912 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:27 #42913 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42914 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42915 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42916 [Debug] > │ 0.1                                                                          │

02:09:27 #42917 [Debug] > │ </text>                                                                      │

02:09:27 #42918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42919 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:27 #42920 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42921 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42922 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42923 [Debug] > │ 0.2                                                                          │

02:09:27 #42924 [Debug] > │ </text>                                                                      │

02:09:27 #42925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42926 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:27 #42927 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42928 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42929 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42930 [Debug] > │ 0.2                                                                          │

02:09:27 #42931 [Debug] > │ </text>                                                                      │

02:09:27 #42932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42933 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:27 #42934 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42935 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42936 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42937 [Debug] > │ 0.2                                                                          │

02:09:27 #42938 [Debug] > │ </text>                                                                      │

02:09:27 #42939 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42940 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:27 #42941 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42942 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42943 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42944 [Debug] > │ 0.3                                                                          │

02:09:27 #42945 [Debug] > │ </text>                                                                      │

02:09:27 #42946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42947 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:27 #42948 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42949 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42950 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42951 [Debug] > │ 0.3                                                                          │

02:09:27 #42952 [Debug] > │ </text>                                                                      │

02:09:27 #42953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42954 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:27 #42955 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42956 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42957 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42958 [Debug] > │ 0.4                                                                          │

02:09:27 #42959 [Debug] > │ </text>                                                                      │

02:09:27 #42960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42961 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:27 #42962 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42964 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42965 [Debug] > │ 0.4                                                                          │

02:09:27 #42966 [Debug] > │ </text>                                                                      │

02:09:27 #42967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42968 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:27 #42969 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42972 [Debug] > │ 0.5                                                                          │

02:09:27 #42973 [Debug] > │ </text>                                                                      │

02:09:27 #42974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42975 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:27 #42976 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42979 [Debug] > │ 0.5                                                                          │

02:09:27 #42980 [Debug] > │ </text>                                                                      │

02:09:27 #42981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42982 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:27 #42983 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42986 [Debug] > │ 0.6                                                                          │

02:09:27 #42987 [Debug] > │ </text>                                                                      │

02:09:27 #42988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42989 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:27 #42990 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #42991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #42992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #42993 [Debug] > │ 0.7                                                                          │

02:09:27 #42994 [Debug] > │ </text>                                                                      │

02:09:27 #42995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42996 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:27 #42997 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #42998 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:27 #42999 [Debug] > │ <text x="595" y="385" dy="0.5ex" text-anchor="start"                         │

02:09:27 #43000 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43001 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43002 [Debug] > │ -0.0                                                                         │

02:09:27 #43003 [Debug] > │ </text>                                                                      │

02:09:27 #43004 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43005 [Debug] > │ points="585,385 590,385 "/>                                                  │

02:09:27 #43006 [Debug] > │ <text x="595" y="317" dy="0.5ex" text-anchor="start"                         │

02:09:27 #43007 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43008 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43009 [Debug] > │ -0.0                                                                         │

02:09:27 #43010 [Debug] > │ </text>                                                                      │

02:09:27 #43011 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43012 [Debug] > │ points="585,317 590,317 "/>                                                  │

02:09:27 #43013 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #43014 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43015 [Debug] > │ 0.0                                                                          │

02:09:27 #43016 [Debug] > │ </text>                                                                      │

02:09:27 #43017 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43018 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:27 #43019 [Debug] > │ <text x="617" y="183" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #43020 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43021 [Debug] > │ 0.0                                                                          │

02:09:27 #43022 [Debug] > │ </text>                                                                      │

02:09:27 #43023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43024 [Debug] > │ points="585,183 590,183 "/>                                                  │

02:09:27 #43025 [Debug] > │ <text x="617" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #43026 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43027 [Debug] > │ 0.0                                                                          │

02:09:27 #43028 [Debug] > │ </text>                                                                      │

02:09:27 #43029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43030 [Debug] > │ points="585,116 590,116 "/>                                                  │

02:09:27 #43031 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #43032 [Debug] > │ points="69,250 77,258 85,265 93,272 100,279 108,285 116,290 123,295 131,298  │

02:09:27 #43033 [Debug] > │ 139,301 146,302 154,303 162,302 169,300 177,297 185,293 192,289 200,283      │

02:09:27 #43034 [Debug] > │ 208,277 215,270 223,263 231,255 238,248 246,240 254,233 261,226 269,220      │

02:09:27 #43035 [Debug] > │ 277,214 284,208 292,203 299,198 305,192 309,182 311,167 311,147 309,125      │

02:09:27 #43036 [Debug] > │ 308,107 308,97 309,92 309,89 309,85 308,87 309,94 309,103 309,114 309,129    │

02:09:27 #43037 [Debug] > │ 309,148 309,167 309,188 309,211 309,234 309,258 309,282 309,305 309,327      │

02:09:27 #43038 [Debug] > │ 309,347 309,365 309,381 309,394 309,404 309,411 309,415 545,180 553,202      │

02:09:27 #43039 [Debug] > │ 565,240 569,250 "/>                                                          │

02:09:27 #43040 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:27 #43041 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:27 #43042 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:27 #43043 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43044 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43045 [Debug] > │ 48                                                                           │

02:09:27 #43046 [Debug] > │ </text>                                                                      │

02:09:27 #43047 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #43048 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:27 #43049 [Debug] > │ </svg>                                                                       │

02:09:27 #43050 [Debug] > │ </td></tr><tr><td>49</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:27 #43051 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:27 #43052 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:27 #43053 [Debug] > │ stroke="none"/>                                                              │

02:09:27 #43054 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:27 #43055 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43056 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43057 [Debug] > │ wave                                                                         │

02:09:27 #43058 [Debug] > │ </text>                                                                      │

02:09:27 #43059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:27 #43060 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #43062 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:27 #43064 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:27 #43066 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:27 #43068 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:27 #43070 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:27 #43071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:27 #43072 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #43073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:27 #43074 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:27 #43075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:27 #43076 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:27 #43077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:27 #43078 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:27 #43079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:27 #43080 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:27 #43081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:27 #43082 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #43083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:27 #43084 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:27 #43085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:27 #43086 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:27 #43087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:27 #43088 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:27 #43089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:27 #43090 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:27 #43091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:27 #43092 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:27 #43093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:27 #43094 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:27 #43095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:27 #43096 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:27 #43097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:27 #43098 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:27 #43099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:27 #43100 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:27 #43101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:27 #43102 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #43103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:27 #43104 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:27 #43105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:27 #43106 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:27 #43107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:27 #43108 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:27 #43109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:27 #43110 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:27 #43111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:27 #43112 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #43113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:27 #43114 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:27 #43115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:27 #43116 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:27 #43117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:27 #43118 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:27 #43119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:27 #43120 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:27 #43121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:27 #43122 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:27 #43123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:27 #43124 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:27 #43125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:27 #43126 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:27 #43127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:27 #43128 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:27 #43129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:27 #43130 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:27 #43131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:27 #43132 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #43133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:27 #43134 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:27 #43135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:27 #43136 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:27 #43137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:27 #43138 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:27 #43139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:27 #43140 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:27 #43141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:27 #43142 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:27 #43143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:27 #43144 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:27 #43145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:27 #43146 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:27 #43147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:27 #43148 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:27 #43149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:27 #43150 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:27 #43151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:27 #43152 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:27 #43153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:27 #43154 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:27 #43155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:27 #43156 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:27 #43157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:27 #43158 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:27 #43159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:27 #43160 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:27 #43161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:27 #43162 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:27 #43163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:27 #43164 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:27 #43165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:27 #43166 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:27 #43167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:27 #43168 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:27 #43169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:27 #43170 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:27 #43171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:27 #43172 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:27 #43173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:27 #43174 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:27 #43175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:27 #43176 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:27 #43177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:27 #43178 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:27 #43179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:27 #43180 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:27 #43181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:27 #43182 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:27 #43183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:27 #43184 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:27 #43185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:27 #43186 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:27 #43187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:27 #43188 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:27 #43189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:27 #43190 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:27 #43191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:27 #43192 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:27 #43193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="422"         │

02:09:27 #43194 [Debug] > │ x2="584" y2="422"/>                                                          │

02:09:27 #43195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:27 #43196 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:27 #43197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="388"         │

02:09:27 #43198 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:27 #43199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="371"         │

02:09:27 #43200 [Debug] > │ x2="584" y2="371"/>                                                          │

02:09:27 #43201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:27 #43202 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:27 #43203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:27 #43204 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:27 #43205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:27 #43206 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:27 #43207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="302"         │

02:09:27 #43208 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:27 #43209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:27 #43210 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:27 #43211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:27 #43212 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:27 #43213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:27 #43214 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:27 #43215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:27 #43216 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:27 #43217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:27 #43218 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:27 #43219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="200"         │

02:09:27 #43220 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:27 #43221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:27 #43222 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:27 #43223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:27 #43224 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:27 #43225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="148"         │

02:09:27 #43226 [Debug] > │ x2="584" y2="148"/>                                                          │

02:09:27 #43227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:27 #43228 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:27 #43229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:09:27 #43230 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:27 #43231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:27 #43232 [Debug] > │ y2="97"/>                                                                    │

02:09:27 #43233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="80" x2="584" │

02:09:27 #43234 [Debug] > │ y2="80"/>                                                                    │

02:09:27 #43235 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:27 #43236 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43237 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43238 [Debug] > │ position (m)                                                                 │

02:09:27 #43239 [Debug] > │ </text>                                                                      │

02:09:27 #43240 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:27 #43241 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43242 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:27 #43243 [Debug] > │ displacement (m)                                                             │

02:09:27 #43244 [Debug] > │ </text>                                                                      │

02:09:27 #43245 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:27 #43246 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43247 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43248 [Debug] > │ position (m)                                                                 │

02:09:27 #43249 [Debug] > │ </text>                                                                      │

02:09:27 #43250 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43251 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43252 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:27 #43253 [Debug] > │ displacement (m)                                                             │

02:09:27 #43254 [Debug] > │ </text>                                                                      │

02:09:27 #43255 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #43256 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43257 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:27 #43258 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #43259 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:27 #43260 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #43261 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:27 #43262 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:27 #43263 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:27 #43264 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #43265 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:27 #43266 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #43267 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:27 #43268 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:27 #43269 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:27 #43270 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #43271 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:27 #43272 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:27 #43273 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:27 #43274 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:27 #43275 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:27 #43276 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:27 #43277 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:27 #43278 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:27 #43279 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:27 #43280 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:27 #43281 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:27 #43282 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:27 #43283 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="388"         │

02:09:27 #43284 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:27 #43285 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="319"         │

02:09:27 #43286 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:27 #43287 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:27 #43288 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:27 #43289 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="182"         │

02:09:27 #43290 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:27 #43291 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="114"         │

02:09:27 #43292 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:27 #43293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43294 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:27 #43295 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:27 #43296 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43297 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43298 [Debug] > │ 0.0                                                                          │

02:09:27 #43299 [Debug] > │ </text>                                                                      │

02:09:27 #43300 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43301 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:27 #43302 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43303 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43304 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43305 [Debug] > │ 0.1                                                                          │

02:09:27 #43306 [Debug] > │ </text>                                                                      │

02:09:27 #43307 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43308 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:27 #43309 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43310 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43311 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43312 [Debug] > │ 0.1                                                                          │

02:09:27 #43313 [Debug] > │ </text>                                                                      │

02:09:27 #43314 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43315 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:27 #43316 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43317 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43318 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43319 [Debug] > │ 0.2                                                                          │

02:09:27 #43320 [Debug] > │ </text>                                                                      │

02:09:27 #43321 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43322 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:27 #43323 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43324 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43325 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43326 [Debug] > │ 0.2                                                                          │

02:09:27 #43327 [Debug] > │ </text>                                                                      │

02:09:27 #43328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43329 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:27 #43330 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43331 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43332 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43333 [Debug] > │ 0.2                                                                          │

02:09:27 #43334 [Debug] > │ </text>                                                                      │

02:09:27 #43335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43336 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:27 #43337 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43338 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43339 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43340 [Debug] > │ 0.3                                                                          │

02:09:27 #43341 [Debug] > │ </text>                                                                      │

02:09:27 #43342 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43343 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:27 #43344 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43345 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43346 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43347 [Debug] > │ 0.3                                                                          │

02:09:27 #43348 [Debug] > │ </text>                                                                      │

02:09:27 #43349 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43350 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:27 #43351 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43352 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43353 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43354 [Debug] > │ 0.4                                                                          │

02:09:27 #43355 [Debug] > │ </text>                                                                      │

02:09:27 #43356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43357 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:27 #43358 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43359 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43360 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43361 [Debug] > │ 0.4                                                                          │

02:09:27 #43362 [Debug] > │ </text>                                                                      │

02:09:27 #43363 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43364 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:27 #43365 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43366 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43367 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43368 [Debug] > │ 0.5                                                                          │

02:09:27 #43369 [Debug] > │ </text>                                                                      │

02:09:27 #43370 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43371 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:27 #43372 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43373 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43374 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43375 [Debug] > │ 0.5                                                                          │

02:09:27 #43376 [Debug] > │ </text>                                                                      │

02:09:27 #43377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43378 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:27 #43379 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43380 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43381 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43382 [Debug] > │ 0.6                                                                          │

02:09:27 #43383 [Debug] > │ </text>                                                                      │

02:09:27 #43384 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43385 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:27 #43386 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43387 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43388 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43389 [Debug] > │ 0.7                                                                          │

02:09:27 #43390 [Debug] > │ </text>                                                                      │

02:09:27 #43391 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43392 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:27 #43393 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43394 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:27 #43395 [Debug] > │ <text x="45" y="388" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43396 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43397 [Debug] > │ -0.0                                                                         │

02:09:27 #43398 [Debug] > │ </text>                                                                      │

02:09:27 #43399 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43400 [Debug] > │ points="49,388 54,388 "/>                                                    │

02:09:27 #43401 [Debug] > │ <text x="45" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43402 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43403 [Debug] > │ -0.0                                                                         │

02:09:27 #43404 [Debug] > │ </text>                                                                      │

02:09:27 #43405 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43406 [Debug] > │ points="49,319 54,319 "/>                                                    │

02:09:27 #43407 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43408 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43409 [Debug] > │ 0.0                                                                          │

02:09:27 #43410 [Debug] > │ </text>                                                                      │

02:09:27 #43411 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43412 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:27 #43413 [Debug] > │ <text x="45" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43414 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43415 [Debug] > │ 0.0                                                                          │

02:09:27 #43416 [Debug] > │ </text>                                                                      │

02:09:27 #43417 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43418 [Debug] > │ points="49,182 54,182 "/>                                                    │

02:09:27 #43419 [Debug] > │ <text x="45" y="114" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43420 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43421 [Debug] > │ 0.0                                                                          │

02:09:27 #43422 [Debug] > │ </text>                                                                      │

02:09:27 #43423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43424 [Debug] > │ points="49,114 54,114 "/>                                                    │

02:09:27 #43425 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43426 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:27 #43427 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:27 #43428 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43429 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43430 [Debug] > │ 0.0                                                                          │

02:09:27 #43431 [Debug] > │ </text>                                                                      │

02:09:27 #43432 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43433 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:27 #43434 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43435 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43436 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43437 [Debug] > │ 0.1                                                                          │

02:09:27 #43438 [Debug] > │ </text>                                                                      │

02:09:27 #43439 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43440 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:27 #43441 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43442 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43443 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43444 [Debug] > │ 0.1                                                                          │

02:09:27 #43445 [Debug] > │ </text>                                                                      │

02:09:27 #43446 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43447 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:27 #43448 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43449 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43450 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43451 [Debug] > │ 0.2                                                                          │

02:09:27 #43452 [Debug] > │ </text>                                                                      │

02:09:27 #43453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43454 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:27 #43455 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43456 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43457 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43458 [Debug] > │ 0.2                                                                          │

02:09:27 #43459 [Debug] > │ </text>                                                                      │

02:09:27 #43460 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43461 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:27 #43462 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43463 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43464 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43465 [Debug] > │ 0.2                                                                          │

02:09:27 #43466 [Debug] > │ </text>                                                                      │

02:09:27 #43467 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43468 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:27 #43469 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43470 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43471 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43472 [Debug] > │ 0.3                                                                          │

02:09:27 #43473 [Debug] > │ </text>                                                                      │

02:09:27 #43474 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43475 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:27 #43476 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43477 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43478 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43479 [Debug] > │ 0.3                                                                          │

02:09:27 #43480 [Debug] > │ </text>                                                                      │

02:09:27 #43481 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43482 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:27 #43483 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43484 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43485 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43486 [Debug] > │ 0.4                                                                          │

02:09:27 #43487 [Debug] > │ </text>                                                                      │

02:09:27 #43488 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43489 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:27 #43490 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43491 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43492 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43493 [Debug] > │ 0.4                                                                          │

02:09:27 #43494 [Debug] > │ </text>                                                                      │

02:09:27 #43495 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43496 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:27 #43497 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43498 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43499 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43500 [Debug] > │ 0.5                                                                          │

02:09:27 #43501 [Debug] > │ </text>                                                                      │

02:09:27 #43502 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43503 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:27 #43504 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43505 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43506 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43507 [Debug] > │ 0.5                                                                          │

02:09:27 #43508 [Debug] > │ </text>                                                                      │

02:09:27 #43509 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43510 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:27 #43511 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43512 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43513 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43514 [Debug] > │ 0.6                                                                          │

02:09:27 #43515 [Debug] > │ </text>                                                                      │

02:09:27 #43516 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43517 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:27 #43518 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43519 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43520 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43521 [Debug] > │ 0.7                                                                          │

02:09:27 #43522 [Debug] > │ </text>                                                                      │

02:09:27 #43523 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43524 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:27 #43525 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43526 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:27 #43527 [Debug] > │ <text x="595" y="388" dy="0.5ex" text-anchor="start"                         │

02:09:27 #43528 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43529 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43530 [Debug] > │ -0.0                                                                         │

02:09:27 #43531 [Debug] > │ </text>                                                                      │

02:09:27 #43532 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43533 [Debug] > │ points="585,388 590,388 "/>                                                  │

02:09:27 #43534 [Debug] > │ <text x="595" y="319" dy="0.5ex" text-anchor="start"                         │

02:09:27 #43535 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43536 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43537 [Debug] > │ -0.0                                                                         │

02:09:27 #43538 [Debug] > │ </text>                                                                      │

02:09:27 #43539 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43540 [Debug] > │ points="585,319 590,319 "/>                                                  │

02:09:27 #43541 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #43542 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43543 [Debug] > │ 0.0                                                                          │

02:09:27 #43544 [Debug] > │ </text>                                                                      │

02:09:27 #43545 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43546 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:27 #43547 [Debug] > │ <text x="617" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #43548 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43549 [Debug] > │ 0.0                                                                          │

02:09:27 #43550 [Debug] > │ </text>                                                                      │

02:09:27 #43551 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43552 [Debug] > │ points="585,182 590,182 "/>                                                  │

02:09:27 #43553 [Debug] > │ <text x="617" y="114" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:27 #43554 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43555 [Debug] > │ 0.0                                                                          │

02:09:27 #43556 [Debug] > │ </text>                                                                      │

02:09:27 #43557 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43558 [Debug] > │ points="585,114 590,114 "/>                                                  │

02:09:27 #43559 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #43560 [Debug] > │ points="69,251 77,256 85,262 93,267 100,272 108,276 116,280 123,283 131,286  │

02:09:27 #43561 [Debug] > │ 139,288 146,289 154,289 162,289 169,287 177,285 185,282 192,279 200,275      │

02:09:27 #43562 [Debug] > │ 208,270 215,265 223,260 231,255 238,249 246,243 254,238 261,233 269,228      │

02:09:27 #43563 [Debug] > │ 277,224 284,220 291,215 298,209 303,201 306,187 306,168 305,145 303,123      │

02:09:27 #43564 [Debug] > │ 303,108 304,100 305,94 304,89 303,85 304,88 304,96 304,104 304,115 304,131   │

02:09:27 #43565 [Debug] > │ 304,148 304,167 304,189 304,212 304,235 304,259 304,282 304,305 304,327      │

02:09:27 #43566 [Debug] > │ 304,347 304,366 304,381 304,394 304,404 304,411 304,415 545,179 553,202      │

02:09:27 #43567 [Debug] > │ 562,229 569,251 "/>                                                          │

02:09:27 #43568 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:27 #43569 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:27 #43570 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:27 #43571 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43572 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43573 [Debug] > │ 49                                                                           │

02:09:27 #43574 [Debug] > │ </text>                                                                      │

02:09:27 #43575 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:27 #43576 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:27 #43577 [Debug] > │ </svg>                                                                       │

02:09:27 #43578 [Debug] > │ </td></tr><tr><td>50</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:27 #43579 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:27 #43580 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:27 #43581 [Debug] > │ stroke="none"/>                                                              │

02:09:27 #43582 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:27 #43583 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43584 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43585 [Debug] > │ wave                                                                         │

02:09:27 #43586 [Debug] > │ </text>                                                                      │

02:09:27 #43587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:27 #43588 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #43590 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:27 #43592 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:27 #43594 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:27 #43596 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:27 #43598 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:27 #43599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:27 #43600 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #43601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:27 #43602 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:27 #43603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:27 #43604 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:27 #43605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:27 #43606 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:27 #43607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:27 #43608 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:27 #43609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:27 #43610 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #43611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:27 #43612 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:27 #43613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:27 #43614 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:27 #43615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:27 #43616 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:27 #43617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:27 #43618 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:27 #43619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:27 #43620 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:27 #43621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:27 #43622 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:27 #43623 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:27 #43624 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:27 #43625 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:27 #43626 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:27 #43627 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:27 #43628 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:27 #43629 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:27 #43630 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #43631 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:27 #43632 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:27 #43633 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:27 #43634 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:27 #43635 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:27 #43636 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:27 #43637 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:27 #43638 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:27 #43639 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:27 #43640 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #43641 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:27 #43642 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:27 #43643 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:27 #43644 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:27 #43645 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:27 #43646 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:27 #43647 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:27 #43648 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:27 #43649 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:27 #43650 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:27 #43651 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:27 #43652 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:27 #43653 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:27 #43654 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:27 #43655 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:27 #43656 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:27 #43657 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:27 #43658 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:27 #43659 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:27 #43660 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #43661 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:27 #43662 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:27 #43663 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:27 #43664 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:27 #43665 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:27 #43666 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:27 #43667 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:27 #43668 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:27 #43669 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:27 #43670 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:27 #43671 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:27 #43672 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:27 #43673 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:27 #43674 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:27 #43675 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:27 #43676 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:27 #43677 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:27 #43678 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:27 #43679 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:27 #43680 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:27 #43681 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:27 #43682 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:27 #43683 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:27 #43684 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:27 #43685 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:27 #43686 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:27 #43687 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:27 #43688 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:27 #43689 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:27 #43690 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:27 #43691 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:27 #43692 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:27 #43693 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:27 #43694 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:27 #43695 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:27 #43696 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:27 #43697 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:27 #43698 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:27 #43699 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:27 #43700 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:27 #43701 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:27 #43702 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:27 #43703 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:27 #43704 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:27 #43705 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:27 #43706 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:27 #43707 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:27 #43708 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:27 #43709 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:27 #43710 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:27 #43711 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:27 #43712 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:27 #43713 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:27 #43714 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:27 #43715 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:27 #43716 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:27 #43717 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:27 #43718 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:27 #43719 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:27 #43720 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:27 #43721 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="410"         │

02:09:27 #43722 [Debug] > │ x2="584" y2="410"/>                                                          │

02:09:27 #43723 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:27 #43724 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:27 #43725 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:27 #43726 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:27 #43727 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="357"         │

02:09:27 #43728 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:27 #43729 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:27 #43730 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:27 #43731 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:27 #43732 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:27 #43733 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="304"         │

02:09:27 #43734 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:27 #43735 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:27 #43736 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:27 #43737 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:27 #43738 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:27 #43739 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:27 #43740 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:27 #43741 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="233"         │

02:09:27 #43742 [Debug] > │ x2="584" y2="233"/>                                                          │

02:09:27 #43743 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:27 #43744 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:27 #43745 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:27 #43746 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:27 #43747 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:27 #43748 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:27 #43749 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="163"         │

02:09:27 #43750 [Debug] > │ x2="584" y2="163"/>                                                          │

02:09:27 #43751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="145"         │

02:09:27 #43752 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:27 #43753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="127"         │

02:09:27 #43754 [Debug] > │ x2="584" y2="127"/>                                                          │

02:09:27 #43755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:09:27 #43756 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:27 #43757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="92" x2="584" │

02:09:27 #43758 [Debug] > │ y2="92"/>                                                                    │

02:09:27 #43759 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:27 #43760 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43761 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43762 [Debug] > │ position (m)                                                                 │

02:09:27 #43763 [Debug] > │ </text>                                                                      │

02:09:27 #43764 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:27 #43765 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43766 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:27 #43767 [Debug] > │ displacement (m)                                                             │

02:09:27 #43768 [Debug] > │ </text>                                                                      │

02:09:27 #43769 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:27 #43770 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43771 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43772 [Debug] > │ position (m)                                                                 │

02:09:27 #43773 [Debug] > │ </text>                                                                      │

02:09:27 #43774 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43776 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:27 #43777 [Debug] > │ displacement (m)                                                             │

02:09:27 #43778 [Debug] > │ </text>                                                                      │

02:09:27 #43779 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:27 #43780 [Debug] > │ y2="75"/>                                                                    │

02:09:27 #43781 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:27 #43782 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:27 #43783 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:27 #43784 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:27 #43785 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:27 #43786 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:27 #43787 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:27 #43788 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:27 #43789 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:27 #43790 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:27 #43791 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:27 #43792 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:27 #43793 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:27 #43794 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:27 #43795 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:27 #43796 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:27 #43797 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:27 #43798 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:27 #43799 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:27 #43800 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:27 #43801 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:27 #43802 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:27 #43803 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:27 #43804 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:27 #43805 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:27 #43806 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:27 #43807 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="392"         │

02:09:27 #43808 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:27 #43809 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="357"         │

02:09:27 #43810 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:27 #43811 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:09:27 #43812 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:27 #43813 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="286"         │

02:09:27 #43814 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:27 #43815 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:27 #43816 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:27 #43817 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="216"         │

02:09:27 #43818 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:27 #43819 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="180"         │

02:09:27 #43820 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:27 #43821 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="145"         │

02:09:27 #43822 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:27 #43823 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="110"         │

02:09:27 #43824 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:27 #43825 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43826 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:27 #43827 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:27 #43828 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43829 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43830 [Debug] > │ 0.0                                                                          │

02:09:27 #43831 [Debug] > │ </text>                                                                      │

02:09:27 #43832 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43833 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:27 #43834 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43835 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43836 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43837 [Debug] > │ 0.1                                                                          │

02:09:27 #43838 [Debug] > │ </text>                                                                      │

02:09:27 #43839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43840 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:27 #43841 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43842 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43843 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43844 [Debug] > │ 0.1                                                                          │

02:09:27 #43845 [Debug] > │ </text>                                                                      │

02:09:27 #43846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43847 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:27 #43848 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43849 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43850 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43851 [Debug] > │ 0.2                                                                          │

02:09:27 #43852 [Debug] > │ </text>                                                                      │

02:09:27 #43853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43854 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:27 #43855 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43856 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43857 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43858 [Debug] > │ 0.2                                                                          │

02:09:27 #43859 [Debug] > │ </text>                                                                      │

02:09:27 #43860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43861 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:27 #43862 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43863 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43864 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43865 [Debug] > │ 0.2                                                                          │

02:09:27 #43866 [Debug] > │ </text>                                                                      │

02:09:27 #43867 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43868 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:27 #43869 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43871 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43872 [Debug] > │ 0.3                                                                          │

02:09:27 #43873 [Debug] > │ </text>                                                                      │

02:09:27 #43874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43875 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:27 #43876 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43879 [Debug] > │ 0.3                                                                          │

02:09:27 #43880 [Debug] > │ </text>                                                                      │

02:09:27 #43881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43882 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:27 #43883 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43884 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43885 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43886 [Debug] > │ 0.4                                                                          │

02:09:27 #43887 [Debug] > │ </text>                                                                      │

02:09:27 #43888 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43889 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:27 #43890 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43891 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43892 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43893 [Debug] > │ 0.4                                                                          │

02:09:27 #43894 [Debug] > │ </text>                                                                      │

02:09:27 #43895 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43896 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:27 #43897 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43898 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43899 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43900 [Debug] > │ 0.5                                                                          │

02:09:27 #43901 [Debug] > │ </text>                                                                      │

02:09:27 #43902 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43903 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:27 #43904 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43905 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43906 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43907 [Debug] > │ 0.5                                                                          │

02:09:27 #43908 [Debug] > │ </text>                                                                      │

02:09:27 #43909 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43910 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:27 #43911 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43912 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43913 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43914 [Debug] > │ 0.6                                                                          │

02:09:27 #43915 [Debug] > │ </text>                                                                      │

02:09:27 #43916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43917 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:27 #43918 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:27 #43919 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43920 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43921 [Debug] > │ 0.7                                                                          │

02:09:27 #43922 [Debug] > │ </text>                                                                      │

02:09:27 #43923 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43924 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:27 #43925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43926 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:27 #43927 [Debug] > │ <text x="45" y="392" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43928 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43929 [Debug] > │ -0.0                                                                         │

02:09:27 #43930 [Debug] > │ </text>                                                                      │

02:09:27 #43931 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43932 [Debug] > │ points="49,392 54,392 "/>                                                    │

02:09:27 #43933 [Debug] > │ <text x="45" y="357" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43934 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43935 [Debug] > │ -0.0                                                                         │

02:09:27 #43936 [Debug] > │ </text>                                                                      │

02:09:27 #43937 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43938 [Debug] > │ points="49,357 54,357 "/>                                                    │

02:09:27 #43939 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43940 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43941 [Debug] > │ -0.0                                                                         │

02:09:27 #43942 [Debug] > │ </text>                                                                      │

02:09:27 #43943 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43944 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:09:27 #43945 [Debug] > │ <text x="45" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43946 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43947 [Debug] > │ -0.0                                                                         │

02:09:27 #43948 [Debug] > │ </text>                                                                      │

02:09:27 #43949 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43950 [Debug] > │ points="49,286 54,286 "/>                                                    │

02:09:27 #43951 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43952 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43953 [Debug] > │ 0.0                                                                          │

02:09:27 #43954 [Debug] > │ </text>                                                                      │

02:09:27 #43955 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43956 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:27 #43957 [Debug] > │ <text x="45" y="216" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43958 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43959 [Debug] > │ 0.0                                                                          │

02:09:27 #43960 [Debug] > │ </text>                                                                      │

02:09:27 #43961 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43962 [Debug] > │ points="49,216 54,216 "/>                                                    │

02:09:27 #43963 [Debug] > │ <text x="45" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43964 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43965 [Debug] > │ 0.0                                                                          │

02:09:27 #43966 [Debug] > │ </text>                                                                      │

02:09:27 #43967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43968 [Debug] > │ points="49,180 54,180 "/>                                                    │

02:09:27 #43969 [Debug] > │ <text x="45" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43970 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43971 [Debug] > │ 0.0                                                                          │

02:09:27 #43972 [Debug] > │ </text>                                                                      │

02:09:27 #43973 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43974 [Debug] > │ points="49,145 54,145 "/>                                                    │

02:09:27 #43975 [Debug] > │ <text x="45" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:27 #43976 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:27 #43977 [Debug] > │ 0.0                                                                          │

02:09:27 #43978 [Debug] > │ </text>                                                                      │

02:09:27 #43979 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43980 [Debug] > │ points="49,110 54,110 "/>                                                    │

02:09:27 #43981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43982 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:27 #43983 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:27 #43984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43986 [Debug] > │ 0.0                                                                          │

02:09:27 #43987 [Debug] > │ </text>                                                                      │

02:09:27 #43988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43989 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:27 #43990 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #43993 [Debug] > │ 0.1                                                                          │

02:09:27 #43994 [Debug] > │ </text>                                                                      │

02:09:27 #43995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #43996 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:27 #43997 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #43998 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #43999 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44000 [Debug] > │ 0.1                                                                          │

02:09:27 #44001 [Debug] > │ </text>                                                                      │

02:09:27 #44002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44003 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:27 #44004 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44005 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #44006 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44007 [Debug] > │ 0.2                                                                          │

02:09:27 #44008 [Debug] > │ </text>                                                                      │

02:09:27 #44009 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44010 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:27 #44011 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44012 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #44013 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44014 [Debug] > │ 0.2                                                                          │

02:09:27 #44015 [Debug] > │ </text>                                                                      │

02:09:27 #44016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44017 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:27 #44018 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44019 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #44020 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44021 [Debug] > │ 0.2                                                                          │

02:09:27 #44022 [Debug] > │ </text>                                                                      │

02:09:27 #44023 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44024 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:27 #44025 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44026 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #44027 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44028 [Debug] > │ 0.3                                                                          │

02:09:27 #44029 [Debug] > │ </text>                                                                      │

02:09:27 #44030 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44031 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:27 #44032 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44033 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #44034 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44035 [Debug] > │ 0.3                                                                          │

02:09:27 #44036 [Debug] > │ </text>                                                                      │

02:09:27 #44037 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44038 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:27 #44039 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44040 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:27 #44041 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:27 #44042 [Debug] > │ 0.4                                                                          │

02:09:27 #44043 [Debug] > │ </text>                                                                      │

02:09:27 #44044 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:27 #44045 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:27 #44046 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:27 #44047 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44048 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44049 [Debug] > │ 0.4                                                                          │

02:09:28 #44050 [Debug] > │ </text>                                                                      │

02:09:28 #44051 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44052 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:28 #44053 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44054 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44055 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44056 [Debug] > │ 0.5                                                                          │

02:09:28 #44057 [Debug] > │ </text>                                                                      │

02:09:28 #44058 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44059 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:28 #44060 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44061 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44062 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44063 [Debug] > │ 0.5                                                                          │

02:09:28 #44064 [Debug] > │ </text>                                                                      │

02:09:28 #44065 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44066 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:28 #44067 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44068 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44069 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44070 [Debug] > │ 0.6                                                                          │

02:09:28 #44071 [Debug] > │ </text>                                                                      │

02:09:28 #44072 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44073 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:28 #44074 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44075 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44076 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44077 [Debug] > │ 0.7                                                                          │

02:09:28 #44078 [Debug] > │ </text>                                                                      │

02:09:28 #44079 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44080 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:28 #44081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44082 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:28 #44083 [Debug] > │ <text x="595" y="392" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44084 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44085 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44086 [Debug] > │ -0.0                                                                         │

02:09:28 #44087 [Debug] > │ </text>                                                                      │

02:09:28 #44088 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44089 [Debug] > │ points="585,392 590,392 "/>                                                  │

02:09:28 #44090 [Debug] > │ <text x="595" y="357" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44091 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44092 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44093 [Debug] > │ -0.0                                                                         │

02:09:28 #44094 [Debug] > │ </text>                                                                      │

02:09:28 #44095 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44096 [Debug] > │ points="585,357 590,357 "/>                                                  │

02:09:28 #44097 [Debug] > │ <text x="595" y="321" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44098 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44099 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44100 [Debug] > │ -0.0                                                                         │

02:09:28 #44101 [Debug] > │ </text>                                                                      │

02:09:28 #44102 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44103 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:09:28 #44104 [Debug] > │ <text x="595" y="286" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44105 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44106 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44107 [Debug] > │ -0.0                                                                         │

02:09:28 #44108 [Debug] > │ </text>                                                                      │

02:09:28 #44109 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44110 [Debug] > │ points="585,286 590,286 "/>                                                  │

02:09:28 #44111 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44112 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44113 [Debug] > │ 0.0                                                                          │

02:09:28 #44114 [Debug] > │ </text>                                                                      │

02:09:28 #44115 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44116 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:28 #44117 [Debug] > │ <text x="617" y="216" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44118 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44119 [Debug] > │ 0.0                                                                          │

02:09:28 #44120 [Debug] > │ </text>                                                                      │

02:09:28 #44121 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44122 [Debug] > │ points="585,216 590,216 "/>                                                  │

02:09:28 #44123 [Debug] > │ <text x="617" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44124 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44125 [Debug] > │ 0.0                                                                          │

02:09:28 #44126 [Debug] > │ </text>                                                                      │

02:09:28 #44127 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44128 [Debug] > │ points="585,180 590,180 "/>                                                  │

02:09:28 #44129 [Debug] > │ <text x="617" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44130 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44131 [Debug] > │ 0.0                                                                          │

02:09:28 #44132 [Debug] > │ </text>                                                                      │

02:09:28 #44133 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44134 [Debug] > │ points="585,145 590,145 "/>                                                  │

02:09:28 #44135 [Debug] > │ <text x="617" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44136 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44137 [Debug] > │ 0.0                                                                          │

02:09:28 #44138 [Debug] > │ </text>                                                                      │

02:09:28 #44139 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44140 [Debug] > │ points="585,110 590,110 "/>                                                  │

02:09:28 #44141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #44142 [Debug] > │ points="69,251 77,254 85,258 93,261 100,264 108,266 116,269 123,271 131,272  │

02:09:28 #44143 [Debug] > │ 139,274 146,274 154,274 162,274 169,273 177,272 185,270 192,268 200,266      │

02:09:28 #44144 [Debug] > │ 208,263 215,260 223,257 231,253 238,250 246,246 254,243 261,240 269,237      │

02:09:28 #44145 [Debug] > │ 277,234 284,231 291,226 296,219 300,207 302,189 301,166 299,142 298,122      │

02:09:28 #44146 [Debug] > │ 298,109 299,102 300,94 299,87 299,85 299,90 299,96 299,103 299,115 299,131   │

02:09:28 #44147 [Debug] > │ 299,148 299,167 299,189 299,211 299,235 299,259 299,282 299,305 299,327      │

02:09:28 #44148 [Debug] > │ 299,347 299,366 299,381 299,394 299,404 299,411 299,415 545,177 553,200      │

02:09:28 #44149 [Debug] > │ 561,226 569,251 "/>                                                          │

02:09:28 #44150 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:28 #44151 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:28 #44152 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:28 #44153 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44154 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44155 [Debug] > │ 50                                                                           │

02:09:28 #44156 [Debug] > │ </text>                                                                      │

02:09:28 #44157 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #44158 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:28 #44159 [Debug] > │ </svg>                                                                       │

02:09:28 #44160 [Debug] > │ </td></tr><tr><td>51</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:28 #44161 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:28 #44162 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:28 #44163 [Debug] > │ stroke="none"/>                                                              │

02:09:28 #44164 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:28 #44165 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44166 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44167 [Debug] > │ wave                                                                         │

02:09:28 #44168 [Debug] > │ </text>                                                                      │

02:09:28 #44169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:28 #44170 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #44172 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:28 #44174 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:28 #44176 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:28 #44178 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:28 #44180 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:28 #44181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:28 #44182 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:28 #44183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:28 #44184 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:28 #44185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:28 #44186 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:28 #44187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:28 #44188 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:28 #44189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:28 #44190 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:28 #44191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:28 #44192 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:28 #44193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:28 #44194 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:28 #44195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:28 #44196 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:28 #44197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:28 #44198 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:28 #44199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:28 #44200 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:28 #44201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:28 #44202 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:28 #44203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:28 #44204 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:28 #44205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:28 #44206 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:28 #44207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:28 #44208 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:28 #44209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:28 #44210 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:28 #44211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:28 #44212 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:28 #44213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:28 #44214 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:28 #44215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:28 #44216 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:28 #44217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:28 #44218 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:28 #44219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:28 #44220 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:28 #44221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:28 #44222 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:28 #44223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:28 #44224 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:28 #44225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:28 #44226 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:28 #44227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:28 #44228 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:28 #44229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:28 #44230 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:28 #44231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:28 #44232 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:28 #44233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:28 #44234 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:28 #44235 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:28 #44236 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:28 #44237 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:28 #44238 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:28 #44239 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:28 #44240 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:28 #44241 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:28 #44242 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:28 #44243 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:28 #44244 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:28 #44245 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:28 #44246 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:28 #44247 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:28 #44248 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:28 #44249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:28 #44250 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:28 #44251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:28 #44252 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:28 #44253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:28 #44254 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:28 #44255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:28 #44256 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:28 #44257 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:28 #44258 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:28 #44259 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:28 #44260 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:28 #44261 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:28 #44262 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:28 #44263 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:28 #44264 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:28 #44265 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:28 #44266 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:28 #44267 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:28 #44268 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:28 #44269 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:28 #44270 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:28 #44271 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:28 #44272 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:28 #44273 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:28 #44274 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:28 #44275 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:28 #44276 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:28 #44277 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:28 #44278 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:28 #44279 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:28 #44280 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:28 #44281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:28 #44282 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:28 #44283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:28 #44284 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:28 #44285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:28 #44286 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:28 #44287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:28 #44288 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:28 #44289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:28 #44290 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:28 #44291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:28 #44292 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:28 #44293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:28 #44294 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:28 #44295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:28 #44296 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:28 #44297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:28 #44298 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:28 #44299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:28 #44300 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:28 #44301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:28 #44302 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:28 #44303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:28 #44304 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:28 #44305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:09:28 #44306 [Debug] > │ x2="584" y2="398"/>                                                          │

02:09:28 #44307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="379"         │

02:09:28 #44308 [Debug] > │ x2="584" y2="379"/>                                                          │

02:09:28 #44309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="361"         │

02:09:28 #44310 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:28 #44311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="343"         │

02:09:28 #44312 [Debug] > │ x2="584" y2="343"/>                                                          │

02:09:28 #44313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="324"         │

02:09:28 #44314 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:28 #44315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="306"         │

02:09:28 #44316 [Debug] > │ x2="584" y2="306"/>                                                          │

02:09:28 #44317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="287"         │

02:09:28 #44318 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:28 #44319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:28 #44320 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:28 #44321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:28 #44322 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #44323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:28 #44324 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:28 #44325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:28 #44326 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:28 #44327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="195"         │

02:09:28 #44328 [Debug] > │ x2="584" y2="195"/>                                                          │

02:09:28 #44329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="177"         │

02:09:28 #44330 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:28 #44331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="158"         │

02:09:28 #44332 [Debug] > │ x2="584" y2="158"/>                                                          │

02:09:28 #44333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:09:28 #44334 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:28 #44335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:09:28 #44336 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:28 #44337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="103"         │

02:09:28 #44338 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:28 #44339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="85" x2="584" │

02:09:28 #44340 [Debug] > │ y2="85"/>                                                                    │

02:09:28 #44341 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:28 #44342 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44343 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44344 [Debug] > │ position (m)                                                                 │

02:09:28 #44345 [Debug] > │ </text>                                                                      │

02:09:28 #44346 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:28 #44347 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44348 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:28 #44349 [Debug] > │ displacement (m)                                                             │

02:09:28 #44350 [Debug] > │ </text>                                                                      │

02:09:28 #44351 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:28 #44352 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44353 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44354 [Debug] > │ position (m)                                                                 │

02:09:28 #44355 [Debug] > │ </text>                                                                      │

02:09:28 #44356 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44357 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44358 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:28 #44359 [Debug] > │ displacement (m)                                                             │

02:09:28 #44360 [Debug] > │ </text>                                                                      │

02:09:28 #44361 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #44362 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44363 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:28 #44364 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:28 #44365 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:28 #44366 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:28 #44367 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:28 #44368 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:28 #44369 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:28 #44370 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:28 #44371 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:28 #44372 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:28 #44373 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:28 #44374 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:28 #44375 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:28 #44376 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:28 #44377 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:28 #44378 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:28 #44379 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:28 #44380 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:28 #44381 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:28 #44382 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:28 #44383 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:28 #44384 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:28 #44385 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:28 #44386 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:28 #44387 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:28 #44388 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:28 #44389 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="398"         │

02:09:28 #44390 [Debug] > │ x2="584" y2="398"/>                                                          │

02:09:28 #44391 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="361"         │

02:09:28 #44392 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:28 #44393 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="324"         │

02:09:28 #44394 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:28 #44395 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="287"         │

02:09:28 #44396 [Debug] > │ x2="584" y2="287"/>                                                          │

02:09:28 #44397 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:28 #44398 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #44399 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="214"         │

02:09:28 #44400 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:28 #44401 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="177"         │

02:09:28 #44402 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:28 #44403 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="140"         │

02:09:28 #44404 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:28 #44405 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="103"         │

02:09:28 #44406 [Debug] > │ x2="584" y2="103"/>                                                          │

02:09:28 #44407 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44408 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:28 #44409 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:28 #44410 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44411 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44412 [Debug] > │ 0.0                                                                          │

02:09:28 #44413 [Debug] > │ </text>                                                                      │

02:09:28 #44414 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44415 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:28 #44416 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44417 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44418 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44419 [Debug] > │ 0.1                                                                          │

02:09:28 #44420 [Debug] > │ </text>                                                                      │

02:09:28 #44421 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44422 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:28 #44423 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44424 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44425 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44426 [Debug] > │ 0.1                                                                          │

02:09:28 #44427 [Debug] > │ </text>                                                                      │

02:09:28 #44428 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44429 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:28 #44430 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44431 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44432 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44433 [Debug] > │ 0.2                                                                          │

02:09:28 #44434 [Debug] > │ </text>                                                                      │

02:09:28 #44435 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44436 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:28 #44437 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44438 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44439 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44440 [Debug] > │ 0.2                                                                          │

02:09:28 #44441 [Debug] > │ </text>                                                                      │

02:09:28 #44442 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44443 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:28 #44444 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44445 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44446 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44447 [Debug] > │ 0.2                                                                          │

02:09:28 #44448 [Debug] > │ </text>                                                                      │

02:09:28 #44449 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44450 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:28 #44451 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44452 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44453 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44454 [Debug] > │ 0.3                                                                          │

02:09:28 #44455 [Debug] > │ </text>                                                                      │

02:09:28 #44456 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44457 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:28 #44458 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44459 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44460 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44461 [Debug] > │ 0.3                                                                          │

02:09:28 #44462 [Debug] > │ </text>                                                                      │

02:09:28 #44463 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44464 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:28 #44465 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44466 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44467 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44468 [Debug] > │ 0.4                                                                          │

02:09:28 #44469 [Debug] > │ </text>                                                                      │

02:09:28 #44470 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44471 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:28 #44472 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44473 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44474 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44475 [Debug] > │ 0.4                                                                          │

02:09:28 #44476 [Debug] > │ </text>                                                                      │

02:09:28 #44477 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44478 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:28 #44479 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44480 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44481 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44482 [Debug] > │ 0.5                                                                          │

02:09:28 #44483 [Debug] > │ </text>                                                                      │

02:09:28 #44484 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44485 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:28 #44486 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44487 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44488 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44489 [Debug] > │ 0.5                                                                          │

02:09:28 #44490 [Debug] > │ </text>                                                                      │

02:09:28 #44491 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44492 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:28 #44493 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44494 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44495 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44496 [Debug] > │ 0.6                                                                          │

02:09:28 #44497 [Debug] > │ </text>                                                                      │

02:09:28 #44498 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44499 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:28 #44500 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44501 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44502 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44503 [Debug] > │ 0.7                                                                          │

02:09:28 #44504 [Debug] > │ </text>                                                                      │

02:09:28 #44505 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44506 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:28 #44507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44508 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:28 #44509 [Debug] > │ <text x="45" y="398" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44510 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44511 [Debug] > │ -0.0                                                                         │

02:09:28 #44512 [Debug] > │ </text>                                                                      │

02:09:28 #44513 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44514 [Debug] > │ points="49,398 54,398 "/>                                                    │

02:09:28 #44515 [Debug] > │ <text x="45" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44516 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44517 [Debug] > │ -0.0                                                                         │

02:09:28 #44518 [Debug] > │ </text>                                                                      │

02:09:28 #44519 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44520 [Debug] > │ points="49,361 54,361 "/>                                                    │

02:09:28 #44521 [Debug] > │ <text x="45" y="324" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44522 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44523 [Debug] > │ -0.0                                                                         │

02:09:28 #44524 [Debug] > │ </text>                                                                      │

02:09:28 #44525 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44526 [Debug] > │ points="49,324 54,324 "/>                                                    │

02:09:28 #44527 [Debug] > │ <text x="45" y="287" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44528 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44529 [Debug] > │ -0.0                                                                         │

02:09:28 #44530 [Debug] > │ </text>                                                                      │

02:09:28 #44531 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44532 [Debug] > │ points="49,287 54,287 "/>                                                    │

02:09:28 #44533 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44534 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44535 [Debug] > │ 0.0                                                                          │

02:09:28 #44536 [Debug] > │ </text>                                                                      │

02:09:28 #44537 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44538 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:28 #44539 [Debug] > │ <text x="45" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44540 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44541 [Debug] > │ 0.0                                                                          │

02:09:28 #44542 [Debug] > │ </text>                                                                      │

02:09:28 #44543 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44544 [Debug] > │ points="49,214 54,214 "/>                                                    │

02:09:28 #44545 [Debug] > │ <text x="45" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44546 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44547 [Debug] > │ 0.0                                                                          │

02:09:28 #44548 [Debug] > │ </text>                                                                      │

02:09:28 #44549 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44550 [Debug] > │ points="49,177 54,177 "/>                                                    │

02:09:28 #44551 [Debug] > │ <text x="45" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44552 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44553 [Debug] > │ 0.0                                                                          │

02:09:28 #44554 [Debug] > │ </text>                                                                      │

02:09:28 #44555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44556 [Debug] > │ points="49,140 54,140 "/>                                                    │

02:09:28 #44557 [Debug] > │ <text x="45" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #44558 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44559 [Debug] > │ 0.0                                                                          │

02:09:28 #44560 [Debug] > │ </text>                                                                      │

02:09:28 #44561 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44562 [Debug] > │ points="49,103 54,103 "/>                                                    │

02:09:28 #44563 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44564 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:28 #44565 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:28 #44566 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44567 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44568 [Debug] > │ 0.0                                                                          │

02:09:28 #44569 [Debug] > │ </text>                                                                      │

02:09:28 #44570 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44571 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:28 #44572 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44573 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44574 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44575 [Debug] > │ 0.1                                                                          │

02:09:28 #44576 [Debug] > │ </text>                                                                      │

02:09:28 #44577 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44578 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:28 #44579 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44580 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44581 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44582 [Debug] > │ 0.1                                                                          │

02:09:28 #44583 [Debug] > │ </text>                                                                      │

02:09:28 #44584 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44585 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:28 #44586 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44587 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44588 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44589 [Debug] > │ 0.2                                                                          │

02:09:28 #44590 [Debug] > │ </text>                                                                      │

02:09:28 #44591 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44592 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:28 #44593 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44594 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44595 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44596 [Debug] > │ 0.2                                                                          │

02:09:28 #44597 [Debug] > │ </text>                                                                      │

02:09:28 #44598 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44599 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:28 #44600 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44601 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44602 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44603 [Debug] > │ 0.2                                                                          │

02:09:28 #44604 [Debug] > │ </text>                                                                      │

02:09:28 #44605 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44606 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:28 #44607 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44608 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44609 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44610 [Debug] > │ 0.3                                                                          │

02:09:28 #44611 [Debug] > │ </text>                                                                      │

02:09:28 #44612 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44613 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:28 #44614 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44615 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44616 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44617 [Debug] > │ 0.3                                                                          │

02:09:28 #44618 [Debug] > │ </text>                                                                      │

02:09:28 #44619 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44620 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:28 #44621 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44622 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44623 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44624 [Debug] > │ 0.4                                                                          │

02:09:28 #44625 [Debug] > │ </text>                                                                      │

02:09:28 #44626 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44627 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:28 #44628 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44629 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44630 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44631 [Debug] > │ 0.4                                                                          │

02:09:28 #44632 [Debug] > │ </text>                                                                      │

02:09:28 #44633 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44634 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:28 #44635 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44636 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44637 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44638 [Debug] > │ 0.5                                                                          │

02:09:28 #44639 [Debug] > │ </text>                                                                      │

02:09:28 #44640 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44641 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:28 #44642 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44643 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44644 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44645 [Debug] > │ 0.5                                                                          │

02:09:28 #44646 [Debug] > │ </text>                                                                      │

02:09:28 #44647 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44648 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:28 #44649 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44650 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44651 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44652 [Debug] > │ 0.6                                                                          │

02:09:28 #44653 [Debug] > │ </text>                                                                      │

02:09:28 #44654 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44655 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:28 #44656 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44657 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44658 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44659 [Debug] > │ 0.7                                                                          │

02:09:28 #44660 [Debug] > │ </text>                                                                      │

02:09:28 #44661 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44662 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:28 #44663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44664 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:28 #44665 [Debug] > │ <text x="595" y="398" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44667 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44668 [Debug] > │ -0.0                                                                         │

02:09:28 #44669 [Debug] > │ </text>                                                                      │

02:09:28 #44670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44671 [Debug] > │ points="585,398 590,398 "/>                                                  │

02:09:28 #44672 [Debug] > │ <text x="595" y="361" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44674 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44675 [Debug] > │ -0.0                                                                         │

02:09:28 #44676 [Debug] > │ </text>                                                                      │

02:09:28 #44677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44678 [Debug] > │ points="585,361 590,361 "/>                                                  │

02:09:28 #44679 [Debug] > │ <text x="595" y="324" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44682 [Debug] > │ -0.0                                                                         │

02:09:28 #44683 [Debug] > │ </text>                                                                      │

02:09:28 #44684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44685 [Debug] > │ points="585,324 590,324 "/>                                                  │

02:09:28 #44686 [Debug] > │ <text x="595" y="287" dy="0.5ex" text-anchor="start"                         │

02:09:28 #44687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44688 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44689 [Debug] > │ -0.0                                                                         │

02:09:28 #44690 [Debug] > │ </text>                                                                      │

02:09:28 #44691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44692 [Debug] > │ points="585,287 590,287 "/>                                                  │

02:09:28 #44693 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44694 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44695 [Debug] > │ 0.0                                                                          │

02:09:28 #44696 [Debug] > │ </text>                                                                      │

02:09:28 #44697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44698 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:28 #44699 [Debug] > │ <text x="617" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44700 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44701 [Debug] > │ 0.0                                                                          │

02:09:28 #44702 [Debug] > │ </text>                                                                      │

02:09:28 #44703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44704 [Debug] > │ points="585,214 590,214 "/>                                                  │

02:09:28 #44705 [Debug] > │ <text x="617" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44706 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44707 [Debug] > │ 0.0                                                                          │

02:09:28 #44708 [Debug] > │ </text>                                                                      │

02:09:28 #44709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44710 [Debug] > │ points="585,177 590,177 "/>                                                  │

02:09:28 #44711 [Debug] > │ <text x="617" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44712 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44713 [Debug] > │ 0.0                                                                          │

02:09:28 #44714 [Debug] > │ </text>                                                                      │

02:09:28 #44715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44716 [Debug] > │ points="585,140 590,140 "/>                                                  │

02:09:28 #44717 [Debug] > │ <text x="617" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #44718 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #44719 [Debug] > │ 0.0                                                                          │

02:09:28 #44720 [Debug] > │ </text>                                                                      │

02:09:28 #44721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44722 [Debug] > │ points="585,103 590,103 "/>                                                  │

02:09:28 #44723 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #44724 [Debug] > │ points="69,250 77,252 85,253 93,254 100,255 108,256 116,256 123,257 131,258  │

02:09:28 #44725 [Debug] > │ 139,258 146,258 154,258 162,258 169,258 177,257 185,257 192,256 200,255      │

02:09:28 #44726 [Debug] > │ 208,254 215,253 223,252 231,251 238,250 246,249 254,248 261,247 269,245      │

02:09:28 #44727 [Debug] > │ 276,244 283,241 290,236 294,226 297,211 297,188 295,162 293,138 293,121      │

02:09:28 #44728 [Debug] > │ 294,111 295,102 294,92 294,85 294,85 295,89 294,94 294,102 294,115 294,130   │

02:09:28 #44729 [Debug] > │ 294,147 294,167 294,188 294,211 294,235 294,258 294,282 294,305 294,327      │

02:09:28 #44730 [Debug] > │ 294,347 294,365 294,381 294,394 294,404 294,411 294,415 545,173 553,198      │

02:09:28 #44731 [Debug] > │ 563,232 569,250 "/>                                                          │

02:09:28 #44732 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:28 #44733 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:28 #44734 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:28 #44735 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44736 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44737 [Debug] > │ 51                                                                           │

02:09:28 #44738 [Debug] > │ </text>                                                                      │

02:09:28 #44739 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #44740 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:28 #44741 [Debug] > │ </svg>                                                                       │

02:09:28 #44742 [Debug] > │ </td></tr><tr><td>52</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:28 #44743 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:28 #44744 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:28 #44745 [Debug] > │ stroke="none"/>                                                              │

02:09:28 #44746 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:28 #44747 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44748 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44749 [Debug] > │ wave                                                                         │

02:09:28 #44750 [Debug] > │ </text>                                                                      │

02:09:28 #44751 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:28 #44752 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44753 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #44754 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44755 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:28 #44756 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44757 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:28 #44758 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44759 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:28 #44760 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44761 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:28 #44762 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:28 #44763 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:28 #44764 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:28 #44765 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:28 #44766 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:28 #44767 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:28 #44768 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:28 #44769 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:28 #44770 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:28 #44771 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:28 #44772 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:28 #44773 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:28 #44774 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:28 #44775 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:28 #44776 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:28 #44777 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:28 #44778 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:28 #44779 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:28 #44780 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:28 #44781 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:28 #44782 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:28 #44783 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:28 #44784 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:28 #44785 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:28 #44786 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:28 #44787 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:28 #44788 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:28 #44789 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:28 #44790 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:28 #44791 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:28 #44792 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:28 #44793 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:28 #44794 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:28 #44795 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:28 #44796 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:28 #44797 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:28 #44798 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:28 #44799 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:28 #44800 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:28 #44801 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:28 #44802 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:28 #44803 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:28 #44804 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:28 #44805 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:28 #44806 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:28 #44807 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:28 #44808 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:28 #44809 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:28 #44810 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:28 #44811 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:28 #44812 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:28 #44813 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:28 #44814 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:28 #44815 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:28 #44816 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:28 #44817 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:28 #44818 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:28 #44819 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:28 #44820 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:28 #44821 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:28 #44822 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:28 #44823 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:28 #44824 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:28 #44825 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:28 #44826 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:28 #44827 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:28 #44828 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:28 #44829 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:28 #44830 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:28 #44831 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:28 #44832 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:28 #44833 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:28 #44834 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:28 #44835 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:28 #44836 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:28 #44837 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:28 #44838 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:28 #44839 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:28 #44840 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:28 #44841 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:28 #44842 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:28 #44843 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:28 #44844 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:28 #44845 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:28 #44846 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:28 #44847 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:28 #44848 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:28 #44849 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:28 #44850 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:28 #44851 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:28 #44852 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:28 #44853 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:28 #44854 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:28 #44855 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:28 #44856 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:28 #44857 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:28 #44858 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:28 #44859 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:28 #44860 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:28 #44861 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:28 #44862 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:28 #44863 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:28 #44864 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:28 #44865 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:28 #44866 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:28 #44867 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:28 #44868 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:28 #44869 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:28 #44870 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:28 #44871 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:28 #44872 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:28 #44873 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:28 #44874 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:28 #44875 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:28 #44876 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:28 #44877 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:28 #44878 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:28 #44879 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:28 #44880 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:28 #44881 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:28 #44882 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:28 #44883 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:28 #44884 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:28 #44885 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:09:28 #44886 [Debug] > │ x2="584" y2="406"/>                                                          │

02:09:28 #44887 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:28 #44888 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:28 #44889 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="367"         │

02:09:28 #44890 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:28 #44891 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="347"         │

02:09:28 #44892 [Debug] > │ x2="584" y2="347"/>                                                          │

02:09:28 #44893 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="328"         │

02:09:28 #44894 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:28 #44895 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:09:28 #44896 [Debug] > │ x2="584" y2="308"/>                                                          │

02:09:28 #44897 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="289"         │

02:09:28 #44898 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:28 #44899 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:28 #44900 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:28 #44901 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:28 #44902 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #44903 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:09:28 #44904 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:28 #44905 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:09:28 #44906 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:28 #44907 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="192"         │

02:09:28 #44908 [Debug] > │ x2="584" y2="192"/>                                                          │

02:09:28 #44909 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="173"         │

02:09:28 #44910 [Debug] > │ x2="584" y2="173"/>                                                          │

02:09:28 #44911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="153"         │

02:09:28 #44912 [Debug] > │ x2="584" y2="153"/>                                                          │

02:09:28 #44913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:28 #44914 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:28 #44915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:09:28 #44916 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:28 #44917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="95" x2="584" │

02:09:28 #44918 [Debug] > │ y2="95"/>                                                                    │

02:09:28 #44919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="76" x2="584" │

02:09:28 #44920 [Debug] > │ y2="76"/>                                                                    │

02:09:28 #44921 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:28 #44922 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44923 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44924 [Debug] > │ position (m)                                                                 │

02:09:28 #44925 [Debug] > │ </text>                                                                      │

02:09:28 #44926 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:28 #44927 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44928 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:28 #44929 [Debug] > │ displacement (m)                                                             │

02:09:28 #44930 [Debug] > │ </text>                                                                      │

02:09:28 #44931 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:28 #44932 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44933 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44934 [Debug] > │ position (m)                                                                 │

02:09:28 #44935 [Debug] > │ </text>                                                                      │

02:09:28 #44936 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:28 #44937 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44938 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:28 #44939 [Debug] > │ displacement (m)                                                             │

02:09:28 #44940 [Debug] > │ </text>                                                                      │

02:09:28 #44941 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #44942 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #44943 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:28 #44944 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:28 #44945 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:28 #44946 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:28 #44947 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:28 #44948 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:28 #44949 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:28 #44950 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:28 #44951 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:28 #44952 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:28 #44953 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:28 #44954 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:28 #44955 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:28 #44956 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:28 #44957 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:28 #44958 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:28 #44959 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:28 #44960 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:28 #44961 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:28 #44962 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:28 #44963 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:28 #44964 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:28 #44965 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:28 #44966 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:28 #44967 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:28 #44968 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:28 #44969 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="406"         │

02:09:28 #44970 [Debug] > │ x2="584" y2="406"/>                                                          │

02:09:28 #44971 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="367"         │

02:09:28 #44972 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:28 #44973 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="328"         │

02:09:28 #44974 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:28 #44975 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="289"         │

02:09:28 #44976 [Debug] > │ x2="584" y2="289"/>                                                          │

02:09:28 #44977 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:28 #44978 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #44979 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="211"         │

02:09:28 #44980 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:28 #44981 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="173"         │

02:09:28 #44982 [Debug] > │ x2="584" y2="173"/>                                                          │

02:09:28 #44983 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="134"         │

02:09:28 #44984 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:28 #44985 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="95" x2="584" │

02:09:28 #44986 [Debug] > │ y2="95"/>                                                                    │

02:09:28 #44987 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44988 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:28 #44989 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:28 #44990 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44991 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44992 [Debug] > │ 0.0                                                                          │

02:09:28 #44993 [Debug] > │ </text>                                                                      │

02:09:28 #44994 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #44995 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:28 #44996 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #44997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #44998 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #44999 [Debug] > │ 0.1                                                                          │

02:09:28 #45000 [Debug] > │ </text>                                                                      │

02:09:28 #45001 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45002 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:28 #45003 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45004 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45005 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45006 [Debug] > │ 0.1                                                                          │

02:09:28 #45007 [Debug] > │ </text>                                                                      │

02:09:28 #45008 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45009 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:28 #45010 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45011 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45012 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45013 [Debug] > │ 0.2                                                                          │

02:09:28 #45014 [Debug] > │ </text>                                                                      │

02:09:28 #45015 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45016 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:28 #45017 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45018 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45019 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45020 [Debug] > │ 0.2                                                                          │

02:09:28 #45021 [Debug] > │ </text>                                                                      │

02:09:28 #45022 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45023 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:28 #45024 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45025 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45026 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45027 [Debug] > │ 0.2                                                                          │

02:09:28 #45028 [Debug] > │ </text>                                                                      │

02:09:28 #45029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45030 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:28 #45031 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45032 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45033 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45034 [Debug] > │ 0.3                                                                          │

02:09:28 #45035 [Debug] > │ </text>                                                                      │

02:09:28 #45036 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45037 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:28 #45038 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45039 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45040 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45041 [Debug] > │ 0.3                                                                          │

02:09:28 #45042 [Debug] > │ </text>                                                                      │

02:09:28 #45043 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45044 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:28 #45045 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45046 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45047 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45048 [Debug] > │ 0.4                                                                          │

02:09:28 #45049 [Debug] > │ </text>                                                                      │

02:09:28 #45050 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45051 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:28 #45052 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45053 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45054 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45055 [Debug] > │ 0.4                                                                          │

02:09:28 #45056 [Debug] > │ </text>                                                                      │

02:09:28 #45057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45058 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:28 #45059 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45060 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45061 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45062 [Debug] > │ 0.5                                                                          │

02:09:28 #45063 [Debug] > │ </text>                                                                      │

02:09:28 #45064 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45065 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:28 #45066 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45067 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45068 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45069 [Debug] > │ 0.5                                                                          │

02:09:28 #45070 [Debug] > │ </text>                                                                      │

02:09:28 #45071 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45072 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:28 #45073 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45074 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45075 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45076 [Debug] > │ 0.6                                                                          │

02:09:28 #45077 [Debug] > │ </text>                                                                      │

02:09:28 #45078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45079 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:28 #45080 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45081 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45082 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45083 [Debug] > │ 0.7                                                                          │

02:09:28 #45084 [Debug] > │ </text>                                                                      │

02:09:28 #45085 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45086 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:28 #45087 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45088 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:28 #45089 [Debug] > │ <text x="45" y="406" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45090 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45091 [Debug] > │ -0.0                                                                         │

02:09:28 #45092 [Debug] > │ </text>                                                                      │

02:09:28 #45093 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45094 [Debug] > │ points="49,406 54,406 "/>                                                    │

02:09:28 #45095 [Debug] > │ <text x="45" y="367" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45096 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45097 [Debug] > │ -0.0                                                                         │

02:09:28 #45098 [Debug] > │ </text>                                                                      │

02:09:28 #45099 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45100 [Debug] > │ points="49,367 54,367 "/>                                                    │

02:09:28 #45101 [Debug] > │ <text x="45" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45102 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45103 [Debug] > │ -0.0                                                                         │

02:09:28 #45104 [Debug] > │ </text>                                                                      │

02:09:28 #45105 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45106 [Debug] > │ points="49,328 54,328 "/>                                                    │

02:09:28 #45107 [Debug] > │ <text x="45" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45108 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45109 [Debug] > │ -0.0                                                                         │

02:09:28 #45110 [Debug] > │ </text>                                                                      │

02:09:28 #45111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45112 [Debug] > │ points="49,289 54,289 "/>                                                    │

02:09:28 #45113 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45114 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45115 [Debug] > │ 0.0                                                                          │

02:09:28 #45116 [Debug] > │ </text>                                                                      │

02:09:28 #45117 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45118 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:28 #45119 [Debug] > │ <text x="45" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45120 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45121 [Debug] > │ 0.0                                                                          │

02:09:28 #45122 [Debug] > │ </text>                                                                      │

02:09:28 #45123 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45124 [Debug] > │ points="49,211 54,211 "/>                                                    │

02:09:28 #45125 [Debug] > │ <text x="45" y="173" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45126 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45127 [Debug] > │ 0.0                                                                          │

02:09:28 #45128 [Debug] > │ </text>                                                                      │

02:09:28 #45129 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45130 [Debug] > │ points="49,173 54,173 "/>                                                    │

02:09:28 #45131 [Debug] > │ <text x="45" y="134" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45132 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45133 [Debug] > │ 0.0                                                                          │

02:09:28 #45134 [Debug] > │ </text>                                                                      │

02:09:28 #45135 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45136 [Debug] > │ points="49,134 54,134 "/>                                                    │

02:09:28 #45137 [Debug] > │ <text x="45" y="95" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:28 #45138 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45139 [Debug] > │ 0.0                                                                          │

02:09:28 #45140 [Debug] > │ </text>                                                                      │

02:09:28 #45141 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45142 [Debug] > │ points="49,95 54,95 "/>                                                      │

02:09:28 #45143 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45144 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:28 #45145 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:28 #45146 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45147 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45148 [Debug] > │ 0.0                                                                          │

02:09:28 #45149 [Debug] > │ </text>                                                                      │

02:09:28 #45150 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45151 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:28 #45152 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45153 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45154 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45155 [Debug] > │ 0.1                                                                          │

02:09:28 #45156 [Debug] > │ </text>                                                                      │

02:09:28 #45157 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45158 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:28 #45159 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45160 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45161 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45162 [Debug] > │ 0.1                                                                          │

02:09:28 #45163 [Debug] > │ </text>                                                                      │

02:09:28 #45164 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45165 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:28 #45166 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45167 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45168 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45169 [Debug] > │ 0.2                                                                          │

02:09:28 #45170 [Debug] > │ </text>                                                                      │

02:09:28 #45171 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45172 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:28 #45173 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45174 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45175 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45176 [Debug] > │ 0.2                                                                          │

02:09:28 #45177 [Debug] > │ </text>                                                                      │

02:09:28 #45178 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45179 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:28 #45180 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45181 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45182 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45183 [Debug] > │ 0.2                                                                          │

02:09:28 #45184 [Debug] > │ </text>                                                                      │

02:09:28 #45185 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45186 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:28 #45187 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45188 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45189 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45190 [Debug] > │ 0.3                                                                          │

02:09:28 #45191 [Debug] > │ </text>                                                                      │

02:09:28 #45192 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45193 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:28 #45194 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45195 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45196 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45197 [Debug] > │ 0.3                                                                          │

02:09:28 #45198 [Debug] > │ </text>                                                                      │

02:09:28 #45199 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45200 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:28 #45201 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45202 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45203 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45204 [Debug] > │ 0.4                                                                          │

02:09:28 #45205 [Debug] > │ </text>                                                                      │

02:09:28 #45206 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45207 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:28 #45208 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45209 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45210 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45211 [Debug] > │ 0.4                                                                          │

02:09:28 #45212 [Debug] > │ </text>                                                                      │

02:09:28 #45213 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45214 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:28 #45215 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45216 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45217 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45218 [Debug] > │ 0.5                                                                          │

02:09:28 #45219 [Debug] > │ </text>                                                                      │

02:09:28 #45220 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45221 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:28 #45222 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45223 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45224 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45225 [Debug] > │ 0.5                                                                          │

02:09:28 #45226 [Debug] > │ </text>                                                                      │

02:09:28 #45227 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45228 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:28 #45229 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45230 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45231 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45232 [Debug] > │ 0.6                                                                          │

02:09:28 #45233 [Debug] > │ </text>                                                                      │

02:09:28 #45234 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45235 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:28 #45236 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45237 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45238 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45239 [Debug] > │ 0.7                                                                          │

02:09:28 #45240 [Debug] > │ </text>                                                                      │

02:09:28 #45241 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45242 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:28 #45243 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45244 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:28 #45245 [Debug] > │ <text x="595" y="406" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45246 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45247 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45248 [Debug] > │ -0.0                                                                         │

02:09:28 #45249 [Debug] > │ </text>                                                                      │

02:09:28 #45250 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45251 [Debug] > │ points="585,406 590,406 "/>                                                  │

02:09:28 #45252 [Debug] > │ <text x="595" y="367" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45253 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45254 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45255 [Debug] > │ -0.0                                                                         │

02:09:28 #45256 [Debug] > │ </text>                                                                      │

02:09:28 #45257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45258 [Debug] > │ points="585,367 590,367 "/>                                                  │

02:09:28 #45259 [Debug] > │ <text x="595" y="328" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45260 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45261 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45262 [Debug] > │ -0.0                                                                         │

02:09:28 #45263 [Debug] > │ </text>                                                                      │

02:09:28 #45264 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45265 [Debug] > │ points="585,328 590,328 "/>                                                  │

02:09:28 #45266 [Debug] > │ <text x="595" y="289" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45267 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45268 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45269 [Debug] > │ -0.0                                                                         │

02:09:28 #45270 [Debug] > │ </text>                                                                      │

02:09:28 #45271 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45272 [Debug] > │ points="585,289 590,289 "/>                                                  │

02:09:28 #45273 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45274 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45275 [Debug] > │ 0.0                                                                          │

02:09:28 #45276 [Debug] > │ </text>                                                                      │

02:09:28 #45277 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45278 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:28 #45279 [Debug] > │ <text x="617" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45280 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45281 [Debug] > │ 0.0                                                                          │

02:09:28 #45282 [Debug] > │ </text>                                                                      │

02:09:28 #45283 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45284 [Debug] > │ points="585,211 590,211 "/>                                                  │

02:09:28 #45285 [Debug] > │ <text x="617" y="173" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45286 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45287 [Debug] > │ 0.0                                                                          │

02:09:28 #45288 [Debug] > │ </text>                                                                      │

02:09:28 #45289 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45290 [Debug] > │ points="585,173 590,173 "/>                                                  │

02:09:28 #45291 [Debug] > │ <text x="617" y="134" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45292 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45293 [Debug] > │ 0.0                                                                          │

02:09:28 #45294 [Debug] > │ </text>                                                                      │

02:09:28 #45295 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45296 [Debug] > │ points="585,134 590,134 "/>                                                  │

02:09:28 #45297 [Debug] > │ <text x="617" y="95" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45298 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45299 [Debug] > │ 0.0                                                                          │

02:09:28 #45300 [Debug] > │ </text>                                                                      │

02:09:28 #45301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45302 [Debug] > │ points="585,95 590,95 "/>                                                    │

02:09:28 #45303 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #45304 [Debug] > │ points="69,250 77,249 85,248 93,246 100,245 108,244 116,243 123,242 131,242  │

02:09:28 #45305 [Debug] > │ 139,241 146,241 154,241 162,241 169,241 177,242 185,242 192,243 200,244      │

02:09:28 #45306 [Debug] > │ 208,245 215,247 223,248 231,249 238,251 246,252 254,253 261,254 269,255      │

02:09:28 #45307 [Debug] > │ 276,255 283,252 288,245 291,232 292,212 291,186 289,159 288,137 289,123      │

02:09:28 #45308 [Debug] > │ 290,112 290,101 289,90 289,85 290,86 290,89 289,93 289,102 290,115 289,129   │

02:09:28 #45309 [Debug] > │ 289,147 289,167 289,188 289,211 289,235 289,258 289,282 289,305 289,327      │

02:09:28 #45310 [Debug] > │ 289,347 289,365 289,381 289,394 289,404 289,411 289,415 545,168 553,195      │

02:09:28 #45311 [Debug] > │ 567,246 569,250 "/>                                                          │

02:09:28 #45312 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:28 #45313 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:28 #45314 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:28 #45315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45316 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45317 [Debug] > │ 52                                                                           │

02:09:28 #45318 [Debug] > │ </text>                                                                      │

02:09:28 #45319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #45320 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:28 #45321 [Debug] > │ </svg>                                                                       │

02:09:28 #45322 [Debug] > │ </td></tr><tr><td>53</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:28 #45323 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:28 #45324 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:28 #45325 [Debug] > │ stroke="none"/>                                                              │

02:09:28 #45326 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:28 #45327 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45328 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45329 [Debug] > │ wave                                                                         │

02:09:28 #45330 [Debug] > │ </text>                                                                      │

02:09:28 #45331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:28 #45332 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #45334 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:28 #45336 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:28 #45338 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:28 #45340 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:28 #45342 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:28 #45343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:28 #45344 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:28 #45345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:28 #45346 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:28 #45347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:28 #45348 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:28 #45349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:28 #45350 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:28 #45351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:28 #45352 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:28 #45353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:28 #45354 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:28 #45355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:28 #45356 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:28 #45357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:28 #45358 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:28 #45359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:28 #45360 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:28 #45361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:28 #45362 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:28 #45363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:28 #45364 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:28 #45365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:28 #45366 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:28 #45367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:28 #45368 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:28 #45369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:28 #45370 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:28 #45371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:28 #45372 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:28 #45373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:28 #45374 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:28 #45375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:28 #45376 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:28 #45377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:28 #45378 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:28 #45379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:28 #45380 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:28 #45381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:28 #45382 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:28 #45383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:28 #45384 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:28 #45385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:28 #45386 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:28 #45387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="275" y1="424"        │

02:09:28 #45388 [Debug] > │ x2="275" y2="75"/>                                                           │

02:09:28 #45389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:28 #45390 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:28 #45391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:28 #45392 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:28 #45393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:09:28 #45394 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:28 #45395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:28 #45396 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:28 #45397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="313" y1="424"        │

02:09:28 #45398 [Debug] > │ x2="313" y2="75"/>                                                           │

02:09:28 #45399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:09:28 #45400 [Debug] > │ x2="321" y2="75"/>                                                           │

02:09:28 #45401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:28 #45402 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:28 #45403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:09:28 #45404 [Debug] > │ x2="336" y2="75"/>                                                           │

02:09:28 #45405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:09:28 #45406 [Debug] > │ x2="344" y2="75"/>                                                           │

02:09:28 #45407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:28 #45408 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:28 #45409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:28 #45410 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:28 #45411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:28 #45412 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:28 #45413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="374" y1="424"        │

02:09:28 #45414 [Debug] > │ x2="374" y2="75"/>                                                           │

02:09:28 #45415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="382" y1="424"        │

02:09:28 #45416 [Debug] > │ x2="382" y2="75"/>                                                           │

02:09:28 #45417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:28 #45418 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:28 #45419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="397" y1="424"        │

02:09:28 #45420 [Debug] > │ x2="397" y2="75"/>                                                           │

02:09:28 #45421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:09:28 #45422 [Debug] > │ x2="405" y2="75"/>                                                           │

02:09:28 #45423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="413" y1="424"        │

02:09:28 #45424 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:28 #45425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="420" y1="424"        │

02:09:28 #45426 [Debug] > │ x2="420" y2="75"/>                                                           │

02:09:28 #45427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:28 #45428 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:28 #45429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:09:28 #45430 [Debug] > │ x2="435" y2="75"/>                                                           │

02:09:28 #45431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="443" y1="424"        │

02:09:28 #45432 [Debug] > │ x2="443" y2="75"/>                                                           │

02:09:28 #45433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:28 #45434 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:28 #45435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="458" y1="424"        │

02:09:28 #45436 [Debug] > │ x2="458" y2="75"/>                                                           │

02:09:28 #45437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="466" y1="424"        │

02:09:28 #45438 [Debug] > │ x2="466" y2="75"/>                                                           │

02:09:28 #45439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="474" y1="424"        │

02:09:28 #45440 [Debug] > │ x2="474" y2="75"/>                                                           │

02:09:28 #45441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:09:28 #45442 [Debug] > │ x2="481" y2="75"/>                                                           │

02:09:28 #45443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:28 #45444 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:28 #45445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="496" y1="424"        │

02:09:28 #45446 [Debug] > │ x2="496" y2="75"/>                                                           │

02:09:28 #45447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="504" y1="424"        │

02:09:28 #45448 [Debug] > │ x2="504" y2="75"/>                                                           │

02:09:28 #45449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:28 #45450 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:28 #45451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:09:28 #45452 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:28 #45453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:09:28 #45454 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:28 #45455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="535" y1="424"        │

02:09:28 #45456 [Debug] > │ x2="535" y2="75"/>                                                           │

02:09:28 #45457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="542" y1="424"        │

02:09:28 #45458 [Debug] > │ x2="542" y2="75"/>                                                           │

02:09:28 #45459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="550" y1="424"        │

02:09:28 #45460 [Debug] > │ x2="550" y2="75"/>                                                           │

02:09:28 #45461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="557" y1="424"        │

02:09:28 #45462 [Debug] > │ x2="557" y2="75"/>                                                           │

02:09:28 #45463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="565" y1="424"        │

02:09:28 #45464 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:28 #45465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="573" y1="424"        │

02:09:28 #45466 [Debug] > │ x2="573" y2="75"/>                                                           │

02:09:28 #45467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:28 #45468 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:28 #45469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="395"         │

02:09:28 #45470 [Debug] > │ x2="584" y2="395"/>                                                          │

02:09:28 #45471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:28 #45472 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:28 #45473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="353"         │

02:09:28 #45474 [Debug] > │ x2="584" y2="353"/>                                                          │

02:09:28 #45475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="333"         │

02:09:28 #45476 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:28 #45477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="312"         │

02:09:28 #45478 [Debug] > │ x2="584" y2="312"/>                                                          │

02:09:28 #45479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="291"         │

02:09:28 #45480 [Debug] > │ x2="584" y2="291"/>                                                          │

02:09:28 #45481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:28 #45482 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:28 #45483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:28 #45484 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #45485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:09:28 #45486 [Debug] > │ x2="584" y2="229"/>                                                          │

02:09:28 #45487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="208"         │

02:09:28 #45488 [Debug] > │ x2="584" y2="208"/>                                                          │

02:09:28 #45489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="187"         │

02:09:28 #45490 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:28 #45491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="167"         │

02:09:28 #45492 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:28 #45493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="146"         │

02:09:28 #45494 [Debug] > │ x2="584" y2="146"/>                                                          │

02:09:28 #45495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="125"         │

02:09:28 #45496 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:28 #45497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:09:28 #45498 [Debug] > │ x2="584" y2="104"/>                                                          │

02:09:28 #45499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:28 #45500 [Debug] > │ y2="84"/>                                                                    │

02:09:28 #45501 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:28 #45502 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45503 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45504 [Debug] > │ position (m)                                                                 │

02:09:28 #45505 [Debug] > │ </text>                                                                      │

02:09:28 #45506 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:28 #45507 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45508 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:28 #45509 [Debug] > │ displacement (m)                                                             │

02:09:28 #45510 [Debug] > │ </text>                                                                      │

02:09:28 #45511 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:28 #45512 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45513 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45514 [Debug] > │ position (m)                                                                 │

02:09:28 #45515 [Debug] > │ </text>                                                                      │

02:09:28 #45516 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45517 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45518 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:28 #45519 [Debug] > │ displacement (m)                                                             │

02:09:28 #45520 [Debug] > │ </text>                                                                      │

02:09:28 #45521 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #45522 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45523 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:28 #45524 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:28 #45525 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:28 #45526 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:28 #45527 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:28 #45528 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:28 #45529 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:28 #45530 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:28 #45531 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:28 #45532 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:28 #45533 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="298" y1="424"        │

02:09:28 #45534 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:28 #45535 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:09:28 #45536 [Debug] > │ x2="336" y2="75"/>                                                           │

02:09:28 #45537 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="374" y1="424"        │

02:09:28 #45538 [Debug] > │ x2="374" y2="75"/>                                                           │

02:09:28 #45539 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="413" y1="424"        │

02:09:28 #45540 [Debug] > │ x2="413" y2="75"/>                                                           │

02:09:28 #45541 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:28 #45542 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:28 #45543 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="489" y1="424"        │

02:09:28 #45544 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:28 #45545 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:09:28 #45546 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:28 #45547 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="565" y1="424"        │

02:09:28 #45548 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:28 #45549 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="416"         │

02:09:28 #45550 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:28 #45551 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="374"         │

02:09:28 #45552 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:28 #45553 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="333"         │

02:09:28 #45554 [Debug] > │ x2="584" y2="333"/>                                                          │

02:09:28 #45555 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="291"         │

02:09:28 #45556 [Debug] > │ x2="584" y2="291"/>                                                          │

02:09:28 #45557 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:28 #45558 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #45559 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="208"         │

02:09:28 #45560 [Debug] > │ x2="584" y2="208"/>                                                          │

02:09:28 #45561 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="167"         │

02:09:28 #45562 [Debug] > │ x2="584" y2="167"/>                                                          │

02:09:28 #45563 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="125"         │

02:09:28 #45564 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:28 #45565 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:28 #45566 [Debug] > │ y2="84"/>                                                                    │

02:09:28 #45567 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45568 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:28 #45569 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:28 #45570 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45571 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45572 [Debug] > │ 0.0                                                                          │

02:09:28 #45573 [Debug] > │ </text>                                                                      │

02:09:28 #45574 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45575 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:28 #45576 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45577 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45578 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45579 [Debug] > │ 0.1                                                                          │

02:09:28 #45580 [Debug] > │ </text>                                                                      │

02:09:28 #45581 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45582 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:28 #45583 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45584 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45585 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45586 [Debug] > │ 0.1                                                                          │

02:09:28 #45587 [Debug] > │ </text>                                                                      │

02:09:28 #45588 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45589 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:28 #45590 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45591 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45592 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45593 [Debug] > │ 0.2                                                                          │

02:09:28 #45594 [Debug] > │ </text>                                                                      │

02:09:28 #45595 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45596 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:28 #45597 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45598 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45599 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45600 [Debug] > │ 0.2                                                                          │

02:09:28 #45601 [Debug] > │ </text>                                                                      │

02:09:28 #45602 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45603 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:28 #45604 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45605 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45606 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45607 [Debug] > │ 0.2                                                                          │

02:09:28 #45608 [Debug] > │ </text>                                                                      │

02:09:28 #45609 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45610 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:28 #45611 [Debug] > │ <text x="298" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45612 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45613 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45614 [Debug] > │ 0.3                                                                          │

02:09:28 #45615 [Debug] > │ </text>                                                                      │

02:09:28 #45616 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45617 [Debug] > │ points="298,69 298,74 "/>                                                    │

02:09:28 #45618 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45619 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45620 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45621 [Debug] > │ 0.3                                                                          │

02:09:28 #45622 [Debug] > │ </text>                                                                      │

02:09:28 #45623 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45624 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:09:28 #45625 [Debug] > │ <text x="374" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45626 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45627 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45628 [Debug] > │ 0.4                                                                          │

02:09:28 #45629 [Debug] > │ </text>                                                                      │

02:09:28 #45630 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45631 [Debug] > │ points="374,69 374,74 "/>                                                    │

02:09:28 #45632 [Debug] > │ <text x="413" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45633 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45634 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45635 [Debug] > │ 0.4                                                                          │

02:09:28 #45636 [Debug] > │ </text>                                                                      │

02:09:28 #45637 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45638 [Debug] > │ points="413,69 413,74 "/>                                                    │

02:09:28 #45639 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45640 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45641 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45642 [Debug] > │ 0.5                                                                          │

02:09:28 #45643 [Debug] > │ </text>                                                                      │

02:09:28 #45644 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45645 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:28 #45646 [Debug] > │ <text x="489" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45647 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45648 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45649 [Debug] > │ 0.5                                                                          │

02:09:28 #45650 [Debug] > │ </text>                                                                      │

02:09:28 #45651 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45652 [Debug] > │ points="489,69 489,74 "/>                                                    │

02:09:28 #45653 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45654 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45655 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45656 [Debug] > │ 0.6                                                                          │

02:09:28 #45657 [Debug] > │ </text>                                                                      │

02:09:28 #45658 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45659 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:09:28 #45660 [Debug] > │ <text x="565" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #45661 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45662 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45663 [Debug] > │ 0.7                                                                          │

02:09:28 #45664 [Debug] > │ </text>                                                                      │

02:09:28 #45665 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45666 [Debug] > │ points="565,69 565,74 "/>                                                    │

02:09:28 #45667 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45668 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:28 #45669 [Debug] > │ <text x="45" y="416" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45670 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45671 [Debug] > │ -0.0                                                                         │

02:09:28 #45672 [Debug] > │ </text>                                                                      │

02:09:28 #45673 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45674 [Debug] > │ points="49,416 54,416 "/>                                                    │

02:09:28 #45675 [Debug] > │ <text x="45" y="374" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45676 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45677 [Debug] > │ -0.0                                                                         │

02:09:28 #45678 [Debug] > │ </text>                                                                      │

02:09:28 #45679 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45680 [Debug] > │ points="49,374 54,374 "/>                                                    │

02:09:28 #45681 [Debug] > │ <text x="45" y="333" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45682 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45683 [Debug] > │ -0.0                                                                         │

02:09:28 #45684 [Debug] > │ </text>                                                                      │

02:09:28 #45685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45686 [Debug] > │ points="49,333 54,333 "/>                                                    │

02:09:28 #45687 [Debug] > │ <text x="45" y="291" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45688 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45689 [Debug] > │ -0.0                                                                         │

02:09:28 #45690 [Debug] > │ </text>                                                                      │

02:09:28 #45691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45692 [Debug] > │ points="49,291 54,291 "/>                                                    │

02:09:28 #45693 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45694 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45695 [Debug] > │ 0.0                                                                          │

02:09:28 #45696 [Debug] > │ </text>                                                                      │

02:09:28 #45697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45698 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:28 #45699 [Debug] > │ <text x="45" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45700 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45701 [Debug] > │ 0.0                                                                          │

02:09:28 #45702 [Debug] > │ </text>                                                                      │

02:09:28 #45703 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45704 [Debug] > │ points="49,208 54,208 "/>                                                    │

02:09:28 #45705 [Debug] > │ <text x="45" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45706 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45707 [Debug] > │ 0.0                                                                          │

02:09:28 #45708 [Debug] > │ </text>                                                                      │

02:09:28 #45709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45710 [Debug] > │ points="49,167 54,167 "/>                                                    │

02:09:28 #45711 [Debug] > │ <text x="45" y="125" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45712 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45713 [Debug] > │ 0.0                                                                          │

02:09:28 #45714 [Debug] > │ </text>                                                                      │

02:09:28 #45715 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45716 [Debug] > │ points="49,125 54,125 "/>                                                    │

02:09:28 #45717 [Debug] > │ <text x="45" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:28 #45718 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45719 [Debug] > │ 0.0                                                                          │

02:09:28 #45720 [Debug] > │ </text>                                                                      │

02:09:28 #45721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45722 [Debug] > │ points="49,84 54,84 "/>                                                      │

02:09:28 #45723 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45724 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:28 #45725 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:28 #45726 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45727 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45728 [Debug] > │ 0.0                                                                          │

02:09:28 #45729 [Debug] > │ </text>                                                                      │

02:09:28 #45730 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45731 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:28 #45732 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45733 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45734 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45735 [Debug] > │ 0.1                                                                          │

02:09:28 #45736 [Debug] > │ </text>                                                                      │

02:09:28 #45737 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45738 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:28 #45739 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45740 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45741 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45742 [Debug] > │ 0.1                                                                          │

02:09:28 #45743 [Debug] > │ </text>                                                                      │

02:09:28 #45744 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45745 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:28 #45746 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45747 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45748 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45749 [Debug] > │ 0.2                                                                          │

02:09:28 #45750 [Debug] > │ </text>                                                                      │

02:09:28 #45751 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45752 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:28 #45753 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45754 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45755 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45756 [Debug] > │ 0.2                                                                          │

02:09:28 #45757 [Debug] > │ </text>                                                                      │

02:09:28 #45758 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45759 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:28 #45760 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45761 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45762 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45763 [Debug] > │ 0.2                                                                          │

02:09:28 #45764 [Debug] > │ </text>                                                                      │

02:09:28 #45765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45766 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:28 #45767 [Debug] > │ <text x="298" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45768 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45769 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45770 [Debug] > │ 0.3                                                                          │

02:09:28 #45771 [Debug] > │ </text>                                                                      │

02:09:28 #45772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45773 [Debug] > │ points="298,425 298,430 "/>                                                  │

02:09:28 #45774 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45776 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45777 [Debug] > │ 0.3                                                                          │

02:09:28 #45778 [Debug] > │ </text>                                                                      │

02:09:28 #45779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45780 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:09:28 #45781 [Debug] > │ <text x="374" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45783 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45784 [Debug] > │ 0.4                                                                          │

02:09:28 #45785 [Debug] > │ </text>                                                                      │

02:09:28 #45786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45787 [Debug] > │ points="374,425 374,430 "/>                                                  │

02:09:28 #45788 [Debug] > │ <text x="413" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45789 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45790 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45791 [Debug] > │ 0.4                                                                          │

02:09:28 #45792 [Debug] > │ </text>                                                                      │

02:09:28 #45793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45794 [Debug] > │ points="413,425 413,430 "/>                                                  │

02:09:28 #45795 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45796 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45797 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45798 [Debug] > │ 0.5                                                                          │

02:09:28 #45799 [Debug] > │ </text>                                                                      │

02:09:28 #45800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45801 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:28 #45802 [Debug] > │ <text x="489" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45803 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45804 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45805 [Debug] > │ 0.5                                                                          │

02:09:28 #45806 [Debug] > │ </text>                                                                      │

02:09:28 #45807 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45808 [Debug] > │ points="489,425 489,430 "/>                                                  │

02:09:28 #45809 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45810 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45811 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45812 [Debug] > │ 0.6                                                                          │

02:09:28 #45813 [Debug] > │ </text>                                                                      │

02:09:28 #45814 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45815 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:09:28 #45816 [Debug] > │ <text x="565" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #45817 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45818 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45819 [Debug] > │ 0.7                                                                          │

02:09:28 #45820 [Debug] > │ </text>                                                                      │

02:09:28 #45821 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45822 [Debug] > │ points="565,425 565,430 "/>                                                  │

02:09:28 #45823 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45824 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:28 #45825 [Debug] > │ <text x="595" y="416" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45826 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45827 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45828 [Debug] > │ -0.0                                                                         │

02:09:28 #45829 [Debug] > │ </text>                                                                      │

02:09:28 #45830 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45831 [Debug] > │ points="585,416 590,416 "/>                                                  │

02:09:28 #45832 [Debug] > │ <text x="595" y="374" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45833 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45834 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45835 [Debug] > │ -0.0                                                                         │

02:09:28 #45836 [Debug] > │ </text>                                                                      │

02:09:28 #45837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45838 [Debug] > │ points="585,374 590,374 "/>                                                  │

02:09:28 #45839 [Debug] > │ <text x="595" y="333" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45842 [Debug] > │ -0.0                                                                         │

02:09:28 #45843 [Debug] > │ </text>                                                                      │

02:09:28 #45844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45845 [Debug] > │ points="585,333 590,333 "/>                                                  │

02:09:28 #45846 [Debug] > │ <text x="595" y="291" dy="0.5ex" text-anchor="start"                         │

02:09:28 #45847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45848 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45849 [Debug] > │ -0.0                                                                         │

02:09:28 #45850 [Debug] > │ </text>                                                                      │

02:09:28 #45851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45852 [Debug] > │ points="585,291 590,291 "/>                                                  │

02:09:28 #45853 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45854 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45855 [Debug] > │ 0.0                                                                          │

02:09:28 #45856 [Debug] > │ </text>                                                                      │

02:09:28 #45857 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45858 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:28 #45859 [Debug] > │ <text x="617" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45860 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45861 [Debug] > │ 0.0                                                                          │

02:09:28 #45862 [Debug] > │ </text>                                                                      │

02:09:28 #45863 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45864 [Debug] > │ points="585,208 590,208 "/>                                                  │

02:09:28 #45865 [Debug] > │ <text x="617" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45866 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45867 [Debug] > │ 0.0                                                                          │

02:09:28 #45868 [Debug] > │ </text>                                                                      │

02:09:28 #45869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45870 [Debug] > │ points="585,167 590,167 "/>                                                  │

02:09:28 #45871 [Debug] > │ <text x="617" y="125" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #45872 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45873 [Debug] > │ 0.0                                                                          │

02:09:28 #45874 [Debug] > │ </text>                                                                      │

02:09:28 #45875 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45876 [Debug] > │ points="585,125 590,125 "/>                                                  │

02:09:28 #45877 [Debug] > │ <text x="617" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #45878 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #45879 [Debug] > │ 0.0                                                                          │

02:09:28 #45880 [Debug] > │ </text>                                                                      │

02:09:28 #45881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #45882 [Debug] > │ points="585,84 590,84 "/>                                                    │

02:09:28 #45883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #45884 [Debug] > │ points="69,250 77,245 85,241 92,237 100,234 108,230 115,227 123,225 130,223  │

02:09:28 #45885 [Debug] > │ 138,222 146,221 153,221 161,221 169,222 176,224 184,226 191,228 199,231      │

02:09:28 #45886 [Debug] > │ 207,235 214,239 222,243 230,247 237,251 245,255 252,259 260,263 267,265      │

02:09:28 #45887 [Debug] > │ 274,265 280,262 284,252 286,235 285,210 283,181 282,155 282,137 283,124      │

02:09:28 #45888 [Debug] > │ 284,112 283,98 282,88 283,85 283,86 283,86 283,92 283,102 283,114 283,128    │

02:09:28 #45889 [Debug] > │ 283,146 283,166 283,187 283,210 283,234 283,258 283,282 283,304 283,327      │

02:09:28 #45890 [Debug] > │ 283,347 283,365 283,381 283,394 283,404 283,411 283,415 542,162 550,190      │

02:09:28 #45891 [Debug] > │ 569,263 565,250 "/>                                                          │

02:09:28 #45892 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:28 #45893 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:28 #45894 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:28 #45895 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45896 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45897 [Debug] > │ 53                                                                           │

02:09:28 #45898 [Debug] > │ </text>                                                                      │

02:09:28 #45899 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #45900 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:28 #45901 [Debug] > │ </svg>                                                                       │

02:09:28 #45902 [Debug] > │ </td></tr><tr><td>54</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:28 #45903 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:28 #45904 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:28 #45905 [Debug] > │ stroke="none"/>                                                              │

02:09:28 #45906 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:28 #45907 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #45908 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #45909 [Debug] > │ wave                                                                         │

02:09:28 #45910 [Debug] > │ </text>                                                                      │

02:09:28 #45911 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:28 #45912 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45913 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #45914 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45915 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:28 #45916 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45917 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:28 #45918 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45919 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:28 #45920 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #45921 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:28 #45922 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:28 #45923 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:28 #45924 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:28 #45925 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:28 #45926 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:28 #45927 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:28 #45928 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:28 #45929 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:28 #45930 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:28 #45931 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:28 #45932 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:28 #45933 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:28 #45934 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:28 #45935 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:28 #45936 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:28 #45937 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:28 #45938 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:28 #45939 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:28 #45940 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:28 #45941 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:28 #45942 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:28 #45943 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:28 #45944 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:28 #45945 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:28 #45946 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:28 #45947 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:28 #45948 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:28 #45949 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:28 #45950 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:28 #45951 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:28 #45952 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:28 #45953 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:28 #45954 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:28 #45955 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:28 #45956 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:28 #45957 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:28 #45958 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:28 #45959 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:28 #45960 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:28 #45961 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:28 #45962 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:28 #45963 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:28 #45964 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:28 #45965 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:28 #45966 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:28 #45967 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:28 #45968 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:28 #45969 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:28 #45970 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:28 #45971 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:28 #45972 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:28 #45973 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:28 #45974 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:28 #45975 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:28 #45976 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:28 #45977 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:28 #45978 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:28 #45979 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:28 #45980 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:28 #45981 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:28 #45982 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:28 #45983 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:28 #45984 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:28 #45985 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:28 #45986 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:28 #45987 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:28 #45988 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:28 #45989 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:28 #45990 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:28 #45991 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:28 #45992 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:28 #45993 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:28 #45994 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:28 #45995 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:28 #45996 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:28 #45997 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:28 #45998 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:28 #45999 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:28 #46000 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:28 #46001 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:28 #46002 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:28 #46003 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:28 #46004 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:28 #46005 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:28 #46006 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:28 #46007 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="426" y1="424"        │

02:09:28 #46008 [Debug] > │ x2="426" y2="75"/>                                                           │

02:09:28 #46009 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:28 #46010 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:28 #46011 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:28 #46012 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:28 #46013 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:28 #46014 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:28 #46015 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:28 #46016 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:28 #46017 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:28 #46018 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:28 #46019 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:28 #46020 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:28 #46021 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:28 #46022 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:28 #46023 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:28 #46024 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:28 #46025 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:28 #46026 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:28 #46027 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:28 #46028 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:28 #46029 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:28 #46030 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:28 #46031 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:28 #46032 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:28 #46033 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:28 #46034 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:28 #46035 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:28 #46036 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:28 #46037 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:28 #46038 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:28 #46039 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:28 #46040 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:28 #46041 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:28 #46042 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:28 #46043 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:28 #46044 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:28 #46045 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:28 #46046 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:28 #46047 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="420"         │

02:09:28 #46048 [Debug] > │ x2="584" y2="420"/>                                                          │

02:09:28 #46049 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="411"         │

02:09:28 #46050 [Debug] > │ x2="584" y2="411"/>                                                          │

02:09:28 #46051 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="402"         │

02:09:28 #46052 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:28 #46053 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="393"         │

02:09:28 #46054 [Debug] > │ x2="584" y2="393"/>                                                          │

02:09:28 #46055 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="384"         │

02:09:28 #46056 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:28 #46057 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="375"         │

02:09:28 #46058 [Debug] > │ x2="584" y2="375"/>                                                          │

02:09:28 #46059 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="366"         │

02:09:28 #46060 [Debug] > │ x2="584" y2="366"/>                                                          │

02:09:28 #46061 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="357"         │

02:09:28 #46062 [Debug] > │ x2="584" y2="357"/>                                                          │

02:09:28 #46063 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:28 #46064 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:28 #46065 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:28 #46066 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:28 #46067 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="330"         │

02:09:28 #46068 [Debug] > │ x2="584" y2="330"/>                                                          │

02:09:28 #46069 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:28 #46070 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:28 #46071 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="312"         │

02:09:28 #46072 [Debug] > │ x2="584" y2="312"/>                                                          │

02:09:28 #46073 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="304"         │

02:09:28 #46074 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:28 #46075 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="295"         │

02:09:28 #46076 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:28 #46077 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="286"         │

02:09:28 #46078 [Debug] > │ x2="584" y2="286"/>                                                          │

02:09:28 #46079 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="277"         │

02:09:28 #46080 [Debug] > │ x2="584" y2="277"/>                                                          │

02:09:28 #46081 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:28 #46082 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:28 #46083 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="259"         │

02:09:28 #46084 [Debug] > │ x2="584" y2="259"/>                                                          │

02:09:28 #46085 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:28 #46086 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #46087 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:09:28 #46088 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:28 #46089 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="232"         │

02:09:28 #46090 [Debug] > │ x2="584" y2="232"/>                                                          │

02:09:28 #46091 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="223"         │

02:09:28 #46092 [Debug] > │ x2="584" y2="223"/>                                                          │

02:09:28 #46093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:28 #46094 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:28 #46095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="205"         │

02:09:28 #46096 [Debug] > │ x2="584" y2="205"/>                                                          │

02:09:28 #46097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="196"         │

02:09:28 #46098 [Debug] > │ x2="584" y2="196"/>                                                          │

02:09:28 #46099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="187"         │

02:09:28 #46100 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:28 #46101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:09:28 #46102 [Debug] > │ x2="584" y2="178"/>                                                          │

02:09:28 #46103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="169"         │

02:09:28 #46104 [Debug] > │ x2="584" y2="169"/>                                                          │

02:09:28 #46105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="160"         │

02:09:28 #46106 [Debug] > │ x2="584" y2="160"/>                                                          │

02:09:28 #46107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:28 #46108 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:28 #46109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:28 #46110 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:28 #46111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:28 #46112 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:28 #46113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="125"         │

02:09:28 #46114 [Debug] > │ x2="584" y2="125"/>                                                          │

02:09:28 #46115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:09:28 #46116 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:28 #46117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="107"         │

02:09:28 #46118 [Debug] > │ x2="584" y2="107"/>                                                          │

02:09:28 #46119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:09:28 #46120 [Debug] > │ y2="98"/>                                                                    │

02:09:28 #46121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:09:28 #46122 [Debug] > │ y2="89"/>                                                                    │

02:09:28 #46123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="80" x2="584" │

02:09:28 #46124 [Debug] > │ y2="80"/>                                                                    │

02:09:28 #46125 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:28 #46126 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46127 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46128 [Debug] > │ position (m)                                                                 │

02:09:28 #46129 [Debug] > │ </text>                                                                      │

02:09:28 #46130 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:28 #46131 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46132 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:28 #46133 [Debug] > │ displacement (m)                                                             │

02:09:28 #46134 [Debug] > │ </text>                                                                      │

02:09:28 #46135 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:28 #46136 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46137 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46138 [Debug] > │ position (m)                                                                 │

02:09:28 #46139 [Debug] > │ </text>                                                                      │

02:09:28 #46140 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46141 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46142 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:28 #46143 [Debug] > │ displacement (m)                                                             │

02:09:28 #46144 [Debug] > │ </text>                                                                      │

02:09:28 #46145 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #46146 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46147 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:28 #46148 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:28 #46149 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:28 #46150 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:28 #46151 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:28 #46152 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:28 #46153 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:28 #46154 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:28 #46155 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:28 #46156 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:28 #46157 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:28 #46158 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:28 #46159 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:28 #46160 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:28 #46161 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:28 #46162 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:28 #46163 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:28 #46164 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:28 #46165 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:28 #46166 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:28 #46167 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:28 #46168 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:28 #46169 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:28 #46170 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:28 #46171 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:28 #46172 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:28 #46173 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="384"         │

02:09:28 #46174 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:28 #46175 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="339"         │

02:09:28 #46176 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:28 #46177 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="295"         │

02:09:28 #46178 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:28 #46179 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:28 #46180 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #46181 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="205"         │

02:09:28 #46182 [Debug] > │ x2="584" y2="205"/>                                                          │

02:09:28 #46183 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="160"         │

02:09:28 #46184 [Debug] > │ x2="584" y2="160"/>                                                          │

02:09:28 #46185 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="116"         │

02:09:28 #46186 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:28 #46187 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46188 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:28 #46189 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:28 #46190 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46191 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46192 [Debug] > │ 0.0                                                                          │

02:09:28 #46193 [Debug] > │ </text>                                                                      │

02:09:28 #46194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46195 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:28 #46196 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46197 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46198 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46199 [Debug] > │ 0.1                                                                          │

02:09:28 #46200 [Debug] > │ </text>                                                                      │

02:09:28 #46201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46202 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:28 #46203 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46204 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46205 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46206 [Debug] > │ 0.1                                                                          │

02:09:28 #46207 [Debug] > │ </text>                                                                      │

02:09:28 #46208 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46209 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:28 #46210 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46211 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46212 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46213 [Debug] > │ 0.2                                                                          │

02:09:28 #46214 [Debug] > │ </text>                                                                      │

02:09:28 #46215 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46216 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:28 #46217 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46218 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46219 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46220 [Debug] > │ 0.2                                                                          │

02:09:28 #46221 [Debug] > │ </text>                                                                      │

02:09:28 #46222 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46223 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:28 #46224 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46225 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46226 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46227 [Debug] > │ 0.2                                                                          │

02:09:28 #46228 [Debug] > │ </text>                                                                      │

02:09:28 #46229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46230 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:28 #46231 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46232 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46233 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46234 [Debug] > │ 0.3                                                                          │

02:09:28 #46235 [Debug] > │ </text>                                                                      │

02:09:28 #46236 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46237 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:28 #46238 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46239 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46240 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46241 [Debug] > │ 0.3                                                                          │

02:09:28 #46242 [Debug] > │ </text>                                                                      │

02:09:28 #46243 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46244 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:28 #46245 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46246 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46247 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46248 [Debug] > │ 0.4                                                                          │

02:09:28 #46249 [Debug] > │ </text>                                                                      │

02:09:28 #46250 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46251 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:28 #46252 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46253 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46254 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46255 [Debug] > │ 0.4                                                                          │

02:09:28 #46256 [Debug] > │ </text>                                                                      │

02:09:28 #46257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46258 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:28 #46259 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46260 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46261 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46262 [Debug] > │ 0.5                                                                          │

02:09:28 #46263 [Debug] > │ </text>                                                                      │

02:09:28 #46264 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46265 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:28 #46266 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46267 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46268 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46269 [Debug] > │ 0.5                                                                          │

02:09:28 #46270 [Debug] > │ </text>                                                                      │

02:09:28 #46271 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46272 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:28 #46273 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46274 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46275 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46276 [Debug] > │ 0.6                                                                          │

02:09:28 #46277 [Debug] > │ </text>                                                                      │

02:09:28 #46278 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46279 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:28 #46280 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:28 #46281 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46282 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46283 [Debug] > │ 0.7                                                                          │

02:09:28 #46284 [Debug] > │ </text>                                                                      │

02:09:28 #46285 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46286 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:28 #46287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46288 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:28 #46289 [Debug] > │ <text x="45" y="384" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46290 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46291 [Debug] > │ -0.0                                                                         │

02:09:28 #46292 [Debug] > │ </text>                                                                      │

02:09:28 #46293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46294 [Debug] > │ points="49,384 54,384 "/>                                                    │

02:09:28 #46295 [Debug] > │ <text x="45" y="339" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46296 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46297 [Debug] > │ -0.0                                                                         │

02:09:28 #46298 [Debug] > │ </text>                                                                      │

02:09:28 #46299 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46300 [Debug] > │ points="49,339 54,339 "/>                                                    │

02:09:28 #46301 [Debug] > │ <text x="45" y="295" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46302 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46303 [Debug] > │ -0.0                                                                         │

02:09:28 #46304 [Debug] > │ </text>                                                                      │

02:09:28 #46305 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46306 [Debug] > │ points="49,295 54,295 "/>                                                    │

02:09:28 #46307 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46308 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46309 [Debug] > │ 0.0                                                                          │

02:09:28 #46310 [Debug] > │ </text>                                                                      │

02:09:28 #46311 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46312 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:28 #46313 [Debug] > │ <text x="45" y="205" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46314 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46315 [Debug] > │ 0.0                                                                          │

02:09:28 #46316 [Debug] > │ </text>                                                                      │

02:09:28 #46317 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46318 [Debug] > │ points="49,205 54,205 "/>                                                    │

02:09:28 #46319 [Debug] > │ <text x="45" y="160" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46320 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46321 [Debug] > │ 0.0                                                                          │

02:09:28 #46322 [Debug] > │ </text>                                                                      │

02:09:28 #46323 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46324 [Debug] > │ points="49,160 54,160 "/>                                                    │

02:09:28 #46325 [Debug] > │ <text x="45" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:28 #46326 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46327 [Debug] > │ 0.0                                                                          │

02:09:28 #46328 [Debug] > │ </text>                                                                      │

02:09:28 #46329 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46330 [Debug] > │ points="49,116 54,116 "/>                                                    │

02:09:28 #46331 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46332 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:28 #46333 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:28 #46334 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46335 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46336 [Debug] > │ 0.0                                                                          │

02:09:28 #46337 [Debug] > │ </text>                                                                      │

02:09:28 #46338 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46339 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:28 #46340 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46341 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46342 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46343 [Debug] > │ 0.1                                                                          │

02:09:28 #46344 [Debug] > │ </text>                                                                      │

02:09:28 #46345 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46346 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:28 #46347 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46348 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46349 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46350 [Debug] > │ 0.1                                                                          │

02:09:28 #46351 [Debug] > │ </text>                                                                      │

02:09:28 #46352 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46353 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:28 #46354 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46355 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46356 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46357 [Debug] > │ 0.2                                                                          │

02:09:28 #46358 [Debug] > │ </text>                                                                      │

02:09:28 #46359 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46360 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:28 #46361 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46362 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46363 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46364 [Debug] > │ 0.2                                                                          │

02:09:28 #46365 [Debug] > │ </text>                                                                      │

02:09:28 #46366 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46367 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:28 #46368 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46369 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46370 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46371 [Debug] > │ 0.2                                                                          │

02:09:28 #46372 [Debug] > │ </text>                                                                      │

02:09:28 #46373 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46374 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:28 #46375 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46376 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46377 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46378 [Debug] > │ 0.3                                                                          │

02:09:28 #46379 [Debug] > │ </text>                                                                      │

02:09:28 #46380 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46381 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:28 #46382 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46383 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46384 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46385 [Debug] > │ 0.3                                                                          │

02:09:28 #46386 [Debug] > │ </text>                                                                      │

02:09:28 #46387 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46388 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:28 #46389 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46390 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46391 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46392 [Debug] > │ 0.4                                                                          │

02:09:28 #46393 [Debug] > │ </text>                                                                      │

02:09:28 #46394 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46395 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:28 #46396 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46397 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46398 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46399 [Debug] > │ 0.4                                                                          │

02:09:28 #46400 [Debug] > │ </text>                                                                      │

02:09:28 #46401 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46402 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:28 #46403 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46404 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46405 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46406 [Debug] > │ 0.5                                                                          │

02:09:28 #46407 [Debug] > │ </text>                                                                      │

02:09:28 #46408 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46409 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:28 #46410 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46411 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46412 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46413 [Debug] > │ 0.5                                                                          │

02:09:28 #46414 [Debug] > │ </text>                                                                      │

02:09:28 #46415 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46416 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:28 #46417 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46418 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46419 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46420 [Debug] > │ 0.6                                                                          │

02:09:28 #46421 [Debug] > │ </text>                                                                      │

02:09:28 #46422 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46423 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:28 #46424 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46425 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46426 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46427 [Debug] > │ 0.7                                                                          │

02:09:28 #46428 [Debug] > │ </text>                                                                      │

02:09:28 #46429 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46430 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:28 #46431 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46432 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:28 #46433 [Debug] > │ <text x="595" y="384" dy="0.5ex" text-anchor="start"                         │

02:09:28 #46434 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46435 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46436 [Debug] > │ -0.0                                                                         │

02:09:28 #46437 [Debug] > │ </text>                                                                      │

02:09:28 #46438 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46439 [Debug] > │ points="585,384 590,384 "/>                                                  │

02:09:28 #46440 [Debug] > │ <text x="595" y="339" dy="0.5ex" text-anchor="start"                         │

02:09:28 #46441 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46442 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46443 [Debug] > │ -0.0                                                                         │

02:09:28 #46444 [Debug] > │ </text>                                                                      │

02:09:28 #46445 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46446 [Debug] > │ points="585,339 590,339 "/>                                                  │

02:09:28 #46447 [Debug] > │ <text x="595" y="295" dy="0.5ex" text-anchor="start"                         │

02:09:28 #46448 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46449 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46450 [Debug] > │ -0.0                                                                         │

02:09:28 #46451 [Debug] > │ </text>                                                                      │

02:09:28 #46452 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46453 [Debug] > │ points="585,295 590,295 "/>                                                  │

02:09:28 #46454 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #46455 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46456 [Debug] > │ 0.0                                                                          │

02:09:28 #46457 [Debug] > │ </text>                                                                      │

02:09:28 #46458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46459 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:28 #46460 [Debug] > │ <text x="617" y="205" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #46461 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46462 [Debug] > │ 0.0                                                                          │

02:09:28 #46463 [Debug] > │ </text>                                                                      │

02:09:28 #46464 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46465 [Debug] > │ points="585,205 590,205 "/>                                                  │

02:09:28 #46466 [Debug] > │ <text x="617" y="160" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #46467 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46468 [Debug] > │ 0.0                                                                          │

02:09:28 #46469 [Debug] > │ </text>                                                                      │

02:09:28 #46470 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46471 [Debug] > │ points="585,160 590,160 "/>                                                  │

02:09:28 #46472 [Debug] > │ <text x="617" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:28 #46473 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:28 #46474 [Debug] > │ 0.0                                                                          │

02:09:28 #46475 [Debug] > │ </text>                                                                      │

02:09:28 #46476 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46477 [Debug] > │ points="585,116 590,116 "/>                                                  │

02:09:28 #46478 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #46479 [Debug] > │ points="69,250 77,242 85,235 92,228 100,222 107,216 115,210 123,206 130,203  │

02:09:28 #46480 [Debug] > │ 138,200 145,199 153,198 160,199 168,201 176,204 183,207 191,212 198,218      │

02:09:28 #46481 [Debug] > │ 206,224 213,230 221,238 229,245 236,252 244,260 251,266 258,272 265,276      │

02:09:28 #46482 [Debug] > │ 272,277 276,272 279,258 279,236 278,207 276,178 276,155 277,139 278,126      │

02:09:28 #46483 [Debug] > │ 277,111 276,97 276,89 277,87 277,85 277,86 277,93 277,102 277,113 277,129    │

02:09:28 #46484 [Debug] > │ 277,147 277,166 277,187 277,211 277,234 277,258 277,282 277,305 277,327      │

02:09:28 #46485 [Debug] > │ 277,347 277,365 277,381 277,394 277,404 277,411 277,415 539,156 547,186      │

02:09:28 #46486 [Debug] > │ 569,278 562,250 "/>                                                          │

02:09:28 #46487 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:28 #46488 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:28 #46489 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:28 #46490 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46491 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46492 [Debug] > │ 54                                                                           │

02:09:28 #46493 [Debug] > │ </text>                                                                      │

02:09:28 #46494 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:28 #46495 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:28 #46496 [Debug] > │ </svg>                                                                       │

02:09:28 #46497 [Debug] > │ </td></tr><tr><td>55</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:28 #46498 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:28 #46499 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:28 #46500 [Debug] > │ stroke="none"/>                                                              │

02:09:28 #46501 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:28 #46502 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46503 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46504 [Debug] > │ wave                                                                         │

02:09:28 #46505 [Debug] > │ </text>                                                                      │

02:09:28 #46506 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:28 #46507 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46508 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #46509 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46510 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:28 #46511 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46512 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:28 #46513 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46514 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:28 #46515 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46516 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:28 #46517 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:28 #46518 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:28 #46519 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:28 #46520 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:28 #46521 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:28 #46522 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:28 #46523 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:28 #46524 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:28 #46525 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:28 #46526 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:28 #46527 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:28 #46528 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:28 #46529 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:28 #46530 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:28 #46531 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:28 #46532 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:28 #46533 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:28 #46534 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:28 #46535 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:28 #46536 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:28 #46537 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:28 #46538 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:28 #46539 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:28 #46540 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:28 #46541 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:28 #46542 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:28 #46543 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:28 #46544 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:28 #46545 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:28 #46546 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:28 #46547 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:28 #46548 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:28 #46549 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:28 #46550 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:28 #46551 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:28 #46552 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:28 #46553 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:28 #46554 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="243" y1="424"        │

02:09:28 #46555 [Debug] > │ x2="243" y2="75"/>                                                           │

02:09:28 #46556 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:28 #46557 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:28 #46558 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:28 #46559 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:28 #46560 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:28 #46561 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:28 #46562 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:28 #46563 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:28 #46564 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:28 #46565 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:28 #46566 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:28 #46567 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:28 #46568 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:28 #46569 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:28 #46570 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:28 #46571 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:28 #46572 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:28 #46573 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:28 #46574 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:28 #46575 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:28 #46576 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:28 #46577 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:28 #46578 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:28 #46579 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:28 #46580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:28 #46581 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:28 #46582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:28 #46583 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:28 #46584 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:28 #46585 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:28 #46586 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:28 #46587 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:28 #46588 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:28 #46589 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:28 #46590 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:28 #46591 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:28 #46592 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:28 #46593 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:28 #46594 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:28 #46595 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:28 #46596 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:28 #46597 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:28 #46598 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:28 #46599 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:28 #46600 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="417" y1="424"        │

02:09:28 #46601 [Debug] > │ x2="417" y2="75"/>                                                           │

02:09:28 #46602 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:28 #46603 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:28 #46604 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:28 #46605 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:28 #46606 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:28 #46607 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:28 #46608 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:28 #46609 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:28 #46610 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:28 #46611 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:28 #46612 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:28 #46613 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:28 #46614 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="470" y1="424"        │

02:09:28 #46615 [Debug] > │ x2="470" y2="75"/>                                                           │

02:09:28 #46616 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:28 #46617 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:28 #46618 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:28 #46619 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:28 #46620 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:28 #46621 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:28 #46622 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:28 #46623 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:28 #46624 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:28 #46625 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:28 #46626 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:28 #46627 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:28 #46628 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:28 #46629 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:28 #46630 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:28 #46631 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:28 #46632 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:28 #46633 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:28 #46634 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:28 #46635 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:28 #46636 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:28 #46637 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:28 #46638 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:28 #46639 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:28 #46640 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:28 #46641 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:28 #46642 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="417"         │

02:09:28 #46643 [Debug] > │ x2="584" y2="417"/>                                                          │

02:09:28 #46644 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="407"         │

02:09:28 #46645 [Debug] > │ x2="584" y2="407"/>                                                          │

02:09:28 #46646 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="397"         │

02:09:28 #46647 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:28 #46648 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:28 #46649 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:28 #46650 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="377"         │

02:09:28 #46651 [Debug] > │ x2="584" y2="377"/>                                                          │

02:09:28 #46652 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="368"         │

02:09:28 #46653 [Debug] > │ x2="584" y2="368"/>                                                          │

02:09:28 #46654 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="358"         │

02:09:28 #46655 [Debug] > │ x2="584" y2="358"/>                                                          │

02:09:28 #46656 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:28 #46657 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:28 #46658 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="338"         │

02:09:28 #46659 [Debug] > │ x2="584" y2="338"/>                                                          │

02:09:28 #46660 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="329"         │

02:09:28 #46661 [Debug] > │ x2="584" y2="329"/>                                                          │

02:09:28 #46662 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="319"         │

02:09:28 #46663 [Debug] > │ x2="584" y2="319"/>                                                          │

02:09:28 #46664 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="309"         │

02:09:28 #46665 [Debug] > │ x2="584" y2="309"/>                                                          │

02:09:28 #46666 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="299"         │

02:09:28 #46667 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:28 #46668 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="290"         │

02:09:28 #46669 [Debug] > │ x2="584" y2="290"/>                                                          │

02:09:28 #46670 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="280"         │

02:09:28 #46671 [Debug] > │ x2="584" y2="280"/>                                                          │

02:09:28 #46672 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="270"         │

02:09:28 #46673 [Debug] > │ x2="584" y2="270"/>                                                          │

02:09:28 #46674 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:09:28 #46675 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:28 #46676 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:28 #46677 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #46678 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:09:28 #46679 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:28 #46680 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="231"         │

02:09:28 #46681 [Debug] > │ x2="584" y2="231"/>                                                          │

02:09:28 #46682 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="221"         │

02:09:28 #46683 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:28 #46684 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="211"         │

02:09:28 #46685 [Debug] > │ x2="584" y2="211"/>                                                          │

02:09:28 #46686 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="202"         │

02:09:28 #46687 [Debug] > │ x2="584" y2="202"/>                                                          │

02:09:28 #46688 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="192"         │

02:09:28 #46689 [Debug] > │ x2="584" y2="192"/>                                                          │

02:09:28 #46690 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="182"         │

02:09:28 #46691 [Debug] > │ x2="584" y2="182"/>                                                          │

02:09:28 #46692 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="172"         │

02:09:28 #46693 [Debug] > │ x2="584" y2="172"/>                                                          │

02:09:28 #46694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="162"         │

02:09:28 #46695 [Debug] > │ x2="584" y2="162"/>                                                          │

02:09:28 #46696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="153"         │

02:09:28 #46697 [Debug] > │ x2="584" y2="153"/>                                                          │

02:09:28 #46698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="143"         │

02:09:28 #46699 [Debug] > │ x2="584" y2="143"/>                                                          │

02:09:28 #46700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:28 #46701 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:28 #46702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="123"         │

02:09:28 #46703 [Debug] > │ x2="584" y2="123"/>                                                          │

02:09:28 #46704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:09:28 #46705 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:28 #46706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="104"         │

02:09:28 #46707 [Debug] > │ x2="584" y2="104"/>                                                          │

02:09:28 #46708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:28 #46709 [Debug] > │ y2="94"/>                                                                    │

02:09:28 #46710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:28 #46711 [Debug] > │ y2="84"/>                                                                    │

02:09:28 #46712 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:28 #46713 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46714 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46715 [Debug] > │ position (m)                                                                 │

02:09:28 #46716 [Debug] > │ </text>                                                                      │

02:09:28 #46717 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:28 #46718 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46719 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:28 #46720 [Debug] > │ displacement (m)                                                             │

02:09:28 #46721 [Debug] > │ </text>                                                                      │

02:09:28 #46722 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:28 #46723 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46724 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:28 #46725 [Debug] > │ position (m)                                                                 │

02:09:28 #46726 [Debug] > │ </text>                                                                      │

02:09:28 #46727 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:28 #46728 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:28 #46729 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:28 #46730 [Debug] > │ displacement (m)                                                             │

02:09:28 #46731 [Debug] > │ </text>                                                                      │

02:09:28 #46732 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:28 #46733 [Debug] > │ y2="75"/>                                                                    │

02:09:28 #46734 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:28 #46735 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:28 #46736 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:28 #46737 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:28 #46738 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:28 #46739 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:28 #46740 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:28 #46741 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:28 #46742 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:28 #46743 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:28 #46744 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:28 #46745 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:28 #46746 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:28 #46747 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:28 #46748 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:28 #46749 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:28 #46750 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:28 #46751 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:28 #46752 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:28 #46753 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:28 #46754 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:28 #46755 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:28 #46756 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:28 #46757 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:28 #46758 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:28 #46759 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:28 #46760 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="397"         │

02:09:28 #46761 [Debug] > │ x2="584" y2="397"/>                                                          │

02:09:28 #46762 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="348"         │

02:09:28 #46763 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:28 #46764 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="299"         │

02:09:28 #46765 [Debug] > │ x2="584" y2="299"/>                                                          │

02:09:28 #46766 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:28 #46767 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:28 #46768 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="202"         │

02:09:28 #46769 [Debug] > │ x2="584" y2="202"/>                                                          │

02:09:28 #46770 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="153"         │

02:09:28 #46771 [Debug] > │ x2="584" y2="153"/>                                                          │

02:09:28 #46772 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="104"         │

02:09:28 #46773 [Debug] > │ x2="584" y2="104"/>                                                          │

02:09:28 #46774 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:28 #46775 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:29 #46776 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:29 #46777 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46778 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46779 [Debug] > │ 0.0                                                                          │

02:09:29 #46780 [Debug] > │ </text>                                                                      │

02:09:29 #46781 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46782 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:29 #46783 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46784 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46785 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46786 [Debug] > │ 0.1                                                                          │

02:09:29 #46787 [Debug] > │ </text>                                                                      │

02:09:29 #46788 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46789 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:29 #46790 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46791 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46792 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46793 [Debug] > │ 0.1                                                                          │

02:09:29 #46794 [Debug] > │ </text>                                                                      │

02:09:29 #46795 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46796 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:29 #46797 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46798 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46799 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46800 [Debug] > │ 0.2                                                                          │

02:09:29 #46801 [Debug] > │ </text>                                                                      │

02:09:29 #46802 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46803 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:29 #46804 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46805 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46806 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46807 [Debug] > │ 0.2                                                                          │

02:09:29 #46808 [Debug] > │ </text>                                                                      │

02:09:29 #46809 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46810 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:29 #46811 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46812 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46813 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46814 [Debug] > │ 0.2                                                                          │

02:09:29 #46815 [Debug] > │ </text>                                                                      │

02:09:29 #46816 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46817 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:29 #46818 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46819 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46820 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46821 [Debug] > │ 0.3                                                                          │

02:09:29 #46822 [Debug] > │ </text>                                                                      │

02:09:29 #46823 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46824 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:29 #46825 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46826 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46827 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46828 [Debug] > │ 0.3                                                                          │

02:09:29 #46829 [Debug] > │ </text>                                                                      │

02:09:29 #46830 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46831 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:29 #46832 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46833 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46834 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46835 [Debug] > │ 0.4                                                                          │

02:09:29 #46836 [Debug] > │ </text>                                                                      │

02:09:29 #46837 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46838 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:29 #46839 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46840 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46841 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46842 [Debug] > │ 0.4                                                                          │

02:09:29 #46843 [Debug] > │ </text>                                                                      │

02:09:29 #46844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46845 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:29 #46846 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46847 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46848 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46849 [Debug] > │ 0.5                                                                          │

02:09:29 #46850 [Debug] > │ </text>                                                                      │

02:09:29 #46851 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46852 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:29 #46853 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46854 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46855 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46856 [Debug] > │ 0.5                                                                          │

02:09:29 #46857 [Debug] > │ </text>                                                                      │

02:09:29 #46858 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46859 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:29 #46860 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46861 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46862 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46863 [Debug] > │ 0.6                                                                          │

02:09:29 #46864 [Debug] > │ </text>                                                                      │

02:09:29 #46865 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46866 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:29 #46867 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #46868 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46869 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46870 [Debug] > │ 0.7                                                                          │

02:09:29 #46871 [Debug] > │ </text>                                                                      │

02:09:29 #46872 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46873 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:29 #46874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46875 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:29 #46876 [Debug] > │ <text x="45" y="397" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46877 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46878 [Debug] > │ -0.0                                                                         │

02:09:29 #46879 [Debug] > │ </text>                                                                      │

02:09:29 #46880 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46881 [Debug] > │ points="49,397 54,397 "/>                                                    │

02:09:29 #46882 [Debug] > │ <text x="45" y="348" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46883 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46884 [Debug] > │ -0.0                                                                         │

02:09:29 #46885 [Debug] > │ </text>                                                                      │

02:09:29 #46886 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46887 [Debug] > │ points="49,348 54,348 "/>                                                    │

02:09:29 #46888 [Debug] > │ <text x="45" y="299" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46889 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46890 [Debug] > │ -0.0                                                                         │

02:09:29 #46891 [Debug] > │ </text>                                                                      │

02:09:29 #46892 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46893 [Debug] > │ points="49,299 54,299 "/>                                                    │

02:09:29 #46894 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46895 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46896 [Debug] > │ 0.0                                                                          │

02:09:29 #46897 [Debug] > │ </text>                                                                      │

02:09:29 #46898 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46899 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:29 #46900 [Debug] > │ <text x="45" y="202" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46901 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46902 [Debug] > │ 0.0                                                                          │

02:09:29 #46903 [Debug] > │ </text>                                                                      │

02:09:29 #46904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46905 [Debug] > │ points="49,202 54,202 "/>                                                    │

02:09:29 #46906 [Debug] > │ <text x="45" y="153" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46907 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46908 [Debug] > │ 0.0                                                                          │

02:09:29 #46909 [Debug] > │ </text>                                                                      │

02:09:29 #46910 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46911 [Debug] > │ points="49,153 54,153 "/>                                                    │

02:09:29 #46912 [Debug] > │ <text x="45" y="104" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #46913 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #46914 [Debug] > │ 0.0                                                                          │

02:09:29 #46915 [Debug] > │ </text>                                                                      │

02:09:29 #46916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46917 [Debug] > │ points="49,104 54,104 "/>                                                    │

02:09:29 #46918 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46919 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:29 #46920 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:29 #46921 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46922 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46923 [Debug] > │ 0.0                                                                          │

02:09:29 #46924 [Debug] > │ </text>                                                                      │

02:09:29 #46925 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46926 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:29 #46927 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46928 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46929 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46930 [Debug] > │ 0.1                                                                          │

02:09:29 #46931 [Debug] > │ </text>                                                                      │

02:09:29 #46932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46933 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:29 #46934 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46935 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46936 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46937 [Debug] > │ 0.1                                                                          │

02:09:29 #46938 [Debug] > │ </text>                                                                      │

02:09:29 #46939 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46940 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:29 #46941 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46942 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46943 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46944 [Debug] > │ 0.2                                                                          │

02:09:29 #46945 [Debug] > │ </text>                                                                      │

02:09:29 #46946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46947 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:29 #46948 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46949 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46950 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46951 [Debug] > │ 0.2                                                                          │

02:09:29 #46952 [Debug] > │ </text>                                                                      │

02:09:29 #46953 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46954 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:29 #46955 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46956 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46957 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46958 [Debug] > │ 0.2                                                                          │

02:09:29 #46959 [Debug] > │ </text>                                                                      │

02:09:29 #46960 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46961 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:29 #46962 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46963 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46964 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46965 [Debug] > │ 0.3                                                                          │

02:09:29 #46966 [Debug] > │ </text>                                                                      │

02:09:29 #46967 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46968 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:29 #46969 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46972 [Debug] > │ 0.3                                                                          │

02:09:29 #46973 [Debug] > │ </text>                                                                      │

02:09:29 #46974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46975 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:29 #46976 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46979 [Debug] > │ 0.4                                                                          │

02:09:29 #46980 [Debug] > │ </text>                                                                      │

02:09:29 #46981 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46982 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:29 #46983 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46984 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46985 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46986 [Debug] > │ 0.4                                                                          │

02:09:29 #46987 [Debug] > │ </text>                                                                      │

02:09:29 #46988 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46989 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:29 #46990 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46991 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46992 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #46993 [Debug] > │ 0.5                                                                          │

02:09:29 #46994 [Debug] > │ </text>                                                                      │

02:09:29 #46995 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #46996 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:29 #46997 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #46998 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #46999 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47000 [Debug] > │ 0.5                                                                          │

02:09:29 #47001 [Debug] > │ </text>                                                                      │

02:09:29 #47002 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47003 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:29 #47004 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47005 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47006 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47007 [Debug] > │ 0.6                                                                          │

02:09:29 #47008 [Debug] > │ </text>                                                                      │

02:09:29 #47009 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47010 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:29 #47011 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47012 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47013 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47014 [Debug] > │ 0.7                                                                          │

02:09:29 #47015 [Debug] > │ </text>                                                                      │

02:09:29 #47016 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47017 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:29 #47018 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47019 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:29 #47020 [Debug] > │ <text x="595" y="397" dy="0.5ex" text-anchor="start"                         │

02:09:29 #47021 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47022 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47023 [Debug] > │ -0.0                                                                         │

02:09:29 #47024 [Debug] > │ </text>                                                                      │

02:09:29 #47025 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47026 [Debug] > │ points="585,397 590,397 "/>                                                  │

02:09:29 #47027 [Debug] > │ <text x="595" y="348" dy="0.5ex" text-anchor="start"                         │

02:09:29 #47028 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47029 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47030 [Debug] > │ -0.0                                                                         │

02:09:29 #47031 [Debug] > │ </text>                                                                      │

02:09:29 #47032 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47033 [Debug] > │ points="585,348 590,348 "/>                                                  │

02:09:29 #47034 [Debug] > │ <text x="595" y="299" dy="0.5ex" text-anchor="start"                         │

02:09:29 #47035 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47036 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47037 [Debug] > │ -0.0                                                                         │

02:09:29 #47038 [Debug] > │ </text>                                                                      │

02:09:29 #47039 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47040 [Debug] > │ points="585,299 590,299 "/>                                                  │

02:09:29 #47041 [Debug] > │ <text x="617" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47042 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47043 [Debug] > │ 0.0                                                                          │

02:09:29 #47044 [Debug] > │ </text>                                                                      │

02:09:29 #47045 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47046 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:29 #47047 [Debug] > │ <text x="617" y="202" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47048 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47049 [Debug] > │ 0.0                                                                          │

02:09:29 #47050 [Debug] > │ </text>                                                                      │

02:09:29 #47051 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47052 [Debug] > │ points="585,202 590,202 "/>                                                  │

02:09:29 #47053 [Debug] > │ <text x="617" y="153" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47054 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47055 [Debug] > │ 0.0                                                                          │

02:09:29 #47056 [Debug] > │ </text>                                                                      │

02:09:29 #47057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47058 [Debug] > │ points="585,153 590,153 "/>                                                  │

02:09:29 #47059 [Debug] > │ <text x="617" y="104" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47060 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47061 [Debug] > │ 0.0                                                                          │

02:09:29 #47062 [Debug] > │ </text>                                                                      │

02:09:29 #47063 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47064 [Debug] > │ points="585,104 590,104 "/>                                                  │

02:09:29 #47065 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #47066 [Debug] > │ points="69,250 77,239 85,228 92,218 100,208 107,199 115,191 122,184 130,179  │

02:09:29 #47067 [Debug] > │ 138,175 145,173 153,173 160,174 168,176 175,181 183,186 191,194 198,202      │

02:09:29 #47068 [Debug] > │ 206,211 213,221 221,232 228,243 236,254 243,265 251,275 258,284 264,289      │

02:09:29 #47069 [Debug] > │ 270,289 273,280 274,262 274,234 272,203 271,176 271,157 272,143 272,128      │

02:09:29 #47070 [Debug] > │ 272,110 271,97 272,92 272,89 272,85 272,87 272,95 272,103 272,114 272,130    │

02:09:29 #47071 [Debug] > │ 272,148 272,167 272,189 272,211 272,234 272,259 272,282 272,305 272,327      │

02:09:29 #47072 [Debug] > │ 272,347 272,365 272,381 272,394 272,404 272,411 272,415 539,147 546,181      │

02:09:29 #47073 [Debug] > │ 569,284 561,250 "/>                                                          │

02:09:29 #47074 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:29 #47075 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:29 #47076 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:29 #47077 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47078 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47079 [Debug] > │ 55                                                                           │

02:09:29 #47080 [Debug] > │ </text>                                                                      │

02:09:29 #47081 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #47082 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:29 #47083 [Debug] > │ </svg>                                                                       │

02:09:29 #47084 [Debug] > │ </td></tr><tr><td>56</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:29 #47085 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:29 #47086 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:29 #47087 [Debug] > │ stroke="none"/>                                                              │

02:09:29 #47088 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:29 #47089 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47090 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47091 [Debug] > │ wave                                                                         │

02:09:29 #47092 [Debug] > │ </text>                                                                      │

02:09:29 #47093 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:29 #47094 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47095 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #47096 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47097 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:29 #47098 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47099 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:29 #47100 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47101 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:29 #47102 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47103 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:29 #47104 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:29 #47105 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:29 #47106 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:29 #47107 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:29 #47108 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:29 #47109 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:29 #47110 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:29 #47111 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:29 #47112 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:29 #47113 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:29 #47114 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:29 #47115 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:29 #47116 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:29 #47117 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:29 #47118 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:29 #47119 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:29 #47120 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:29 #47121 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:29 #47122 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:29 #47123 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:29 #47124 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:29 #47125 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:29 #47126 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:29 #47127 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:29 #47128 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:29 #47129 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:29 #47130 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:29 #47131 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:29 #47132 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:29 #47133 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:29 #47134 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:29 #47135 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:29 #47136 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:29 #47137 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:29 #47138 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:29 #47139 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:29 #47140 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:29 #47141 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:29 #47142 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:29 #47143 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:29 #47144 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:29 #47145 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:29 #47146 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:29 #47147 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="267" y1="424"        │

02:09:29 #47148 [Debug] > │ x2="267" y2="75"/>                                                           │

02:09:29 #47149 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="275" y1="424"        │

02:09:29 #47150 [Debug] > │ x2="275" y2="75"/>                                                           │

02:09:29 #47151 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:29 #47152 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:29 #47153 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="290" y1="424"        │

02:09:29 #47154 [Debug] > │ x2="290" y2="75"/>                                                           │

02:09:29 #47155 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:29 #47156 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:29 #47157 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="305" y1="424"        │

02:09:29 #47158 [Debug] > │ x2="305" y2="75"/>                                                           │

02:09:29 #47159 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="313" y1="424"        │

02:09:29 #47160 [Debug] > │ x2="313" y2="75"/>                                                           │

02:09:29 #47161 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="320" y1="424"        │

02:09:29 #47162 [Debug] > │ x2="320" y2="75"/>                                                           │

02:09:29 #47163 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="328" y1="424"        │

02:09:29 #47164 [Debug] > │ x2="328" y2="75"/>                                                           │

02:09:29 #47165 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:29 #47166 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:29 #47167 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="343" y1="424"        │

02:09:29 #47168 [Debug] > │ x2="343" y2="75"/>                                                           │

02:09:29 #47169 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="351" y1="424"        │

02:09:29 #47170 [Debug] > │ x2="351" y2="75"/>                                                           │

02:09:29 #47171 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="358" y1="424"        │

02:09:29 #47172 [Debug] > │ x2="358" y2="75"/>                                                           │

02:09:29 #47173 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="366" y1="424"        │

02:09:29 #47174 [Debug] > │ x2="366" y2="75"/>                                                           │

02:09:29 #47175 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="373" y1="424"        │

02:09:29 #47176 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:29 #47177 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="381" y1="424"        │

02:09:29 #47178 [Debug] > │ x2="381" y2="75"/>                                                           │

02:09:29 #47179 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="389" y1="424"        │

02:09:29 #47180 [Debug] > │ x2="389" y2="75"/>                                                           │

02:09:29 #47181 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="396" y1="424"        │

02:09:29 #47182 [Debug] > │ x2="396" y2="75"/>                                                           │

02:09:29 #47183 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="404" y1="424"        │

02:09:29 #47184 [Debug] > │ x2="404" y2="75"/>                                                           │

02:09:29 #47185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="411" y1="424"        │

02:09:29 #47186 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:29 #47187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="419" y1="424"        │

02:09:29 #47188 [Debug] > │ x2="419" y2="75"/>                                                           │

02:09:29 #47189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="427" y1="424"        │

02:09:29 #47190 [Debug] > │ x2="427" y2="75"/>                                                           │

02:09:29 #47191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="434" y1="424"        │

02:09:29 #47192 [Debug] > │ x2="434" y2="75"/>                                                           │

02:09:29 #47193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="442" y1="424"        │

02:09:29 #47194 [Debug] > │ x2="442" y2="75"/>                                                           │

02:09:29 #47195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="449" y1="424"        │

02:09:29 #47196 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:29 #47197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="457" y1="424"        │

02:09:29 #47198 [Debug] > │ x2="457" y2="75"/>                                                           │

02:09:29 #47199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="465" y1="424"        │

02:09:29 #47200 [Debug] > │ x2="465" y2="75"/>                                                           │

02:09:29 #47201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="472" y1="424"        │

02:09:29 #47202 [Debug] > │ x2="472" y2="75"/>                                                           │

02:09:29 #47203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="480" y1="424"        │

02:09:29 #47204 [Debug] > │ x2="480" y2="75"/>                                                           │

02:09:29 #47205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="487" y1="424"        │

02:09:29 #47206 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:29 #47207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="495" y1="424"        │

02:09:29 #47208 [Debug] > │ x2="495" y2="75"/>                                                           │

02:09:29 #47209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="503" y1="424"        │

02:09:29 #47210 [Debug] > │ x2="503" y2="75"/>                                                           │

02:09:29 #47211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="510" y1="424"        │

02:09:29 #47212 [Debug] > │ x2="510" y2="75"/>                                                           │

02:09:29 #47213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="518" y1="424"        │

02:09:29 #47214 [Debug] > │ x2="518" y2="75"/>                                                           │

02:09:29 #47215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="525" y1="424"        │

02:09:29 #47216 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:29 #47217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="533" y1="424"        │

02:09:29 #47218 [Debug] > │ x2="533" y2="75"/>                                                           │

02:09:29 #47219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="541" y1="424"        │

02:09:29 #47220 [Debug] > │ x2="541" y2="75"/>                                                           │

02:09:29 #47221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="548" y1="424"        │

02:09:29 #47222 [Debug] > │ x2="548" y2="75"/>                                                           │

02:09:29 #47223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="556" y1="424"        │

02:09:29 #47224 [Debug] > │ x2="556" y2="75"/>                                                           │

02:09:29 #47225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="563" y1="424"        │

02:09:29 #47226 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:29 #47227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="571" y1="424"        │

02:09:29 #47228 [Debug] > │ x2="571" y2="75"/>                                                           │

02:09:29 #47229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="414"         │

02:09:29 #47230 [Debug] > │ x2="584" y2="414"/>                                                          │

02:09:29 #47231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="403"         │

02:09:29 #47232 [Debug] > │ x2="584" y2="403"/>                                                          │

02:09:29 #47233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:29 #47234 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:29 #47235 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="381"         │

02:09:29 #47236 [Debug] > │ x2="584" y2="381"/>                                                          │

02:09:29 #47237 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="371"         │

02:09:29 #47238 [Debug] > │ x2="584" y2="371"/>                                                          │

02:09:29 #47239 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="360"         │

02:09:29 #47240 [Debug] > │ x2="584" y2="360"/>                                                          │

02:09:29 #47241 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:29 #47242 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:29 #47243 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="338"         │

02:09:29 #47244 [Debug] > │ x2="584" y2="338"/>                                                          │

02:09:29 #47245 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="327"         │

02:09:29 #47246 [Debug] > │ x2="584" y2="327"/>                                                          │

02:09:29 #47247 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:29 #47248 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:29 #47249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="305"         │

02:09:29 #47250 [Debug] > │ x2="584" y2="305"/>                                                          │

02:09:29 #47251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="294"         │

02:09:29 #47252 [Debug] > │ x2="584" y2="294"/>                                                          │

02:09:29 #47253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="284"         │

02:09:29 #47254 [Debug] > │ x2="584" y2="284"/>                                                          │

02:09:29 #47255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:09:29 #47256 [Debug] > │ x2="584" y2="273"/>                                                          │

02:09:29 #47257 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="262"         │

02:09:29 #47258 [Debug] > │ x2="584" y2="262"/>                                                          │

02:09:29 #47259 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:29 #47260 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:29 #47261 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="240"         │

02:09:29 #47262 [Debug] > │ x2="584" y2="240"/>                                                          │

02:09:29 #47263 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:09:29 #47264 [Debug] > │ x2="584" y2="229"/>                                                          │

02:09:29 #47265 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="218"         │

02:09:29 #47266 [Debug] > │ x2="584" y2="218"/>                                                          │

02:09:29 #47267 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="207"         │

02:09:29 #47268 [Debug] > │ x2="584" y2="207"/>                                                          │

02:09:29 #47269 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="196"         │

02:09:29 #47270 [Debug] > │ x2="584" y2="196"/>                                                          │

02:09:29 #47271 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="186"         │

02:09:29 #47272 [Debug] > │ x2="584" y2="186"/>                                                          │

02:09:29 #47273 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:29 #47274 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:29 #47275 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="164"         │

02:09:29 #47276 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:29 #47277 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="153"         │

02:09:29 #47278 [Debug] > │ x2="584" y2="153"/>                                                          │

02:09:29 #47279 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="142"         │

02:09:29 #47280 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:29 #47281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="131"         │

02:09:29 #47282 [Debug] > │ x2="584" y2="131"/>                                                          │

02:09:29 #47283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="120"         │

02:09:29 #47284 [Debug] > │ x2="584" y2="120"/>                                                          │

02:09:29 #47285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="109"         │

02:09:29 #47286 [Debug] > │ x2="584" y2="109"/>                                                          │

02:09:29 #47287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="98" x2="584" │

02:09:29 #47288 [Debug] > │ y2="98"/>                                                                    │

02:09:29 #47289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="88" x2="584" │

02:09:29 #47290 [Debug] > │ y2="88"/>                                                                    │

02:09:29 #47291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="77" x2="584" │

02:09:29 #47292 [Debug] > │ y2="77"/>                                                                    │

02:09:29 #47293 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:29 #47294 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47295 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47296 [Debug] > │ position (m)                                                                 │

02:09:29 #47297 [Debug] > │ </text>                                                                      │

02:09:29 #47298 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:29 #47299 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47300 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:29 #47301 [Debug] > │ displacement (m)                                                             │

02:09:29 #47302 [Debug] > │ </text>                                                                      │

02:09:29 #47303 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:29 #47304 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47305 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47306 [Debug] > │ position (m)                                                                 │

02:09:29 #47307 [Debug] > │ </text>                                                                      │

02:09:29 #47308 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47309 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47310 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:29 #47311 [Debug] > │ displacement (m)                                                             │

02:09:29 #47312 [Debug] > │ </text>                                                                      │

02:09:29 #47313 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #47314 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47315 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:29 #47316 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:29 #47317 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:29 #47318 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:29 #47319 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:29 #47320 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:29 #47321 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:29 #47322 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:29 #47323 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:29 #47324 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:29 #47325 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:29 #47326 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:29 #47327 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:29 #47328 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:29 #47329 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="373" y1="424"        │

02:09:29 #47330 [Debug] > │ x2="373" y2="75"/>                                                           │

02:09:29 #47331 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="411" y1="424"        │

02:09:29 #47332 [Debug] > │ x2="411" y2="75"/>                                                           │

02:09:29 #47333 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="449" y1="424"        │

02:09:29 #47334 [Debug] > │ x2="449" y2="75"/>                                                           │

02:09:29 #47335 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="487" y1="424"        │

02:09:29 #47336 [Debug] > │ x2="487" y2="75"/>                                                           │

02:09:29 #47337 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="525" y1="424"        │

02:09:29 #47338 [Debug] > │ x2="525" y2="75"/>                                                           │

02:09:29 #47339 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="563" y1="424"        │

02:09:29 #47340 [Debug] > │ x2="563" y2="75"/>                                                           │

02:09:29 #47341 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="414"         │

02:09:29 #47342 [Debug] > │ x2="584" y2="414"/>                                                          │

02:09:29 #47343 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="360"         │

02:09:29 #47344 [Debug] > │ x2="584" y2="360"/>                                                          │

02:09:29 #47345 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="305"         │

02:09:29 #47346 [Debug] > │ x2="584" y2="305"/>                                                          │

02:09:29 #47347 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:29 #47348 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:29 #47349 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="196"         │

02:09:29 #47350 [Debug] > │ x2="584" y2="196"/>                                                          │

02:09:29 #47351 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="142"         │

02:09:29 #47352 [Debug] > │ x2="584" y2="142"/>                                                          │

02:09:29 #47353 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="88" x2="584" │

02:09:29 #47354 [Debug] > │ y2="88"/>                                                                    │

02:09:29 #47355 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47356 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:29 #47357 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:29 #47358 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47359 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47360 [Debug] > │ 0.0                                                                          │

02:09:29 #47361 [Debug] > │ </text>                                                                      │

02:09:29 #47362 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47363 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:29 #47364 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47365 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47366 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47367 [Debug] > │ 0.1                                                                          │

02:09:29 #47368 [Debug] > │ </text>                                                                      │

02:09:29 #47369 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47370 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:29 #47371 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47372 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47373 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47374 [Debug] > │ 0.1                                                                          │

02:09:29 #47375 [Debug] > │ </text>                                                                      │

02:09:29 #47376 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47377 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:29 #47378 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47379 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47380 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47381 [Debug] > │ 0.2                                                                          │

02:09:29 #47382 [Debug] > │ </text>                                                                      │

02:09:29 #47383 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47384 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:29 #47385 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47386 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47387 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47388 [Debug] > │ 0.2                                                                          │

02:09:29 #47389 [Debug] > │ </text>                                                                      │

02:09:29 #47390 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47391 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:29 #47392 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47393 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47394 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47395 [Debug] > │ 0.2                                                                          │

02:09:29 #47396 [Debug] > │ </text>                                                                      │

02:09:29 #47397 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47398 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:29 #47399 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47400 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47401 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47402 [Debug] > │ 0.3                                                                          │

02:09:29 #47403 [Debug] > │ </text>                                                                      │

02:09:29 #47404 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47405 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:29 #47406 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47407 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47408 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47409 [Debug] > │ 0.3                                                                          │

02:09:29 #47410 [Debug] > │ </text>                                                                      │

02:09:29 #47411 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47412 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:29 #47413 [Debug] > │ <text x="373" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47414 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47415 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47416 [Debug] > │ 0.4                                                                          │

02:09:29 #47417 [Debug] > │ </text>                                                                      │

02:09:29 #47418 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47419 [Debug] > │ points="373,69 373,74 "/>                                                    │

02:09:29 #47420 [Debug] > │ <text x="411" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47421 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47422 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47423 [Debug] > │ 0.4                                                                          │

02:09:29 #47424 [Debug] > │ </text>                                                                      │

02:09:29 #47425 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47426 [Debug] > │ points="411,69 411,74 "/>                                                    │

02:09:29 #47427 [Debug] > │ <text x="449" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47428 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47429 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47430 [Debug] > │ 0.5                                                                          │

02:09:29 #47431 [Debug] > │ </text>                                                                      │

02:09:29 #47432 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47433 [Debug] > │ points="449,69 449,74 "/>                                                    │

02:09:29 #47434 [Debug] > │ <text x="487" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47435 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47436 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47437 [Debug] > │ 0.5                                                                          │

02:09:29 #47438 [Debug] > │ </text>                                                                      │

02:09:29 #47439 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47440 [Debug] > │ points="487,69 487,74 "/>                                                    │

02:09:29 #47441 [Debug] > │ <text x="525" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47442 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47443 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47444 [Debug] > │ 0.6                                                                          │

02:09:29 #47445 [Debug] > │ </text>                                                                      │

02:09:29 #47446 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47447 [Debug] > │ points="525,69 525,74 "/>                                                    │

02:09:29 #47448 [Debug] > │ <text x="563" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47449 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47450 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47451 [Debug] > │ 0.7                                                                          │

02:09:29 #47452 [Debug] > │ </text>                                                                      │

02:09:29 #47453 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47454 [Debug] > │ points="563,69 563,74 "/>                                                    │

02:09:29 #47455 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47456 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:29 #47457 [Debug] > │ <text x="45" y="414" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47458 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47459 [Debug] > │ -0.0                                                                         │

02:09:29 #47460 [Debug] > │ </text>                                                                      │

02:09:29 #47461 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47462 [Debug] > │ points="49,414 54,414 "/>                                                    │

02:09:29 #47463 [Debug] > │ <text x="45" y="360" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47464 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47465 [Debug] > │ -0.0                                                                         │

02:09:29 #47466 [Debug] > │ </text>                                                                      │

02:09:29 #47467 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47468 [Debug] > │ points="49,360 54,360 "/>                                                    │

02:09:29 #47469 [Debug] > │ <text x="45" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47470 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47471 [Debug] > │ -0.0                                                                         │

02:09:29 #47472 [Debug] > │ </text>                                                                      │

02:09:29 #47473 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47474 [Debug] > │ points="49,305 54,305 "/>                                                    │

02:09:29 #47475 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47476 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47477 [Debug] > │ 0.0                                                                          │

02:09:29 #47478 [Debug] > │ </text>                                                                      │

02:09:29 #47479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47480 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:29 #47481 [Debug] > │ <text x="45" y="196" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47482 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47483 [Debug] > │ 0.0                                                                          │

02:09:29 #47484 [Debug] > │ </text>                                                                      │

02:09:29 #47485 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47486 [Debug] > │ points="49,196 54,196 "/>                                                    │

02:09:29 #47487 [Debug] > │ <text x="45" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47488 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47489 [Debug] > │ 0.0                                                                          │

02:09:29 #47490 [Debug] > │ </text>                                                                      │

02:09:29 #47491 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47492 [Debug] > │ points="49,142 54,142 "/>                                                    │

02:09:29 #47493 [Debug] > │ <text x="45" y="88" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:29 #47494 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47495 [Debug] > │ 0.0                                                                          │

02:09:29 #47496 [Debug] > │ </text>                                                                      │

02:09:29 #47497 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47498 [Debug] > │ points="49,88 54,88 "/>                                                      │

02:09:29 #47499 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47500 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:29 #47501 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:29 #47502 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47503 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47504 [Debug] > │ 0.0                                                                          │

02:09:29 #47505 [Debug] > │ </text>                                                                      │

02:09:29 #47506 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47507 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:29 #47508 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47509 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47510 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47511 [Debug] > │ 0.1                                                                          │

02:09:29 #47512 [Debug] > │ </text>                                                                      │

02:09:29 #47513 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47514 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:29 #47515 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47516 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47517 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47518 [Debug] > │ 0.1                                                                          │

02:09:29 #47519 [Debug] > │ </text>                                                                      │

02:09:29 #47520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47521 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:29 #47522 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47523 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47524 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47525 [Debug] > │ 0.2                                                                          │

02:09:29 #47526 [Debug] > │ </text>                                                                      │

02:09:29 #47527 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47528 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:29 #47529 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47530 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47531 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47532 [Debug] > │ 0.2                                                                          │

02:09:29 #47533 [Debug] > │ </text>                                                                      │

02:09:29 #47534 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47535 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:29 #47536 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47537 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47538 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47539 [Debug] > │ 0.2                                                                          │

02:09:29 #47540 [Debug] > │ </text>                                                                      │

02:09:29 #47541 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47542 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:29 #47543 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47544 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47545 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47546 [Debug] > │ 0.3                                                                          │

02:09:29 #47547 [Debug] > │ </text>                                                                      │

02:09:29 #47548 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47549 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:29 #47550 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47551 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47552 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47553 [Debug] > │ 0.3                                                                          │

02:09:29 #47554 [Debug] > │ </text>                                                                      │

02:09:29 #47555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47556 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:29 #47557 [Debug] > │ <text x="373" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47558 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47559 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47560 [Debug] > │ 0.4                                                                          │

02:09:29 #47561 [Debug] > │ </text>                                                                      │

02:09:29 #47562 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47563 [Debug] > │ points="373,425 373,430 "/>                                                  │

02:09:29 #47564 [Debug] > │ <text x="411" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47565 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47566 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47567 [Debug] > │ 0.4                                                                          │

02:09:29 #47568 [Debug] > │ </text>                                                                      │

02:09:29 #47569 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47570 [Debug] > │ points="411,425 411,430 "/>                                                  │

02:09:29 #47571 [Debug] > │ <text x="449" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47572 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47573 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47574 [Debug] > │ 0.5                                                                          │

02:09:29 #47575 [Debug] > │ </text>                                                                      │

02:09:29 #47576 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47577 [Debug] > │ points="449,425 449,430 "/>                                                  │

02:09:29 #47578 [Debug] > │ <text x="487" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47579 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47580 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47581 [Debug] > │ 0.5                                                                          │

02:09:29 #47582 [Debug] > │ </text>                                                                      │

02:09:29 #47583 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47584 [Debug] > │ points="487,425 487,430 "/>                                                  │

02:09:29 #47585 [Debug] > │ <text x="525" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47586 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47587 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47588 [Debug] > │ 0.6                                                                          │

02:09:29 #47589 [Debug] > │ </text>                                                                      │

02:09:29 #47590 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47591 [Debug] > │ points="525,425 525,430 "/>                                                  │

02:09:29 #47592 [Debug] > │ <text x="563" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47593 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47594 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47595 [Debug] > │ 0.7                                                                          │

02:09:29 #47596 [Debug] > │ </text>                                                                      │

02:09:29 #47597 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47598 [Debug] > │ points="563,425 563,430 "/>                                                  │

02:09:29 #47599 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47600 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:29 #47601 [Debug] > │ <text x="595" y="414" dy="0.5ex" text-anchor="start"                         │

02:09:29 #47602 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47603 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47604 [Debug] > │ -0.0                                                                         │

02:09:29 #47605 [Debug] > │ </text>                                                                      │

02:09:29 #47606 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47607 [Debug] > │ points="585,414 590,414 "/>                                                  │

02:09:29 #47608 [Debug] > │ <text x="595" y="360" dy="0.5ex" text-anchor="start"                         │

02:09:29 #47609 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47610 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47611 [Debug] > │ -0.0                                                                         │

02:09:29 #47612 [Debug] > │ </text>                                                                      │

02:09:29 #47613 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47614 [Debug] > │ points="585,360 590,360 "/>                                                  │

02:09:29 #47615 [Debug] > │ <text x="595" y="305" dy="0.5ex" text-anchor="start"                         │

02:09:29 #47616 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47617 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47618 [Debug] > │ -0.0                                                                         │

02:09:29 #47619 [Debug] > │ </text>                                                                      │

02:09:29 #47620 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47621 [Debug] > │ points="585,305 590,305 "/>                                                  │

02:09:29 #47622 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47623 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47624 [Debug] > │ 0.0                                                                          │

02:09:29 #47625 [Debug] > │ </text>                                                                      │

02:09:29 #47626 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47627 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:29 #47628 [Debug] > │ <text x="617" y="196" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47629 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47630 [Debug] > │ 0.0                                                                          │

02:09:29 #47631 [Debug] > │ </text>                                                                      │

02:09:29 #47632 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47633 [Debug] > │ points="585,196 590,196 "/>                                                  │

02:09:29 #47634 [Debug] > │ <text x="617" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #47635 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47636 [Debug] > │ 0.0                                                                          │

02:09:29 #47637 [Debug] > │ </text>                                                                      │

02:09:29 #47638 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47639 [Debug] > │ points="585,142 590,142 "/>                                                  │

02:09:29 #47640 [Debug] > │ <text x="617" y="88" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #47641 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #47642 [Debug] > │ 0.0                                                                          │

02:09:29 #47643 [Debug] > │ </text>                                                                      │

02:09:29 #47644 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47645 [Debug] > │ points="585,88 590,88 "/>                                                    │

02:09:29 #47646 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #47647 [Debug] > │ points="69,251 77,235 85,219 92,205 100,191 107,178 115,167 123,158 130,150  │

02:09:29 #47648 [Debug] > │ 138,145 145,142 153,141 161,143 168,146 176,152 183,160 191,170 199,182      │

02:09:29 #47649 [Debug] > │ 206,195 214,209 221,225 229,240 237,256 244,271 251,285 258,296 264,302      │

02:09:29 #47650 [Debug] > │ 268,300 270,286 270,262 268,230 267,199 267,176 268,161 269,146 268,127      │

02:09:29 #47651 [Debug] > │ 267,109 268,99 268,94 268,88 268,85 268,89 268,96 268,103 268,115 268,131    │

02:09:29 #47652 [Debug] > │ 268,148 268,168 268,189 268,211 268,235 268,259 268,282 268,305 268,327      │

02:09:29 #47653 [Debug] > │ 268,347 268,365 268,381 268,394 268,404 268,411 268,415 541,136 548,173      │

02:09:29 #47654 [Debug] > │ 569,278 563,251 "/>                                                          │

02:09:29 #47655 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:29 #47656 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:29 #47657 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:29 #47658 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47659 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47660 [Debug] > │ 56                                                                           │

02:09:29 #47661 [Debug] > │ </text>                                                                      │

02:09:29 #47662 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #47663 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:29 #47664 [Debug] > │ </svg>                                                                       │

02:09:29 #47665 [Debug] > │ </td></tr><tr><td>57</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:29 #47666 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:29 #47667 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:29 #47668 [Debug] > │ stroke="none"/>                                                              │

02:09:29 #47669 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:29 #47670 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47671 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47672 [Debug] > │ wave                                                                         │

02:09:29 #47673 [Debug] > │ </text>                                                                      │

02:09:29 #47674 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:29 #47675 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47676 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #47677 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47678 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:29 #47679 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47680 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:29 #47681 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47682 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:29 #47683 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47684 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:29 #47685 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:29 #47686 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:29 #47687 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #47688 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:29 #47689 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:29 #47690 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:29 #47691 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:29 #47692 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:29 #47693 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:29 #47694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:29 #47695 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:29 #47696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:29 #47697 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #47698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:29 #47699 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:29 #47700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:29 #47701 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:29 #47702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:29 #47703 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:29 #47704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:29 #47705 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:29 #47706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:29 #47707 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:29 #47708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:29 #47709 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:29 #47710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:29 #47711 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:29 #47712 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:29 #47713 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:29 #47714 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:29 #47715 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:29 #47716 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:29 #47717 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #47718 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:29 #47719 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:29 #47720 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:29 #47721 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:29 #47722 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:29 #47723 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:29 #47724 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="253" y1="424"        │

02:09:29 #47725 [Debug] > │ x2="253" y2="75"/>                                                           │

02:09:29 #47726 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:29 #47727 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #47728 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:29 #47729 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:29 #47730 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="276" y1="424"        │

02:09:29 #47731 [Debug] > │ x2="276" y2="75"/>                                                           │

02:09:29 #47732 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:29 #47733 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:29 #47734 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:29 #47735 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:29 #47736 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="299" y1="424"        │

02:09:29 #47737 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:29 #47738 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:29 #47739 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:29 #47740 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:29 #47741 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:29 #47742 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="322" y1="424"        │

02:09:29 #47743 [Debug] > │ x2="322" y2="75"/>                                                           │

02:09:29 #47744 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="330" y1="424"        │

02:09:29 #47745 [Debug] > │ x2="330" y2="75"/>                                                           │

02:09:29 #47746 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:29 #47747 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #47748 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="345" y1="424"        │

02:09:29 #47749 [Debug] > │ x2="345" y2="75"/>                                                           │

02:09:29 #47750 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="353" y1="424"        │

02:09:29 #47751 [Debug] > │ x2="353" y2="75"/>                                                           │

02:09:29 #47752 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:29 #47753 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:29 #47754 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="368" y1="424"        │

02:09:29 #47755 [Debug] > │ x2="368" y2="75"/>                                                           │

02:09:29 #47756 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="376" y1="424"        │

02:09:29 #47757 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:29 #47758 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:29 #47759 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:29 #47760 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="391" y1="424"        │

02:09:29 #47761 [Debug] > │ x2="391" y2="75"/>                                                           │

02:09:29 #47762 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="399" y1="424"        │

02:09:29 #47763 [Debug] > │ x2="399" y2="75"/>                                                           │

02:09:29 #47764 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:29 #47765 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:29 #47766 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="414" y1="424"        │

02:09:29 #47767 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:29 #47768 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="422" y1="424"        │

02:09:29 #47769 [Debug] > │ x2="422" y2="75"/>                                                           │

02:09:29 #47770 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:29 #47771 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:29 #47772 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="437" y1="424"        │

02:09:29 #47773 [Debug] > │ x2="437" y2="75"/>                                                           │

02:09:29 #47774 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="445" y1="424"        │

02:09:29 #47775 [Debug] > │ x2="445" y2="75"/>                                                           │

02:09:29 #47776 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:29 #47777 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #47778 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="460" y1="424"        │

02:09:29 #47779 [Debug] > │ x2="460" y2="75"/>                                                           │

02:09:29 #47780 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="468" y1="424"        │

02:09:29 #47781 [Debug] > │ x2="468" y2="75"/>                                                           │

02:09:29 #47782 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:29 #47783 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:29 #47784 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="483" y1="424"        │

02:09:29 #47785 [Debug] > │ x2="483" y2="75"/>                                                           │

02:09:29 #47786 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="491" y1="424"        │

02:09:29 #47787 [Debug] > │ x2="491" y2="75"/>                                                           │

02:09:29 #47788 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:29 #47789 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:29 #47790 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="506" y1="424"        │

02:09:29 #47791 [Debug] > │ x2="506" y2="75"/>                                                           │

02:09:29 #47792 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="514" y1="424"        │

02:09:29 #47793 [Debug] > │ x2="514" y2="75"/>                                                           │

02:09:29 #47794 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:29 #47795 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:29 #47796 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="529" y1="424"        │

02:09:29 #47797 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:29 #47798 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="537" y1="424"        │

02:09:29 #47799 [Debug] > │ x2="537" y2="75"/>                                                           │

02:09:29 #47800 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="544" y1="424"        │

02:09:29 #47801 [Debug] > │ x2="544" y2="75"/>                                                           │

02:09:29 #47802 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="552" y1="424"        │

02:09:29 #47803 [Debug] > │ x2="552" y2="75"/>                                                           │

02:09:29 #47804 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="560" y1="424"        │

02:09:29 #47805 [Debug] > │ x2="560" y2="75"/>                                                           │

02:09:29 #47806 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="567" y1="424"        │

02:09:29 #47807 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:29 #47808 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="575" y1="424"        │

02:09:29 #47809 [Debug] > │ x2="575" y2="75"/>                                                           │

02:09:29 #47810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="413"         │

02:09:29 #47811 [Debug] > │ x2="584" y2="413"/>                                                          │

02:09:29 #47812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="400"         │

02:09:29 #47813 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:29 #47814 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="388"         │

02:09:29 #47815 [Debug] > │ x2="584" y2="388"/>                                                          │

02:09:29 #47816 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="375"         │

02:09:29 #47817 [Debug] > │ x2="584" y2="375"/>                                                          │

02:09:29 #47818 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:09:29 #47819 [Debug] > │ x2="584" y2="363"/>                                                          │

02:09:29 #47820 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:29 #47821 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:29 #47822 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="338"         │

02:09:29 #47823 [Debug] > │ x2="584" y2="338"/>                                                          │

02:09:29 #47824 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="325"         │

02:09:29 #47825 [Debug] > │ x2="584" y2="325"/>                                                          │

02:09:29 #47826 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="313"         │

02:09:29 #47827 [Debug] > │ x2="584" y2="313"/>                                                          │

02:09:29 #47828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="300"         │

02:09:29 #47829 [Debug] > │ x2="584" y2="300"/>                                                          │

02:09:29 #47830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="288"         │

02:09:29 #47831 [Debug] > │ x2="584" y2="288"/>                                                          │

02:09:29 #47832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="276"         │

02:09:29 #47833 [Debug] > │ x2="584" y2="276"/>                                                          │

02:09:29 #47834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="263"         │

02:09:29 #47835 [Debug] > │ x2="584" y2="263"/>                                                          │

02:09:29 #47836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="251"         │

02:09:29 #47837 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:29 #47838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="238"         │

02:09:29 #47839 [Debug] > │ x2="584" y2="238"/>                                                          │

02:09:29 #47840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="226"         │

02:09:29 #47841 [Debug] > │ x2="584" y2="226"/>                                                          │

02:09:29 #47842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="213"         │

02:09:29 #47843 [Debug] > │ x2="584" y2="213"/>                                                          │

02:09:29 #47844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:29 #47845 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:29 #47846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="188"         │

02:09:29 #47847 [Debug] > │ x2="584" y2="188"/>                                                          │

02:09:29 #47848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="176"         │

02:09:29 #47849 [Debug] > │ x2="584" y2="176"/>                                                          │

02:09:29 #47850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="164"         │

02:09:29 #47851 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:29 #47852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:29 #47853 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:29 #47854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="139"         │

02:09:29 #47855 [Debug] > │ x2="584" y2="139"/>                                                          │

02:09:29 #47856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="126"         │

02:09:29 #47857 [Debug] > │ x2="584" y2="126"/>                                                          │

02:09:29 #47858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="114"         │

02:09:29 #47859 [Debug] > │ x2="584" y2="114"/>                                                          │

02:09:29 #47860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:29 #47861 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:29 #47862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="89" x2="584" │

02:09:29 #47863 [Debug] > │ y2="89"/>                                                                    │

02:09:29 #47864 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="76" x2="584" │

02:09:29 #47865 [Debug] > │ y2="76"/>                                                                    │

02:09:29 #47866 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:29 #47867 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47868 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47869 [Debug] > │ position (m)                                                                 │

02:09:29 #47870 [Debug] > │ </text>                                                                      │

02:09:29 #47871 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:29 #47872 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47873 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:29 #47874 [Debug] > │ displacement (m)                                                             │

02:09:29 #47875 [Debug] > │ </text>                                                                      │

02:09:29 #47876 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:29 #47877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47879 [Debug] > │ position (m)                                                                 │

02:09:29 #47880 [Debug] > │ </text>                                                                      │

02:09:29 #47881 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:29 #47882 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47883 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:29 #47884 [Debug] > │ displacement (m)                                                             │

02:09:29 #47885 [Debug] > │ </text>                                                                      │

02:09:29 #47886 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #47887 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #47888 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:29 #47889 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #47890 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:29 #47891 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #47892 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:29 #47893 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:29 #47894 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:29 #47895 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #47896 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:29 #47897 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #47898 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="299" y1="424"        │

02:09:29 #47899 [Debug] > │ x2="299" y2="75"/>                                                           │

02:09:29 #47900 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:29 #47901 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #47902 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="376" y1="424"        │

02:09:29 #47903 [Debug] > │ x2="376" y2="75"/>                                                           │

02:09:29 #47904 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="414" y1="424"        │

02:09:29 #47905 [Debug] > │ x2="414" y2="75"/>                                                           │

02:09:29 #47906 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:29 #47907 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #47908 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="491" y1="424"        │

02:09:29 #47909 [Debug] > │ x2="491" y2="75"/>                                                           │

02:09:29 #47910 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="529" y1="424"        │

02:09:29 #47911 [Debug] > │ x2="529" y2="75"/>                                                           │

02:09:29 #47912 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="567" y1="424"        │

02:09:29 #47913 [Debug] > │ x2="567" y2="75"/>                                                           │

02:09:29 #47914 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="375"         │

02:09:29 #47915 [Debug] > │ x2="584" y2="375"/>                                                          │

02:09:29 #47916 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="313"         │

02:09:29 #47917 [Debug] > │ x2="584" y2="313"/>                                                          │

02:09:29 #47918 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="251"         │

02:09:29 #47919 [Debug] > │ x2="584" y2="251"/>                                                          │

02:09:29 #47920 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="188"         │

02:09:29 #47921 [Debug] > │ x2="584" y2="188"/>                                                          │

02:09:29 #47922 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="126"         │

02:09:29 #47923 [Debug] > │ x2="584" y2="126"/>                                                          │

02:09:29 #47924 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47925 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:29 #47926 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:29 #47927 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47928 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47929 [Debug] > │ 0.0                                                                          │

02:09:29 #47930 [Debug] > │ </text>                                                                      │

02:09:29 #47931 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47932 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:29 #47933 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47934 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47935 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47936 [Debug] > │ 0.1                                                                          │

02:09:29 #47937 [Debug] > │ </text>                                                                      │

02:09:29 #47938 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47939 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:29 #47940 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47941 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47942 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47943 [Debug] > │ 0.1                                                                          │

02:09:29 #47944 [Debug] > │ </text>                                                                      │

02:09:29 #47945 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47946 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:29 #47947 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47948 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47949 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47950 [Debug] > │ 0.2                                                                          │

02:09:29 #47951 [Debug] > │ </text>                                                                      │

02:09:29 #47952 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47953 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:29 #47954 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47955 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47956 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47957 [Debug] > │ 0.2                                                                          │

02:09:29 #47958 [Debug] > │ </text>                                                                      │

02:09:29 #47959 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47960 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:29 #47961 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47962 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47963 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47964 [Debug] > │ 0.2                                                                          │

02:09:29 #47965 [Debug] > │ </text>                                                                      │

02:09:29 #47966 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47967 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:29 #47968 [Debug] > │ <text x="299" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47969 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47970 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47971 [Debug] > │ 0.3                                                                          │

02:09:29 #47972 [Debug] > │ </text>                                                                      │

02:09:29 #47973 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47974 [Debug] > │ points="299,69 299,74 "/>                                                    │

02:09:29 #47975 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47976 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47977 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47978 [Debug] > │ 0.3                                                                          │

02:09:29 #47979 [Debug] > │ </text>                                                                      │

02:09:29 #47980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47981 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:29 #47982 [Debug] > │ <text x="376" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47983 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47984 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47985 [Debug] > │ 0.4                                                                          │

02:09:29 #47986 [Debug] > │ </text>                                                                      │

02:09:29 #47987 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47988 [Debug] > │ points="376,69 376,74 "/>                                                    │

02:09:29 #47989 [Debug] > │ <text x="414" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47990 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47991 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47992 [Debug] > │ 0.4                                                                          │

02:09:29 #47993 [Debug] > │ </text>                                                                      │

02:09:29 #47994 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #47995 [Debug] > │ points="414,69 414,74 "/>                                                    │

02:09:29 #47996 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #47997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #47998 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #47999 [Debug] > │ 0.5                                                                          │

02:09:29 #48000 [Debug] > │ </text>                                                                      │

02:09:29 #48001 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48002 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:29 #48003 [Debug] > │ <text x="491" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48004 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48005 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48006 [Debug] > │ 0.5                                                                          │

02:09:29 #48007 [Debug] > │ </text>                                                                      │

02:09:29 #48008 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48009 [Debug] > │ points="491,69 491,74 "/>                                                    │

02:09:29 #48010 [Debug] > │ <text x="529" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48011 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48012 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48013 [Debug] > │ 0.6                                                                          │

02:09:29 #48014 [Debug] > │ </text>                                                                      │

02:09:29 #48015 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48016 [Debug] > │ points="529,69 529,74 "/>                                                    │

02:09:29 #48017 [Debug] > │ <text x="567" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48018 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48019 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48020 [Debug] > │ 0.7                                                                          │

02:09:29 #48021 [Debug] > │ </text>                                                                      │

02:09:29 #48022 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48023 [Debug] > │ points="567,69 567,74 "/>                                                    │

02:09:29 #48024 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48025 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:29 #48026 [Debug] > │ <text x="45" y="375" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48027 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48028 [Debug] > │ -0.0                                                                         │

02:09:29 #48029 [Debug] > │ </text>                                                                      │

02:09:29 #48030 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48031 [Debug] > │ points="49,375 54,375 "/>                                                    │

02:09:29 #48032 [Debug] > │ <text x="45" y="313" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48033 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48034 [Debug] > │ -0.0                                                                         │

02:09:29 #48035 [Debug] > │ </text>                                                                      │

02:09:29 #48036 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48037 [Debug] > │ points="49,313 54,313 "/>                                                    │

02:09:29 #48038 [Debug] > │ <text x="45" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48039 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48040 [Debug] > │ 0.0                                                                          │

02:09:29 #48041 [Debug] > │ </text>                                                                      │

02:09:29 #48042 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48043 [Debug] > │ points="49,251 54,251 "/>                                                    │

02:09:29 #48044 [Debug] > │ <text x="45" y="188" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48045 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48046 [Debug] > │ 0.0                                                                          │

02:09:29 #48047 [Debug] > │ </text>                                                                      │

02:09:29 #48048 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48049 [Debug] > │ points="49,188 54,188 "/>                                                    │

02:09:29 #48050 [Debug] > │ <text x="45" y="126" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48051 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48052 [Debug] > │ 0.0                                                                          │

02:09:29 #48053 [Debug] > │ </text>                                                                      │

02:09:29 #48054 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48055 [Debug] > │ points="49,126 54,126 "/>                                                    │

02:09:29 #48056 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48057 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:29 #48058 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:29 #48059 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48060 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48061 [Debug] > │ 0.0                                                                          │

02:09:29 #48062 [Debug] > │ </text>                                                                      │

02:09:29 #48063 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48064 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:29 #48065 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48066 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48067 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48068 [Debug] > │ 0.1                                                                          │

02:09:29 #48069 [Debug] > │ </text>                                                                      │

02:09:29 #48070 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48071 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:29 #48072 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48073 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48074 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48075 [Debug] > │ 0.1                                                                          │

02:09:29 #48076 [Debug] > │ </text>                                                                      │

02:09:29 #48077 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48078 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:29 #48079 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48080 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48081 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48082 [Debug] > │ 0.2                                                                          │

02:09:29 #48083 [Debug] > │ </text>                                                                      │

02:09:29 #48084 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48085 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:29 #48086 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48087 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48088 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48089 [Debug] > │ 0.2                                                                          │

02:09:29 #48090 [Debug] > │ </text>                                                                      │

02:09:29 #48091 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48092 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:29 #48093 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48094 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48095 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48096 [Debug] > │ 0.2                                                                          │

02:09:29 #48097 [Debug] > │ </text>                                                                      │

02:09:29 #48098 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48099 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:29 #48100 [Debug] > │ <text x="299" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48101 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48102 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48103 [Debug] > │ 0.3                                                                          │

02:09:29 #48104 [Debug] > │ </text>                                                                      │

02:09:29 #48105 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48106 [Debug] > │ points="299,425 299,430 "/>                                                  │

02:09:29 #48107 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48108 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48109 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48110 [Debug] > │ 0.3                                                                          │

02:09:29 #48111 [Debug] > │ </text>                                                                      │

02:09:29 #48112 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48113 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:29 #48114 [Debug] > │ <text x="376" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48115 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48116 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48117 [Debug] > │ 0.4                                                                          │

02:09:29 #48118 [Debug] > │ </text>                                                                      │

02:09:29 #48119 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48120 [Debug] > │ points="376,425 376,430 "/>                                                  │

02:09:29 #48121 [Debug] > │ <text x="414" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48122 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48123 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48124 [Debug] > │ 0.4                                                                          │

02:09:29 #48125 [Debug] > │ </text>                                                                      │

02:09:29 #48126 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48127 [Debug] > │ points="414,425 414,430 "/>                                                  │

02:09:29 #48128 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48129 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48130 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48131 [Debug] > │ 0.5                                                                          │

02:09:29 #48132 [Debug] > │ </text>                                                                      │

02:09:29 #48133 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48134 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:29 #48135 [Debug] > │ <text x="491" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48136 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48137 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48138 [Debug] > │ 0.5                                                                          │

02:09:29 #48139 [Debug] > │ </text>                                                                      │

02:09:29 #48140 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48141 [Debug] > │ points="491,425 491,430 "/>                                                  │

02:09:29 #48142 [Debug] > │ <text x="529" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48143 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48144 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48145 [Debug] > │ 0.6                                                                          │

02:09:29 #48146 [Debug] > │ </text>                                                                      │

02:09:29 #48147 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48148 [Debug] > │ points="529,425 529,430 "/>                                                  │

02:09:29 #48149 [Debug] > │ <text x="567" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48150 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48151 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48152 [Debug] > │ 0.7                                                                          │

02:09:29 #48153 [Debug] > │ </text>                                                                      │

02:09:29 #48154 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48155 [Debug] > │ points="567,425 567,430 "/>                                                  │

02:09:29 #48156 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48157 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:29 #48158 [Debug] > │ <text x="595" y="375" dy="0.5ex" text-anchor="start"                         │

02:09:29 #48159 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48160 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48161 [Debug] > │ -0.0                                                                         │

02:09:29 #48162 [Debug] > │ </text>                                                                      │

02:09:29 #48163 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48164 [Debug] > │ points="585,375 590,375 "/>                                                  │

02:09:29 #48165 [Debug] > │ <text x="595" y="313" dy="0.5ex" text-anchor="start"                         │

02:09:29 #48166 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48167 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48168 [Debug] > │ -0.0                                                                         │

02:09:29 #48169 [Debug] > │ </text>                                                                      │

02:09:29 #48170 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48171 [Debug] > │ points="585,313 590,313 "/>                                                  │

02:09:29 #48172 [Debug] > │ <text x="617" y="251" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48173 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48174 [Debug] > │ 0.0                                                                          │

02:09:29 #48175 [Debug] > │ </text>                                                                      │

02:09:29 #48176 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48177 [Debug] > │ points="585,251 590,251 "/>                                                  │

02:09:29 #48178 [Debug] > │ <text x="617" y="188" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48179 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48180 [Debug] > │ 0.0                                                                          │

02:09:29 #48181 [Debug] > │ </text>                                                                      │

02:09:29 #48182 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48183 [Debug] > │ points="585,188 590,188 "/>                                                  │

02:09:29 #48184 [Debug] > │ <text x="617" y="126" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48185 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48186 [Debug] > │ 0.0                                                                          │

02:09:29 #48187 [Debug] > │ </text>                                                                      │

02:09:29 #48188 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48189 [Debug] > │ points="585,126 590,126 "/>                                                  │

02:09:29 #48190 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #48191 [Debug] > │ points="69,251 77,229 85,207 92,187 100,168 108,150 115,135 123,122 131,112  │

02:09:29 #48192 [Debug] > │ 138,105 146,101 154,100 161,102 169,107 177,115 184,126 192,140 200,156      │

02:09:29 #48193 [Debug] > │ 207,174 215,194 223,214 230,236 238,257 245,278 252,296 259,309 264,315      │

02:09:29 #48194 [Debug] > │ 267,308 267,289 266,258 264,225 263,197 264,179 265,164 265,145 264,124      │

02:09:29 #48195 [Debug] > │ 264,108 265,101 265,94 264,87 264,85 265,90 265,95 264,103 265,116 265,131   │

02:09:29 #48196 [Debug] > │ 265,147 265,168 265,189 265,211 265,235 265,258 265,282 265,305 265,327      │

02:09:29 #48197 [Debug] > │ 265,347 265,365 265,381 265,394 265,404 265,411 265,415 544,120 552,162      │

02:09:29 #48198 [Debug] > │ 569,257 567,251 "/>                                                          │

02:09:29 #48199 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:29 #48200 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:29 #48201 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:29 #48202 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48203 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48204 [Debug] > │ 57                                                                           │

02:09:29 #48205 [Debug] > │ </text>                                                                      │

02:09:29 #48206 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #48207 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:29 #48208 [Debug] > │ </svg>                                                                       │

02:09:29 #48209 [Debug] > │ </td></tr><tr><td>58</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:29 #48210 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:29 #48211 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:29 #48212 [Debug] > │ stroke="none"/>                                                              │

02:09:29 #48213 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:29 #48214 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48215 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48216 [Debug] > │ wave                                                                         │

02:09:29 #48217 [Debug] > │ </text>                                                                      │

02:09:29 #48218 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:29 #48219 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48220 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #48221 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48222 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:29 #48223 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48224 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:29 #48225 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48226 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:29 #48227 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48228 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:29 #48229 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:29 #48230 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:29 #48231 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #48232 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:29 #48233 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:29 #48234 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:29 #48235 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:29 #48236 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:29 #48237 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:29 #48238 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:29 #48239 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:29 #48240 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:29 #48241 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #48242 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:29 #48243 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:29 #48244 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:29 #48245 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:29 #48246 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:29 #48247 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:29 #48248 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:29 #48249 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:29 #48250 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:29 #48251 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:29 #48252 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:29 #48253 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:29 #48254 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:29 #48255 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:29 #48256 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:29 #48257 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:29 #48258 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:29 #48259 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:29 #48260 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:29 #48261 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #48262 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:29 #48263 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:29 #48264 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:29 #48265 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:29 #48266 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:29 #48267 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:29 #48268 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:29 #48269 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:29 #48270 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:29 #48271 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #48272 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:29 #48273 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:29 #48274 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:29 #48275 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:29 #48276 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:29 #48277 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:29 #48278 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:29 #48279 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:29 #48280 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:29 #48281 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:29 #48282 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:29 #48283 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:29 #48284 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:29 #48285 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:29 #48286 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:29 #48287 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:29 #48288 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:29 #48289 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:29 #48290 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:29 #48291 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #48292 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:29 #48293 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:29 #48294 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:29 #48295 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:29 #48296 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:29 #48297 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:29 #48298 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:29 #48299 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:29 #48300 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:29 #48301 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:29 #48302 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:29 #48303 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:29 #48304 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:29 #48305 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:29 #48306 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:29 #48307 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:29 #48308 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:29 #48309 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:29 #48310 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:29 #48311 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:29 #48312 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:29 #48313 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:29 #48314 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:29 #48315 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:29 #48316 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:29 #48317 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:29 #48318 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:29 #48319 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:29 #48320 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:29 #48321 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #48322 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:29 #48323 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:29 #48324 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:29 #48325 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:29 #48326 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:29 #48327 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:29 #48328 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:29 #48329 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:29 #48330 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:29 #48331 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:29 #48332 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:29 #48333 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:29 #48334 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:29 #48335 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:29 #48336 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:29 #48337 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:29 #48338 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:29 #48339 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:29 #48340 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:29 #48341 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:29 #48342 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:29 #48343 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:29 #48344 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:29 #48345 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:29 #48346 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:29 #48347 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:29 #48348 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:29 #48349 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:29 #48350 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:29 #48351 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:29 #48352 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="412"         │

02:09:29 #48353 [Debug] > │ x2="584" y2="412"/>                                                          │

02:09:29 #48354 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="399"         │

02:09:29 #48355 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:29 #48356 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:29 #48357 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:29 #48358 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="373"         │

02:09:29 #48359 [Debug] > │ x2="584" y2="373"/>                                                          │

02:09:29 #48360 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="360"         │

02:09:29 #48361 [Debug] > │ x2="584" y2="360"/>                                                          │

02:09:29 #48362 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="347"         │

02:09:29 #48363 [Debug] > │ x2="584" y2="347"/>                                                          │

02:09:29 #48364 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:29 #48365 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:29 #48366 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:29 #48367 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:29 #48368 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:09:29 #48369 [Debug] > │ x2="584" y2="308"/>                                                          │

02:09:29 #48370 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="295"         │

02:09:29 #48371 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:29 #48372 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="282"         │

02:09:29 #48373 [Debug] > │ x2="584" y2="282"/>                                                          │

02:09:29 #48374 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:29 #48375 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:29 #48376 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="256"         │

02:09:29 #48377 [Debug] > │ x2="584" y2="256"/>                                                          │

02:09:29 #48378 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="243"         │

02:09:29 #48379 [Debug] > │ x2="584" y2="243"/>                                                          │

02:09:29 #48380 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="230"         │

02:09:29 #48381 [Debug] > │ x2="584" y2="230"/>                                                          │

02:09:29 #48382 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="217"         │

02:09:29 #48383 [Debug] > │ x2="584" y2="217"/>                                                          │

02:09:29 #48384 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="204"         │

02:09:29 #48385 [Debug] > │ x2="584" y2="204"/>                                                          │

02:09:29 #48386 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="191"         │

02:09:29 #48387 [Debug] > │ x2="584" y2="191"/>                                                          │

02:09:29 #48388 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:09:29 #48389 [Debug] > │ x2="584" y2="178"/>                                                          │

02:09:29 #48390 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="165"         │

02:09:29 #48391 [Debug] > │ x2="584" y2="165"/>                                                          │

02:09:29 #48392 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:09:29 #48393 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:29 #48394 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="139"         │

02:09:29 #48395 [Debug] > │ x2="584" y2="139"/>                                                          │

02:09:29 #48396 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="126"         │

02:09:29 #48397 [Debug] > │ x2="584" y2="126"/>                                                          │

02:09:29 #48398 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="113"         │

02:09:29 #48399 [Debug] > │ x2="584" y2="113"/>                                                          │

02:09:29 #48400 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="99" x2="584" │

02:09:29 #48401 [Debug] > │ y2="99"/>                                                                    │

02:09:29 #48402 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="86" x2="584" │

02:09:29 #48403 [Debug] > │ y2="86"/>                                                                    │

02:09:29 #48404 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:29 #48405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48407 [Debug] > │ position (m)                                                                 │

02:09:29 #48408 [Debug] > │ </text>                                                                      │

02:09:29 #48409 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:29 #48410 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48411 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:29 #48412 [Debug] > │ displacement (m)                                                             │

02:09:29 #48413 [Debug] > │ </text>                                                                      │

02:09:29 #48414 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:29 #48415 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48416 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48417 [Debug] > │ position (m)                                                                 │

02:09:29 #48418 [Debug] > │ </text>                                                                      │

02:09:29 #48419 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48420 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48421 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:29 #48422 [Debug] > │ displacement (m)                                                             │

02:09:29 #48423 [Debug] > │ </text>                                                                      │

02:09:29 #48424 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #48425 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48426 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:29 #48427 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #48428 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:29 #48429 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #48430 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:29 #48431 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:29 #48432 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:29 #48433 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #48434 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:29 #48435 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #48436 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:29 #48437 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:29 #48438 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:29 #48439 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #48440 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:29 #48441 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:29 #48442 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:29 #48443 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:29 #48444 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:29 #48445 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #48446 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:29 #48447 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:29 #48448 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:29 #48449 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:29 #48450 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:29 #48451 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:29 #48452 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="399"         │

02:09:29 #48453 [Debug] > │ x2="584" y2="399"/>                                                          │

02:09:29 #48454 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="367"         │

02:09:29 #48455 [Debug] > │ x2="584" y2="367"/>                                                          │

02:09:29 #48456 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="334"         │

02:09:29 #48457 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:29 #48458 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="302"         │

02:09:29 #48459 [Debug] > │ x2="584" y2="302"/>                                                          │

02:09:29 #48460 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="269"         │

02:09:29 #48461 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:29 #48462 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="236"         │

02:09:29 #48463 [Debug] > │ x2="584" y2="236"/>                                                          │

02:09:29 #48464 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="204"         │

02:09:29 #48465 [Debug] > │ x2="584" y2="204"/>                                                          │

02:09:29 #48466 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="171"         │

02:09:29 #48467 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:29 #48468 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="139"         │

02:09:29 #48469 [Debug] > │ x2="584" y2="139"/>                                                          │

02:09:29 #48470 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="106"         │

02:09:29 #48471 [Debug] > │ x2="584" y2="106"/>                                                          │

02:09:29 #48472 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48473 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:29 #48474 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:29 #48475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48477 [Debug] > │ 0.0                                                                          │

02:09:29 #48478 [Debug] > │ </text>                                                                      │

02:09:29 #48479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48480 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:29 #48481 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48484 [Debug] > │ 0.1                                                                          │

02:09:29 #48485 [Debug] > │ </text>                                                                      │

02:09:29 #48486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48487 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:29 #48488 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48489 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48490 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48491 [Debug] > │ 0.1                                                                          │

02:09:29 #48492 [Debug] > │ </text>                                                                      │

02:09:29 #48493 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48494 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:29 #48495 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48496 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48497 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48498 [Debug] > │ 0.2                                                                          │

02:09:29 #48499 [Debug] > │ </text>                                                                      │

02:09:29 #48500 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48501 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:29 #48502 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48503 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48504 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48505 [Debug] > │ 0.2                                                                          │

02:09:29 #48506 [Debug] > │ </text>                                                                      │

02:09:29 #48507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48508 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:29 #48509 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48510 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48511 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48512 [Debug] > │ 0.2                                                                          │

02:09:29 #48513 [Debug] > │ </text>                                                                      │

02:09:29 #48514 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48515 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:29 #48516 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48517 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48518 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48519 [Debug] > │ 0.3                                                                          │

02:09:29 #48520 [Debug] > │ </text>                                                                      │

02:09:29 #48521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48522 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:29 #48523 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48524 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48525 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48526 [Debug] > │ 0.3                                                                          │

02:09:29 #48527 [Debug] > │ </text>                                                                      │

02:09:29 #48528 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48529 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:29 #48530 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48531 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48532 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48533 [Debug] > │ 0.4                                                                          │

02:09:29 #48534 [Debug] > │ </text>                                                                      │

02:09:29 #48535 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48536 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:29 #48537 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48538 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48539 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48540 [Debug] > │ 0.4                                                                          │

02:09:29 #48541 [Debug] > │ </text>                                                                      │

02:09:29 #48542 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48543 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:29 #48544 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48545 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48546 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48547 [Debug] > │ 0.5                                                                          │

02:09:29 #48548 [Debug] > │ </text>                                                                      │

02:09:29 #48549 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48550 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:29 #48551 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48552 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48553 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48554 [Debug] > │ 0.5                                                                          │

02:09:29 #48555 [Debug] > │ </text>                                                                      │

02:09:29 #48556 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48557 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:29 #48558 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48559 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48560 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48561 [Debug] > │ 0.6                                                                          │

02:09:29 #48562 [Debug] > │ </text>                                                                      │

02:09:29 #48563 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48564 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:29 #48565 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #48566 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48567 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48568 [Debug] > │ 0.7                                                                          │

02:09:29 #48569 [Debug] > │ </text>                                                                      │

02:09:29 #48570 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48571 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:29 #48572 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48573 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:29 #48574 [Debug] > │ <text x="45" y="399" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48575 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48576 [Debug] > │ -0.0                                                                         │

02:09:29 #48577 [Debug] > │ </text>                                                                      │

02:09:29 #48578 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48579 [Debug] > │ points="49,399 54,399 "/>                                                    │

02:09:29 #48580 [Debug] > │ <text x="45" y="367" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48581 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48582 [Debug] > │ -0.0                                                                         │

02:09:29 #48583 [Debug] > │ </text>                                                                      │

02:09:29 #48584 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48585 [Debug] > │ points="49,367 54,367 "/>                                                    │

02:09:29 #48586 [Debug] > │ <text x="45" y="334" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48587 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48588 [Debug] > │ -0.0                                                                         │

02:09:29 #48589 [Debug] > │ </text>                                                                      │

02:09:29 #48590 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48591 [Debug] > │ points="49,334 54,334 "/>                                                    │

02:09:29 #48592 [Debug] > │ <text x="45" y="302" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48593 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48594 [Debug] > │ -0.0                                                                         │

02:09:29 #48595 [Debug] > │ </text>                                                                      │

02:09:29 #48596 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48597 [Debug] > │ points="49,302 54,302 "/>                                                    │

02:09:29 #48598 [Debug] > │ <text x="45" y="269" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48599 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48600 [Debug] > │ 0.0                                                                          │

02:09:29 #48601 [Debug] > │ </text>                                                                      │

02:09:29 #48602 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48603 [Debug] > │ points="49,269 54,269 "/>                                                    │

02:09:29 #48604 [Debug] > │ <text x="45" y="236" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48605 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48606 [Debug] > │ 0.0                                                                          │

02:09:29 #48607 [Debug] > │ </text>                                                                      │

02:09:29 #48608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48609 [Debug] > │ points="49,236 54,236 "/>                                                    │

02:09:29 #48610 [Debug] > │ <text x="45" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48611 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48612 [Debug] > │ 0.0                                                                          │

02:09:29 #48613 [Debug] > │ </text>                                                                      │

02:09:29 #48614 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48615 [Debug] > │ points="49,204 54,204 "/>                                                    │

02:09:29 #48616 [Debug] > │ <text x="45" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48617 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48618 [Debug] > │ 0.0                                                                          │

02:09:29 #48619 [Debug] > │ </text>                                                                      │

02:09:29 #48620 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48621 [Debug] > │ points="49,171 54,171 "/>                                                    │

02:09:29 #48622 [Debug] > │ <text x="45" y="139" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48623 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48624 [Debug] > │ 0.0                                                                          │

02:09:29 #48625 [Debug] > │ </text>                                                                      │

02:09:29 #48626 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48627 [Debug] > │ points="49,139 54,139 "/>                                                    │

02:09:29 #48628 [Debug] > │ <text x="45" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #48629 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48630 [Debug] > │ 0.0                                                                          │

02:09:29 #48631 [Debug] > │ </text>                                                                      │

02:09:29 #48632 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48633 [Debug] > │ points="49,106 54,106 "/>                                                    │

02:09:29 #48634 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48635 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:29 #48636 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:29 #48637 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48638 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48639 [Debug] > │ 0.0                                                                          │

02:09:29 #48640 [Debug] > │ </text>                                                                      │

02:09:29 #48641 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48642 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:29 #48643 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48644 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48645 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48646 [Debug] > │ 0.1                                                                          │

02:09:29 #48647 [Debug] > │ </text>                                                                      │

02:09:29 #48648 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48649 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:29 #48650 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48651 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48652 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48653 [Debug] > │ 0.1                                                                          │

02:09:29 #48654 [Debug] > │ </text>                                                                      │

02:09:29 #48655 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48656 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:29 #48657 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48658 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48659 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48660 [Debug] > │ 0.2                                                                          │

02:09:29 #48661 [Debug] > │ </text>                                                                      │

02:09:29 #48662 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48663 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:29 #48664 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48665 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48666 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48667 [Debug] > │ 0.2                                                                          │

02:09:29 #48668 [Debug] > │ </text>                                                                      │

02:09:29 #48669 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48670 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:29 #48671 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48672 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48673 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48674 [Debug] > │ 0.2                                                                          │

02:09:29 #48675 [Debug] > │ </text>                                                                      │

02:09:29 #48676 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48677 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:29 #48678 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48679 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48680 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48681 [Debug] > │ 0.3                                                                          │

02:09:29 #48682 [Debug] > │ </text>                                                                      │

02:09:29 #48683 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48684 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:29 #48685 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48686 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48687 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48688 [Debug] > │ 0.3                                                                          │

02:09:29 #48689 [Debug] > │ </text>                                                                      │

02:09:29 #48690 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48691 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:29 #48692 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48693 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48694 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48695 [Debug] > │ 0.4                                                                          │

02:09:29 #48696 [Debug] > │ </text>                                                                      │

02:09:29 #48697 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48698 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:29 #48699 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48700 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48701 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48702 [Debug] > │ 0.4                                                                          │

02:09:29 #48703 [Debug] > │ </text>                                                                      │

02:09:29 #48704 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48705 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:29 #48706 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48707 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48708 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48709 [Debug] > │ 0.5                                                                          │

02:09:29 #48710 [Debug] > │ </text>                                                                      │

02:09:29 #48711 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48712 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:29 #48713 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48714 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48715 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48716 [Debug] > │ 0.5                                                                          │

02:09:29 #48717 [Debug] > │ </text>                                                                      │

02:09:29 #48718 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48719 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:29 #48720 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48721 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48722 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48723 [Debug] > │ 0.6                                                                          │

02:09:29 #48724 [Debug] > │ </text>                                                                      │

02:09:29 #48725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48726 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:29 #48727 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #48728 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48729 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48730 [Debug] > │ 0.7                                                                          │

02:09:29 #48731 [Debug] > │ </text>                                                                      │

02:09:29 #48732 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48733 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:29 #48734 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48735 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:29 #48736 [Debug] > │ <text x="595" y="399" dy="0.5ex" text-anchor="start"                         │

02:09:29 #48737 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48738 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48739 [Debug] > │ -0.0                                                                         │

02:09:29 #48740 [Debug] > │ </text>                                                                      │

02:09:29 #48741 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48742 [Debug] > │ points="585,399 590,399 "/>                                                  │

02:09:29 #48743 [Debug] > │ <text x="595" y="367" dy="0.5ex" text-anchor="start"                         │

02:09:29 #48744 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48745 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48746 [Debug] > │ -0.0                                                                         │

02:09:29 #48747 [Debug] > │ </text>                                                                      │

02:09:29 #48748 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48749 [Debug] > │ points="585,367 590,367 "/>                                                  │

02:09:29 #48750 [Debug] > │ <text x="595" y="334" dy="0.5ex" text-anchor="start"                         │

02:09:29 #48751 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48752 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48753 [Debug] > │ -0.0                                                                         │

02:09:29 #48754 [Debug] > │ </text>                                                                      │

02:09:29 #48755 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48756 [Debug] > │ points="585,334 590,334 "/>                                                  │

02:09:29 #48757 [Debug] > │ <text x="595" y="302" dy="0.5ex" text-anchor="start"                         │

02:09:29 #48758 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48759 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48760 [Debug] > │ -0.0                                                                         │

02:09:29 #48761 [Debug] > │ </text>                                                                      │

02:09:29 #48762 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48763 [Debug] > │ points="585,302 590,302 "/>                                                  │

02:09:29 #48764 [Debug] > │ <text x="617" y="269" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48765 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48766 [Debug] > │ 0.0                                                                          │

02:09:29 #48767 [Debug] > │ </text>                                                                      │

02:09:29 #48768 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48769 [Debug] > │ points="585,269 590,269 "/>                                                  │

02:09:29 #48770 [Debug] > │ <text x="617" y="236" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48771 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48772 [Debug] > │ 0.0                                                                          │

02:09:29 #48773 [Debug] > │ </text>                                                                      │

02:09:29 #48774 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48775 [Debug] > │ points="585,236 590,236 "/>                                                  │

02:09:29 #48776 [Debug] > │ <text x="617" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48777 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48778 [Debug] > │ 0.0                                                                          │

02:09:29 #48779 [Debug] > │ </text>                                                                      │

02:09:29 #48780 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48781 [Debug] > │ points="585,204 590,204 "/>                                                  │

02:09:29 #48782 [Debug] > │ <text x="617" y="171" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48783 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48784 [Debug] > │ 0.0                                                                          │

02:09:29 #48785 [Debug] > │ </text>                                                                      │

02:09:29 #48786 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48787 [Debug] > │ points="585,171 590,171 "/>                                                  │

02:09:29 #48788 [Debug] > │ <text x="617" y="139" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48789 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48790 [Debug] > │ 0.0                                                                          │

02:09:29 #48791 [Debug] > │ </text>                                                                      │

02:09:29 #48792 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48793 [Debug] > │ points="585,139 590,139 "/>                                                  │

02:09:29 #48794 [Debug] > │ <text x="617" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #48795 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #48796 [Debug] > │ 0.0                                                                          │

02:09:29 #48797 [Debug] > │ </text>                                                                      │

02:09:29 #48798 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #48799 [Debug] > │ points="585,106 590,106 "/>                                                  │

02:09:29 #48800 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #48801 [Debug] > │ points="69,269 77,242 85,216 93,192 100,168 108,147 116,129 123,113 131,101  │

02:09:29 #48802 [Debug] > │ 139,92 146,87 154,85 162,88 169,94 177,104 185,118 192,134 200,154 208,176   │

02:09:29 #48803 [Debug] > │ 215,200 223,225 231,251 238,276 245,301 252,321 258,334 261,337 263,326      │

02:09:29 #48804 [Debug] > │ 262,302 260,270 259,241 259,222 260,208 261,193 260,173 260,154 260,144      │

02:09:29 #48805 [Debug] > │ 261,137 260,128 260,122 260,123 260,126 260,129 260,138 260,149 260,162      │

02:09:29 #48806 [Debug] > │ 260,177 260,195 260,214 260,234 260,255 260,276 260,297 260,317 260,337      │

02:09:29 #48807 [Debug] > │ 260,355 260,371 260,385 260,397 260,406 260,412 260,415 545,132 553,176      │

02:09:29 #48808 [Debug] > │ 565,247 569,269 "/>                                                          │

02:09:29 #48809 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:29 #48810 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:29 #48811 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:29 #48812 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48813 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48814 [Debug] > │ 58                                                                           │

02:09:29 #48815 [Debug] > │ </text>                                                                      │

02:09:29 #48816 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #48817 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:29 #48818 [Debug] > │ </svg>                                                                       │

02:09:29 #48819 [Debug] > │ </td></tr><tr><td>59</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:29 #48820 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:29 #48821 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:29 #48822 [Debug] > │ stroke="none"/>                                                              │

02:09:29 #48823 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:29 #48824 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #48825 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #48826 [Debug] > │ wave                                                                         │

02:09:29 #48827 [Debug] > │ </text>                                                                      │

02:09:29 #48828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:29 #48829 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #48831 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:29 #48833 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:29 #48835 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:29 #48837 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #48838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:29 #48839 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:29 #48840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:29 #48841 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #48842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:29 #48843 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:29 #48844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:29 #48845 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:29 #48846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:29 #48847 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:29 #48848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:29 #48849 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:29 #48850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:29 #48851 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #48852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:29 #48853 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:29 #48854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:29 #48855 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:29 #48856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:29 #48857 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:29 #48858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:29 #48859 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:29 #48860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:29 #48861 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:29 #48862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:29 #48863 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:29 #48864 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:29 #48865 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:29 #48866 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:29 #48867 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:29 #48868 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:29 #48869 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:29 #48870 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:29 #48871 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #48872 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:29 #48873 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:29 #48874 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:29 #48875 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:29 #48876 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:29 #48877 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:29 #48878 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:29 #48879 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:29 #48880 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:29 #48881 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #48882 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:29 #48883 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:29 #48884 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:29 #48885 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:29 #48886 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:29 #48887 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:29 #48888 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:29 #48889 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:29 #48890 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:29 #48891 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:29 #48892 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:29 #48893 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:29 #48894 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:29 #48895 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:29 #48896 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:29 #48897 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:29 #48898 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:29 #48899 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:29 #48900 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:29 #48901 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #48902 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:29 #48903 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:29 #48904 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:29 #48905 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:29 #48906 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:29 #48907 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:29 #48908 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:29 #48909 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:29 #48910 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:29 #48911 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:29 #48912 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:29 #48913 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:29 #48914 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:29 #48915 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:29 #48916 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:29 #48917 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:29 #48918 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:29 #48919 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:29 #48920 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:29 #48921 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:29 #48922 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:29 #48923 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:29 #48924 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:29 #48925 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:29 #48926 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:29 #48927 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:29 #48928 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:29 #48929 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:29 #48930 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:29 #48931 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #48932 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:29 #48933 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:29 #48934 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:29 #48935 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:29 #48936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:29 #48937 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:29 #48938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:29 #48939 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:29 #48940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:29 #48941 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:29 #48942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:29 #48943 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:29 #48944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:29 #48945 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:29 #48946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:29 #48947 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:29 #48948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:29 #48949 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:29 #48950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:29 #48951 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:29 #48952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:29 #48953 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:29 #48954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:29 #48955 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:29 #48956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:29 #48957 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:29 #48958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:29 #48959 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:29 #48960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:29 #48961 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:29 #48962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="413"         │

02:09:29 #48963 [Debug] > │ x2="584" y2="413"/>                                                          │

02:09:29 #48964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="400"         │

02:09:29 #48965 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:29 #48966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:29 #48967 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:29 #48968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:29 #48969 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:29 #48970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="361"         │

02:09:29 #48971 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:29 #48972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:29 #48973 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:29 #48974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="334"         │

02:09:29 #48975 [Debug] > │ x2="584" y2="334"/>                                                          │

02:09:29 #48976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:29 #48977 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:29 #48978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:09:29 #48979 [Debug] > │ x2="584" y2="308"/>                                                          │

02:09:29 #48980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="295"         │

02:09:29 #48981 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:29 #48982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="282"         │

02:09:29 #48983 [Debug] > │ x2="584" y2="282"/>                                                          │

02:09:29 #48984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:29 #48985 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:29 #48986 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="255"         │

02:09:29 #48987 [Debug] > │ x2="584" y2="255"/>                                                          │

02:09:29 #48988 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="242"         │

02:09:29 #48989 [Debug] > │ x2="584" y2="242"/>                                                          │

02:09:29 #48990 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="229"         │

02:09:29 #48991 [Debug] > │ x2="584" y2="229"/>                                                          │

02:09:29 #48992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="216"         │

02:09:29 #48993 [Debug] > │ x2="584" y2="216"/>                                                          │

02:09:29 #48994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="203"         │

02:09:29 #48995 [Debug] > │ x2="584" y2="203"/>                                                          │

02:09:29 #48996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="190"         │

02:09:29 #48997 [Debug] > │ x2="584" y2="190"/>                                                          │

02:09:29 #48998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="176"         │

02:09:29 #48999 [Debug] > │ x2="584" y2="176"/>                                                          │

02:09:29 #49000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="163"         │

02:09:29 #49001 [Debug] > │ x2="584" y2="163"/>                                                          │

02:09:29 #49002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:29 #49003 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:29 #49004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="137"         │

02:09:29 #49005 [Debug] > │ x2="584" y2="137"/>                                                          │

02:09:29 #49006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:09:29 #49007 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:29 #49008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="111"         │

02:09:29 #49009 [Debug] > │ x2="584" y2="111"/>                                                          │

02:09:29 #49010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:29 #49011 [Debug] > │ y2="97"/>                                                                    │

02:09:29 #49012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="84" x2="584" │

02:09:29 #49013 [Debug] > │ y2="84"/>                                                                    │

02:09:29 #49014 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:29 #49015 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49016 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49017 [Debug] > │ position (m)                                                                 │

02:09:29 #49018 [Debug] > │ </text>                                                                      │

02:09:29 #49019 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:29 #49020 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49021 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:29 #49022 [Debug] > │ displacement (m)                                                             │

02:09:29 #49023 [Debug] > │ </text>                                                                      │

02:09:29 #49024 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:29 #49025 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49026 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49027 [Debug] > │ position (m)                                                                 │

02:09:29 #49028 [Debug] > │ </text>                                                                      │

02:09:29 #49029 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49030 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49031 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:29 #49032 [Debug] > │ displacement (m)                                                             │

02:09:29 #49033 [Debug] > │ </text>                                                                      │

02:09:29 #49034 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #49035 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #49036 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:29 #49037 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #49038 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:29 #49039 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #49040 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:29 #49041 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:29 #49042 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:29 #49043 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #49044 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:29 #49045 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #49046 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:29 #49047 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:29 #49048 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:29 #49049 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #49050 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:29 #49051 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:29 #49052 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:29 #49053 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:29 #49054 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:29 #49055 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #49056 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:29 #49057 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:29 #49058 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:29 #49059 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:29 #49060 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:29 #49061 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:29 #49062 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="394"         │

02:09:29 #49063 [Debug] > │ x2="584" y2="394"/>                                                          │

02:09:29 #49064 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="361"         │

02:09:29 #49065 [Debug] > │ x2="584" y2="361"/>                                                          │

02:09:29 #49066 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="328"         │

02:09:29 #49067 [Debug] > │ x2="584" y2="328"/>                                                          │

02:09:29 #49068 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="295"         │

02:09:29 #49069 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:29 #49070 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="262"         │

02:09:29 #49071 [Debug] > │ x2="584" y2="262"/>                                                          │

02:09:29 #49072 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="229"         │

02:09:29 #49073 [Debug] > │ x2="584" y2="229"/>                                                          │

02:09:29 #49074 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="196"         │

02:09:29 #49075 [Debug] > │ x2="584" y2="196"/>                                                          │

02:09:29 #49076 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="163"         │

02:09:29 #49077 [Debug] > │ x2="584" y2="163"/>                                                          │

02:09:29 #49078 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="130"         │

02:09:29 #49079 [Debug] > │ x2="584" y2="130"/>                                                          │

02:09:29 #49080 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="97" x2="584" │

02:09:29 #49081 [Debug] > │ y2="97"/>                                                                    │

02:09:29 #49082 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49083 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:29 #49084 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:29 #49085 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49086 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49087 [Debug] > │ 0.0                                                                          │

02:09:29 #49088 [Debug] > │ </text>                                                                      │

02:09:29 #49089 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49090 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:29 #49091 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49092 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49093 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49094 [Debug] > │ 0.1                                                                          │

02:09:29 #49095 [Debug] > │ </text>                                                                      │

02:09:29 #49096 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49097 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:29 #49098 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49099 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49100 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49101 [Debug] > │ 0.1                                                                          │

02:09:29 #49102 [Debug] > │ </text>                                                                      │

02:09:29 #49103 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49104 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:29 #49105 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49106 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49107 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49108 [Debug] > │ 0.2                                                                          │

02:09:29 #49109 [Debug] > │ </text>                                                                      │

02:09:29 #49110 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49111 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:29 #49112 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49113 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49114 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49115 [Debug] > │ 0.2                                                                          │

02:09:29 #49116 [Debug] > │ </text>                                                                      │

02:09:29 #49117 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49118 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:29 #49119 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49120 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49121 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49122 [Debug] > │ 0.2                                                                          │

02:09:29 #49123 [Debug] > │ </text>                                                                      │

02:09:29 #49124 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49125 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:29 #49126 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49127 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49128 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49129 [Debug] > │ 0.3                                                                          │

02:09:29 #49130 [Debug] > │ </text>                                                                      │

02:09:29 #49131 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49132 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:29 #49133 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49134 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49135 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49136 [Debug] > │ 0.3                                                                          │

02:09:29 #49137 [Debug] > │ </text>                                                                      │

02:09:29 #49138 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49139 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:29 #49140 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49141 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49142 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49143 [Debug] > │ 0.4                                                                          │

02:09:29 #49144 [Debug] > │ </text>                                                                      │

02:09:29 #49145 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49146 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:29 #49147 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49148 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49149 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49150 [Debug] > │ 0.4                                                                          │

02:09:29 #49151 [Debug] > │ </text>                                                                      │

02:09:29 #49152 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49153 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:29 #49154 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49155 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49156 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49157 [Debug] > │ 0.5                                                                          │

02:09:29 #49158 [Debug] > │ </text>                                                                      │

02:09:29 #49159 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49160 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:29 #49161 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49162 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49163 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49164 [Debug] > │ 0.5                                                                          │

02:09:29 #49165 [Debug] > │ </text>                                                                      │

02:09:29 #49166 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49167 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:29 #49168 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49169 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49170 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49171 [Debug] > │ 0.6                                                                          │

02:09:29 #49172 [Debug] > │ </text>                                                                      │

02:09:29 #49173 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49174 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:29 #49175 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:29 #49176 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49177 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49178 [Debug] > │ 0.7                                                                          │

02:09:29 #49179 [Debug] > │ </text>                                                                      │

02:09:29 #49180 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49181 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:29 #49182 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49183 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:29 #49184 [Debug] > │ <text x="45" y="394" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49185 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49186 [Debug] > │ -0.0                                                                         │

02:09:29 #49187 [Debug] > │ </text>                                                                      │

02:09:29 #49188 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49189 [Debug] > │ points="49,394 54,394 "/>                                                    │

02:09:29 #49190 [Debug] > │ <text x="45" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49191 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49192 [Debug] > │ -0.0                                                                         │

02:09:29 #49193 [Debug] > │ </text>                                                                      │

02:09:29 #49194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49195 [Debug] > │ points="49,361 54,361 "/>                                                    │

02:09:29 #49196 [Debug] > │ <text x="45" y="328" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49197 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49198 [Debug] > │ -0.0                                                                         │

02:09:29 #49199 [Debug] > │ </text>                                                                      │

02:09:29 #49200 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49201 [Debug] > │ points="49,328 54,328 "/>                                                    │

02:09:29 #49202 [Debug] > │ <text x="45" y="295" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49203 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49204 [Debug] > │ 0.0                                                                          │

02:09:29 #49205 [Debug] > │ </text>                                                                      │

02:09:29 #49206 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49207 [Debug] > │ points="49,295 54,295 "/>                                                    │

02:09:29 #49208 [Debug] > │ <text x="45" y="262" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49209 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49210 [Debug] > │ 0.0                                                                          │

02:09:29 #49211 [Debug] > │ </text>                                                                      │

02:09:29 #49212 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49213 [Debug] > │ points="49,262 54,262 "/>                                                    │

02:09:29 #49214 [Debug] > │ <text x="45" y="229" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49215 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49216 [Debug] > │ 0.0                                                                          │

02:09:29 #49217 [Debug] > │ </text>                                                                      │

02:09:29 #49218 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49219 [Debug] > │ points="49,229 54,229 "/>                                                    │

02:09:29 #49220 [Debug] > │ <text x="45" y="196" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49221 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49222 [Debug] > │ 0.0                                                                          │

02:09:29 #49223 [Debug] > │ </text>                                                                      │

02:09:29 #49224 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49225 [Debug] > │ points="49,196 54,196 "/>                                                    │

02:09:29 #49226 [Debug] > │ <text x="45" y="163" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49227 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49228 [Debug] > │ 0.0                                                                          │

02:09:29 #49229 [Debug] > │ </text>                                                                      │

02:09:29 #49230 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49231 [Debug] > │ points="49,163 54,163 "/>                                                    │

02:09:29 #49232 [Debug] > │ <text x="45" y="130" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49233 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49234 [Debug] > │ 0.0                                                                          │

02:09:29 #49235 [Debug] > │ </text>                                                                      │

02:09:29 #49236 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49237 [Debug] > │ points="49,130 54,130 "/>                                                    │

02:09:29 #49238 [Debug] > │ <text x="45" y="97" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:29 #49239 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49240 [Debug] > │ 0.0                                                                          │

02:09:29 #49241 [Debug] > │ </text>                                                                      │

02:09:29 #49242 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49243 [Debug] > │ points="49,97 54,97 "/>                                                      │

02:09:29 #49244 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49245 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:29 #49246 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:29 #49247 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49248 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49249 [Debug] > │ 0.0                                                                          │

02:09:29 #49250 [Debug] > │ </text>                                                                      │

02:09:29 #49251 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49252 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:29 #49253 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49254 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49255 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49256 [Debug] > │ 0.1                                                                          │

02:09:29 #49257 [Debug] > │ </text>                                                                      │

02:09:29 #49258 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49259 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:29 #49260 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49261 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49262 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49263 [Debug] > │ 0.1                                                                          │

02:09:29 #49264 [Debug] > │ </text>                                                                      │

02:09:29 #49265 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49266 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:29 #49267 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49268 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49269 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49270 [Debug] > │ 0.2                                                                          │

02:09:29 #49271 [Debug] > │ </text>                                                                      │

02:09:29 #49272 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49273 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:29 #49274 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49275 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49276 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49277 [Debug] > │ 0.2                                                                          │

02:09:29 #49278 [Debug] > │ </text>                                                                      │

02:09:29 #49279 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49280 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:29 #49281 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49282 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49283 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49284 [Debug] > │ 0.2                                                                          │

02:09:29 #49285 [Debug] > │ </text>                                                                      │

02:09:29 #49286 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49287 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:29 #49288 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49289 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49290 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49291 [Debug] > │ 0.3                                                                          │

02:09:29 #49292 [Debug] > │ </text>                                                                      │

02:09:29 #49293 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49294 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:29 #49295 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49296 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49297 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49298 [Debug] > │ 0.3                                                                          │

02:09:29 #49299 [Debug] > │ </text>                                                                      │

02:09:29 #49300 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49301 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:29 #49302 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49303 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49304 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49305 [Debug] > │ 0.4                                                                          │

02:09:29 #49306 [Debug] > │ </text>                                                                      │

02:09:29 #49307 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49308 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:29 #49309 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49310 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49311 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49312 [Debug] > │ 0.4                                                                          │

02:09:29 #49313 [Debug] > │ </text>                                                                      │

02:09:29 #49314 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49315 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:29 #49316 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49317 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49318 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49319 [Debug] > │ 0.5                                                                          │

02:09:29 #49320 [Debug] > │ </text>                                                                      │

02:09:29 #49321 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49322 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:29 #49323 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49324 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49325 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49326 [Debug] > │ 0.5                                                                          │

02:09:29 #49327 [Debug] > │ </text>                                                                      │

02:09:29 #49328 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49329 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:29 #49330 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49331 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49332 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49333 [Debug] > │ 0.6                                                                          │

02:09:29 #49334 [Debug] > │ </text>                                                                      │

02:09:29 #49335 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49336 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:29 #49337 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:29 #49338 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49339 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49340 [Debug] > │ 0.7                                                                          │

02:09:29 #49341 [Debug] > │ </text>                                                                      │

02:09:29 #49342 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49343 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:29 #49344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49345 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:29 #49346 [Debug] > │ <text x="595" y="394" dy="0.5ex" text-anchor="start"                         │

02:09:29 #49347 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49348 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49349 [Debug] > │ -0.0                                                                         │

02:09:29 #49350 [Debug] > │ </text>                                                                      │

02:09:29 #49351 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49352 [Debug] > │ points="585,394 590,394 "/>                                                  │

02:09:29 #49353 [Debug] > │ <text x="595" y="361" dy="0.5ex" text-anchor="start"                         │

02:09:29 #49354 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49355 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49356 [Debug] > │ -0.0                                                                         │

02:09:29 #49357 [Debug] > │ </text>                                                                      │

02:09:29 #49358 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49359 [Debug] > │ points="585,361 590,361 "/>                                                  │

02:09:29 #49360 [Debug] > │ <text x="595" y="328" dy="0.5ex" text-anchor="start"                         │

02:09:29 #49361 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49362 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49363 [Debug] > │ -0.0                                                                         │

02:09:29 #49364 [Debug] > │ </text>                                                                      │

02:09:29 #49365 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49366 [Debug] > │ points="585,328 590,328 "/>                                                  │

02:09:29 #49367 [Debug] > │ <text x="617" y="295" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #49368 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49369 [Debug] > │ 0.0                                                                          │

02:09:29 #49370 [Debug] > │ </text>                                                                      │

02:09:29 #49371 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49372 [Debug] > │ points="585,295 590,295 "/>                                                  │

02:09:29 #49373 [Debug] > │ <text x="617" y="262" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #49374 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49375 [Debug] > │ 0.0                                                                          │

02:09:29 #49376 [Debug] > │ </text>                                                                      │

02:09:29 #49377 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49378 [Debug] > │ points="585,262 590,262 "/>                                                  │

02:09:29 #49379 [Debug] > │ <text x="617" y="229" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #49380 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49381 [Debug] > │ 0.0                                                                          │

02:09:29 #49382 [Debug] > │ </text>                                                                      │

02:09:29 #49383 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49384 [Debug] > │ points="585,229 590,229 "/>                                                  │

02:09:29 #49385 [Debug] > │ <text x="617" y="196" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #49386 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49387 [Debug] > │ 0.0                                                                          │

02:09:29 #49388 [Debug] > │ </text>                                                                      │

02:09:29 #49389 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49390 [Debug] > │ points="585,196 590,196 "/>                                                  │

02:09:29 #49391 [Debug] > │ <text x="617" y="163" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #49392 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49393 [Debug] > │ 0.0                                                                          │

02:09:29 #49394 [Debug] > │ </text>                                                                      │

02:09:29 #49395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49396 [Debug] > │ points="585,163 590,163 "/>                                                  │

02:09:29 #49397 [Debug] > │ <text x="617" y="130" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:29 #49398 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49399 [Debug] > │ 0.0                                                                          │

02:09:29 #49400 [Debug] > │ </text>                                                                      │

02:09:29 #49401 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49402 [Debug] > │ points="585,130 590,130 "/>                                                  │

02:09:29 #49403 [Debug] > │ <text x="617" y="97" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:29 #49404 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:29 #49405 [Debug] > │ 0.0                                                                          │

02:09:29 #49406 [Debug] > │ </text>                                                                      │

02:09:29 #49407 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:29 #49408 [Debug] > │ points="585,97 590,97 "/>                                                    │

02:09:29 #49409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #49410 [Debug] > │ points="69,295 77,265 85,235 93,207 100,180 108,156 116,135 123,117 131,103  │

02:09:29 #49411 [Debug] > │ 139,93 146,87 154,85 162,88 169,96 177,107 185,122 192,141 200,164 208,189   │

02:09:29 #49412 [Debug] > │ 215,216 223,244 231,274 238,302 245,329 251,349 255,361 258,359 258,344      │

02:09:29 #49413 [Debug] > │ 256,318 255,291 254,271 255,259 256,248 256,232 255,213 255,201 256,194      │

02:09:29 #49414 [Debug] > │ 256,187 255,178 255,175 256,176 255,177 255,180 255,188 255,196 255,206      │

02:09:29 #49415 [Debug] > │ 255,220 255,234 255,249 255,267 255,283 255,301 255,318 255,335 255,351      │

02:09:29 #49416 [Debug] > │ 255,365 255,379 255,390 255,400 255,407 255,412 255,415 545,156 553,201      │

02:09:29 #49417 [Debug] > │ 562,253 569,295 "/>                                                          │

02:09:29 #49418 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:29 #49419 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:29 #49420 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:29 #49421 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49422 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49423 [Debug] > │ 59                                                                           │

02:09:29 #49424 [Debug] > │ </text>                                                                      │

02:09:29 #49425 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:29 #49426 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:29 #49427 [Debug] > │ </svg>                                                                       │

02:09:29 #49428 [Debug] > │ </td></tr><tr><td>60</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:29 #49429 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:29 #49430 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:29 #49431 [Debug] > │ stroke="none"/>                                                              │

02:09:29 #49432 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:29 #49433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:29 #49434 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:29 #49435 [Debug] > │ wave                                                                         │

02:09:29 #49436 [Debug] > │ </text>                                                                      │

02:09:29 #49437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:29 #49438 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #49439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:29 #49440 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #49441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:29 #49442 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #49443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:29 #49444 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #49445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:29 #49446 [Debug] > │ y2="75"/>                                                                    │

02:09:29 #49447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:29 #49448 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:29 #49449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:29 #49450 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:29 #49451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:29 #49452 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:29 #49453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:29 #49454 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:29 #49455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:29 #49456 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:29 #49457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:29 #49458 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:29 #49459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:29 #49460 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:29 #49461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:29 #49462 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:29 #49463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:29 #49464 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:29 #49465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:29 #49466 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:29 #49467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:29 #49468 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:29 #49469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:29 #49470 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:29 #49471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:29 #49472 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:29 #49473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:29 #49474 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:29 #49475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:29 #49476 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:29 #49477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:29 #49478 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:29 #49479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:29 #49480 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:29 #49481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:29 #49482 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:29 #49483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:29 #49484 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:29 #49485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:29 #49486 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:29 #49487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:29 #49488 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:29 #49489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:29 #49490 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:29 #49491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:29 #49492 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:29 #49493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:29 #49494 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:29 #49495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:29 #49496 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:29 #49497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:29 #49498 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:29 #49499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:29 #49500 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:29 #49501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:29 #49502 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:29 #49503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:29 #49504 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:29 #49505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:29 #49506 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:29 #49507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:29 #49508 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:29 #49509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:29 #49510 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:29 #49511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:29 #49512 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:29 #49513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:29 #49514 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:29 #49515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:29 #49516 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:29 #49517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:29 #49518 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:29 #49519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:29 #49520 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:29 #49521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:29 #49522 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:29 #49523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:29 #49524 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:29 #49525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:29 #49526 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:29 #49527 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:29 #49528 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:29 #49529 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:29 #49530 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:29 #49531 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:29 #49532 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:29 #49533 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:29 #49534 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:29 #49535 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:29 #49536 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:29 #49537 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:29 #49538 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:29 #49539 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:29 #49540 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:29 #49541 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:29 #49542 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:29 #49543 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:29 #49544 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:29 #49545 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:29 #49546 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:29 #49547 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:29 #49548 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:29 #49549 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:29 #49550 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:29 #49551 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:29 #49552 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:29 #49553 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:29 #49554 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:29 #49555 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:29 #49556 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:29 #49557 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:29 #49558 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:29 #49559 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:29 #49560 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:29 #49561 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:29 #49562 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:29 #49563 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:29 #49564 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:29 #49565 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:29 #49566 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:29 #49567 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:29 #49568 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:29 #49569 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:29 #49570 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:29 #49571 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="416"         │

02:09:29 #49572 [Debug] > │ x2="584" y2="416"/>                                                          │

02:09:29 #49573 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="402"         │

02:09:29 #49574 [Debug] > │ x2="584" y2="402"/>                                                          │

02:09:29 #49575 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="389"         │

02:09:29 #49576 [Debug] > │ x2="584" y2="389"/>                                                          │

02:09:29 #49577 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="375"         │

02:09:29 #49578 [Debug] > │ x2="584" y2="375"/>                                                          │

02:09:29 #49579 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="362"         │

02:09:29 #49580 [Debug] > │ x2="584" y2="362"/>                                                          │

02:09:29 #49581 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="348"         │

02:09:29 #49582 [Debug] > │ x2="584" y2="348"/>                                                          │

02:09:30 #49583 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="335"         │

02:09:30 #49584 [Debug] > │ x2="584" y2="335"/>                                                          │

02:09:30 #49585 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="322"         │

02:09:30 #49586 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:30 #49587 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:09:30 #49588 [Debug] > │ x2="584" y2="308"/>                                                          │

02:09:30 #49589 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="295"         │

02:09:30 #49590 [Debug] > │ x2="584" y2="295"/>                                                          │

02:09:30 #49591 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="281"         │

02:09:30 #49592 [Debug] > │ x2="584" y2="281"/>                                                          │

02:09:30 #49593 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="268"         │

02:09:30 #49594 [Debug] > │ x2="584" y2="268"/>                                                          │

02:09:30 #49595 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="255"         │

02:09:30 #49596 [Debug] > │ x2="584" y2="255"/>                                                          │

02:09:30 #49597 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="241"         │

02:09:30 #49598 [Debug] > │ x2="584" y2="241"/>                                                          │

02:09:30 #49599 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="228"         │

02:09:30 #49600 [Debug] > │ x2="584" y2="228"/>                                                          │

02:09:30 #49601 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="214"         │

02:09:30 #49602 [Debug] > │ x2="584" y2="214"/>                                                          │

02:09:30 #49603 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="201"         │

02:09:30 #49604 [Debug] > │ x2="584" y2="201"/>                                                          │

02:09:30 #49605 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="187"         │

02:09:30 #49606 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:30 #49607 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="174"         │

02:09:30 #49608 [Debug] > │ x2="584" y2="174"/>                                                          │

02:09:30 #49609 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="161"         │

02:09:30 #49610 [Debug] > │ x2="584" y2="161"/>                                                          │

02:09:30 #49611 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="147"         │

02:09:30 #49612 [Debug] > │ x2="584" y2="147"/>                                                          │

02:09:30 #49613 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="134"         │

02:09:30 #49614 [Debug] > │ x2="584" y2="134"/>                                                          │

02:09:30 #49615 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="120"         │

02:09:30 #49616 [Debug] > │ x2="584" y2="120"/>                                                          │

02:09:30 #49617 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="107"         │

02:09:30 #49618 [Debug] > │ x2="584" y2="107"/>                                                          │

02:09:30 #49619 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="94" x2="584" │

02:09:30 #49620 [Debug] > │ y2="94"/>                                                                    │

02:09:30 #49621 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="80" x2="584" │

02:09:30 #49622 [Debug] > │ y2="80"/>                                                                    │

02:09:30 #49623 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:30 #49624 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49625 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49626 [Debug] > │ position (m)                                                                 │

02:09:30 #49627 [Debug] > │ </text>                                                                      │

02:09:30 #49628 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:30 #49629 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49630 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:30 #49631 [Debug] > │ displacement (m)                                                             │

02:09:30 #49632 [Debug] > │ </text>                                                                      │

02:09:30 #49633 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:30 #49634 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49635 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49636 [Debug] > │ position (m)                                                                 │

02:09:30 #49637 [Debug] > │ </text>                                                                      │

02:09:30 #49638 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49640 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:30 #49641 [Debug] > │ displacement (m)                                                             │

02:09:30 #49642 [Debug] > │ </text>                                                                      │

02:09:30 #49643 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #49644 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #49645 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:30 #49646 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #49647 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:30 #49648 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #49649 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:30 #49650 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:30 #49651 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:30 #49652 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:30 #49653 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:30 #49654 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:30 #49655 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:30 #49656 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:30 #49657 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:30 #49658 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:30 #49659 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:30 #49660 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:30 #49661 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:30 #49662 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:30 #49663 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:30 #49664 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:30 #49665 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:30 #49666 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:30 #49667 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:30 #49668 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:30 #49669 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:30 #49670 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:30 #49671 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="389"         │

02:09:30 #49672 [Debug] > │ x2="584" y2="389"/>                                                          │

02:09:30 #49673 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="322"         │

02:09:30 #49674 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:30 #49675 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="255"         │

02:09:30 #49676 [Debug] > │ x2="584" y2="255"/>                                                          │

02:09:30 #49677 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="187"         │

02:09:30 #49678 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:30 #49679 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="120"         │

02:09:30 #49680 [Debug] > │ x2="584" y2="120"/>                                                          │

02:09:30 #49681 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49682 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:30 #49683 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:30 #49684 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49685 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49686 [Debug] > │ 0.0                                                                          │

02:09:30 #49687 [Debug] > │ </text>                                                                      │

02:09:30 #49688 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49689 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:30 #49690 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49691 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49692 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49693 [Debug] > │ 0.1                                                                          │

02:09:30 #49694 [Debug] > │ </text>                                                                      │

02:09:30 #49695 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49696 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:30 #49697 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49698 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49699 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49700 [Debug] > │ 0.1                                                                          │

02:09:30 #49701 [Debug] > │ </text>                                                                      │

02:09:30 #49702 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49703 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:30 #49704 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49705 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49706 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49707 [Debug] > │ 0.2                                                                          │

02:09:30 #49708 [Debug] > │ </text>                                                                      │

02:09:30 #49709 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49710 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:30 #49711 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49712 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49713 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49714 [Debug] > │ 0.2                                                                          │

02:09:30 #49715 [Debug] > │ </text>                                                                      │

02:09:30 #49716 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49717 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:30 #49718 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49719 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49720 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49721 [Debug] > │ 0.2                                                                          │

02:09:30 #49722 [Debug] > │ </text>                                                                      │

02:09:30 #49723 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49724 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:30 #49725 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49726 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49727 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49728 [Debug] > │ 0.3                                                                          │

02:09:30 #49729 [Debug] > │ </text>                                                                      │

02:09:30 #49730 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49731 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:30 #49732 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49733 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49734 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49735 [Debug] > │ 0.3                                                                          │

02:09:30 #49736 [Debug] > │ </text>                                                                      │

02:09:30 #49737 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49738 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:30 #49739 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49740 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49741 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49742 [Debug] > │ 0.4                                                                          │

02:09:30 #49743 [Debug] > │ </text>                                                                      │

02:09:30 #49744 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49745 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:30 #49746 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49747 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49748 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49749 [Debug] > │ 0.4                                                                          │

02:09:30 #49750 [Debug] > │ </text>                                                                      │

02:09:30 #49751 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49752 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:30 #49753 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49754 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49755 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49756 [Debug] > │ 0.5                                                                          │

02:09:30 #49757 [Debug] > │ </text>                                                                      │

02:09:30 #49758 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49759 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:30 #49760 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49761 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49762 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49763 [Debug] > │ 0.5                                                                          │

02:09:30 #49764 [Debug] > │ </text>                                                                      │

02:09:30 #49765 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49766 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:30 #49767 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49768 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49769 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49770 [Debug] > │ 0.6                                                                          │

02:09:30 #49771 [Debug] > │ </text>                                                                      │

02:09:30 #49772 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49773 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:30 #49774 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #49775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49776 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49777 [Debug] > │ 0.7                                                                          │

02:09:30 #49778 [Debug] > │ </text>                                                                      │

02:09:30 #49779 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49780 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:30 #49781 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49782 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:30 #49783 [Debug] > │ <text x="45" y="389" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #49784 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49785 [Debug] > │ -0.0                                                                         │

02:09:30 #49786 [Debug] > │ </text>                                                                      │

02:09:30 #49787 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49788 [Debug] > │ points="49,389 54,389 "/>                                                    │

02:09:30 #49789 [Debug] > │ <text x="45" y="322" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #49790 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49791 [Debug] > │ 0.0                                                                          │

02:09:30 #49792 [Debug] > │ </text>                                                                      │

02:09:30 #49793 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49794 [Debug] > │ points="49,322 54,322 "/>                                                    │

02:09:30 #49795 [Debug] > │ <text x="45" y="255" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #49796 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49797 [Debug] > │ 0.0                                                                          │

02:09:30 #49798 [Debug] > │ </text>                                                                      │

02:09:30 #49799 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49800 [Debug] > │ points="49,255 54,255 "/>                                                    │

02:09:30 #49801 [Debug] > │ <text x="45" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #49802 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49803 [Debug] > │ 0.0                                                                          │

02:09:30 #49804 [Debug] > │ </text>                                                                      │

02:09:30 #49805 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49806 [Debug] > │ points="49,187 54,187 "/>                                                    │

02:09:30 #49807 [Debug] > │ <text x="45" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #49808 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49809 [Debug] > │ 0.0                                                                          │

02:09:30 #49810 [Debug] > │ </text>                                                                      │

02:09:30 #49811 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49812 [Debug] > │ points="49,120 54,120 "/>                                                    │

02:09:30 #49813 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49814 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:30 #49815 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:30 #49816 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49817 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49818 [Debug] > │ 0.0                                                                          │

02:09:30 #49819 [Debug] > │ </text>                                                                      │

02:09:30 #49820 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49821 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:30 #49822 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49823 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49824 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49825 [Debug] > │ 0.1                                                                          │

02:09:30 #49826 [Debug] > │ </text>                                                                      │

02:09:30 #49827 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49828 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:30 #49829 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49830 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49831 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49832 [Debug] > │ 0.1                                                                          │

02:09:30 #49833 [Debug] > │ </text>                                                                      │

02:09:30 #49834 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49835 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:30 #49836 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49837 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49838 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49839 [Debug] > │ 0.2                                                                          │

02:09:30 #49840 [Debug] > │ </text>                                                                      │

02:09:30 #49841 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49842 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:30 #49843 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49844 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49845 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49846 [Debug] > │ 0.2                                                                          │

02:09:30 #49847 [Debug] > │ </text>                                                                      │

02:09:30 #49848 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49849 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:30 #49850 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49851 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49852 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49853 [Debug] > │ 0.2                                                                          │

02:09:30 #49854 [Debug] > │ </text>                                                                      │

02:09:30 #49855 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49856 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:30 #49857 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49858 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49859 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49860 [Debug] > │ 0.3                                                                          │

02:09:30 #49861 [Debug] > │ </text>                                                                      │

02:09:30 #49862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49863 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:30 #49864 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49865 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49866 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49867 [Debug] > │ 0.3                                                                          │

02:09:30 #49868 [Debug] > │ </text>                                                                      │

02:09:30 #49869 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49870 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:30 #49871 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49872 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49873 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49874 [Debug] > │ 0.4                                                                          │

02:09:30 #49875 [Debug] > │ </text>                                                                      │

02:09:30 #49876 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49877 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:30 #49878 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49879 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49880 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49881 [Debug] > │ 0.4                                                                          │

02:09:30 #49882 [Debug] > │ </text>                                                                      │

02:09:30 #49883 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49884 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:30 #49885 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49886 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49887 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49888 [Debug] > │ 0.5                                                                          │

02:09:30 #49889 [Debug] > │ </text>                                                                      │

02:09:30 #49890 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49891 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:30 #49892 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49893 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49894 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49895 [Debug] > │ 0.5                                                                          │

02:09:30 #49896 [Debug] > │ </text>                                                                      │

02:09:30 #49897 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49898 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:30 #49899 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49900 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49901 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49902 [Debug] > │ 0.6                                                                          │

02:09:30 #49903 [Debug] > │ </text>                                                                      │

02:09:30 #49904 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49905 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:30 #49906 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #49907 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49908 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49909 [Debug] > │ 0.7                                                                          │

02:09:30 #49910 [Debug] > │ </text>                                                                      │

02:09:30 #49911 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49912 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:30 #49913 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49914 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:30 #49915 [Debug] > │ <text x="595" y="389" dy="0.5ex" text-anchor="start"                         │

02:09:30 #49916 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49917 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49918 [Debug] > │ -0.0                                                                         │

02:09:30 #49919 [Debug] > │ </text>                                                                      │

02:09:30 #49920 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49921 [Debug] > │ points="585,389 590,389 "/>                                                  │

02:09:30 #49922 [Debug] > │ <text x="617" y="322" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #49923 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49924 [Debug] > │ 0.0                                                                          │

02:09:30 #49925 [Debug] > │ </text>                                                                      │

02:09:30 #49926 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49927 [Debug] > │ points="585,322 590,322 "/>                                                  │

02:09:30 #49928 [Debug] > │ <text x="617" y="255" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #49929 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49930 [Debug] > │ 0.0                                                                          │

02:09:30 #49931 [Debug] > │ </text>                                                                      │

02:09:30 #49932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49933 [Debug] > │ points="585,255 590,255 "/>                                                  │

02:09:30 #49934 [Debug] > │ <text x="617" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #49935 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49936 [Debug] > │ 0.0                                                                          │

02:09:30 #49937 [Debug] > │ </text>                                                                      │

02:09:30 #49938 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49939 [Debug] > │ points="585,187 590,187 "/>                                                  │

02:09:30 #49940 [Debug] > │ <text x="617" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #49941 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #49942 [Debug] > │ 0.0                                                                          │

02:09:30 #49943 [Debug] > │ </text>                                                                      │

02:09:30 #49944 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #49945 [Debug] > │ points="585,120 590,120 "/>                                                  │

02:09:30 #49946 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #49947 [Debug] > │ points="69,322 77,288 85,254 93,222 100,192 108,165 116,141 123,121 131,105  │

02:09:30 #49948 [Debug] > │ 139,94 146,87 154,85 162,89 169,97 177,110 185,127 192,149 200,174 208,202   │

02:09:30 #49949 [Debug] > │ 215,232 223,264 230,297 237,328 244,355 249,375 252,383 253,377 252,358      │

02:09:30 #49950 [Debug] > │ 250,334 249,314 250,304 251,297 251,287 250,271 250,257 250,250 251,245      │

02:09:30 #49951 [Debug] > │ 250,236 250,230 251,230 251,229 250,229 250,233 251,239 250,244 250,253      │

02:09:30 #49952 [Debug] > │ 251,264 250,274 251,287 250,299 250,312 251,326 250,339 250,353 250,365      │

02:09:30 #49953 [Debug] > │ 250,376 250,387 250,396 250,403 250,409 250,413 250,415 545,180 553,226      │

02:09:30 #49954 [Debug] > │ 561,275 569,322 "/>                                                          │

02:09:30 #49955 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:30 #49956 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:30 #49957 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:30 #49958 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49959 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49960 [Debug] > │ 60                                                                           │

02:09:30 #49961 [Debug] > │ </text>                                                                      │

02:09:30 #49962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #49963 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:30 #49964 [Debug] > │ </svg>                                                                       │

02:09:30 #49965 [Debug] > │ </td></tr><tr><td>61</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:30 #49966 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:30 #49967 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:30 #49968 [Debug] > │ stroke="none"/>                                                              │

02:09:30 #49969 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:30 #49970 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #49971 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #49972 [Debug] > │ wave                                                                         │

02:09:30 #49973 [Debug] > │ </text>                                                                      │

02:09:30 #49974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:30 #49975 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #49976 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #49977 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #49978 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:30 #49979 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #49980 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:30 #49981 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #49982 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:30 #49983 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #49984 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:30 #49985 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:30 #49986 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:30 #49987 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #49988 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:30 #49989 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:30 #49990 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:30 #49991 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:30 #49992 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:30 #49993 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:30 #49994 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:30 #49995 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:30 #49996 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:30 #49997 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #49998 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:30 #49999 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:30 #50000 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:30 #50001 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:30 #50002 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:30 #50003 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:30 #50004 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:30 #50005 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:30 #50006 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:30 #50007 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:30 #50008 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:30 #50009 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:30 #50010 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:30 #50011 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:30 #50012 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:30 #50013 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:30 #50014 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:30 #50015 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:30 #50016 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:30 #50017 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:30 #50018 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:30 #50019 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:30 #50020 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:30 #50021 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:30 #50022 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:30 #50023 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:30 #50024 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:30 #50025 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:30 #50026 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:30 #50027 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:30 #50028 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:30 #50029 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:30 #50030 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:30 #50031 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:30 #50032 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:30 #50033 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:30 #50034 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:30 #50035 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:30 #50036 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:30 #50037 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:30 #50038 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:30 #50039 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:30 #50040 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:30 #50041 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:30 #50042 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:30 #50043 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:30 #50044 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:30 #50045 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:30 #50046 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:30 #50047 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:30 #50048 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:30 #50049 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:30 #50050 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:30 #50051 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:30 #50052 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:30 #50053 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:30 #50054 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:30 #50055 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:30 #50056 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:30 #50057 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:30 #50058 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:30 #50059 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:30 #50060 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:30 #50061 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:30 #50062 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:30 #50063 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:30 #50064 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:30 #50065 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:30 #50066 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:30 #50067 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:30 #50068 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:30 #50069 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:30 #50070 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:30 #50071 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:30 #50072 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:30 #50073 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:30 #50074 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:30 #50075 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:30 #50076 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:30 #50077 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:30 #50078 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:30 #50079 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:30 #50080 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:30 #50081 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:30 #50082 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:30 #50083 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:30 #50084 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:30 #50085 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:30 #50086 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:30 #50087 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:30 #50088 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:30 #50089 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:30 #50090 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:30 #50091 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:30 #50092 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:30 #50093 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:30 #50094 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:30 #50095 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:30 #50096 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:30 #50097 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:30 #50098 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:30 #50099 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:30 #50100 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:30 #50101 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:30 #50102 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:30 #50103 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:30 #50104 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:30 #50105 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:30 #50106 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:30 #50107 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:30 #50108 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="419"         │

02:09:30 #50109 [Debug] > │ x2="584" y2="419"/>                                                          │

02:09:30 #50110 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:30 #50111 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:30 #50112 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="391"         │

02:09:30 #50113 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:30 #50114 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="377"         │

02:09:30 #50115 [Debug] > │ x2="584" y2="377"/>                                                          │

02:09:30 #50116 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:09:30 #50117 [Debug] > │ x2="584" y2="363"/>                                                          │

02:09:30 #50118 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="350"         │

02:09:30 #50119 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:30 #50120 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:30 #50121 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:30 #50122 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="322"         │

02:09:30 #50123 [Debug] > │ x2="584" y2="322"/>                                                          │

02:09:30 #50124 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="308"         │

02:09:30 #50125 [Debug] > │ x2="584" y2="308"/>                                                          │

02:09:30 #50126 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="294"         │

02:09:30 #50127 [Debug] > │ x2="584" y2="294"/>                                                          │

02:09:30 #50128 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="281"         │

02:09:30 #50129 [Debug] > │ x2="584" y2="281"/>                                                          │

02:09:30 #50130 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="267"         │

02:09:30 #50131 [Debug] > │ x2="584" y2="267"/>                                                          │

02:09:30 #50132 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="253"         │

02:09:30 #50133 [Debug] > │ x2="584" y2="253"/>                                                          │

02:09:30 #50134 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="239"         │

02:09:30 #50135 [Debug] > │ x2="584" y2="239"/>                                                          │

02:09:30 #50136 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="225"         │

02:09:30 #50137 [Debug] > │ x2="584" y2="225"/>                                                          │

02:09:30 #50138 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="212"         │

02:09:30 #50139 [Debug] > │ x2="584" y2="212"/>                                                          │

02:09:30 #50140 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:30 #50141 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:30 #50142 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:30 #50143 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:30 #50144 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="170"         │

02:09:30 #50145 [Debug] > │ x2="584" y2="170"/>                                                          │

02:09:30 #50146 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="157"         │

02:09:30 #50147 [Debug] > │ x2="584" y2="157"/>                                                          │

02:09:30 #50148 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="143"         │

02:09:30 #50149 [Debug] > │ x2="584" y2="143"/>                                                          │

02:09:30 #50150 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="129"         │

02:09:30 #50151 [Debug] > │ x2="584" y2="129"/>                                                          │

02:09:30 #50152 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="115"         │

02:09:30 #50153 [Debug] > │ x2="584" y2="115"/>                                                          │

02:09:30 #50154 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="101"         │

02:09:30 #50155 [Debug] > │ x2="584" y2="101"/>                                                          │

02:09:30 #50156 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="88" x2="584" │

02:09:30 #50157 [Debug] > │ y2="88"/>                                                                    │

02:09:30 #50158 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:30 #50159 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50160 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50161 [Debug] > │ position (m)                                                                 │

02:09:30 #50162 [Debug] > │ </text>                                                                      │

02:09:30 #50163 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:30 #50164 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50165 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:30 #50166 [Debug] > │ displacement (m)                                                             │

02:09:30 #50167 [Debug] > │ </text>                                                                      │

02:09:30 #50168 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:30 #50169 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50170 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50171 [Debug] > │ position (m)                                                                 │

02:09:30 #50172 [Debug] > │ </text>                                                                      │

02:09:30 #50173 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50174 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50175 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:30 #50176 [Debug] > │ displacement (m)                                                             │

02:09:30 #50177 [Debug] > │ </text>                                                                      │

02:09:30 #50178 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #50179 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50180 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:30 #50181 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #50182 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:30 #50183 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #50184 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:30 #50185 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:30 #50186 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:30 #50187 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:30 #50188 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:30 #50189 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:30 #50190 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:30 #50191 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:30 #50192 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:30 #50193 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:30 #50194 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:30 #50195 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:30 #50196 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:30 #50197 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:30 #50198 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:30 #50199 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:30 #50200 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:30 #50201 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:30 #50202 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:30 #50203 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:30 #50204 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:30 #50205 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:30 #50206 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="419"         │

02:09:30 #50207 [Debug] > │ x2="584" y2="419"/>                                                          │

02:09:30 #50208 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="384"         │

02:09:30 #50209 [Debug] > │ x2="584" y2="384"/>                                                          │

02:09:30 #50210 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="350"         │

02:09:30 #50211 [Debug] > │ x2="584" y2="350"/>                                                          │

02:09:30 #50212 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="315"         │

02:09:30 #50213 [Debug] > │ x2="584" y2="315"/>                                                          │

02:09:30 #50214 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="281"         │

02:09:30 #50215 [Debug] > │ x2="584" y2="281"/>                                                          │

02:09:30 #50216 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="246"         │

02:09:30 #50217 [Debug] > │ x2="584" y2="246"/>                                                          │

02:09:30 #50218 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="212"         │

02:09:30 #50219 [Debug] > │ x2="584" y2="212"/>                                                          │

02:09:30 #50220 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="177"         │

02:09:30 #50221 [Debug] > │ x2="584" y2="177"/>                                                          │

02:09:30 #50222 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="143"         │

02:09:30 #50223 [Debug] > │ x2="584" y2="143"/>                                                          │

02:09:30 #50224 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="108"         │

02:09:30 #50225 [Debug] > │ x2="584" y2="108"/>                                                          │

02:09:30 #50226 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50227 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:30 #50228 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:30 #50229 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50230 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50231 [Debug] > │ 0.0                                                                          │

02:09:30 #50232 [Debug] > │ </text>                                                                      │

02:09:30 #50233 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50234 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:30 #50235 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50236 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50237 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50238 [Debug] > │ 0.1                                                                          │

02:09:30 #50239 [Debug] > │ </text>                                                                      │

02:09:30 #50240 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50241 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:30 #50242 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50243 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50244 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50245 [Debug] > │ 0.1                                                                          │

02:09:30 #50246 [Debug] > │ </text>                                                                      │

02:09:30 #50247 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50248 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:30 #50249 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50250 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50251 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50252 [Debug] > │ 0.2                                                                          │

02:09:30 #50253 [Debug] > │ </text>                                                                      │

02:09:30 #50254 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50255 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:30 #50256 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50257 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50258 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50259 [Debug] > │ 0.2                                                                          │

02:09:30 #50260 [Debug] > │ </text>                                                                      │

02:09:30 #50261 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50262 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:30 #50263 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50264 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50265 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50266 [Debug] > │ 0.2                                                                          │

02:09:30 #50267 [Debug] > │ </text>                                                                      │

02:09:30 #50268 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50269 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:30 #50270 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50271 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50272 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50273 [Debug] > │ 0.3                                                                          │

02:09:30 #50274 [Debug] > │ </text>                                                                      │

02:09:30 #50275 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50276 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:30 #50277 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50278 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50279 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50280 [Debug] > │ 0.3                                                                          │

02:09:30 #50281 [Debug] > │ </text>                                                                      │

02:09:30 #50282 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50283 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:30 #50284 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50285 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50286 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50287 [Debug] > │ 0.4                                                                          │

02:09:30 #50288 [Debug] > │ </text>                                                                      │

02:09:30 #50289 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50290 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:30 #50291 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50292 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50293 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50294 [Debug] > │ 0.4                                                                          │

02:09:30 #50295 [Debug] > │ </text>                                                                      │

02:09:30 #50296 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50297 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:30 #50298 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50299 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50300 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50301 [Debug] > │ 0.5                                                                          │

02:09:30 #50302 [Debug] > │ </text>                                                                      │

02:09:30 #50303 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50304 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:30 #50305 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50306 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50307 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50308 [Debug] > │ 0.5                                                                          │

02:09:30 #50309 [Debug] > │ </text>                                                                      │

02:09:30 #50310 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50311 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:30 #50312 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50313 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50314 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50315 [Debug] > │ 0.6                                                                          │

02:09:30 #50316 [Debug] > │ </text>                                                                      │

02:09:30 #50317 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50318 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:30 #50319 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50320 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50321 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50322 [Debug] > │ 0.7                                                                          │

02:09:30 #50323 [Debug] > │ </text>                                                                      │

02:09:30 #50324 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50325 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:30 #50326 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50327 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:30 #50328 [Debug] > │ <text x="45" y="419" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50329 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50330 [Debug] > │ -0.0                                                                         │

02:09:30 #50331 [Debug] > │ </text>                                                                      │

02:09:30 #50332 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50333 [Debug] > │ points="49,419 54,419 "/>                                                    │

02:09:30 #50334 [Debug] > │ <text x="45" y="384" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50335 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50336 [Debug] > │ -0.0                                                                         │

02:09:30 #50337 [Debug] > │ </text>                                                                      │

02:09:30 #50338 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50339 [Debug] > │ points="49,384 54,384 "/>                                                    │

02:09:30 #50340 [Debug] > │ <text x="45" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50341 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50342 [Debug] > │ 0.0                                                                          │

02:09:30 #50343 [Debug] > │ </text>                                                                      │

02:09:30 #50344 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50345 [Debug] > │ points="49,350 54,350 "/>                                                    │

02:09:30 #50346 [Debug] > │ <text x="45" y="315" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50347 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50348 [Debug] > │ 0.0                                                                          │

02:09:30 #50349 [Debug] > │ </text>                                                                      │

02:09:30 #50350 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50351 [Debug] > │ points="49,315 54,315 "/>                                                    │

02:09:30 #50352 [Debug] > │ <text x="45" y="281" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50353 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50354 [Debug] > │ 0.0                                                                          │

02:09:30 #50355 [Debug] > │ </text>                                                                      │

02:09:30 #50356 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50357 [Debug] > │ points="49,281 54,281 "/>                                                    │

02:09:30 #50358 [Debug] > │ <text x="45" y="246" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50359 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50360 [Debug] > │ 0.0                                                                          │

02:09:30 #50361 [Debug] > │ </text>                                                                      │

02:09:30 #50362 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50363 [Debug] > │ points="49,246 54,246 "/>                                                    │

02:09:30 #50364 [Debug] > │ <text x="45" y="212" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50365 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50366 [Debug] > │ 0.0                                                                          │

02:09:30 #50367 [Debug] > │ </text>                                                                      │

02:09:30 #50368 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50369 [Debug] > │ points="49,212 54,212 "/>                                                    │

02:09:30 #50370 [Debug] > │ <text x="45" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50371 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50372 [Debug] > │ 0.0                                                                          │

02:09:30 #50373 [Debug] > │ </text>                                                                      │

02:09:30 #50374 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50375 [Debug] > │ points="49,177 54,177 "/>                                                    │

02:09:30 #50376 [Debug] > │ <text x="45" y="143" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50377 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50378 [Debug] > │ 0.0                                                                          │

02:09:30 #50379 [Debug] > │ </text>                                                                      │

02:09:30 #50380 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50381 [Debug] > │ points="49,143 54,143 "/>                                                    │

02:09:30 #50382 [Debug] > │ <text x="45" y="108" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50383 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50384 [Debug] > │ 0.0                                                                          │

02:09:30 #50385 [Debug] > │ </text>                                                                      │

02:09:30 #50386 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50387 [Debug] > │ points="49,108 54,108 "/>                                                    │

02:09:30 #50388 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50389 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:30 #50390 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:30 #50391 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50392 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50393 [Debug] > │ 0.0                                                                          │

02:09:30 #50394 [Debug] > │ </text>                                                                      │

02:09:30 #50395 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50396 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:30 #50397 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50398 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50399 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50400 [Debug] > │ 0.1                                                                          │

02:09:30 #50401 [Debug] > │ </text>                                                                      │

02:09:30 #50402 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50403 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:30 #50404 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50405 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50406 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50407 [Debug] > │ 0.1                                                                          │

02:09:30 #50408 [Debug] > │ </text>                                                                      │

02:09:30 #50409 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50410 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:30 #50411 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50412 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50413 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50414 [Debug] > │ 0.2                                                                          │

02:09:30 #50415 [Debug] > │ </text>                                                                      │

02:09:30 #50416 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50417 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:30 #50418 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50419 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50420 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50421 [Debug] > │ 0.2                                                                          │

02:09:30 #50422 [Debug] > │ </text>                                                                      │

02:09:30 #50423 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50424 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:30 #50425 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50426 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50427 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50428 [Debug] > │ 0.2                                                                          │

02:09:30 #50429 [Debug] > │ </text>                                                                      │

02:09:30 #50430 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50431 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:30 #50432 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50433 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50434 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50435 [Debug] > │ 0.3                                                                          │

02:09:30 #50436 [Debug] > │ </text>                                                                      │

02:09:30 #50437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50438 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:30 #50439 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50441 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50442 [Debug] > │ 0.3                                                                          │

02:09:30 #50443 [Debug] > │ </text>                                                                      │

02:09:30 #50444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50445 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:30 #50446 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50449 [Debug] > │ 0.4                                                                          │

02:09:30 #50450 [Debug] > │ </text>                                                                      │

02:09:30 #50451 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50452 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:30 #50453 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50454 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50455 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50456 [Debug] > │ 0.4                                                                          │

02:09:30 #50457 [Debug] > │ </text>                                                                      │

02:09:30 #50458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50459 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:30 #50460 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50461 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50462 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50463 [Debug] > │ 0.5                                                                          │

02:09:30 #50464 [Debug] > │ </text>                                                                      │

02:09:30 #50465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50466 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:30 #50467 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50468 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50469 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50470 [Debug] > │ 0.5                                                                          │

02:09:30 #50471 [Debug] > │ </text>                                                                      │

02:09:30 #50472 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50473 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:30 #50474 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50477 [Debug] > │ 0.6                                                                          │

02:09:30 #50478 [Debug] > │ </text>                                                                      │

02:09:30 #50479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50480 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:30 #50481 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50484 [Debug] > │ 0.7                                                                          │

02:09:30 #50485 [Debug] > │ </text>                                                                      │

02:09:30 #50486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50487 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:30 #50488 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50489 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:30 #50490 [Debug] > │ <text x="595" y="419" dy="0.5ex" text-anchor="start"                         │

02:09:30 #50491 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50492 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50493 [Debug] > │ -0.0                                                                         │

02:09:30 #50494 [Debug] > │ </text>                                                                      │

02:09:30 #50495 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50496 [Debug] > │ points="585,419 590,419 "/>                                                  │

02:09:30 #50497 [Debug] > │ <text x="595" y="384" dy="0.5ex" text-anchor="start"                         │

02:09:30 #50498 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50499 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50500 [Debug] > │ -0.0                                                                         │

02:09:30 #50501 [Debug] > │ </text>                                                                      │

02:09:30 #50502 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50503 [Debug] > │ points="585,384 590,384 "/>                                                  │

02:09:30 #50504 [Debug] > │ <text x="617" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50505 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50506 [Debug] > │ 0.0                                                                          │

02:09:30 #50507 [Debug] > │ </text>                                                                      │

02:09:30 #50508 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50509 [Debug] > │ points="585,350 590,350 "/>                                                  │

02:09:30 #50510 [Debug] > │ <text x="617" y="315" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50511 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50512 [Debug] > │ 0.0                                                                          │

02:09:30 #50513 [Debug] > │ </text>                                                                      │

02:09:30 #50514 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50515 [Debug] > │ points="585,315 590,315 "/>                                                  │

02:09:30 #50516 [Debug] > │ <text x="617" y="281" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50517 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50518 [Debug] > │ 0.0                                                                          │

02:09:30 #50519 [Debug] > │ </text>                                                                      │

02:09:30 #50520 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50521 [Debug] > │ points="585,281 590,281 "/>                                                  │

02:09:30 #50522 [Debug] > │ <text x="617" y="246" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50523 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50524 [Debug] > │ 0.0                                                                          │

02:09:30 #50525 [Debug] > │ </text>                                                                      │

02:09:30 #50526 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50527 [Debug] > │ points="585,246 590,246 "/>                                                  │

02:09:30 #50528 [Debug] > │ <text x="617" y="212" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50529 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50530 [Debug] > │ 0.0                                                                          │

02:09:30 #50531 [Debug] > │ </text>                                                                      │

02:09:30 #50532 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50533 [Debug] > │ points="585,212 590,212 "/>                                                  │

02:09:30 #50534 [Debug] > │ <text x="617" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50535 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50536 [Debug] > │ 0.0                                                                          │

02:09:30 #50537 [Debug] > │ </text>                                                                      │

02:09:30 #50538 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50539 [Debug] > │ points="585,177 590,177 "/>                                                  │

02:09:30 #50540 [Debug] > │ <text x="617" y="143" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50541 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50542 [Debug] > │ 0.0                                                                          │

02:09:30 #50543 [Debug] > │ </text>                                                                      │

02:09:30 #50544 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50545 [Debug] > │ points="585,143 590,143 "/>                                                  │

02:09:30 #50546 [Debug] > │ <text x="617" y="108" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #50547 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50548 [Debug] > │ 0.0                                                                          │

02:09:30 #50549 [Debug] > │ </text>                                                                      │

02:09:30 #50550 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50551 [Debug] > │ points="585,108 590,108 "/>                                                  │

02:09:30 #50552 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #50553 [Debug] > │ points="69,350 77,311 85,274 93,238 100,205 108,174 116,148 123,125 131,107  │

02:09:30 #50554 [Debug] > │ 139,95 146,87 154,85 162,89 169,98 177,113 185,132 192,156 200,184 208,215   │

02:09:30 #50555 [Debug] > │ 215,250 223,285 230,320 237,353 242,381 247,398 248,401 248,391 246,372      │

02:09:30 #50556 [Debug] > │ 245,353 244,343 246,340 246,336 246,325 245,311 245,304 246,302 246,296      │

02:09:30 #50557 [Debug] > │ 245,288 246,286 246,286 246,284 245,285 246,288 246,291 246,295 246,302      │

02:09:30 #50558 [Debug] > │ 246,309 246,316 246,325 246,334 246,343 246,353 246,362 246,371 246,380      │

02:09:30 #50559 [Debug] > │ 246,388 246,395 246,401 246,407 246,411 246,413 246,415 545,204 553,251      │

02:09:30 #50560 [Debug] > │ 563,316 569,350 "/>                                                          │

02:09:30 #50561 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:30 #50562 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:30 #50563 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:30 #50564 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50565 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50566 [Debug] > │ 61                                                                           │

02:09:30 #50567 [Debug] > │ </text>                                                                      │

02:09:30 #50568 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #50569 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:30 #50570 [Debug] > │ </svg>                                                                       │

02:09:30 #50571 [Debug] > │ </td></tr><tr><td>62</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:30 #50572 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:30 #50573 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:30 #50574 [Debug] > │ stroke="none"/>                                                              │

02:09:30 #50575 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:30 #50576 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50577 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50578 [Debug] > │ wave                                                                         │

02:09:30 #50579 [Debug] > │ </text>                                                                      │

02:09:30 #50580 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:30 #50581 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50582 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #50583 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50584 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:30 #50585 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50586 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:30 #50587 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50588 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

02:09:30 #50589 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50590 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:30 #50591 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:30 #50592 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:30 #50593 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #50594 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="116" y1="424"        │

02:09:30 #50595 [Debug] > │ x2="116" y2="75"/>                                                           │

02:09:30 #50596 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:30 #50597 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:30 #50598 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="131" y1="424"        │

02:09:30 #50599 [Debug] > │ x2="131" y2="75"/>                                                           │

02:09:30 #50600 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="139" y1="424"        │

02:09:30 #50601 [Debug] > │ x2="139" y2="75"/>                                                           │

02:09:30 #50602 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:30 #50603 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #50604 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="154" y1="424"        │

02:09:30 #50605 [Debug] > │ x2="154" y2="75"/>                                                           │

02:09:30 #50606 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="162" y1="424"        │

02:09:30 #50607 [Debug] > │ x2="162" y2="75"/>                                                           │

02:09:30 #50608 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:30 #50609 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:30 #50610 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="177" y1="424"        │

02:09:30 #50611 [Debug] > │ x2="177" y2="75"/>                                                           │

02:09:30 #50612 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="185" y1="424"        │

02:09:30 #50613 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:30 #50614 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="192" y1="424"        │

02:09:30 #50615 [Debug] > │ x2="192" y2="75"/>                                                           │

02:09:30 #50616 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="200" y1="424"        │

02:09:30 #50617 [Debug] > │ x2="200" y2="75"/>                                                           │

02:09:30 #50618 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="208" y1="424"        │

02:09:30 #50619 [Debug] > │ x2="208" y2="75"/>                                                           │

02:09:30 #50620 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="215" y1="424"        │

02:09:30 #50621 [Debug] > │ x2="215" y2="75"/>                                                           │

02:09:30 #50622 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="223" y1="424"        │

02:09:30 #50623 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:30 #50624 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="231" y1="424"        │

02:09:30 #50625 [Debug] > │ x2="231" y2="75"/>                                                           │

02:09:30 #50626 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="238" y1="424"        │

02:09:30 #50627 [Debug] > │ x2="238" y2="75"/>                                                           │

02:09:30 #50628 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="246" y1="424"        │

02:09:30 #50629 [Debug] > │ x2="246" y2="75"/>                                                           │

02:09:30 #50630 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="254" y1="424"        │

02:09:30 #50631 [Debug] > │ x2="254" y2="75"/>                                                           │

02:09:30 #50632 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="261" y1="424"        │

02:09:30 #50633 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:30 #50634 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="269" y1="424"        │

02:09:30 #50635 [Debug] > │ x2="269" y2="75"/>                                                           │

02:09:30 #50636 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="277" y1="424"        │

02:09:30 #50637 [Debug] > │ x2="277" y2="75"/>                                                           │

02:09:30 #50638 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="284" y1="424"        │

02:09:30 #50639 [Debug] > │ x2="284" y2="75"/>                                                           │

02:09:30 #50640 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="292" y1="424"        │

02:09:30 #50641 [Debug] > │ x2="292" y2="75"/>                                                           │

02:09:30 #50642 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="300" y1="424"        │

02:09:30 #50643 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:30 #50644 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="307" y1="424"        │

02:09:30 #50645 [Debug] > │ x2="307" y2="75"/>                                                           │

02:09:30 #50646 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="315" y1="424"        │

02:09:30 #50647 [Debug] > │ x2="315" y2="75"/>                                                           │

02:09:30 #50648 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="323" y1="424"        │

02:09:30 #50649 [Debug] > │ x2="323" y2="75"/>                                                           │

02:09:30 #50650 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="331" y1="424"        │

02:09:30 #50651 [Debug] > │ x2="331" y2="75"/>                                                           │

02:09:30 #50652 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="338" y1="424"        │

02:09:30 #50653 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:30 #50654 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="346" y1="424"        │

02:09:30 #50655 [Debug] > │ x2="346" y2="75"/>                                                           │

02:09:30 #50656 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="354" y1="424"        │

02:09:30 #50657 [Debug] > │ x2="354" y2="75"/>                                                           │

02:09:30 #50658 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="361" y1="424"        │

02:09:30 #50659 [Debug] > │ x2="361" y2="75"/>                                                           │

02:09:30 #50660 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="369" y1="424"        │

02:09:30 #50661 [Debug] > │ x2="369" y2="75"/>                                                           │

02:09:30 #50662 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="377" y1="424"        │

02:09:30 #50663 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:30 #50664 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="384" y1="424"        │

02:09:30 #50665 [Debug] > │ x2="384" y2="75"/>                                                           │

02:09:30 #50666 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="392" y1="424"        │

02:09:30 #50667 [Debug] > │ x2="392" y2="75"/>                                                           │

02:09:30 #50668 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="400" y1="424"        │

02:09:30 #50669 [Debug] > │ x2="400" y2="75"/>                                                           │

02:09:30 #50670 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="407" y1="424"        │

02:09:30 #50671 [Debug] > │ x2="407" y2="75"/>                                                           │

02:09:30 #50672 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="415" y1="424"        │

02:09:30 #50673 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:30 #50674 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="423" y1="424"        │

02:09:30 #50675 [Debug] > │ x2="423" y2="75"/>                                                           │

02:09:30 #50676 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="430" y1="424"        │

02:09:30 #50677 [Debug] > │ x2="430" y2="75"/>                                                           │

02:09:30 #50678 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="438" y1="424"        │

02:09:30 #50679 [Debug] > │ x2="438" y2="75"/>                                                           │

02:09:30 #50680 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="446" y1="424"        │

02:09:30 #50681 [Debug] > │ x2="446" y2="75"/>                                                           │

02:09:30 #50682 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="453" y1="424"        │

02:09:30 #50683 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:30 #50684 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="461" y1="424"        │

02:09:30 #50685 [Debug] > │ x2="461" y2="75"/>                                                           │

02:09:30 #50686 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="469" y1="424"        │

02:09:30 #50687 [Debug] > │ x2="469" y2="75"/>                                                           │

02:09:30 #50688 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="476" y1="424"        │

02:09:30 #50689 [Debug] > │ x2="476" y2="75"/>                                                           │

02:09:30 #50690 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="484" y1="424"        │

02:09:30 #50691 [Debug] > │ x2="484" y2="75"/>                                                           │

02:09:30 #50692 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="492" y1="424"        │

02:09:30 #50693 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:30 #50694 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="499" y1="424"        │

02:09:30 #50695 [Debug] > │ x2="499" y2="75"/>                                                           │

02:09:30 #50696 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="507" y1="424"        │

02:09:30 #50697 [Debug] > │ x2="507" y2="75"/>                                                           │

02:09:30 #50698 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="515" y1="424"        │

02:09:30 #50699 [Debug] > │ x2="515" y2="75"/>                                                           │

02:09:30 #50700 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="522" y1="424"        │

02:09:30 #50701 [Debug] > │ x2="522" y2="75"/>                                                           │

02:09:30 #50702 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="530" y1="424"        │

02:09:30 #50703 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:30 #50704 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="538" y1="424"        │

02:09:30 #50705 [Debug] > │ x2="538" y2="75"/>                                                           │

02:09:30 #50706 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="545" y1="424"        │

02:09:30 #50707 [Debug] > │ x2="545" y2="75"/>                                                           │

02:09:30 #50708 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="553" y1="424"        │

02:09:30 #50709 [Debug] > │ x2="553" y2="75"/>                                                           │

02:09:30 #50710 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:30 #50711 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:30 #50712 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:30 #50713 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:30 #50714 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="420"         │

02:09:30 #50715 [Debug] > │ x2="584" y2="420"/>                                                          │

02:09:30 #50716 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="406"         │

02:09:30 #50717 [Debug] > │ x2="584" y2="406"/>                                                          │

02:09:30 #50718 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="392"         │

02:09:30 #50719 [Debug] > │ x2="584" y2="392"/>                                                          │

02:09:30 #50720 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="378"         │

02:09:30 #50721 [Debug] > │ x2="584" y2="378"/>                                                          │

02:09:30 #50722 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:09:30 #50723 [Debug] > │ x2="584" y2="363"/>                                                          │

02:09:30 #50724 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:30 #50725 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:30 #50726 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="335"         │

02:09:30 #50727 [Debug] > │ x2="584" y2="335"/>                                                          │

02:09:30 #50728 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:30 #50729 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:30 #50730 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="307"         │

02:09:30 #50731 [Debug] > │ x2="584" y2="307"/>                                                          │

02:09:30 #50732 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="292"         │

02:09:30 #50733 [Debug] > │ x2="584" y2="292"/>                                                          │

02:09:30 #50734 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="278"         │

02:09:30 #50735 [Debug] > │ x2="584" y2="278"/>                                                          │

02:09:30 #50736 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="264"         │

02:09:30 #50737 [Debug] > │ x2="584" y2="264"/>                                                          │

02:09:30 #50738 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:30 #50739 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:30 #50740 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="235"         │

02:09:30 #50741 [Debug] > │ x2="584" y2="235"/>                                                          │

02:09:30 #50742 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="221"         │

02:09:30 #50743 [Debug] > │ x2="584" y2="221"/>                                                          │

02:09:30 #50744 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="207"         │

02:09:30 #50745 [Debug] > │ x2="584" y2="207"/>                                                          │

02:09:30 #50746 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="193"         │

02:09:30 #50747 [Debug] > │ x2="584" y2="193"/>                                                          │

02:09:30 #50748 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="178"         │

02:09:30 #50749 [Debug] > │ x2="584" y2="178"/>                                                          │

02:09:30 #50750 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="164"         │

02:09:30 #50751 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:30 #50752 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="150"         │

02:09:30 #50753 [Debug] > │ x2="584" y2="150"/>                                                          │

02:09:30 #50754 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="136"         │

02:09:30 #50755 [Debug] > │ x2="584" y2="136"/>                                                          │

02:09:30 #50756 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="122"         │

02:09:30 #50757 [Debug] > │ x2="584" y2="122"/>                                                          │

02:09:30 #50758 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="107"         │

02:09:30 #50759 [Debug] > │ x2="584" y2="107"/>                                                          │

02:09:30 #50760 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:09:30 #50761 [Debug] > │ y2="93"/>                                                                    │

02:09:30 #50762 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="79" x2="584" │

02:09:30 #50763 [Debug] > │ y2="79"/>                                                                    │

02:09:30 #50764 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:30 #50765 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50766 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50767 [Debug] > │ position (m)                                                                 │

02:09:30 #50768 [Debug] > │ </text>                                                                      │

02:09:30 #50769 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:30 #50770 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50771 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:30 #50772 [Debug] > │ displacement (m)                                                             │

02:09:30 #50773 [Debug] > │ </text>                                                                      │

02:09:30 #50774 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:30 #50775 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50776 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50777 [Debug] > │ position (m)                                                                 │

02:09:30 #50778 [Debug] > │ </text>                                                                      │

02:09:30 #50779 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:30 #50780 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50781 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:30 #50782 [Debug] > │ displacement (m)                                                             │

02:09:30 #50783 [Debug] > │ </text>                                                                      │

02:09:30 #50784 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #50785 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #50786 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:30 #50787 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #50788 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:30 #50789 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #50790 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="185" y1="424"        │

02:09:30 #50791 [Debug] > │ x2="185" y2="75"/>                                                           │

02:09:30 #50792 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="223" y1="424"        │

02:09:30 #50793 [Debug] > │ x2="223" y2="75"/>                                                           │

02:09:30 #50794 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="261" y1="424"        │

02:09:30 #50795 [Debug] > │ x2="261" y2="75"/>                                                           │

02:09:30 #50796 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="300" y1="424"        │

02:09:30 #50797 [Debug] > │ x2="300" y2="75"/>                                                           │

02:09:30 #50798 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="338" y1="424"        │

02:09:30 #50799 [Debug] > │ x2="338" y2="75"/>                                                           │

02:09:30 #50800 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="377" y1="424"        │

02:09:30 #50801 [Debug] > │ x2="377" y2="75"/>                                                           │

02:09:30 #50802 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="415" y1="424"        │

02:09:30 #50803 [Debug] > │ x2="415" y2="75"/>                                                           │

02:09:30 #50804 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="453" y1="424"        │

02:09:30 #50805 [Debug] > │ x2="453" y2="75"/>                                                           │

02:09:30 #50806 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="492" y1="424"        │

02:09:30 #50807 [Debug] > │ x2="492" y2="75"/>                                                           │

02:09:30 #50808 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="530" y1="424"        │

02:09:30 #50809 [Debug] > │ x2="530" y2="75"/>                                                           │

02:09:30 #50810 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="569" y1="424"        │

02:09:30 #50811 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:30 #50812 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="413"         │

02:09:30 #50813 [Debug] > │ x2="584" y2="413"/>                                                          │

02:09:30 #50814 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="378"         │

02:09:30 #50815 [Debug] > │ x2="584" y2="378"/>                                                          │

02:09:30 #50816 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="342"         │

02:09:30 #50817 [Debug] > │ x2="584" y2="342"/>                                                          │

02:09:30 #50818 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="307"         │

02:09:30 #50819 [Debug] > │ x2="584" y2="307"/>                                                          │

02:09:30 #50820 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="271"         │

02:09:30 #50821 [Debug] > │ x2="584" y2="271"/>                                                          │

02:09:30 #50822 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="235"         │

02:09:30 #50823 [Debug] > │ x2="584" y2="235"/>                                                          │

02:09:30 #50824 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="200"         │

02:09:30 #50825 [Debug] > │ x2="584" y2="200"/>                                                          │

02:09:30 #50826 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="164"         │

02:09:30 #50827 [Debug] > │ x2="584" y2="164"/>                                                          │

02:09:30 #50828 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="129"         │

02:09:30 #50829 [Debug] > │ x2="584" y2="129"/>                                                          │

02:09:30 #50830 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="93" x2="584" │

02:09:30 #50831 [Debug] > │ y2="93"/>                                                                    │

02:09:30 #50832 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50833 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:30 #50834 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:30 #50835 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50836 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50837 [Debug] > │ 0.0                                                                          │

02:09:30 #50838 [Debug] > │ </text>                                                                      │

02:09:30 #50839 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50840 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:30 #50841 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50842 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50843 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50844 [Debug] > │ 0.1                                                                          │

02:09:30 #50845 [Debug] > │ </text>                                                                      │

02:09:30 #50846 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50847 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:30 #50848 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50849 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50850 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50851 [Debug] > │ 0.1                                                                          │

02:09:30 #50852 [Debug] > │ </text>                                                                      │

02:09:30 #50853 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50854 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:30 #50855 [Debug] > │ <text x="185" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50856 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50857 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50858 [Debug] > │ 0.2                                                                          │

02:09:30 #50859 [Debug] > │ </text>                                                                      │

02:09:30 #50860 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50861 [Debug] > │ points="185,69 185,74 "/>                                                    │

02:09:30 #50862 [Debug] > │ <text x="223" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50863 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50864 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50865 [Debug] > │ 0.2                                                                          │

02:09:30 #50866 [Debug] > │ </text>                                                                      │

02:09:30 #50867 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50868 [Debug] > │ points="223,69 223,74 "/>                                                    │

02:09:30 #50869 [Debug] > │ <text x="261" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50870 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50871 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50872 [Debug] > │ 0.2                                                                          │

02:09:30 #50873 [Debug] > │ </text>                                                                      │

02:09:30 #50874 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50875 [Debug] > │ points="261,69 261,74 "/>                                                    │

02:09:30 #50876 [Debug] > │ <text x="300" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50877 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50878 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50879 [Debug] > │ 0.3                                                                          │

02:09:30 #50880 [Debug] > │ </text>                                                                      │

02:09:30 #50881 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50882 [Debug] > │ points="300,69 300,74 "/>                                                    │

02:09:30 #50883 [Debug] > │ <text x="338" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50884 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50885 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50886 [Debug] > │ 0.3                                                                          │

02:09:30 #50887 [Debug] > │ </text>                                                                      │

02:09:30 #50888 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50889 [Debug] > │ points="338,69 338,74 "/>                                                    │

02:09:30 #50890 [Debug] > │ <text x="377" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50891 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50892 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50893 [Debug] > │ 0.4                                                                          │

02:09:30 #50894 [Debug] > │ </text>                                                                      │

02:09:30 #50895 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50896 [Debug] > │ points="377,69 377,74 "/>                                                    │

02:09:30 #50897 [Debug] > │ <text x="415" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50898 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50899 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50900 [Debug] > │ 0.4                                                                          │

02:09:30 #50901 [Debug] > │ </text>                                                                      │

02:09:30 #50902 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50903 [Debug] > │ points="415,69 415,74 "/>                                                    │

02:09:30 #50904 [Debug] > │ <text x="453" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50905 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50906 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50907 [Debug] > │ 0.5                                                                          │

02:09:30 #50908 [Debug] > │ </text>                                                                      │

02:09:30 #50909 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50910 [Debug] > │ points="453,69 453,74 "/>                                                    │

02:09:30 #50911 [Debug] > │ <text x="492" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50912 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50913 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50914 [Debug] > │ 0.5                                                                          │

02:09:30 #50915 [Debug] > │ </text>                                                                      │

02:09:30 #50916 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50917 [Debug] > │ points="492,69 492,74 "/>                                                    │

02:09:30 #50918 [Debug] > │ <text x="530" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50919 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50920 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50921 [Debug] > │ 0.6                                                                          │

02:09:30 #50922 [Debug] > │ </text>                                                                      │

02:09:30 #50923 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50924 [Debug] > │ points="530,69 530,74 "/>                                                    │

02:09:30 #50925 [Debug] > │ <text x="569" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #50926 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50927 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50928 [Debug] > │ 0.7                                                                          │

02:09:30 #50929 [Debug] > │ </text>                                                                      │

02:09:30 #50930 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50931 [Debug] > │ points="569,69 569,74 "/>                                                    │

02:09:30 #50932 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50933 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:30 #50934 [Debug] > │ <text x="45" y="413" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50935 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50936 [Debug] > │ -0.0                                                                         │

02:09:30 #50937 [Debug] > │ </text>                                                                      │

02:09:30 #50938 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50939 [Debug] > │ points="49,413 54,413 "/>                                                    │

02:09:30 #50940 [Debug] > │ <text x="45" y="378" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50941 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50942 [Debug] > │ 0.0                                                                          │

02:09:30 #50943 [Debug] > │ </text>                                                                      │

02:09:30 #50944 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50945 [Debug] > │ points="49,378 54,378 "/>                                                    │

02:09:30 #50946 [Debug] > │ <text x="45" y="342" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50947 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50948 [Debug] > │ 0.0                                                                          │

02:09:30 #50949 [Debug] > │ </text>                                                                      │

02:09:30 #50950 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50951 [Debug] > │ points="49,342 54,342 "/>                                                    │

02:09:30 #50952 [Debug] > │ <text x="45" y="307" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50953 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50954 [Debug] > │ 0.0                                                                          │

02:09:30 #50955 [Debug] > │ </text>                                                                      │

02:09:30 #50956 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50957 [Debug] > │ points="49,307 54,307 "/>                                                    │

02:09:30 #50958 [Debug] > │ <text x="45" y="271" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50959 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50960 [Debug] > │ 0.0                                                                          │

02:09:30 #50961 [Debug] > │ </text>                                                                      │

02:09:30 #50962 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50963 [Debug] > │ points="49,271 54,271 "/>                                                    │

02:09:30 #50964 [Debug] > │ <text x="45" y="235" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50965 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50966 [Debug] > │ 0.0                                                                          │

02:09:30 #50967 [Debug] > │ </text>                                                                      │

02:09:30 #50968 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50969 [Debug] > │ points="49,235 54,235 "/>                                                    │

02:09:30 #50970 [Debug] > │ <text x="45" y="200" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50971 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50972 [Debug] > │ 0.0                                                                          │

02:09:30 #50973 [Debug] > │ </text>                                                                      │

02:09:30 #50974 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50975 [Debug] > │ points="49,200 54,200 "/>                                                    │

02:09:30 #50976 [Debug] > │ <text x="45" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50977 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50978 [Debug] > │ 0.0                                                                          │

02:09:30 #50979 [Debug] > │ </text>                                                                      │

02:09:30 #50980 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50981 [Debug] > │ points="49,164 54,164 "/>                                                    │

02:09:30 #50982 [Debug] > │ <text x="45" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #50983 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50984 [Debug] > │ 0.0                                                                          │

02:09:30 #50985 [Debug] > │ </text>                                                                      │

02:09:30 #50986 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50987 [Debug] > │ points="49,129 54,129 "/>                                                    │

02:09:30 #50988 [Debug] > │ <text x="45" y="93" dy="0.5ex" text-anchor="end" font-family="sans-serif"    │

02:09:30 #50989 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #50990 [Debug] > │ 0.0                                                                          │

02:09:30 #50991 [Debug] > │ </text>                                                                      │

02:09:30 #50992 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50993 [Debug] > │ points="49,93 54,93 "/>                                                      │

02:09:30 #50994 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #50995 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:30 #50996 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:30 #50997 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #50998 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #50999 [Debug] > │ 0.0                                                                          │

02:09:30 #51000 [Debug] > │ </text>                                                                      │

02:09:30 #51001 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51002 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:30 #51003 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51004 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51005 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51006 [Debug] > │ 0.1                                                                          │

02:09:30 #51007 [Debug] > │ </text>                                                                      │

02:09:30 #51008 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51009 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:30 #51010 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51011 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51012 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51013 [Debug] > │ 0.1                                                                          │

02:09:30 #51014 [Debug] > │ </text>                                                                      │

02:09:30 #51015 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51016 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:30 #51017 [Debug] > │ <text x="185" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51018 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51019 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51020 [Debug] > │ 0.2                                                                          │

02:09:30 #51021 [Debug] > │ </text>                                                                      │

02:09:30 #51022 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51023 [Debug] > │ points="185,425 185,430 "/>                                                  │

02:09:30 #51024 [Debug] > │ <text x="223" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51025 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51026 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51027 [Debug] > │ 0.2                                                                          │

02:09:30 #51028 [Debug] > │ </text>                                                                      │

02:09:30 #51029 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51030 [Debug] > │ points="223,425 223,430 "/>                                                  │

02:09:30 #51031 [Debug] > │ <text x="261" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51032 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51033 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51034 [Debug] > │ 0.2                                                                          │

02:09:30 #51035 [Debug] > │ </text>                                                                      │

02:09:30 #51036 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51037 [Debug] > │ points="261,425 261,430 "/>                                                  │

02:09:30 #51038 [Debug] > │ <text x="300" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51039 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51040 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51041 [Debug] > │ 0.3                                                                          │

02:09:30 #51042 [Debug] > │ </text>                                                                      │

02:09:30 #51043 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51044 [Debug] > │ points="300,425 300,430 "/>                                                  │

02:09:30 #51045 [Debug] > │ <text x="338" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51046 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51047 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51048 [Debug] > │ 0.3                                                                          │

02:09:30 #51049 [Debug] > │ </text>                                                                      │

02:09:30 #51050 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51051 [Debug] > │ points="338,425 338,430 "/>                                                  │

02:09:30 #51052 [Debug] > │ <text x="377" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51053 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51054 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51055 [Debug] > │ 0.4                                                                          │

02:09:30 #51056 [Debug] > │ </text>                                                                      │

02:09:30 #51057 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51058 [Debug] > │ points="377,425 377,430 "/>                                                  │

02:09:30 #51059 [Debug] > │ <text x="415" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51060 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51061 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51062 [Debug] > │ 0.4                                                                          │

02:09:30 #51063 [Debug] > │ </text>                                                                      │

02:09:30 #51064 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51065 [Debug] > │ points="415,425 415,430 "/>                                                  │

02:09:30 #51066 [Debug] > │ <text x="453" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51067 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51068 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51069 [Debug] > │ 0.5                                                                          │

02:09:30 #51070 [Debug] > │ </text>                                                                      │

02:09:30 #51071 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51072 [Debug] > │ points="453,425 453,430 "/>                                                  │

02:09:30 #51073 [Debug] > │ <text x="492" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51074 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51075 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51076 [Debug] > │ 0.5                                                                          │

02:09:30 #51077 [Debug] > │ </text>                                                                      │

02:09:30 #51078 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51079 [Debug] > │ points="492,425 492,430 "/>                                                  │

02:09:30 #51080 [Debug] > │ <text x="530" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51081 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51082 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51083 [Debug] > │ 0.6                                                                          │

02:09:30 #51084 [Debug] > │ </text>                                                                      │

02:09:30 #51085 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51086 [Debug] > │ points="530,425 530,430 "/>                                                  │

02:09:30 #51087 [Debug] > │ <text x="569" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51088 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51089 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51090 [Debug] > │ 0.7                                                                          │

02:09:30 #51091 [Debug] > │ </text>                                                                      │

02:09:30 #51092 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51093 [Debug] > │ points="569,425 569,430 "/>                                                  │

02:09:30 #51094 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51095 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:30 #51096 [Debug] > │ <text x="595" y="413" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51097 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51098 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51099 [Debug] > │ -0.0                                                                         │

02:09:30 #51100 [Debug] > │ </text>                                                                      │

02:09:30 #51101 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51102 [Debug] > │ points="585,413 590,413 "/>                                                  │

02:09:30 #51103 [Debug] > │ <text x="617" y="378" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51104 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51105 [Debug] > │ 0.0                                                                          │

02:09:30 #51106 [Debug] > │ </text>                                                                      │

02:09:30 #51107 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51108 [Debug] > │ points="585,378 590,378 "/>                                                  │

02:09:30 #51109 [Debug] > │ <text x="617" y="342" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51110 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51111 [Debug] > │ 0.0                                                                          │

02:09:30 #51112 [Debug] > │ </text>                                                                      │

02:09:30 #51113 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51114 [Debug] > │ points="585,342 590,342 "/>                                                  │

02:09:30 #51115 [Debug] > │ <text x="617" y="307" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51116 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51117 [Debug] > │ 0.0                                                                          │

02:09:30 #51118 [Debug] > │ </text>                                                                      │

02:09:30 #51119 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51120 [Debug] > │ points="585,307 590,307 "/>                                                  │

02:09:30 #51121 [Debug] > │ <text x="617" y="271" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51122 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51123 [Debug] > │ 0.0                                                                          │

02:09:30 #51124 [Debug] > │ </text>                                                                      │

02:09:30 #51125 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51126 [Debug] > │ points="585,271 590,271 "/>                                                  │

02:09:30 #51127 [Debug] > │ <text x="617" y="235" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51128 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51129 [Debug] > │ 0.0                                                                          │

02:09:30 #51130 [Debug] > │ </text>                                                                      │

02:09:30 #51131 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51132 [Debug] > │ points="585,235 590,235 "/>                                                  │

02:09:30 #51133 [Debug] > │ <text x="617" y="200" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51134 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51135 [Debug] > │ 0.0                                                                          │

02:09:30 #51136 [Debug] > │ </text>                                                                      │

02:09:30 #51137 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51138 [Debug] > │ points="585,200 590,200 "/>                                                  │

02:09:30 #51139 [Debug] > │ <text x="617" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51140 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51141 [Debug] > │ 0.0                                                                          │

02:09:30 #51142 [Debug] > │ </text>                                                                      │

02:09:30 #51143 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51144 [Debug] > │ points="585,164 590,164 "/>                                                  │

02:09:30 #51145 [Debug] > │ <text x="617" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:30 #51146 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51147 [Debug] > │ 0.0                                                                          │

02:09:30 #51148 [Debug] > │ </text>                                                                      │

02:09:30 #51149 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51150 [Debug] > │ points="585,129 590,129 "/>                                                  │

02:09:30 #51151 [Debug] > │ <text x="617" y="93" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51152 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51153 [Debug] > │ 0.0                                                                          │

02:09:30 #51154 [Debug] > │ </text>                                                                      │

02:09:30 #51155 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51156 [Debug] > │ points="585,93 590,93 "/>                                                    │

02:09:30 #51157 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #51158 [Debug] > │ points="69,378 77,335 85,294 93,254 100,217 108,184 116,154 123,129 131,110  │

02:09:30 #51159 [Debug] > │ 139,96 146,87 154,85 162,89 169,100 177,116 185,137 192,164 200,194 208,229  │

02:09:30 #51160 [Debug] > │ 215,266 223,305 230,343 236,376 240,402 243,415 244,413 242,401 240,385      │

02:09:30 #51161 [Debug] > │ 239,375 240,374 241,376 241,372 241,362 240,355 241,355 241,353 241,348      │

02:09:30 #51162 [Debug] > │ 240,344 241,345 241,344 241,342 241,343 241,345 241,346 241,349 241,352      │

02:09:30 #51163 [Debug] > │ 241,355 241,360 241,365 241,369 241,375 241,379 241,384 241,389 241,394      │

02:09:30 #51164 [Debug] > │ 241,398 241,402 241,406 241,408 241,410 241,412 241,413 545,228 553,276      │

02:09:30 #51165 [Debug] > │ 568,371 569,378 "/>                                                          │

02:09:30 #51166 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:30 #51167 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:30 #51168 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:30 #51169 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51170 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51171 [Debug] > │ 62                                                                           │

02:09:30 #51172 [Debug] > │ </text>                                                                      │

02:09:30 #51173 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #51174 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:30 #51175 [Debug] > │ </svg>                                                                       │

02:09:30 #51176 [Debug] > │ </td></tr><tr><td>63</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:30 #51177 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:30 #51178 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:30 #51179 [Debug] > │ stroke="none"/>                                                              │

02:09:30 #51180 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:30 #51181 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51182 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51183 [Debug] > │ wave                                                                         │

02:09:30 #51184 [Debug] > │ </text>                                                                      │

02:09:30 #51185 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:30 #51186 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51187 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #51188 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51189 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:30 #51190 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51191 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:30 #51192 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51193 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:30 #51194 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51195 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:30 #51196 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:30 #51197 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="108" y1="424"        │

02:09:30 #51198 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #51199 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:30 #51200 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:30 #51201 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="123" y1="424"        │

02:09:30 #51202 [Debug] > │ x2="123" y2="75"/>                                                           │

02:09:30 #51203 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:30 #51204 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:30 #51205 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:30 #51206 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:30 #51207 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="146" y1="424"        │

02:09:30 #51208 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #51209 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:30 #51210 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:30 #51211 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="161" y1="424"        │

02:09:30 #51212 [Debug] > │ x2="161" y2="75"/>                                                           │

02:09:30 #51213 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="169" y1="424"        │

02:09:30 #51214 [Debug] > │ x2="169" y2="75"/>                                                           │

02:09:30 #51215 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:30 #51216 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:30 #51217 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="184" y1="424"        │

02:09:30 #51218 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:30 #51219 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:30 #51220 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:30 #51221 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="199" y1="424"        │

02:09:30 #51222 [Debug] > │ x2="199" y2="75"/>                                                           │

02:09:30 #51223 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="207" y1="424"        │

02:09:30 #51224 [Debug] > │ x2="207" y2="75"/>                                                           │

02:09:30 #51225 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="214" y1="424"        │

02:09:30 #51226 [Debug] > │ x2="214" y2="75"/>                                                           │

02:09:30 #51227 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="222" y1="424"        │

02:09:30 #51228 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:30 #51229 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="230" y1="424"        │

02:09:30 #51230 [Debug] > │ x2="230" y2="75"/>                                                           │

02:09:30 #51231 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="237" y1="424"        │

02:09:30 #51232 [Debug] > │ x2="237" y2="75"/>                                                           │

02:09:30 #51233 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="245" y1="424"        │

02:09:30 #51234 [Debug] > │ x2="245" y2="75"/>                                                           │

02:09:30 #51235 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="252" y1="424"        │

02:09:30 #51236 [Debug] > │ x2="252" y2="75"/>                                                           │

02:09:30 #51237 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="260" y1="424"        │

02:09:30 #51238 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:30 #51239 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="268" y1="424"        │

02:09:30 #51240 [Debug] > │ x2="268" y2="75"/>                                                           │

02:09:30 #51241 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="275" y1="424"        │

02:09:30 #51242 [Debug] > │ x2="275" y2="75"/>                                                           │

02:09:30 #51243 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="283" y1="424"        │

02:09:30 #51244 [Debug] > │ x2="283" y2="75"/>                                                           │

02:09:30 #51245 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="291" y1="424"        │

02:09:30 #51246 [Debug] > │ x2="291" y2="75"/>                                                           │

02:09:30 #51247 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="298" y1="424"        │

02:09:30 #51248 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:30 #51249 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="306" y1="424"        │

02:09:30 #51250 [Debug] > │ x2="306" y2="75"/>                                                           │

02:09:30 #51251 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="313" y1="424"        │

02:09:30 #51252 [Debug] > │ x2="313" y2="75"/>                                                           │

02:09:30 #51253 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="321" y1="424"        │

02:09:30 #51254 [Debug] > │ x2="321" y2="75"/>                                                           │

02:09:30 #51255 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="329" y1="424"        │

02:09:30 #51256 [Debug] > │ x2="329" y2="75"/>                                                           │

02:09:30 #51257 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="336" y1="424"        │

02:09:30 #51258 [Debug] > │ x2="336" y2="75"/>                                                           │

02:09:30 #51259 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="344" y1="424"        │

02:09:30 #51260 [Debug] > │ x2="344" y2="75"/>                                                           │

02:09:30 #51261 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="352" y1="424"        │

02:09:30 #51262 [Debug] > │ x2="352" y2="75"/>                                                           │

02:09:30 #51263 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="359" y1="424"        │

02:09:30 #51264 [Debug] > │ x2="359" y2="75"/>                                                           │

02:09:30 #51265 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="367" y1="424"        │

02:09:30 #51266 [Debug] > │ x2="367" y2="75"/>                                                           │

02:09:30 #51267 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="374" y1="424"        │

02:09:30 #51268 [Debug] > │ x2="374" y2="75"/>                                                           │

02:09:30 #51269 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="382" y1="424"        │

02:09:30 #51270 [Debug] > │ x2="382" y2="75"/>                                                           │

02:09:30 #51271 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="390" y1="424"        │

02:09:30 #51272 [Debug] > │ x2="390" y2="75"/>                                                           │

02:09:30 #51273 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="397" y1="424"        │

02:09:30 #51274 [Debug] > │ x2="397" y2="75"/>                                                           │

02:09:30 #51275 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="405" y1="424"        │

02:09:30 #51276 [Debug] > │ x2="405" y2="75"/>                                                           │

02:09:30 #51277 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="412" y1="424"        │

02:09:30 #51278 [Debug] > │ x2="412" y2="75"/>                                                           │

02:09:30 #51279 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="420" y1="424"        │

02:09:30 #51280 [Debug] > │ x2="420" y2="75"/>                                                           │

02:09:30 #51281 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="428" y1="424"        │

02:09:30 #51282 [Debug] > │ x2="428" y2="75"/>                                                           │

02:09:30 #51283 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="435" y1="424"        │

02:09:30 #51284 [Debug] > │ x2="435" y2="75"/>                                                           │

02:09:30 #51285 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="443" y1="424"        │

02:09:30 #51286 [Debug] > │ x2="443" y2="75"/>                                                           │

02:09:30 #51287 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="451" y1="424"        │

02:09:30 #51288 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:30 #51289 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="458" y1="424"        │

02:09:30 #51290 [Debug] > │ x2="458" y2="75"/>                                                           │

02:09:30 #51291 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="466" y1="424"        │

02:09:30 #51292 [Debug] > │ x2="466" y2="75"/>                                                           │

02:09:30 #51293 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="473" y1="424"        │

02:09:30 #51294 [Debug] > │ x2="473" y2="75"/>                                                           │

02:09:30 #51295 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="481" y1="424"        │

02:09:30 #51296 [Debug] > │ x2="481" y2="75"/>                                                           │

02:09:30 #51297 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="489" y1="424"        │

02:09:30 #51298 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:30 #51299 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="496" y1="424"        │

02:09:30 #51300 [Debug] > │ x2="496" y2="75"/>                                                           │

02:09:30 #51301 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="504" y1="424"        │

02:09:30 #51302 [Debug] > │ x2="504" y2="75"/>                                                           │

02:09:30 #51303 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="512" y1="424"        │

02:09:30 #51304 [Debug] > │ x2="512" y2="75"/>                                                           │

02:09:30 #51305 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="519" y1="424"        │

02:09:30 #51306 [Debug] > │ x2="519" y2="75"/>                                                           │

02:09:30 #51307 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="527" y1="424"        │

02:09:30 #51308 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:30 #51309 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="534" y1="424"        │

02:09:30 #51310 [Debug] > │ x2="534" y2="75"/>                                                           │

02:09:30 #51311 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="542" y1="424"        │

02:09:30 #51312 [Debug] > │ x2="542" y2="75"/>                                                           │

02:09:30 #51313 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="550" y1="424"        │

02:09:30 #51314 [Debug] > │ x2="550" y2="75"/>                                                           │

02:09:30 #51315 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="557" y1="424"        │

02:09:30 #51316 [Debug] > │ x2="557" y2="75"/>                                                           │

02:09:30 #51317 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="565" y1="424"        │

02:09:30 #51318 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:30 #51319 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="573" y1="424"        │

02:09:30 #51320 [Debug] > │ x2="573" y2="75"/>                                                           │

02:09:30 #51321 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="419"         │

02:09:30 #51322 [Debug] > │ x2="584" y2="419"/>                                                          │

02:09:30 #51323 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="405"         │

02:09:30 #51324 [Debug] > │ x2="584" y2="405"/>                                                          │

02:09:30 #51325 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="391"         │

02:09:30 #51326 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:30 #51327 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="377"         │

02:09:30 #51328 [Debug] > │ x2="584" y2="377"/>                                                          │

02:09:30 #51329 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:09:30 #51330 [Debug] > │ x2="584" y2="363"/>                                                          │

02:09:30 #51331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:30 #51332 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:30 #51333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="335"         │

02:09:30 #51334 [Debug] > │ x2="584" y2="335"/>                                                          │

02:09:30 #51335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="321"         │

02:09:30 #51336 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:30 #51337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="307"         │

02:09:30 #51338 [Debug] > │ x2="584" y2="307"/>                                                          │

02:09:30 #51339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="292"         │

02:09:30 #51340 [Debug] > │ x2="584" y2="292"/>                                                          │

02:09:30 #51341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="278"         │

02:09:30 #51342 [Debug] > │ x2="584" y2="278"/>                                                          │

02:09:30 #51343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="264"         │

02:09:30 #51344 [Debug] > │ x2="584" y2="264"/>                                                          │

02:09:30 #51345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="250"         │

02:09:30 #51346 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:30 #51347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="236"         │

02:09:30 #51348 [Debug] > │ x2="584" y2="236"/>                                                          │

02:09:30 #51349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:09:30 #51350 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:30 #51351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="208"         │

02:09:30 #51352 [Debug] > │ x2="584" y2="208"/>                                                          │

02:09:30 #51353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="194"         │

02:09:30 #51354 [Debug] > │ x2="584" y2="194"/>                                                          │

02:09:30 #51355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="180"         │

02:09:30 #51356 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:30 #51357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="166"         │

02:09:30 #51358 [Debug] > │ x2="584" y2="166"/>                                                          │

02:09:30 #51359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="152"         │

02:09:30 #51360 [Debug] > │ x2="584" y2="152"/>                                                          │

02:09:30 #51361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="138"         │

02:09:30 #51362 [Debug] > │ x2="584" y2="138"/>                                                          │

02:09:30 #51363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="124"         │

02:09:30 #51364 [Debug] > │ x2="584" y2="124"/>                                                          │

02:09:30 #51365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="110"         │

02:09:30 #51366 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:30 #51367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="96" x2="584" │

02:09:30 #51368 [Debug] > │ y2="96"/>                                                                    │

02:09:30 #51369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="82" x2="584" │

02:09:30 #51370 [Debug] > │ y2="82"/>                                                                    │

02:09:30 #51371 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:30 #51372 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51373 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51374 [Debug] > │ position (m)                                                                 │

02:09:30 #51375 [Debug] > │ </text>                                                                      │

02:09:30 #51376 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:30 #51377 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51378 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:30 #51379 [Debug] > │ displacement (m)                                                             │

02:09:30 #51380 [Debug] > │ </text>                                                                      │

02:09:30 #51381 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:30 #51382 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51383 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51384 [Debug] > │ position (m)                                                                 │

02:09:30 #51385 [Debug] > │ </text>                                                                      │

02:09:30 #51386 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51387 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51388 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:30 #51389 [Debug] > │ displacement (m)                                                             │

02:09:30 #51390 [Debug] > │ </text>                                                                      │

02:09:30 #51391 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #51392 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51393 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="108" y1="424"        │

02:09:30 #51394 [Debug] > │ x2="108" y2="75"/>                                                           │

02:09:30 #51395 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="146" y1="424"        │

02:09:30 #51396 [Debug] > │ x2="146" y2="75"/>                                                           │

02:09:30 #51397 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="184" y1="424"        │

02:09:30 #51398 [Debug] > │ x2="184" y2="75"/>                                                           │

02:09:30 #51399 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="222" y1="424"        │

02:09:30 #51400 [Debug] > │ x2="222" y2="75"/>                                                           │

02:09:30 #51401 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="260" y1="424"        │

02:09:30 #51402 [Debug] > │ x2="260" y2="75"/>                                                           │

02:09:30 #51403 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="298" y1="424"        │

02:09:30 #51404 [Debug] > │ x2="298" y2="75"/>                                                           │

02:09:30 #51405 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="336" y1="424"        │

02:09:30 #51406 [Debug] > │ x2="336" y2="75"/>                                                           │

02:09:30 #51407 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="374" y1="424"        │

02:09:30 #51408 [Debug] > │ x2="374" y2="75"/>                                                           │

02:09:30 #51409 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="412" y1="424"        │

02:09:30 #51410 [Debug] > │ x2="412" y2="75"/>                                                           │

02:09:30 #51411 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="451" y1="424"        │

02:09:30 #51412 [Debug] > │ x2="451" y2="75"/>                                                           │

02:09:30 #51413 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="489" y1="424"        │

02:09:30 #51414 [Debug] > │ x2="489" y2="75"/>                                                           │

02:09:30 #51415 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="527" y1="424"        │

02:09:30 #51416 [Debug] > │ x2="527" y2="75"/>                                                           │

02:09:30 #51417 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="565" y1="424"        │

02:09:30 #51418 [Debug] > │ x2="565" y2="75"/>                                                           │

02:09:30 #51419 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="391"         │

02:09:30 #51420 [Debug] > │ x2="584" y2="391"/>                                                          │

02:09:30 #51421 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="356"         │

02:09:30 #51422 [Debug] > │ x2="584" y2="356"/>                                                          │

02:09:30 #51423 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="321"         │

02:09:30 #51424 [Debug] > │ x2="584" y2="321"/>                                                          │

02:09:30 #51425 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="285"         │

02:09:30 #51426 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:30 #51427 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="250"         │

02:09:30 #51428 [Debug] > │ x2="584" y2="250"/>                                                          │

02:09:30 #51429 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="215"         │

02:09:30 #51430 [Debug] > │ x2="584" y2="215"/>                                                          │

02:09:30 #51431 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="180"         │

02:09:30 #51432 [Debug] > │ x2="584" y2="180"/>                                                          │

02:09:30 #51433 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="145"         │

02:09:30 #51434 [Debug] > │ x2="584" y2="145"/>                                                          │

02:09:30 #51435 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="110"         │

02:09:30 #51436 [Debug] > │ x2="584" y2="110"/>                                                          │

02:09:30 #51437 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51438 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:30 #51439 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:30 #51440 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51441 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51442 [Debug] > │ 0.0                                                                          │

02:09:30 #51443 [Debug] > │ </text>                                                                      │

02:09:30 #51444 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51445 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:30 #51446 [Debug] > │ <text x="108" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51447 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51448 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51449 [Debug] > │ 0.1                                                                          │

02:09:30 #51450 [Debug] > │ </text>                                                                      │

02:09:30 #51451 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51452 [Debug] > │ points="108,69 108,74 "/>                                                    │

02:09:30 #51453 [Debug] > │ <text x="146" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51454 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51455 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51456 [Debug] > │ 0.1                                                                          │

02:09:30 #51457 [Debug] > │ </text>                                                                      │

02:09:30 #51458 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51459 [Debug] > │ points="146,69 146,74 "/>                                                    │

02:09:30 #51460 [Debug] > │ <text x="184" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51461 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51462 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51463 [Debug] > │ 0.2                                                                          │

02:09:30 #51464 [Debug] > │ </text>                                                                      │

02:09:30 #51465 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51466 [Debug] > │ points="184,69 184,74 "/>                                                    │

02:09:30 #51467 [Debug] > │ <text x="222" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51468 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51469 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51470 [Debug] > │ 0.2                                                                          │

02:09:30 #51471 [Debug] > │ </text>                                                                      │

02:09:30 #51472 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51473 [Debug] > │ points="222,69 222,74 "/>                                                    │

02:09:30 #51474 [Debug] > │ <text x="260" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51475 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51476 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51477 [Debug] > │ 0.2                                                                          │

02:09:30 #51478 [Debug] > │ </text>                                                                      │

02:09:30 #51479 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51480 [Debug] > │ points="260,69 260,74 "/>                                                    │

02:09:30 #51481 [Debug] > │ <text x="298" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51482 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51483 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51484 [Debug] > │ 0.3                                                                          │

02:09:30 #51485 [Debug] > │ </text>                                                                      │

02:09:30 #51486 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51487 [Debug] > │ points="298,69 298,74 "/>                                                    │

02:09:30 #51488 [Debug] > │ <text x="336" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51489 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51490 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51491 [Debug] > │ 0.3                                                                          │

02:09:30 #51492 [Debug] > │ </text>                                                                      │

02:09:30 #51493 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51494 [Debug] > │ points="336,69 336,74 "/>                                                    │

02:09:30 #51495 [Debug] > │ <text x="374" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51496 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51497 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51498 [Debug] > │ 0.4                                                                          │

02:09:30 #51499 [Debug] > │ </text>                                                                      │

02:09:30 #51500 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51501 [Debug] > │ points="374,69 374,74 "/>                                                    │

02:09:30 #51502 [Debug] > │ <text x="412" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51503 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51504 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51505 [Debug] > │ 0.4                                                                          │

02:09:30 #51506 [Debug] > │ </text>                                                                      │

02:09:30 #51507 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51508 [Debug] > │ points="412,69 412,74 "/>                                                    │

02:09:30 #51509 [Debug] > │ <text x="451" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51510 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51511 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51512 [Debug] > │ 0.5                                                                          │

02:09:30 #51513 [Debug] > │ </text>                                                                      │

02:09:30 #51514 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51515 [Debug] > │ points="451,69 451,74 "/>                                                    │

02:09:30 #51516 [Debug] > │ <text x="489" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51517 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51518 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51519 [Debug] > │ 0.5                                                                          │

02:09:30 #51520 [Debug] > │ </text>                                                                      │

02:09:30 #51521 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51522 [Debug] > │ points="489,69 489,74 "/>                                                    │

02:09:30 #51523 [Debug] > │ <text x="527" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51524 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51525 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51526 [Debug] > │ 0.6                                                                          │

02:09:30 #51527 [Debug] > │ </text>                                                                      │

02:09:30 #51528 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51529 [Debug] > │ points="527,69 527,74 "/>                                                    │

02:09:30 #51530 [Debug] > │ <text x="565" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #51531 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51532 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51533 [Debug] > │ 0.7                                                                          │

02:09:30 #51534 [Debug] > │ </text>                                                                      │

02:09:30 #51535 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51536 [Debug] > │ points="565,69 565,74 "/>                                                    │

02:09:30 #51537 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51538 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:30 #51539 [Debug] > │ <text x="45" y="391" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51540 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51541 [Debug] > │ 0.0                                                                          │

02:09:30 #51542 [Debug] > │ </text>                                                                      │

02:09:30 #51543 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51544 [Debug] > │ points="49,391 54,391 "/>                                                    │

02:09:30 #51545 [Debug] > │ <text x="45" y="356" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51546 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51547 [Debug] > │ 0.0                                                                          │

02:09:30 #51548 [Debug] > │ </text>                                                                      │

02:09:30 #51549 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51550 [Debug] > │ points="49,356 54,356 "/>                                                    │

02:09:30 #51551 [Debug] > │ <text x="45" y="321" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51552 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51553 [Debug] > │ 0.0                                                                          │

02:09:30 #51554 [Debug] > │ </text>                                                                      │

02:09:30 #51555 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51556 [Debug] > │ points="49,321 54,321 "/>                                                    │

02:09:30 #51557 [Debug] > │ <text x="45" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51558 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51559 [Debug] > │ 0.0                                                                          │

02:09:30 #51560 [Debug] > │ </text>                                                                      │

02:09:30 #51561 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51562 [Debug] > │ points="49,285 54,285 "/>                                                    │

02:09:30 #51563 [Debug] > │ <text x="45" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51564 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51565 [Debug] > │ 0.0                                                                          │

02:09:30 #51566 [Debug] > │ </text>                                                                      │

02:09:30 #51567 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51568 [Debug] > │ points="49,250 54,250 "/>                                                    │

02:09:30 #51569 [Debug] > │ <text x="45" y="215" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51570 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51571 [Debug] > │ 0.0                                                                          │

02:09:30 #51572 [Debug] > │ </text>                                                                      │

02:09:30 #51573 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51574 [Debug] > │ points="49,215 54,215 "/>                                                    │

02:09:30 #51575 [Debug] > │ <text x="45" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51576 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51577 [Debug] > │ 0.0                                                                          │

02:09:30 #51578 [Debug] > │ </text>                                                                      │

02:09:30 #51579 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51580 [Debug] > │ points="49,180 54,180 "/>                                                    │

02:09:30 #51581 [Debug] > │ <text x="45" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51582 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51583 [Debug] > │ 0.0                                                                          │

02:09:30 #51584 [Debug] > │ </text>                                                                      │

02:09:30 #51585 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51586 [Debug] > │ points="49,145 54,145 "/>                                                    │

02:09:30 #51587 [Debug] > │ <text x="45" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #51588 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #51589 [Debug] > │ 0.0                                                                          │

02:09:30 #51590 [Debug] > │ </text>                                                                      │

02:09:30 #51591 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51592 [Debug] > │ points="49,110 54,110 "/>                                                    │

02:09:30 #51593 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51594 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:30 #51595 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:30 #51596 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51597 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51598 [Debug] > │ 0.0                                                                          │

02:09:30 #51599 [Debug] > │ </text>                                                                      │

02:09:30 #51600 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51601 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:30 #51602 [Debug] > │ <text x="108" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51603 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51604 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51605 [Debug] > │ 0.1                                                                          │

02:09:30 #51606 [Debug] > │ </text>                                                                      │

02:09:30 #51607 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51608 [Debug] > │ points="108,425 108,430 "/>                                                  │

02:09:30 #51609 [Debug] > │ <text x="146" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51610 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51611 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51612 [Debug] > │ 0.1                                                                          │

02:09:30 #51613 [Debug] > │ </text>                                                                      │

02:09:30 #51614 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51615 [Debug] > │ points="146,425 146,430 "/>                                                  │

02:09:30 #51616 [Debug] > │ <text x="184" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51617 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51618 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51619 [Debug] > │ 0.2                                                                          │

02:09:30 #51620 [Debug] > │ </text>                                                                      │

02:09:30 #51621 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51622 [Debug] > │ points="184,425 184,430 "/>                                                  │

02:09:30 #51623 [Debug] > │ <text x="222" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51624 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51625 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51626 [Debug] > │ 0.2                                                                          │

02:09:30 #51627 [Debug] > │ </text>                                                                      │

02:09:30 #51628 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51629 [Debug] > │ points="222,425 222,430 "/>                                                  │

02:09:30 #51630 [Debug] > │ <text x="260" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51631 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51632 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51633 [Debug] > │ 0.2                                                                          │

02:09:30 #51634 [Debug] > │ </text>                                                                      │

02:09:30 #51635 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51636 [Debug] > │ points="260,425 260,430 "/>                                                  │

02:09:30 #51637 [Debug] > │ <text x="298" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51638 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51639 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51640 [Debug] > │ 0.3                                                                          │

02:09:30 #51641 [Debug] > │ </text>                                                                      │

02:09:30 #51642 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51643 [Debug] > │ points="298,425 298,430 "/>                                                  │

02:09:30 #51644 [Debug] > │ <text x="336" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51645 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51646 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51647 [Debug] > │ 0.3                                                                          │

02:09:30 #51648 [Debug] > │ </text>                                                                      │

02:09:30 #51649 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51650 [Debug] > │ points="336,425 336,430 "/>                                                  │

02:09:30 #51651 [Debug] > │ <text x="374" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51652 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51653 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51654 [Debug] > │ 0.4                                                                          │

02:09:30 #51655 [Debug] > │ </text>                                                                      │

02:09:30 #51656 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51657 [Debug] > │ points="374,425 374,430 "/>                                                  │

02:09:30 #51658 [Debug] > │ <text x="412" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51659 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51660 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51661 [Debug] > │ 0.4                                                                          │

02:09:30 #51662 [Debug] > │ </text>                                                                      │

02:09:30 #51663 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51664 [Debug] > │ points="412,425 412,430 "/>                                                  │

02:09:30 #51665 [Debug] > │ <text x="451" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51666 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51667 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51668 [Debug] > │ 0.5                                                                          │

02:09:30 #51669 [Debug] > │ </text>                                                                      │

02:09:30 #51670 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51671 [Debug] > │ points="451,425 451,430 "/>                                                  │

02:09:30 #51672 [Debug] > │ <text x="489" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51673 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51674 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51675 [Debug] > │ 0.5                                                                          │

02:09:30 #51676 [Debug] > │ </text>                                                                      │

02:09:30 #51677 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51678 [Debug] > │ points="489,425 489,430 "/>                                                  │

02:09:30 #51679 [Debug] > │ <text x="527" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51680 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51681 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51682 [Debug] > │ 0.6                                                                          │

02:09:30 #51683 [Debug] > │ </text>                                                                      │

02:09:30 #51684 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51685 [Debug] > │ points="527,425 527,430 "/>                                                  │

02:09:30 #51686 [Debug] > │ <text x="565" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51687 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51688 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51689 [Debug] > │ 0.7                                                                          │

02:09:30 #51690 [Debug] > │ </text>                                                                      │

02:09:30 #51691 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51692 [Debug] > │ points="565,425 565,430 "/>                                                  │

02:09:30 #51693 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51694 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:30 #51695 [Debug] > │ <text x="595" y="391" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51696 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51697 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51698 [Debug] > │ 0.0                                                                          │

02:09:30 #51699 [Debug] > │ </text>                                                                      │

02:09:30 #51700 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51701 [Debug] > │ points="585,391 590,391 "/>                                                  │

02:09:30 #51702 [Debug] > │ <text x="595" y="356" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51703 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51704 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51705 [Debug] > │ 0.0                                                                          │

02:09:30 #51706 [Debug] > │ </text>                                                                      │

02:09:30 #51707 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51708 [Debug] > │ points="585,356 590,356 "/>                                                  │

02:09:30 #51709 [Debug] > │ <text x="595" y="321" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51710 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51711 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51712 [Debug] > │ 0.0                                                                          │

02:09:30 #51713 [Debug] > │ </text>                                                                      │

02:09:30 #51714 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51715 [Debug] > │ points="585,321 590,321 "/>                                                  │

02:09:30 #51716 [Debug] > │ <text x="595" y="285" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51717 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51718 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51719 [Debug] > │ 0.0                                                                          │

02:09:30 #51720 [Debug] > │ </text>                                                                      │

02:09:30 #51721 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51722 [Debug] > │ points="585,285 590,285 "/>                                                  │

02:09:30 #51723 [Debug] > │ <text x="595" y="250" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51724 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51725 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51726 [Debug] > │ 0.0                                                                          │

02:09:30 #51727 [Debug] > │ </text>                                                                      │

02:09:30 #51728 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51729 [Debug] > │ points="585,250 590,250 "/>                                                  │

02:09:30 #51730 [Debug] > │ <text x="595" y="215" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51731 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51732 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51733 [Debug] > │ 0.0                                                                          │

02:09:30 #51734 [Debug] > │ </text>                                                                      │

02:09:30 #51735 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51736 [Debug] > │ points="585,215 590,215 "/>                                                  │

02:09:30 #51737 [Debug] > │ <text x="595" y="180" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51738 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51739 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51740 [Debug] > │ 0.0                                                                          │

02:09:30 #51741 [Debug] > │ </text>                                                                      │

02:09:30 #51742 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51743 [Debug] > │ points="585,180 590,180 "/>                                                  │

02:09:30 #51744 [Debug] > │ <text x="595" y="145" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51745 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51746 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51747 [Debug] > │ 0.0                                                                          │

02:09:30 #51748 [Debug] > │ </text>                                                                      │

02:09:30 #51749 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51750 [Debug] > │ points="585,145 590,145 "/>                                                  │

02:09:30 #51751 [Debug] > │ <text x="595" y="110" dy="0.5ex" text-anchor="start"                         │

02:09:30 #51752 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51753 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51754 [Debug] > │ 0.0                                                                          │

02:09:30 #51755 [Debug] > │ </text>                                                                      │

02:09:30 #51756 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #51757 [Debug] > │ points="585,110 590,110 "/>                                                  │

02:09:30 #51758 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #51759 [Debug] > │ points="69,391 77,347 85,303 92,262 100,223 108,188 115,157 123,131 130,111  │

02:09:30 #51760 [Debug] > │ 138,96 146,88 153,85 161,90 169,100 176,117 184,139 191,167 199,199 207,235  │

02:09:30 #51761 [Debug] > │ 214,274 221,313 228,350 233,381 236,402 238,409 237,404 235,393 234,384      │

02:09:30 #51762 [Debug] > │ 234,385 235,392 236,395 235,392 234,387 234,388 235,391 235,390 234,387      │

02:09:30 #51763 [Debug] > │ 235,388 235,390 235,388 235,387 235,389 235,388 235,388 235,389 235,389      │

02:09:30 #51764 [Debug] > │ 235,389 235,390 235,390 235,390 235,391 235,391 235,391 235,391 235,392      │

02:09:30 #51765 [Debug] > │ 235,392 235,392 235,393 235,393 235,393 235,393 235,393 542,243 550,290      │

02:09:30 #51766 [Debug] > │ 569,415 565,391 "/>                                                          │

02:09:30 #51767 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:30 #51768 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:30 #51769 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:30 #51770 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51771 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51772 [Debug] > │ 63                                                                           │

02:09:30 #51773 [Debug] > │ </text>                                                                      │

02:09:30 #51774 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #51775 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:30 #51776 [Debug] > │ </svg>                                                                       │

02:09:30 #51777 [Debug] > │ </td></tr><tr><td>64</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:30 #51778 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:30 #51779 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:30 #51780 [Debug] > │ stroke="none"/>                                                              │

02:09:30 #51781 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:30 #51782 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51783 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51784 [Debug] > │ wave                                                                         │

02:09:30 #51785 [Debug] > │ </text>                                                                      │

02:09:30 #51786 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:30 #51787 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51788 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #51789 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51790 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:30 #51791 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51792 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:30 #51793 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51794 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:30 #51795 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51796 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:30 #51797 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:30 #51798 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:30 #51799 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:30 #51800 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:30 #51801 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:30 #51802 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:30 #51803 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:30 #51804 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:30 #51805 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:30 #51806 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:30 #51807 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:30 #51808 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:30 #51809 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:30 #51810 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:30 #51811 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:30 #51812 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:30 #51813 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:30 #51814 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:30 #51815 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:30 #51816 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="176" y1="424"        │

02:09:30 #51817 [Debug] > │ x2="176" y2="75"/>                                                           │

02:09:30 #51818 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:30 #51819 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:30 #51820 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:30 #51821 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:30 #51822 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:30 #51823 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:30 #51824 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:30 #51825 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:30 #51826 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:30 #51827 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:30 #51828 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:30 #51829 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:30 #51830 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="229" y1="424"        │

02:09:30 #51831 [Debug] > │ x2="229" y2="75"/>                                                           │

02:09:30 #51832 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:30 #51833 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:30 #51834 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:30 #51835 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:30 #51836 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:30 #51837 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:30 #51838 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:30 #51839 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:30 #51840 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:30 #51841 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:30 #51842 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:30 #51843 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:30 #51844 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="282" y1="424"        │

02:09:30 #51845 [Debug] > │ x2="282" y2="75"/>                                                           │

02:09:30 #51846 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:30 #51847 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:30 #51848 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="297" y1="424"        │

02:09:30 #51849 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:30 #51850 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:30 #51851 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:30 #51852 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:30 #51853 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:30 #51854 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:30 #51855 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:30 #51856 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:30 #51857 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:30 #51858 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="335" y1="424"        │

02:09:30 #51859 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:30 #51860 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:30 #51861 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:30 #51862 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="350" y1="424"        │

02:09:30 #51863 [Debug] > │ x2="350" y2="75"/>                                                           │

02:09:30 #51864 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:30 #51865 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:30 #51866 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:30 #51867 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:30 #51868 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:30 #51869 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:30 #51870 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:30 #51871 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:30 #51872 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="388" y1="424"        │

02:09:30 #51873 [Debug] > │ x2="388" y2="75"/>                                                           │

02:09:30 #51874 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:30 #51875 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:30 #51876 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="403" y1="424"        │

02:09:30 #51877 [Debug] > │ x2="403" y2="75"/>                                                           │

02:09:30 #51878 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:30 #51879 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:30 #51880 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:30 #51881 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:30 #51882 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:30 #51883 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:30 #51884 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:30 #51885 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:30 #51886 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="441" y1="424"        │

02:09:30 #51887 [Debug] > │ x2="441" y2="75"/>                                                           │

02:09:30 #51888 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:30 #51889 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:30 #51890 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="456" y1="424"        │

02:09:30 #51891 [Debug] > │ x2="456" y2="75"/>                                                           │

02:09:30 #51892 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:30 #51893 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:30 #51894 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:30 #51895 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:30 #51896 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="479" y1="424"        │

02:09:30 #51897 [Debug] > │ x2="479" y2="75"/>                                                           │

02:09:30 #51898 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:30 #51899 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:30 #51900 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="494" y1="424"        │

02:09:30 #51901 [Debug] > │ x2="494" y2="75"/>                                                           │

02:09:30 #51902 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:30 #51903 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:30 #51904 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="509" y1="424"        │

02:09:30 #51905 [Debug] > │ x2="509" y2="75"/>                                                           │

02:09:30 #51906 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:30 #51907 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:30 #51908 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="524" y1="424"        │

02:09:30 #51909 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:30 #51910 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="532" y1="424"        │

02:09:30 #51911 [Debug] > │ x2="532" y2="75"/>                                                           │

02:09:30 #51912 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:30 #51913 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:30 #51914 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="547" y1="424"        │

02:09:30 #51915 [Debug] > │ x2="547" y2="75"/>                                                           │

02:09:30 #51916 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:30 #51917 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:30 #51918 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="562" y1="424"        │

02:09:30 #51919 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:30 #51920 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:30 #51921 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:30 #51922 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="412"         │

02:09:30 #51923 [Debug] > │ x2="584" y2="412"/>                                                          │

02:09:30 #51924 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="400"         │

02:09:30 #51925 [Debug] > │ x2="584" y2="400"/>                                                          │

02:09:30 #51926 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="387"         │

02:09:30 #51927 [Debug] > │ x2="584" y2="387"/>                                                          │

02:09:30 #51928 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:30 #51929 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:30 #51930 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="362"         │

02:09:30 #51931 [Debug] > │ x2="584" y2="362"/>                                                          │

02:09:30 #51932 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="349"         │

02:09:30 #51933 [Debug] > │ x2="584" y2="349"/>                                                          │

02:09:30 #51934 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="336"         │

02:09:30 #51935 [Debug] > │ x2="584" y2="336"/>                                                          │

02:09:30 #51936 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="324"         │

02:09:30 #51937 [Debug] > │ x2="584" y2="324"/>                                                          │

02:09:30 #51938 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="311"         │

02:09:30 #51939 [Debug] > │ x2="584" y2="311"/>                                                          │

02:09:30 #51940 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="298"         │

02:09:30 #51941 [Debug] > │ x2="584" y2="298"/>                                                          │

02:09:30 #51942 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="285"         │

02:09:30 #51943 [Debug] > │ x2="584" y2="285"/>                                                          │

02:09:30 #51944 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="273"         │

02:09:30 #51945 [Debug] > │ x2="584" y2="273"/>                                                          │

02:09:30 #51946 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="260"         │

02:09:30 #51947 [Debug] > │ x2="584" y2="260"/>                                                          │

02:09:30 #51948 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="247"         │

02:09:30 #51949 [Debug] > │ x2="584" y2="247"/>                                                          │

02:09:30 #51950 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="235"         │

02:09:30 #51951 [Debug] > │ x2="584" y2="235"/>                                                          │

02:09:30 #51952 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:09:30 #51953 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:30 #51954 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="209"         │

02:09:30 #51955 [Debug] > │ x2="584" y2="209"/>                                                          │

02:09:30 #51956 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="197"         │

02:09:30 #51957 [Debug] > │ x2="584" y2="197"/>                                                          │

02:09:30 #51958 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="184"         │

02:09:30 #51959 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:30 #51960 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="171"         │

02:09:30 #51961 [Debug] > │ x2="584" y2="171"/>                                                          │

02:09:30 #51962 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="159"         │

02:09:30 #51963 [Debug] > │ x2="584" y2="159"/>                                                          │

02:09:30 #51964 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="146"         │

02:09:30 #51965 [Debug] > │ x2="584" y2="146"/>                                                          │

02:09:30 #51966 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="133"         │

02:09:30 #51967 [Debug] > │ x2="584" y2="133"/>                                                          │

02:09:30 #51968 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="121"         │

02:09:30 #51969 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:30 #51970 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="108"         │

02:09:30 #51971 [Debug] > │ x2="584" y2="108"/>                                                          │

02:09:30 #51972 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="95" x2="584" │

02:09:30 #51973 [Debug] > │ y2="95"/>                                                                    │

02:09:30 #51974 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="83" x2="584" │

02:09:30 #51975 [Debug] > │ y2="83"/>                                                                    │

02:09:30 #51976 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:30 #51977 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51978 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51979 [Debug] > │ position (m)                                                                 │

02:09:30 #51980 [Debug] > │ </text>                                                                      │

02:09:30 #51981 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:30 #51982 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51983 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:30 #51984 [Debug] > │ displacement (m)                                                             │

02:09:30 #51985 [Debug] > │ </text>                                                                      │

02:09:30 #51986 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:30 #51987 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51988 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #51989 [Debug] > │ position (m)                                                                 │

02:09:30 #51990 [Debug] > │ </text>                                                                      │

02:09:30 #51991 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:30 #51992 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #51993 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:30 #51994 [Debug] > │ displacement (m)                                                             │

02:09:30 #51995 [Debug] > │ </text>                                                                      │

02:09:30 #51996 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #51997 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #51998 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:30 #51999 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:30 #52000 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:30 #52001 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:30 #52002 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:30 #52003 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:30 #52004 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:30 #52005 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:30 #52006 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:30 #52007 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:30 #52008 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="297" y1="424"        │

02:09:30 #52009 [Debug] > │ x2="297" y2="75"/>                                                           │

02:09:30 #52010 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="335" y1="424"        │

02:09:30 #52011 [Debug] > │ x2="335" y2="75"/>                                                           │

02:09:30 #52012 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:30 #52013 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:30 #52014 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:30 #52015 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:30 #52016 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:30 #52017 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:30 #52018 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:30 #52019 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:30 #52020 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="524" y1="424"        │

02:09:30 #52021 [Debug] > │ x2="524" y2="75"/>                                                           │

02:09:30 #52022 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="562" y1="424"        │

02:09:30 #52023 [Debug] > │ x2="562" y2="75"/>                                                           │

02:09:30 #52024 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="374"         │

02:09:30 #52025 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:30 #52026 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="311"         │

02:09:30 #52027 [Debug] > │ x2="584" y2="311"/>                                                          │

02:09:30 #52028 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="247"         │

02:09:30 #52029 [Debug] > │ x2="584" y2="247"/>                                                          │

02:09:30 #52030 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="184"         │

02:09:30 #52031 [Debug] > │ x2="584" y2="184"/>                                                          │

02:09:30 #52032 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="121"         │

02:09:30 #52033 [Debug] > │ x2="584" y2="121"/>                                                          │

02:09:30 #52034 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52035 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:30 #52036 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:30 #52037 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52038 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52039 [Debug] > │ 0.0                                                                          │

02:09:30 #52040 [Debug] > │ </text>                                                                      │

02:09:30 #52041 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52042 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:30 #52043 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52044 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52045 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52046 [Debug] > │ 0.1                                                                          │

02:09:30 #52047 [Debug] > │ </text>                                                                      │

02:09:30 #52048 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52049 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:30 #52050 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52051 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52052 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52053 [Debug] > │ 0.1                                                                          │

02:09:30 #52054 [Debug] > │ </text>                                                                      │

02:09:30 #52055 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52056 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:30 #52057 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52058 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52059 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52060 [Debug] > │ 0.2                                                                          │

02:09:30 #52061 [Debug] > │ </text>                                                                      │

02:09:30 #52062 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52063 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:30 #52064 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52065 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52066 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52067 [Debug] > │ 0.2                                                                          │

02:09:30 #52068 [Debug] > │ </text>                                                                      │

02:09:30 #52069 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52070 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:30 #52071 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52072 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52073 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52074 [Debug] > │ 0.2                                                                          │

02:09:30 #52075 [Debug] > │ </text>                                                                      │

02:09:30 #52076 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52077 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:30 #52078 [Debug] > │ <text x="297" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52079 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52080 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52081 [Debug] > │ 0.3                                                                          │

02:09:30 #52082 [Debug] > │ </text>                                                                      │

02:09:30 #52083 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52084 [Debug] > │ points="297,69 297,74 "/>                                                    │

02:09:30 #52085 [Debug] > │ <text x="335" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52086 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52087 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52088 [Debug] > │ 0.3                                                                          │

02:09:30 #52089 [Debug] > │ </text>                                                                      │

02:09:30 #52090 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52091 [Debug] > │ points="335,69 335,74 "/>                                                    │

02:09:30 #52092 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52093 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52094 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52095 [Debug] > │ 0.4                                                                          │

02:09:30 #52096 [Debug] > │ </text>                                                                      │

02:09:30 #52097 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52098 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:30 #52099 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52100 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52101 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52102 [Debug] > │ 0.4                                                                          │

02:09:30 #52103 [Debug] > │ </text>                                                                      │

02:09:30 #52104 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52105 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:30 #52106 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52107 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52108 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52109 [Debug] > │ 0.5                                                                          │

02:09:30 #52110 [Debug] > │ </text>                                                                      │

02:09:30 #52111 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52112 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:30 #52113 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52114 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52115 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52116 [Debug] > │ 0.5                                                                          │

02:09:30 #52117 [Debug] > │ </text>                                                                      │

02:09:30 #52118 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52119 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:30 #52120 [Debug] > │ <text x="524" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52121 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52122 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52123 [Debug] > │ 0.6                                                                          │

02:09:30 #52124 [Debug] > │ </text>                                                                      │

02:09:30 #52125 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52126 [Debug] > │ points="524,69 524,74 "/>                                                    │

02:09:30 #52127 [Debug] > │ <text x="562" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:30 #52128 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52129 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52130 [Debug] > │ 0.7                                                                          │

02:09:30 #52131 [Debug] > │ </text>                                                                      │

02:09:30 #52132 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52133 [Debug] > │ points="562,69 562,74 "/>                                                    │

02:09:30 #52134 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52135 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:30 #52136 [Debug] > │ <text x="45" y="374" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #52137 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #52138 [Debug] > │ 0.0                                                                          │

02:09:30 #52139 [Debug] > │ </text>                                                                      │

02:09:30 #52140 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52141 [Debug] > │ points="49,374 54,374 "/>                                                    │

02:09:30 #52142 [Debug] > │ <text x="45" y="311" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #52143 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #52144 [Debug] > │ 0.0                                                                          │

02:09:30 #52145 [Debug] > │ </text>                                                                      │

02:09:30 #52146 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52147 [Debug] > │ points="49,311 54,311 "/>                                                    │

02:09:30 #52148 [Debug] > │ <text x="45" y="247" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #52149 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #52150 [Debug] > │ 0.0                                                                          │

02:09:30 #52151 [Debug] > │ </text>                                                                      │

02:09:30 #52152 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52153 [Debug] > │ points="49,247 54,247 "/>                                                    │

02:09:30 #52154 [Debug] > │ <text x="45" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #52155 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #52156 [Debug] > │ 0.0                                                                          │

02:09:30 #52157 [Debug] > │ </text>                                                                      │

02:09:30 #52158 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52159 [Debug] > │ points="49,184 54,184 "/>                                                    │

02:09:30 #52160 [Debug] > │ <text x="45" y="121" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:30 #52161 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:30 #52162 [Debug] > │ 0.0                                                                          │

02:09:30 #52163 [Debug] > │ </text>                                                                      │

02:09:30 #52164 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52165 [Debug] > │ points="49,121 54,121 "/>                                                    │

02:09:30 #52166 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52167 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:30 #52168 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:30 #52169 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52170 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52171 [Debug] > │ 0.0                                                                          │

02:09:30 #52172 [Debug] > │ </text>                                                                      │

02:09:30 #52173 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52174 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:30 #52175 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52176 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52177 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52178 [Debug] > │ 0.1                                                                          │

02:09:30 #52179 [Debug] > │ </text>                                                                      │

02:09:30 #52180 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52181 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:30 #52182 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52183 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52184 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52185 [Debug] > │ 0.1                                                                          │

02:09:30 #52186 [Debug] > │ </text>                                                                      │

02:09:30 #52187 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52188 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:30 #52189 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52190 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52191 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52192 [Debug] > │ 0.2                                                                          │

02:09:30 #52193 [Debug] > │ </text>                                                                      │

02:09:30 #52194 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52195 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:30 #52196 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52197 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52198 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52199 [Debug] > │ 0.2                                                                          │

02:09:30 #52200 [Debug] > │ </text>                                                                      │

02:09:30 #52201 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52202 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:30 #52203 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52204 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52205 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52206 [Debug] > │ 0.2                                                                          │

02:09:30 #52207 [Debug] > │ </text>                                                                      │

02:09:30 #52208 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52209 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:30 #52210 [Debug] > │ <text x="297" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52211 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52212 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52213 [Debug] > │ 0.3                                                                          │

02:09:30 #52214 [Debug] > │ </text>                                                                      │

02:09:30 #52215 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52216 [Debug] > │ points="297,425 297,430 "/>                                                  │

02:09:30 #52217 [Debug] > │ <text x="335" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52218 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52219 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52220 [Debug] > │ 0.3                                                                          │

02:09:30 #52221 [Debug] > │ </text>                                                                      │

02:09:30 #52222 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52223 [Debug] > │ points="335,425 335,430 "/>                                                  │

02:09:30 #52224 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52225 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52226 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52227 [Debug] > │ 0.4                                                                          │

02:09:30 #52228 [Debug] > │ </text>                                                                      │

02:09:30 #52229 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52230 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:30 #52231 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52232 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52233 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52234 [Debug] > │ 0.4                                                                          │

02:09:30 #52235 [Debug] > │ </text>                                                                      │

02:09:30 #52236 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52237 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:30 #52238 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52239 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52240 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52241 [Debug] > │ 0.5                                                                          │

02:09:30 #52242 [Debug] > │ </text>                                                                      │

02:09:30 #52243 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52244 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:30 #52245 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52246 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52247 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52248 [Debug] > │ 0.5                                                                          │

02:09:30 #52249 [Debug] > │ </text>                                                                      │

02:09:30 #52250 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52251 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:30 #52252 [Debug] > │ <text x="524" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52253 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52254 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52255 [Debug] > │ 0.6                                                                          │

02:09:30 #52256 [Debug] > │ </text>                                                                      │

02:09:30 #52257 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52258 [Debug] > │ points="524,425 524,430 "/>                                                  │

02:09:30 #52259 [Debug] > │ <text x="562" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:30 #52260 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52261 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52262 [Debug] > │ 0.7                                                                          │

02:09:30 #52263 [Debug] > │ </text>                                                                      │

02:09:30 #52264 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52265 [Debug] > │ points="562,425 562,430 "/>                                                  │

02:09:30 #52266 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52267 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:30 #52268 [Debug] > │ <text x="595" y="374" dy="0.5ex" text-anchor="start"                         │

02:09:30 #52269 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52270 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52271 [Debug] > │ 0.0                                                                          │

02:09:30 #52272 [Debug] > │ </text>                                                                      │

02:09:30 #52273 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52274 [Debug] > │ points="585,374 590,374 "/>                                                  │

02:09:30 #52275 [Debug] > │ <text x="595" y="311" dy="0.5ex" text-anchor="start"                         │

02:09:30 #52276 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52277 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52278 [Debug] > │ 0.0                                                                          │

02:09:30 #52279 [Debug] > │ </text>                                                                      │

02:09:30 #52280 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52281 [Debug] > │ points="585,311 590,311 "/>                                                  │

02:09:30 #52282 [Debug] > │ <text x="595" y="247" dy="0.5ex" text-anchor="start"                         │

02:09:30 #52283 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52284 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52285 [Debug] > │ 0.0                                                                          │

02:09:30 #52286 [Debug] > │ </text>                                                                      │

02:09:30 #52287 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52288 [Debug] > │ points="585,247 590,247 "/>                                                  │

02:09:30 #52289 [Debug] > │ <text x="595" y="184" dy="0.5ex" text-anchor="start"                         │

02:09:30 #52290 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52291 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52292 [Debug] > │ 0.0                                                                          │

02:09:30 #52293 [Debug] > │ </text>                                                                      │

02:09:30 #52294 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52295 [Debug] > │ points="585,184 590,184 "/>                                                  │

02:09:30 #52296 [Debug] > │ <text x="595" y="121" dy="0.5ex" text-anchor="start"                         │

02:09:30 #52297 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52298 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52299 [Debug] > │ 0.0                                                                          │

02:09:30 #52300 [Debug] > │ </text>                                                                      │

02:09:30 #52301 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:30 #52302 [Debug] > │ points="585,121 590,121 "/>                                                  │

02:09:30 #52303 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #52304 [Debug] > │ points="69,374 77,332 85,292 92,252 100,216 107,183 115,153 122,129 130,109  │

02:09:30 #52305 [Debug] > │ 138,95 145,87 153,85 160,89 168,99 176,115 183,136 191,163 198,193 206,227   │

02:09:30 #52306 [Debug] > │ 213,262 219,297 225,329 229,354 232,368 231,370 230,365 228,358 228,360      │

02:09:30 #52307 [Debug] > │ 229,368 230,378 230,381 229,380 228,383 229,390 229,394 229,394 229,396      │

02:09:30 #52308 [Debug] > │ 229,400 229,401 229,400 229,401 229,401 229,399 229,398 229,397 229,393      │

02:09:30 #52309 [Debug] > │ 229,391 229,388 229,384 229,381 229,377 229,373 229,369 229,365 229,362      │

02:09:30 #52310 [Debug] > │ 229,358 229,356 229,353 229,351 229,349 229,348 229,347 539,241 547,284      │

02:09:30 #52311 [Debug] > │ 569,415 562,374 "/>                                                          │

02:09:30 #52312 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:30 #52313 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:30 #52314 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:30 #52315 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52316 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52317 [Debug] > │ 64                                                                           │

02:09:30 #52318 [Debug] > │ </text>                                                                      │

02:09:30 #52319 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:30 #52320 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:30 #52321 [Debug] > │ </svg>                                                                       │

02:09:30 #52322 [Debug] > │ </td></tr><tr><td>65</td><td><svg width="640" height="480" viewBox="0 0 640  │

02:09:30 #52323 [Debug] > │ 480" xmlns="http://www.w3.org/2000/svg">                                     │

02:09:30 #52324 [Debug] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

02:09:30 #52325 [Debug] > │ stroke="none"/>                                                              │

02:09:30 #52326 [Debug] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

02:09:30 #52327 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:30 #52328 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:30 #52329 [Debug] > │ wave                                                                         │

02:09:30 #52330 [Debug] > │ </text>                                                                      │

02:09:30 #52331 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

02:09:30 #52332 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #52333 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:30 #52334 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #52335 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

02:09:30 #52336 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #52337 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

02:09:30 #52338 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #52339 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="92" y1="424" x2="92" │

02:09:30 #52340 [Debug] > │ y2="75"/>                                                                    │

02:09:30 #52341 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="100" y1="424"        │

02:09:30 #52342 [Debug] > │ x2="100" y2="75"/>                                                           │

02:09:30 #52343 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

02:09:30 #52344 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:30 #52345 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="115" y1="424"        │

02:09:30 #52346 [Debug] > │ x2="115" y2="75"/>                                                           │

02:09:30 #52347 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="122" y1="424"        │

02:09:30 #52348 [Debug] > │ x2="122" y2="75"/>                                                           │

02:09:30 #52349 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="130" y1="424"        │

02:09:30 #52350 [Debug] > │ x2="130" y2="75"/>                                                           │

02:09:30 #52351 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="138" y1="424"        │

02:09:30 #52352 [Debug] > │ x2="138" y2="75"/>                                                           │

02:09:30 #52353 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="145" y1="424"        │

02:09:30 #52354 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:31 #52355 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="153" y1="424"        │

02:09:31 #52356 [Debug] > │ x2="153" y2="75"/>                                                           │

02:09:31 #52357 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="160" y1="424"        │

02:09:31 #52358 [Debug] > │ x2="160" y2="75"/>                                                           │

02:09:31 #52359 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="168" y1="424"        │

02:09:31 #52360 [Debug] > │ x2="168" y2="75"/>                                                           │

02:09:31 #52361 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="175" y1="424"        │

02:09:31 #52362 [Debug] > │ x2="175" y2="75"/>                                                           │

02:09:31 #52363 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="183" y1="424"        │

02:09:31 #52364 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:31 #52365 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="191" y1="424"        │

02:09:31 #52366 [Debug] > │ x2="191" y2="75"/>                                                           │

02:09:31 #52367 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="198" y1="424"        │

02:09:31 #52368 [Debug] > │ x2="198" y2="75"/>                                                           │

02:09:31 #52369 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="206" y1="424"        │

02:09:31 #52370 [Debug] > │ x2="206" y2="75"/>                                                           │

02:09:31 #52371 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="213" y1="424"        │

02:09:31 #52372 [Debug] > │ x2="213" y2="75"/>                                                           │

02:09:31 #52373 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="221" y1="424"        │

02:09:31 #52374 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:31 #52375 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="228" y1="424"        │

02:09:31 #52376 [Debug] > │ x2="228" y2="75"/>                                                           │

02:09:31 #52377 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="236" y1="424"        │

02:09:31 #52378 [Debug] > │ x2="236" y2="75"/>                                                           │

02:09:31 #52379 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="244" y1="424"        │

02:09:31 #52380 [Debug] > │ x2="244" y2="75"/>                                                           │

02:09:31 #52381 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="251" y1="424"        │

02:09:31 #52382 [Debug] > │ x2="251" y2="75"/>                                                           │

02:09:31 #52383 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="259" y1="424"        │

02:09:31 #52384 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:31 #52385 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="266" y1="424"        │

02:09:31 #52386 [Debug] > │ x2="266" y2="75"/>                                                           │

02:09:31 #52387 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="274" y1="424"        │

02:09:31 #52388 [Debug] > │ x2="274" y2="75"/>                                                           │

02:09:31 #52389 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="281" y1="424"        │

02:09:31 #52390 [Debug] > │ x2="281" y2="75"/>                                                           │

02:09:31 #52391 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="289" y1="424"        │

02:09:31 #52392 [Debug] > │ x2="289" y2="75"/>                                                           │

02:09:31 #52393 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="296" y1="424"        │

02:09:31 #52394 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:31 #52395 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="304" y1="424"        │

02:09:31 #52396 [Debug] > │ x2="304" y2="75"/>                                                           │

02:09:31 #52397 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="312" y1="424"        │

02:09:31 #52398 [Debug] > │ x2="312" y2="75"/>                                                           │

02:09:31 #52399 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="319" y1="424"        │

02:09:31 #52400 [Debug] > │ x2="319" y2="75"/>                                                           │

02:09:31 #52401 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="327" y1="424"        │

02:09:31 #52402 [Debug] > │ x2="327" y2="75"/>                                                           │

02:09:31 #52403 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="334" y1="424"        │

02:09:31 #52404 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:31 #52405 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="342" y1="424"        │

02:09:31 #52406 [Debug] > │ x2="342" y2="75"/>                                                           │

02:09:31 #52407 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="349" y1="424"        │

02:09:31 #52408 [Debug] > │ x2="349" y2="75"/>                                                           │

02:09:31 #52409 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="357" y1="424"        │

02:09:31 #52410 [Debug] > │ x2="357" y2="75"/>                                                           │

02:09:31 #52411 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="365" y1="424"        │

02:09:31 #52412 [Debug] > │ x2="365" y2="75"/>                                                           │

02:09:31 #52413 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="372" y1="424"        │

02:09:31 #52414 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:31 #52415 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="380" y1="424"        │

02:09:31 #52416 [Debug] > │ x2="380" y2="75"/>                                                           │

02:09:31 #52417 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="387" y1="424"        │

02:09:31 #52418 [Debug] > │ x2="387" y2="75"/>                                                           │

02:09:31 #52419 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="395" y1="424"        │

02:09:31 #52420 [Debug] > │ x2="395" y2="75"/>                                                           │

02:09:31 #52421 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="402" y1="424"        │

02:09:31 #52422 [Debug] > │ x2="402" y2="75"/>                                                           │

02:09:31 #52423 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="410" y1="424"        │

02:09:31 #52424 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:31 #52425 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="418" y1="424"        │

02:09:31 #52426 [Debug] > │ x2="418" y2="75"/>                                                           │

02:09:31 #52427 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="425" y1="424"        │

02:09:31 #52428 [Debug] > │ x2="425" y2="75"/>                                                           │

02:09:31 #52429 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="433" y1="424"        │

02:09:31 #52430 [Debug] > │ x2="433" y2="75"/>                                                           │

02:09:31 #52431 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="440" y1="424"        │

02:09:31 #52432 [Debug] > │ x2="440" y2="75"/>                                                           │

02:09:31 #52433 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="448" y1="424"        │

02:09:31 #52434 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:31 #52435 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="455" y1="424"        │

02:09:31 #52436 [Debug] > │ x2="455" y2="75"/>                                                           │

02:09:31 #52437 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="463" y1="424"        │

02:09:31 #52438 [Debug] > │ x2="463" y2="75"/>                                                           │

02:09:31 #52439 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="471" y1="424"        │

02:09:31 #52440 [Debug] > │ x2="471" y2="75"/>                                                           │

02:09:31 #52441 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="478" y1="424"        │

02:09:31 #52442 [Debug] > │ x2="478" y2="75"/>                                                           │

02:09:31 #52443 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="486" y1="424"        │

02:09:31 #52444 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:31 #52445 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="493" y1="424"        │

02:09:31 #52446 [Debug] > │ x2="493" y2="75"/>                                                           │

02:09:31 #52447 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="501" y1="424"        │

02:09:31 #52448 [Debug] > │ x2="501" y2="75"/>                                                           │

02:09:31 #52449 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="508" y1="424"        │

02:09:31 #52450 [Debug] > │ x2="508" y2="75"/>                                                           │

02:09:31 #52451 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="516" y1="424"        │

02:09:31 #52452 [Debug] > │ x2="516" y2="75"/>                                                           │

02:09:31 #52453 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="523" y1="424"        │

02:09:31 #52454 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:31 #52455 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="531" y1="424"        │

02:09:31 #52456 [Debug] > │ x2="531" y2="75"/>                                                           │

02:09:31 #52457 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="539" y1="424"        │

02:09:31 #52458 [Debug] > │ x2="539" y2="75"/>                                                           │

02:09:31 #52459 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="546" y1="424"        │

02:09:31 #52460 [Debug] > │ x2="546" y2="75"/>                                                           │

02:09:31 #52461 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="554" y1="424"        │

02:09:31 #52462 [Debug] > │ x2="554" y2="75"/>                                                           │

02:09:31 #52463 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="561" y1="424"        │

02:09:31 #52464 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:31 #52465 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="569" y1="424"        │

02:09:31 #52466 [Debug] > │ x2="569" y2="75"/>                                                           │

02:09:31 #52467 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="421"         │

02:09:31 #52468 [Debug] > │ x2="584" y2="421"/>                                                          │

02:09:31 #52469 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="409"         │

02:09:31 #52470 [Debug] > │ x2="584" y2="409"/>                                                          │

02:09:31 #52471 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="398"         │

02:09:31 #52472 [Debug] > │ x2="584" y2="398"/>                                                          │

02:09:31 #52473 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="386"         │

02:09:31 #52474 [Debug] > │ x2="584" y2="386"/>                                                          │

02:09:31 #52475 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="374"         │

02:09:31 #52476 [Debug] > │ x2="584" y2="374"/>                                                          │

02:09:31 #52477 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="363"         │

02:09:31 #52478 [Debug] > │ x2="584" y2="363"/>                                                          │

02:09:31 #52479 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="351"         │

02:09:31 #52480 [Debug] > │ x2="584" y2="351"/>                                                          │

02:09:31 #52481 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="339"         │

02:09:31 #52482 [Debug] > │ x2="584" y2="339"/>                                                          │

02:09:31 #52483 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="327"         │

02:09:31 #52484 [Debug] > │ x2="584" y2="327"/>                                                          │

02:09:31 #52485 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="316"         │

02:09:31 #52486 [Debug] > │ x2="584" y2="316"/>                                                          │

02:09:31 #52487 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="304"         │

02:09:31 #52488 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:31 #52489 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="292"         │

02:09:31 #52490 [Debug] > │ x2="584" y2="292"/>                                                          │

02:09:31 #52491 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="280"         │

02:09:31 #52492 [Debug] > │ x2="584" y2="280"/>                                                          │

02:09:31 #52493 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="269"         │

02:09:31 #52494 [Debug] > │ x2="584" y2="269"/>                                                          │

02:09:31 #52495 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="257"         │

02:09:31 #52496 [Debug] > │ x2="584" y2="257"/>                                                          │

02:09:31 #52497 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="245"         │

02:09:31 #52498 [Debug] > │ x2="584" y2="245"/>                                                          │

02:09:31 #52499 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="234"         │

02:09:31 #52500 [Debug] > │ x2="584" y2="234"/>                                                          │

02:09:31 #52501 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="222"         │

02:09:31 #52502 [Debug] > │ x2="584" y2="222"/>                                                          │

02:09:31 #52503 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="210"         │

02:09:31 #52504 [Debug] > │ x2="584" y2="210"/>                                                          │

02:09:31 #52505 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="198"         │

02:09:31 #52506 [Debug] > │ x2="584" y2="198"/>                                                          │

02:09:31 #52507 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="187"         │

02:09:31 #52508 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:31 #52509 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="175"         │

02:09:31 #52510 [Debug] > │ x2="584" y2="175"/>                                                          │

02:09:31 #52511 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="163"         │

02:09:31 #52512 [Debug] > │ x2="584" y2="163"/>                                                          │

02:09:31 #52513 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="151"         │

02:09:31 #52514 [Debug] > │ x2="584" y2="151"/>                                                          │

02:09:31 #52515 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="140"         │

02:09:31 #52516 [Debug] > │ x2="584" y2="140"/>                                                          │

02:09:31 #52517 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="128"         │

02:09:31 #52518 [Debug] > │ x2="584" y2="128"/>                                                          │

02:09:31 #52519 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="116"         │

02:09:31 #52520 [Debug] > │ x2="584" y2="116"/>                                                          │

02:09:31 #52521 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="105"         │

02:09:31 #52522 [Debug] > │ x2="584" y2="105"/>                                                          │

02:09:31 #52523 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="93" x2="584" │

02:09:31 #52524 [Debug] > │ y2="93"/>                                                                    │

02:09:31 #52525 [Debug] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="81" x2="584" │

02:09:31 #52526 [Debug] > │ y2="81"/>                                                                    │

02:09:31 #52527 [Debug] > │ <text x="320" y="25" dy="0.76em" text-anchor="middle"                        │

02:09:31 #52528 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52529 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52530 [Debug] > │ position (m)                                                                 │

02:09:31 #52531 [Debug] > │ </text>                                                                      │

02:09:31 #52532 [Debug] > │ <text x="5" y="250" dy="0.76em" text-anchor="middle"                         │

02:09:31 #52533 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52534 [Debug] > │ fill="#FFFFFF" transform="rotate(270, 5, 250)">                              │

02:09:31 #52535 [Debug] > │ displacement (m)                                                             │

02:09:31 #52536 [Debug] > │ </text>                                                                      │

02:09:31 #52537 [Debug] > │ <text x="320" y="475" dy="-0.5ex" text-anchor="middle"                       │

02:09:31 #52538 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52539 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52540 [Debug] > │ position (m)                                                                 │

02:09:31 #52541 [Debug] > │ </text>                                                                      │

02:09:31 #52542 [Debug] > │ <text x="635" y="250" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52543 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52544 [Debug] > │ fill="#FFFFFF" transform="rotate(90, 635, 250)">                             │

02:09:31 #52545 [Debug] > │ displacement (m)                                                             │

02:09:31 #52546 [Debug] > │ </text>                                                                      │

02:09:31 #52547 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="69" y1="424" x2="69" │

02:09:31 #52548 [Debug] > │ y2="75"/>                                                                    │

02:09:31 #52549 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="107" y1="424"        │

02:09:31 #52550 [Debug] > │ x2="107" y2="75"/>                                                           │

02:09:31 #52551 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="145" y1="424"        │

02:09:31 #52552 [Debug] > │ x2="145" y2="75"/>                                                           │

02:09:31 #52553 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="183" y1="424"        │

02:09:31 #52554 [Debug] > │ x2="183" y2="75"/>                                                           │

02:09:31 #52555 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="221" y1="424"        │

02:09:31 #52556 [Debug] > │ x2="221" y2="75"/>                                                           │

02:09:31 #52557 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="259" y1="424"        │

02:09:31 #52558 [Debug] > │ x2="259" y2="75"/>                                                           │

02:09:31 #52559 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="296" y1="424"        │

02:09:31 #52560 [Debug] > │ x2="296" y2="75"/>                                                           │

02:09:31 #52561 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="334" y1="424"        │

02:09:31 #52562 [Debug] > │ x2="334" y2="75"/>                                                           │

02:09:31 #52563 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="372" y1="424"        │

02:09:31 #52564 [Debug] > │ x2="372" y2="75"/>                                                           │

02:09:31 #52565 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="410" y1="424"        │

02:09:31 #52566 [Debug] > │ x2="410" y2="75"/>                                                           │

02:09:31 #52567 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="448" y1="424"        │

02:09:31 #52568 [Debug] > │ x2="448" y2="75"/>                                                           │

02:09:31 #52569 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="486" y1="424"        │

02:09:31 #52570 [Debug] > │ x2="486" y2="75"/>                                                           │

02:09:31 #52571 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="523" y1="424"        │

02:09:31 #52572 [Debug] > │ x2="523" y2="75"/>                                                           │

02:09:31 #52573 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="561" y1="424"        │

02:09:31 #52574 [Debug] > │ x2="561" y2="75"/>                                                           │

02:09:31 #52575 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="421"         │

02:09:31 #52576 [Debug] > │ x2="584" y2="421"/>                                                          │

02:09:31 #52577 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="363"         │

02:09:31 #52578 [Debug] > │ x2="584" y2="363"/>                                                          │

02:09:31 #52579 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="304"         │

02:09:31 #52580 [Debug] > │ x2="584" y2="304"/>                                                          │

02:09:31 #52581 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="245"         │

02:09:31 #52582 [Debug] > │ x2="584" y2="245"/>                                                          │

02:09:31 #52583 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="187"         │

02:09:31 #52584 [Debug] > │ x2="584" y2="187"/>                                                          │

02:09:31 #52585 [Debug] > │ <line opacity="1" stroke="#5A5A5A" stroke-width="1" x1="55" y1="128"         │

02:09:31 #52586 [Debug] > │ x2="584" y2="128"/>                                                          │

02:09:31 #52587 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52588 [Debug] > │ points="55,74 584,74 "/>                                                     │

02:09:31 #52589 [Debug] > │ <text x="69" y="65" dy="-0.5ex" text-anchor="middle"                         │

02:09:31 #52590 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52591 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52592 [Debug] > │ 0.0                                                                          │

02:09:31 #52593 [Debug] > │ </text>                                                                      │

02:09:31 #52594 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52595 [Debug] > │ points="69,69 69,74 "/>                                                      │

02:09:31 #52596 [Debug] > │ <text x="107" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52597 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52598 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52599 [Debug] > │ 0.1                                                                          │

02:09:31 #52600 [Debug] > │ </text>                                                                      │

02:09:31 #52601 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52602 [Debug] > │ points="107,69 107,74 "/>                                                    │

02:09:31 #52603 [Debug] > │ <text x="145" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52604 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52605 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52606 [Debug] > │ 0.1                                                                          │

02:09:31 #52607 [Debug] > │ </text>                                                                      │

02:09:31 #52608 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52609 [Debug] > │ points="145,69 145,74 "/>                                                    │

02:09:31 #52610 [Debug] > │ <text x="183" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52611 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52612 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52613 [Debug] > │ 0.2                                                                          │

02:09:31 #52614 [Debug] > │ </text>                                                                      │

02:09:31 #52615 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52616 [Debug] > │ points="183,69 183,74 "/>                                                    │

02:09:31 #52617 [Debug] > │ <text x="221" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52618 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52619 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52620 [Debug] > │ 0.2                                                                          │

02:09:31 #52621 [Debug] > │ </text>                                                                      │

02:09:31 #52622 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52623 [Debug] > │ points="221,69 221,74 "/>                                                    │

02:09:31 #52624 [Debug] > │ <text x="259" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52625 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52626 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52627 [Debug] > │ 0.2                                                                          │

02:09:31 #52628 [Debug] > │ </text>                                                                      │

02:09:31 #52629 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52630 [Debug] > │ points="259,69 259,74 "/>                                                    │

02:09:31 #52631 [Debug] > │ <text x="296" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52632 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52633 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52634 [Debug] > │ 0.3                                                                          │

02:09:31 #52635 [Debug] > │ </text>                                                                      │

02:09:31 #52636 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52637 [Debug] > │ points="296,69 296,74 "/>                                                    │

02:09:31 #52638 [Debug] > │ <text x="334" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52639 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52640 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52641 [Debug] > │ 0.3                                                                          │

02:09:31 #52642 [Debug] > │ </text>                                                                      │

02:09:31 #52643 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52644 [Debug] > │ points="334,69 334,74 "/>                                                    │

02:09:31 #52645 [Debug] > │ <text x="372" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52646 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52647 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52648 [Debug] > │ 0.4                                                                          │

02:09:31 #52649 [Debug] > │ </text>                                                                      │

02:09:31 #52650 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52651 [Debug] > │ points="372,69 372,74 "/>                                                    │

02:09:31 #52652 [Debug] > │ <text x="410" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52653 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52654 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52655 [Debug] > │ 0.4                                                                          │

02:09:31 #52656 [Debug] > │ </text>                                                                      │

02:09:31 #52657 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52658 [Debug] > │ points="410,69 410,74 "/>                                                    │

02:09:31 #52659 [Debug] > │ <text x="448" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52660 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52661 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52662 [Debug] > │ 0.5                                                                          │

02:09:31 #52663 [Debug] > │ </text>                                                                      │

02:09:31 #52664 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52665 [Debug] > │ points="448,69 448,74 "/>                                                    │

02:09:31 #52666 [Debug] > │ <text x="486" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52667 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52668 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52669 [Debug] > │ 0.5                                                                          │

02:09:31 #52670 [Debug] > │ </text>                                                                      │

02:09:31 #52671 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52672 [Debug] > │ points="486,69 486,74 "/>                                                    │

02:09:31 #52673 [Debug] > │ <text x="523" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52674 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52675 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52676 [Debug] > │ 0.6                                                                          │

02:09:31 #52677 [Debug] > │ </text>                                                                      │

02:09:31 #52678 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52679 [Debug] > │ points="523,69 523,74 "/>                                                    │

02:09:31 #52680 [Debug] > │ <text x="561" y="65" dy="-0.5ex" text-anchor="middle"                        │

02:09:31 #52681 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52682 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52683 [Debug] > │ 0.7                                                                          │

02:09:31 #52684 [Debug] > │ </text>                                                                      │

02:09:31 #52685 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52686 [Debug] > │ points="561,69 561,74 "/>                                                    │

02:09:31 #52687 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52688 [Debug] > │ points="54,75 54,424 "/>                                                     │

02:09:31 #52689 [Debug] > │ <text x="45" y="421" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:31 #52690 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52691 [Debug] > │ -0.0                                                                         │

02:09:31 #52692 [Debug] > │ </text>                                                                      │

02:09:31 #52693 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52694 [Debug] > │ points="49,421 54,421 "/>                                                    │

02:09:31 #52695 [Debug] > │ <text x="45" y="363" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:31 #52696 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52697 [Debug] > │ 0.0                                                                          │

02:09:31 #52698 [Debug] > │ </text>                                                                      │

02:09:31 #52699 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52700 [Debug] > │ points="49,363 54,363 "/>                                                    │

02:09:31 #52701 [Debug] > │ <text x="45" y="304" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:31 #52702 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52703 [Debug] > │ 0.0                                                                          │

02:09:31 #52704 [Debug] > │ </text>                                                                      │

02:09:31 #52705 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52706 [Debug] > │ points="49,304 54,304 "/>                                                    │

02:09:31 #52707 [Debug] > │ <text x="45" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:31 #52708 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52709 [Debug] > │ 0.0                                                                          │

02:09:31 #52710 [Debug] > │ </text>                                                                      │

02:09:31 #52711 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52712 [Debug] > │ points="49,245 54,245 "/>                                                    │

02:09:31 #52713 [Debug] > │ <text x="45" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:31 #52714 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52715 [Debug] > │ 0.0                                                                          │

02:09:31 #52716 [Debug] > │ </text>                                                                      │

02:09:31 #52717 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52718 [Debug] > │ points="49,187 54,187 "/>                                                    │

02:09:31 #52719 [Debug] > │ <text x="45" y="128" dy="0.5ex" text-anchor="end" font-family="sans-serif"   │

02:09:31 #52720 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52721 [Debug] > │ 0.0                                                                          │

02:09:31 #52722 [Debug] > │ </text>                                                                      │

02:09:31 #52723 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52724 [Debug] > │ points="49,128 54,128 "/>                                                    │

02:09:31 #52725 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52726 [Debug] > │ points="55,425 584,425 "/>                                                   │

02:09:31 #52727 [Debug] > │ <text x="69" y="435" dy="0.76em" text-anchor="middle"                        │

02:09:31 #52728 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52729 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52730 [Debug] > │ 0.0                                                                          │

02:09:31 #52731 [Debug] > │ </text>                                                                      │

02:09:31 #52732 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52733 [Debug] > │ points="69,425 69,430 "/>                                                    │

02:09:31 #52734 [Debug] > │ <text x="107" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52735 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52736 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52737 [Debug] > │ 0.1                                                                          │

02:09:31 #52738 [Debug] > │ </text>                                                                      │

02:09:31 #52739 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52740 [Debug] > │ points="107,425 107,430 "/>                                                  │

02:09:31 #52741 [Debug] > │ <text x="145" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52742 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52743 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52744 [Debug] > │ 0.1                                                                          │

02:09:31 #52745 [Debug] > │ </text>                                                                      │

02:09:31 #52746 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52747 [Debug] > │ points="145,425 145,430 "/>                                                  │

02:09:31 #52748 [Debug] > │ <text x="183" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52749 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52750 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52751 [Debug] > │ 0.2                                                                          │

02:09:31 #52752 [Debug] > │ </text>                                                                      │

02:09:31 #52753 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52754 [Debug] > │ points="183,425 183,430 "/>                                                  │

02:09:31 #52755 [Debug] > │ <text x="221" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52756 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52757 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52758 [Debug] > │ 0.2                                                                          │

02:09:31 #52759 [Debug] > │ </text>                                                                      │

02:09:31 #52760 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52761 [Debug] > │ points="221,425 221,430 "/>                                                  │

02:09:31 #52762 [Debug] > │ <text x="259" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52763 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52764 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52765 [Debug] > │ 0.2                                                                          │

02:09:31 #52766 [Debug] > │ </text>                                                                      │

02:09:31 #52767 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52768 [Debug] > │ points="259,425 259,430 "/>                                                  │

02:09:31 #52769 [Debug] > │ <text x="296" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52770 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52771 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52772 [Debug] > │ 0.3                                                                          │

02:09:31 #52773 [Debug] > │ </text>                                                                      │

02:09:31 #52774 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52775 [Debug] > │ points="296,425 296,430 "/>                                                  │

02:09:31 #52776 [Debug] > │ <text x="334" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52777 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52778 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52779 [Debug] > │ 0.3                                                                          │

02:09:31 #52780 [Debug] > │ </text>                                                                      │

02:09:31 #52781 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52782 [Debug] > │ points="334,425 334,430 "/>                                                  │

02:09:31 #52783 [Debug] > │ <text x="372" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52784 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52785 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52786 [Debug] > │ 0.4                                                                          │

02:09:31 #52787 [Debug] > │ </text>                                                                      │

02:09:31 #52788 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52789 [Debug] > │ points="372,425 372,430 "/>                                                  │

02:09:31 #52790 [Debug] > │ <text x="410" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52791 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52792 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52793 [Debug] > │ 0.4                                                                          │

02:09:31 #52794 [Debug] > │ </text>                                                                      │

02:09:31 #52795 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52796 [Debug] > │ points="410,425 410,430 "/>                                                  │

02:09:31 #52797 [Debug] > │ <text x="448" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52798 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52799 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52800 [Debug] > │ 0.5                                                                          │

02:09:31 #52801 [Debug] > │ </text>                                                                      │

02:09:31 #52802 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52803 [Debug] > │ points="448,425 448,430 "/>                                                  │

02:09:31 #52804 [Debug] > │ <text x="486" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52805 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52806 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52807 [Debug] > │ 0.5                                                                          │

02:09:31 #52808 [Debug] > │ </text>                                                                      │

02:09:31 #52809 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52810 [Debug] > │ points="486,425 486,430 "/>                                                  │

02:09:31 #52811 [Debug] > │ <text x="523" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52812 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52813 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52814 [Debug] > │ 0.6                                                                          │

02:09:31 #52815 [Debug] > │ </text>                                                                      │

02:09:31 #52816 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52817 [Debug] > │ points="523,425 523,430 "/>                                                  │

02:09:31 #52818 [Debug] > │ <text x="561" y="435" dy="0.76em" text-anchor="middle"                       │

02:09:31 #52819 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52820 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52821 [Debug] > │ 0.7                                                                          │

02:09:31 #52822 [Debug] > │ </text>                                                                      │

02:09:31 #52823 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52824 [Debug] > │ points="561,425 561,430 "/>                                                  │

02:09:31 #52825 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52826 [Debug] > │ points="585,75 585,424 "/>                                                   │

02:09:31 #52827 [Debug] > │ <text x="595" y="421" dy="0.5ex" text-anchor="start"                         │

02:09:31 #52828 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52829 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52830 [Debug] > │ -0.0                                                                         │

02:09:31 #52831 [Debug] > │ </text>                                                                      │

02:09:31 #52832 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52833 [Debug] > │ points="585,421 590,421 "/>                                                  │

02:09:31 #52834 [Debug] > │ <text x="617" y="363" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:31 #52835 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52836 [Debug] > │ 0.0                                                                          │

02:09:31 #52837 [Debug] > │ </text>                                                                      │

02:09:31 #52838 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52839 [Debug] > │ points="585,363 590,363 "/>                                                  │

02:09:31 #52840 [Debug] > │ <text x="617" y="304" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:31 #52841 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52842 [Debug] > │ 0.0                                                                          │

02:09:31 #52843 [Debug] > │ </text>                                                                      │

02:09:31 #52844 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52845 [Debug] > │ points="585,304 590,304 "/>                                                  │

02:09:31 #52846 [Debug] > │ <text x="617" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:31 #52847 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52848 [Debug] > │ 0.0                                                                          │

02:09:31 #52849 [Debug] > │ </text>                                                                      │

02:09:31 #52850 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52851 [Debug] > │ points="585,245 590,245 "/>                                                  │

02:09:31 #52852 [Debug] > │ <text x="617" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:31 #52853 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52854 [Debug] > │ 0.0                                                                          │

02:09:31 #52855 [Debug] > │ </text>                                                                      │

02:09:31 #52856 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52857 [Debug] > │ points="585,187 590,187 "/>                                                  │

02:09:31 #52858 [Debug] > │ <text x="617" y="128" dy="0.5ex" text-anchor="end" font-family="sans-serif"  │

02:09:31 #52859 [Debug] > │ font-size="9.67741935483871" opacity="1" fill="#FFFFFF">                     │

02:09:31 #52860 [Debug] > │ 0.0                                                                          │

02:09:31 #52861 [Debug] > │ </text>                                                                      │

02:09:31 #52862 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FFFFFF" stroke-width="1"          │

02:09:31 #52863 [Debug] > │ points="585,128 590,128 "/>                                                  │

02:09:31 #52864 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:31 #52865 [Debug] > │ points="69,363 77,322 85,283 92,246 100,211 107,179 115,151 122,127 130,108  │

02:09:31 #52866 [Debug] > │ 138,95 145,87 153,85 160,89 168,99 175,114 183,134 190,159 198,188 205,220   │

02:09:31 #52867 [Debug] > │ 212,253 218,284 223,311 226,329 227,337 226,337 224,333 223,334 223,344      │

02:09:31 #52868 [Debug] > │ 224,357 225,367 224,370 223,374 224,383 224,393 224,397 224,400 224,406      │

02:09:31 #52869 [Debug] > │ 224,411 224,412 224,413 224,415 224,413 224,411 224,409 224,405 224,400      │

02:09:31 #52870 [Debug] > │ 224,395 224,388 224,382 224,375 224,367 224,360 224,353 224,346 224,339      │

02:09:31 #52871 [Debug] > │ 224,332 224,327 224,322 224,318 224,314 224,312 224,311 539,239 546,279      │

02:09:31 #52872 [Debug] > │ 569,403 561,363 "/>                                                          │

02:09:31 #52873 [Debug] > │ <rect x="519" y="235" width="61" height="30" opacity="1" fill="none"         │

02:09:31 #52874 [Debug] > │ stroke="#FFFFFF"/>                                                           │

02:09:31 #52875 [Debug] > │ <text x="559" y="245" dy="0.76em" text-anchor="start"                        │

02:09:31 #52876 [Debug] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

02:09:31 #52877 [Debug] > │ fill="#FFFFFF">                                                              │

02:09:31 #52878 [Debug] > │ 65                                                                           │

02:09:31 #52879 [Debug] > │ </text>                                                                      │

02:09:31 #52880 [Debug] > │ <polyline fill="none" opacity="1" stroke="#FF0000" stroke-width="1"          │

02:09:31 #52881 [Debug] > │ points="529,250 549,250 "/>                                                  │

02:09:31 #52882 [Debug] > │ </svg>                                                                       │

02:09:31 #52883 [Debug] > │ </td></tr></tbody></table><style>                                            │

02:09:31 #52884 [Debug] > │ .dni-code-hint {                                                             │

02:09:31 #52885 [Debug] > │     font-style: italic;                                                      │

02:09:31 #52886 [Debug] > │     overflow: hidden;                                                        │

02:09:31 #52887 [Debug] > │     white-space: nowrap;                                                     │

02:09:31 #52888 [Debug] > │ }                                                                            │

02:09:31 #52889 [Debug] > │ .dni-treeview {                                                              │

02:09:31 #52890 [Debug] > │     white-space: nowrap;                                                     │

02:09:31 #52891 [Debug] > │ }                                                                            │

02:09:31 #52892 [Debug] > │ .dni-treeview td {                                                           │

02:09:31 #52893 [Debug] > │     vertical-align: top;                                                     │

02:09:31 #52894 [Debug] > │     text-align: start;                                                       │

02:09:31 #52895 [Debug] > │ }                                                                            │

02:09:31 #52896 [Debug] > │ details.dni-treeview {                                                       │

02:09:31 #52897 [Debug] > │     padding-left: 1em;                                                       │

02:09:31 #52898 [Debug] > │ }                                                                            │

02:09:31 #52899 [Debug] > │ table td {                                                                   │

02:09:31 #52900 [Debug] > │     text-align: start;                                                       │

02:09:31 #52901 [Debug] > │ }                                                                            │

02:09:31 #52902 [Debug] > │ table tr {                                                                   │

02:09:31 #52903 [Debug] > │     vertical-align: top;                                                     │

02:09:31 #52904 [Debug] > │     margin: 0em 0px;                                                         │

02:09:31 #52905 [Debug] > │ }                                                                            │

02:09:31 #52906 [Debug] > │ table tr td pre                                                              │

02:09:31 #52907 [Debug] > │ {                                                                            │

02:09:31 #52908 [Debug] > │     vertical-align: top !important;                                          │

02:09:31 #52909 [Debug] > │     margin: 0em 0px !important;                                              │

02:09:31 #52910 [Debug] > │ }                                                                            │

02:09:31 #52911 [Debug] > │ table th {                                                                   │

02:09:31 #52912 [Debug] > │     text-align: start;                                                       │

02:09:31 #52913 [Debug] > │ }                                                                            │

02:09:31 #52914 [Debug] > │ </style>                                                                     │

02:09:31 #52915 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:31 #52916 [Debug] >

02:09:31 #52917 [Debug] > ╭─[ 20.18s - stdout ]──────────────────────────────────────────────────────────╮

02:09:31 #52918 [Debug] > │ type UH0 =                                                                   │

02:09:31 #52919 [Debug] > │     | UH0_0 of float * (unit -> UH0)                                         │

02:09:31 #52920 [Debug] > │     | UH0_1                                                                  │

02:09:31 #52921 [Debug] > │ and UH1 =                                                                    │

02:09:31 #52922 [Debug] > │     | UH1_0 of float * float * float * float * float * float * float * float │

02:09:31 #52923 [Debug] > │ * float * (unit -> UH1)                                                      │

02:09:31 #52924 [Debug] > │     | UH1_1                                                                  │

02:09:31 #52925 [Debug] > │ and UH2 =                                                                    │

02:09:31 #52926 [Debug] > │     | UH2_0 of (float []) * (float []) * (unit -> UH2)                       │

02:09:31 #52927 [Debug] > │     | UH2_1                                                                  │

02:09:31 #52928 [Debug] > │ and UH3 =                                                                    │

02:09:31 #52929 [Debug] > │     | UH3_0 of float * float * float * float * float * float * float * float │

02:09:31 #52930 [Debug] > │ * float * (unit -> UH3)                                                      │

02:09:31 #52931 [Debug] > │     | UH3_1                                                                  │

02:09:31 #52932 [Debug] > │ and [<Struct>] US0 =                                                         │

02:09:31 #52933 [Debug] > │     | US0_0 of f0_0 : UH1                                                    │

02:09:31 #52934 [Debug] > │     | US0_1 of f1_0 : (unit -> UH1)                                          │

02:09:31 #52935 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:09:31 #52936 [Debug] > │ and [<Struct>] US1 =                                                         │

02:09:31 #52937 [Debug] > │     | US1_0 of f0_0 : int32 * f0_1 : (struct (float * float * float * float  │

02:09:31 #52938 [Debug] > │ * float * float * float * float * float) -> struct (float * float * float))  │

02:09:31 #52939 [Debug] > │     | US1_1 of f1_0 : int32 * f1_1 : int32 * f1_2 : (struct (float * float * │

02:09:31 #52940 [Debug] > │ float * float * float * float * float * float * float) -> (struct (float *   │

02:09:31 #52941 [Debug] > │ float * float * float * float * float * float * float * float) -> struct     │

02:09:31 #52942 [Debug] > │ (float * float * float)))                                                    │

02:09:31 #52943 [Debug] > │ and UH4 =                                                                    │

02:09:31 #52944 [Debug] > │     | UH4_0 of US1 * UH4                                                     │

02:09:31 #52945 [Debug] > │     | UH4_1                                                                  │

02:09:31 #52946 [Debug] > │ and UH5 =                                                                    │

02:09:31 #52947 [Debug] > │     | UH5_0 of int32 * float * float * float * float * float * float * float │

02:09:31 #52948 [Debug] > │ * float * float * (unit -> UH5)                                              │

02:09:31 #52949 [Debug] > │     | UH5_1                                                                  │

02:09:31 #52950 [Debug] > │ and UH6 =                                                                    │

02:09:31 #52951 [Debug] > │     | UH6_0 of (struct (float * float * float * float * float * float *      │

02:09:31 #52952 [Debug] > │ float * float * float) -> struct (float * float * float)) * UH6              │

02:09:31 #52953 [Debug] > │     | UH6_1                                                                  │

02:09:31 #52954 [Debug] > │ and [<Struct>] US2 =                                                         │

02:09:31 #52955 [Debug] > │     | US2_0                                                                  │

02:09:31 #52956 [Debug] > │     | US2_1 of f1_0 : (struct (float * float * float * float * float * float │

02:09:31 #52957 [Debug] > │ * float * float * float) -> struct (float * float * float))                  │

02:09:31 #52958 [Debug] > │ and [<Struct>] US3 =                                                         │

02:09:31 #52959 [Debug] > │     | US3_0                                                                  │

02:09:31 #52960 [Debug] > │     | US3_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

02:09:31 #52961 [Debug] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

02:09:31 #52962 [Debug] > │ and UH7 =                                                                    │

02:09:31 #52963 [Debug] > │     | UH7_0 of float * float * float * UH7                                   │

02:09:31 #52964 [Debug] > │     | UH7_1                                                                  │

02:09:31 #52965 [Debug] > │ and UH8 =                                                                    │

02:09:31 #52966 [Debug] > │     | UH8_0 of UH1 * (unit -> UH8)                                           │

02:09:31 #52967 [Debug] > │     | UH8_1                                                                  │

02:09:31 #52968 [Debug] > │ and [<Struct>] US4 =                                                         │

02:09:31 #52969 [Debug] > │     | US4_0                                                                  │

02:09:31 #52970 [Debug] > │     | US4_1 of f1_0 : UH1                                                    │

02:09:31 #52971 [Debug] > │ and UH9 =                                                                    │

02:09:31 #52972 [Debug] > │     | UH9_0 of float * float * float * (unit -> UH9)                         │

02:09:31 #52973 [Debug] > │     | UH9_1                                                                  │

02:09:31 #52974 [Debug] > │ and UH10 =                                                                   │

02:09:31 #52975 [Debug] > │     | UH10_0 of float * float * UH10                                         │

02:09:31 #52976 [Debug] > │     | UH10_1                                                                 │

02:09:31 #52977 [Debug] > │ and UH11 =                                                                   │

02:09:31 #52978 [Debug] > │     | UH11_0 of float * float * (unit -> UH11)                               │

02:09:31 #52979 [Debug] > │     | UH11_1                                                                 │

02:09:31 #52980 [Debug] > │ and UH12 =                                                                   │

02:09:31 #52981 [Debug] > │     | UH12_0 of float * UH12                                                 │

02:09:31 #52982 [Debug] > │     | UH12_1                                                                 │

02:09:31 #52983 [Debug] > │ and UH13 =                                                                   │

02:09:31 #52984 [Debug] > │     | UH13_0 of int32 * (float []) * (float []) * (unit -> UH13)             │

02:09:31 #52985 [Debug] > │     | UH13_1                                                                 │

02:09:31 #52986 [Debug] > │ and UH14 =                                                                   │

02:09:31 #52987 [Debug] > │     | UH14_0 of string * string * string * (struct (string * (float []) *    │

02:09:31 #52988 [Debug] > │ (float [])) []) * (unit -> UH14)                                             │

02:09:31 #52989 [Debug] > │     | UH14_1                                                                 │

02:09:31 #52990 [Debug] > │ and UH15 =                                                                   │

02:09:31 #52991 [Debug] > │     | UH15_0 of string * string * string * (struct (string * (float []) *    │

02:09:31 #52992 [Debug] > │ (float [])) []) * UH15                                                       │

02:09:31 #52993 [Debug] > │     | UH15_1                                                                 │

02:09:31 #52994 [Debug] > │ let rec closure65 () () : UH0 =                                              │

02:09:31 #52995 [Debug] > │     UH0_1                                                                    │

02:09:31 #52996 [Debug] > │ and closure64 () () : UH0 =                                                  │

02:09:31 #52997 [Debug] > │     let v0 : (unit -> UH0) = closure65()                                     │

02:09:31 #52998 [Debug] > │     UH0_0(65.0, v0)                                                          │

02:09:31 #52999 [Debug] > │ and closure63 () () : UH0 =                                                  │

02:09:31 #53000 [Debug] > │     let v0 : (unit -> UH0) = closure64()                                     │

02:09:31 #53001 [Debug] > │     UH0_0(64.0, v0)                                                          │

02:09:31 #53002 [Debug] > │ and closure62 () () : UH0 =                                                  │

02:09:31 #53003 [Debug] > │     let v0 : (unit -> UH0) = closure63()                                     │

02:09:31 #53004 [Debug] > │     UH0_0(63.0, v0)                                                          │

02:09:31 #53005 [Debug] > │ and closure61 () () : UH0 =                                                  │

02:09:31 #53006 [Debug] > │     let v0 : (unit -> UH0) = closure62()                                     │

02:09:31 #53007 [Debug] > │     UH0_0(62.0, v0)                                                          │

02:09:31 #53008 [Debug] > │ and closure60 () () : UH0 =                                                  │

02:09:31 #53009 [Debug] > │     let v0 : (unit -> UH0) = closure61()                                     │

02:09:31 #53010 [Debug] > │     UH0_0(61.0, v0)                                                          │

02:09:31 #53011 [Debug] > │ and closure59 () () : UH0 =                                                  │

02:09:31 #53012 [Debug] > │     let v0 : (unit -> UH0) = closure60()                                     │

02:09:31 #53013 [Debug] > │     UH0_0(60.0, v0)                                                          │

02:09:31 #53014 [Debug] > │ and closure58 () () : UH0 =                                                  │

02:09:31 #53015 [Debug] > │     let v0 : (unit -> UH0) = closure59()                                     │

02:09:31 #53016 [Debug] > │     UH0_0(59.0, v0)                                                          │

02:09:31 #53017 [Debug] > │ and closure57 () () : UH0 =                                                  │

02:09:31 #53018 [Debug] > │     let v0 : (unit -> UH0) = closure58()                                     │

02:09:31 #53019 [Debug] > │     UH0_0(58.0, v0)                                                          │

02:09:31 #53020 [Debug] > │ and closure56 () () : UH0 =                                                  │

02:09:31 #53021 [Debug] > │     let v0 : (unit -> UH0) = closure57()                                     │

02:09:31 #53022 [Debug] > │     UH0_0(57.0, v0)                                                          │

02:09:31 #53023 [Debug] > │ and closure55 () () : UH0 =                                                  │

02:09:31 #53024 [Debug] > │     let v0 : (unit -> UH0) = closure56()                                     │

02:09:31 #53025 [Debug] > │     UH0_0(56.0, v0)                                                          │

02:09:31 #53026 [Debug] > │ and closure54 () () : UH0 =                                                  │

02:09:31 #53027 [Debug] > │     let v0 : (unit -> UH0) = closure55()                                     │

02:09:31 #53028 [Debug] > │     UH0_0(55.0, v0)                                                          │

02:09:31 #53029 [Debug] > │ and closure53 () () : UH0 =                                                  │

02:09:31 #53030 [Debug] > │     let v0 : (unit -> UH0) = closure54()                                     │

02:09:31 #53031 [Debug] > │     UH0_0(54.0, v0)                                                          │

02:09:31 #53032 [Debug] > │ and closure52 () () : UH0 =                                                  │

02:09:31 #53033 [Debug] > │     let v0 : (unit -> UH0) = closure53()                                     │

02:09:31 #53034 [Debug] > │     UH0_0(53.0, v0)                                                          │

02:09:31 #53035 [Debug] > │ and closure51 () () : UH0 =                                                  │

02:09:31 #53036 [Debug] > │     let v0 : (unit -> UH0) = closure52()                                     │

02:09:31 #53037 [Debug] > │     UH0_0(52.0, v0)                                                          │

02:09:31 #53038 [Debug] > │ and closure50 () () : UH0 =                                                  │

02:09:31 #53039 [Debug] > │     let v0 : (unit -> UH0) = closure51()                                     │

02:09:31 #53040 [Debug] > │     UH0_0(51.0, v0)                                                          │

02:09:31 #53041 [Debug] > │ and closure49 () () : UH0 =                                                  │

02:09:31 #53042 [Debug] > │     let v0 : (unit -> UH0) = closure50()                                     │

02:09:31 #53043 [Debug] > │     UH0_0(50.0, v0)                                                          │

02:09:31 #53044 [Debug] > │ and closure48 () () : UH0 =                                                  │

02:09:31 #53045 [Debug] > │     let v0 : (unit -> UH0) = closure49()                                     │

02:09:31 #53046 [Debug] > │     UH0_0(49.0, v0)                                                          │

02:09:31 #53047 [Debug] > │ and closure47 () () : UH0 =                                                  │

02:09:31 #53048 [Debug] > │     let v0 : (unit -> UH0) = closure48()                                     │

02:09:31 #53049 [Debug] > │     UH0_0(48.0, v0)                                                          │

02:09:31 #53050 [Debug] > │ and closure46 () () : UH0 =                                                  │

02:09:31 #53051 [Debug] > │     let v0 : (unit -> UH0) = closure47()                                     │

02:09:31 #53052 [Debug] > │     UH0_0(47.0, v0)                                                          │

02:09:31 #53053 [Debug] > │ and closure45 () () : UH0 =                                                  │

02:09:31 #53054 [Debug] > │     let v0 : (unit -> UH0) = closure46()                                     │

02:09:31 #53055 [Debug] > │     UH0_0(46.0, v0)                                                          │

02:09:31 #53056 [Debug] > │ and closure44 () () : UH0 =                                                  │

02:09:31 #53057 [Debug] > │     let v0 : (unit -> UH0) = closure45()                                     │

02:09:31 #53058 [Debug] > │     UH0_0(45.0, v0)                                                          │

02:09:31 #53059 [Debug] > │ and closure43 () () : UH0 =                                                  │

02:09:31 #53060 [Debug] > │     let v0 : (unit -> UH0) = closure44()                                     │

02:09:31 #53061 [Debug] > │     UH0_0(44.0, v0)                                                          │

02:09:31 #53062 [Debug] > │ and closure42 () () : UH0 =                                                  │

02:09:31 #53063 [Debug] > │     let v0 : (unit -> UH0) = closure43()                                     │

02:09:31 #53064 [Debug] > │     UH0_0(43.0, v0)                                                          │

02:09:31 #53065 [Debug] > │ and closure41 () () : UH0 =                                                  │

02:09:31 #53066 [Debug] > │     let v0 : (unit -> UH0) = closure42()                                     │

02:09:31 #53067 [Debug] > │     UH0_0(42.0, v0)                                                          │

02:09:31 #53068 [Debug] > │ and closure40 () () : UH0 =                                                  │

02:09:31 #53069 [Debug] > │     let v0 : (unit -> UH0) = closure41()                                     │

02:09:31 #53070 [Debug] > │     UH0_0(41.0, v0)                                                          │

02:09:31 #53071 [Debug] > │ and closure39 () () : UH0 =                                                  │

02:09:31 #53072 [Debug] > │     let v0 : (unit -> UH0) = closure40()                                     │

02:09:31 #53073 [Debug] > │     UH0_0(40.0, v0)                                                          │

02:09:31 #53074 [Debug] > │ and closure38 () () : UH0 =                                                  │

02:09:31 #53075 [Debug] > │     let v0 : (unit -> UH0) = closure39()                                     │

02:09:31 #53076 [Debug] > │     UH0_0(39.0, v0)                                                          │

02:09:31 #53077 [Debug] > │ and closure37 () () : UH0 =                                                  │

02:09:31 #53078 [Debug] > │     let v0 : (unit -> UH0) = closure38()                                     │

02:09:31 #53079 [Debug] > │     UH0_0(38.0, v0)                                                          │

02:09:31 #53080 [Debug] > │ and closure36 () () : UH0 =                                                  │

02:09:31 #53081 [Debug] > │     let v0 : (unit -> UH0) = closure37()                                     │

02:09:31 #53082 [Debug] > │     UH0_0(37.0, v0)                                                          │

02:09:31 #53083 [Debug] > │ and closure35 () () : UH0 =                                                  │

02:09:31 #53084 [Debug] > │     let v0 : (unit -> UH0) = closure36()                                     │

02:09:31 #53085 [Debug] > │     UH0_0(36.0, v0)                                                          │

02:09:31 #53086 [Debug] > │ and closure34 () () : UH0 =                                                  │

02:09:31 #53087 [Debug] > │     let v0 : (unit -> UH0) = closure35()                                     │

02:09:31 #53088 [Debug] > │     UH0_0(35.0, v0)                                                          │

02:09:31 #53089 [Debug] > │ and closure33 () () : UH0 =                                                  │

02:09:31 #53090 [Debug] > │     let v0 : (unit -> UH0) = closure34()                                     │

02:09:31 #53091 [Debug] > │     UH0_0(34.0, v0)                                                          │

02:09:31 #53092 [Debug] > │ and closure32 () () : UH0 =                                                  │

02:09:31 #53093 [Debug] > │     let v0 : (unit -> UH0) = closure33()                                     │

02:09:31 #53094 [Debug] > │     UH0_0(33.0, v0)                                                          │

02:09:31 #53095 [Debug] > │ and closure31 () () : UH0 =                                                  │

02:09:31 #53096 [Debug] > │     let v0 : (unit -> UH0) = closure32()                                     │

02:09:31 #53097 [Debug] > │     UH0_0(32.0, v0)                                                          │

02:09:31 #53098 [Debug] > │ and closure30 () () : UH0 =                                                  │

02:09:31 #53099 [Debug] > │     let v0 : (unit -> UH0) = closure31()                                     │

02:09:31 #53100 [Debug] > │     UH0_0(31.0, v0)                                                          │

02:09:31 #53101 [Debug] > │ and closure29 () () : UH0 =                                                  │

02:09:31 #53102 [Debug] > │     let v0 : (unit -> UH0) = closure30()                                     │

02:09:31 #53103 [Debug] > │     UH0_0(30.0, v0)                                                          │

02:09:31 #53104 [Debug] > │ and closure28 () () : UH0 =                                                  │

02:09:31 #53105 [Debug] > │     let v0 : (unit -> UH0) = closure29()                                     │

02:09:31 #53106 [Debug] > │     UH0_0(29.0, v0)                                                          │

02:09:31 #53107 [Debug] > │ and closure27 () () : UH0 =                                                  │

02:09:31 #53108 [Debug] > │     let v0 : (unit -> UH0) = closure28()                                     │

02:09:31 #53109 [Debug] > │     UH0_0(28.0, v0)                                                          │

02:09:31 #53110 [Debug] > │ and closure26 () () : UH0 =                                                  │

02:09:31 #53111 [Debug] > │     let v0 : (unit -> UH0) = closure27()                                     │

02:09:31 #53112 [Debug] > │     UH0_0(27.0, v0)                                                          │

02:09:31 #53113 [Debug] > │ and closure25 () () : UH0 =                                                  │

02:09:31 #53114 [Debug] > │     let v0 : (unit -> UH0) = closure26()                                     │

02:09:31 #53115 [Debug] > │     UH0_0(26.0, v0)                                                          │

02:09:31 #53116 [Debug] > │ and closure24 () () : UH0 =                                                  │

02:09:31 #53117 [Debug] > │     let v0 : (unit -> UH0) = closure25()                                     │

02:09:31 #53118 [Debug] > │     UH0_0(25.0, v0)                                                          │

02:09:31 #53119 [Debug] > │ and closure23 () () : UH0 =                                                  │

02:09:31 #53120 [Debug] > │     let v0 : (unit -> UH0) = closure24()                                     │

02:09:31 #53121 [Debug] > │     UH0_0(24.0, v0)                                                          │

02:09:31 #53122 [Debug] > │ and closure22 () () : UH0 =                                                  │

02:09:31 #53123 [Debug] > │     let v0 : (unit -> UH0) = closure23()                                     │

02:09:31 #53124 [Debug] > │     UH0_0(23.0, v0)                                                          │

02:09:31 #53125 [Debug] > │ and closure21 () () : UH0 =                                                  │

02:09:31 #53126 [Debug] > │     let v0 : (unit -> UH0) = closure22()                                     │

02:09:31 #53127 [Debug] > │     UH0_0(22.0, v0)                                                          │

02:09:31 #53128 [Debug] > │ and closure20 () () : UH0 =                                                  │

02:09:31 #53129 [Debug] > │     let v0 : (unit -> UH0) = closure21()                                     │

02:09:31 #53130 [Debug] > │     UH0_0(21.0, v0)                                                          │

02:09:31 #53131 [Debug] > │ and closure19 () () : UH0 =                                                  │

02:09:31 #53132 [Debug] > │     let v0 : (unit -> UH0) = closure20()                                     │

02:09:31 #53133 [Debug] > │     UH0_0(20.0, v0)                                                          │

02:09:31 #53134 [Debug] > │ and closure18 () () : UH0 =                                                  │

02:09:31 #53135 [Debug] > │     let v0 : (unit -> UH0) = closure19()                                     │

02:09:31 #53136 [Debug] > │     UH0_0(19.0, v0)                                                          │

02:09:31 #53137 [Debug] > │ and closure17 () () : UH0 =                                                  │

02:09:31 #53138 [Debug] > │     let v0 : (unit -> UH0) = closure18()                                     │

02:09:31 #53139 [Debug] > │     UH0_0(18.0, v0)                                                          │

02:09:31 #53140 [Debug] > │ and closure16 () () : UH0 =                                                  │

02:09:31 #53141 [Debug] > │     let v0 : (unit -> UH0) = closure17()                                     │

02:09:31 #53142 [Debug] > │     UH0_0(17.0, v0)                                                          │

02:09:31 #53143 [Debug] > │ and closure15 () () : UH0 =                                                  │

02:09:31 #53144 [Debug] > │     let v0 : (unit -> UH0) = closure16()                                     │

02:09:31 #53145 [Debug] > │     UH0_0(16.0, v0)                                                          │

02:09:31 #53146 [Debug] > │ and closure14 () () : UH0 =                                                  │

02:09:31 #53147 [Debug] > │     let v0 : (unit -> UH0) = closure15()                                     │

02:09:31 #53148 [Debug] > │     UH0_0(15.0, v0)                                                          │

02:09:31 #53149 [Debug] > │ and closure13 () () : UH0 =                                                  │

02:09:31 #53150 [Debug] > │     let v0 : (unit -> UH0) = closure14()                                     │

02:09:31 #53151 [Debug] > │     UH0_0(14.0, v0)                                                          │

02:09:31 #53152 [Debug] > │ and closure12 () () : UH0 =                                                  │

02:09:31 #53153 [Debug] > │     let v0 : (unit -> UH0) = closure13()                                     │

02:09:31 #53154 [Debug] > │     UH0_0(13.0, v0)                                                          │

02:09:31 #53155 [Debug] > │ and closure11 () () : UH0 =                                                  │

02:09:31 #53156 [Debug] > │     let v0 : (unit -> UH0) = closure12()                                     │

02:09:31 #53157 [Debug] > │     UH0_0(12.0, v0)                                                          │

02:09:31 #53158 [Debug] > │ and closure10 () () : UH0 =                                                  │

02:09:31 #53159 [Debug] > │     let v0 : (unit -> UH0) = closure11()                                     │

02:09:31 #53160 [Debug] > │     UH0_0(11.0, v0)                                                          │

02:09:31 #53161 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:09:31 #53162 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:09:31 #53163 [Debug] > │     UH0_0(10.0, v0)                                                          │

02:09:31 #53164 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:09:31 #53165 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:09:31 #53166 [Debug] > │     UH0_0(9.0, v0)                                                           │

02:09:31 #53167 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:09:31 #53168 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:09:31 #53169 [Debug] > │     UH0_0(8.0, v0)                                                           │

02:09:31 #53170 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:09:31 #53171 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:09:31 #53172 [Debug] > │     UH0_0(7.0, v0)                                                           │

02:09:31 #53173 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:09:31 #53174 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:09:31 #53175 [Debug] > │     UH0_0(6.0, v0)                                                           │

02:09:31 #53176 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:09:31 #53177 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:09:31 #53178 [Debug] > │     UH0_0(5.0, v0)                                                           │

02:09:31 #53179 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:09:31 #53180 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:09:31 #53181 [Debug] > │     UH0_0(4.0, v0)                                                           │

02:09:31 #53182 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:09:31 #53183 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:09:31 #53184 [Debug] > │     UH0_0(3.0, v0)                                                           │

02:09:31 #53185 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:09:31 #53186 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:09:31 #53187 [Debug] > │     UH0_0(2.0, v0)                                                           │

02:09:31 #53188 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:09:31 #53189 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:09:31 #53190 [Debug] > │     UH0_0(1.0, v0)                                                           │

02:09:31 #53191 [Debug] > │ and closure129 () () : UH1 =                                                 │

02:09:31 #53192 [Debug] > │     UH1_1                                                                    │

02:09:31 #53193 [Debug] > │ and closure128 () () : UH1 =                                                 │

02:09:31 #53194 [Debug] > │     let v0 : (unit -> UH1) = closure129()                                    │

02:09:31 #53195 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.64, 0.0007224452478461016, 0.0, 0.0, 0.0,  │

02:09:31 #53196 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53197 [Debug] > │ and closure127 () () : UH1 =                                                 │

02:09:31 #53198 [Debug] > │     let v0 : (unit -> UH1) = closure128()                                    │

02:09:31 #53199 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.63, 0.001429728391993452, 0.0, 0.0, 0.0,   │

02:09:31 #53200 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53201 [Debug] > │ and closure126 () () : UH1 =                                                 │

02:09:31 #53202 [Debug] > │     let v0 : (unit -> UH1) = closure127()                                    │

02:09:31 #53203 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.62, 0.0021070055388626528, 0.0, 0.0, 0.0,  │

02:09:31 #53204 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53205 [Debug] > │ and closure125 () () : UH1 =                                                 │

02:09:31 #53206 [Debug] > │     let v0 : (unit -> UH1) = closure126()                                    │

02:09:31 #53207 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.61, 0.0027400625367733585, 0.0, 0.0, 0.0,  │

02:09:31 #53208 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53209 [Debug] > │ and closure124 () () : UH1 =                                                 │

02:09:31 #53210 [Debug] > │     let v0 : (unit -> UH1) = closure125()                                    │

02:09:31 #53211 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.6, 0.0033156132912039783, 0.0, 0.0, 0.0,   │

02:09:31 #53212 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53213 [Debug] > │ and closure123 () () : UH1 =                                                 │

02:09:31 #53214 [Debug] > │     let v0 : (unit -> UH1) = closure124()                                    │

02:09:31 #53215 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.59, 0.003821578602729245, 0.0, 0.0, 0.0,   │

02:09:31 #53216 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53217 [Debug] > │ and closure122 () () : UH1 =                                                 │

02:09:31 #53218 [Debug] > │     let v0 : (unit -> UH1) = closure123()                                    │

02:09:31 #53219 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.5800000000000001, 0.004247339675607605,    │

02:09:31 #53220 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53221 [Debug] > │ and closure121 () () : UH1 =                                                 │

02:09:31 #53222 [Debug] > │     let v0 : (unit -> UH1) = closure122()                                    │

02:09:31 #53223 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.5700000000000001, 0.004583960976582912,    │

02:09:31 #53224 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53225 [Debug] > │ and closure120 () () : UH1 =                                                 │

02:09:31 #53226 [Debug] > │     let v0 : (unit -> UH1) = closure121()                                    │

02:09:31 #53227 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.56, 0.004824377766717758, 0.0, 0.0, 0.0,   │

02:09:31 #53228 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53229 [Debug] > │ and closure119 () () : UH1 =                                                 │

02:09:31 #53230 [Debug] > │     let v0 : (unit -> UH1) = closure120()                                    │

02:09:31 #53231 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.55, 0.004963544370490271, 0.0, 0.0, 0.0,   │

02:09:31 #53232 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53233 [Debug] > │ and closure118 () () : UH1 =                                                 │

02:09:31 #53234 [Debug] > │     let v0 : (unit -> UH1) = closure119()                                    │

02:09:31 #53235 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.54, 0.004998540070400965, 0.0, 0.0, 0.0,   │

02:09:31 #53236 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53237 [Debug] > │ and closure117 () () : UH1 =                                                 │

02:09:31 #53238 [Debug] > │     let v0 : (unit -> UH1) = closure118()                                    │

02:09:31 #53239 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.53, 0.004928630404658255, 0.0, 0.0, 0.0,   │

02:09:31 #53240 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53241 [Debug] > │ and closure116 () () : UH1 =                                                 │

02:09:31 #53242 [Debug] > │     let v0 : (unit -> UH1) = closure117()                                    │

02:09:31 #53243 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.52, 0.004755282581475766, 0.0, 0.0, 0.0,   │

02:09:31 #53244 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53245 [Debug] > │ and closure115 () () : UH1 =                                                 │

02:09:31 #53246 [Debug] > │     let v0 : (unit -> UH1) = closure116()                                    │

02:09:31 #53247 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.51, 0.0044821346864785195, 0.0, 0.0, 0.0,  │

02:09:31 #53248 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53249 [Debug] > │ and closure114 () () : UH1 =                                                 │

02:09:31 #53250 [Debug] > │     let v0 : (unit -> UH1) = closure115()                                    │

02:09:31 #53251 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.5, 0.0041149193294682815, 0.0, 0.0, 0.0,   │

02:09:31 #53252 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53253 [Debug] > │ and closure113 () () : UH1 =                                                 │

02:09:31 #53254 [Debug] > │     let v0 : (unit -> UH1) = closure114()                                    │

02:09:31 #53255 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.49, 0.0036613433329888622, 0.0, 0.0, 0.0,  │

02:09:31 #53256 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53257 [Debug] > │ and closure112 () () : UH1 =                                                 │

02:09:31 #53258 [Debug] > │     let v0 : (unit -> UH1) = closure113()                                    │

02:09:31 #53259 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.48000000000000004, 0.003130925987691568,   │

02:09:31 #53260 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53261 [Debug] > │ and closure111 () () : UH1 =                                                 │

02:09:31 #53262 [Debug] > │     let v0 : (unit -> UH1) = closure112()                                    │

02:09:31 #53263 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.47000000000000003, 0.002534799269067953,   │

02:09:31 #53264 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53265 [Debug] > │ and closure110 () () : UH1 =                                                 │

02:09:31 #53266 [Debug] > │     let v0 : (unit -> UH1) = closure111()                                    │

02:09:31 #53267 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.46, 0.0018854742084416021, 0.0, 0.0, 0.0,  │

02:09:31 #53268 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53269 [Debug] > │ and closure109 () () : UH1 =                                                 │

02:09:31 #53270 [Debug] > │     let v0 : (unit -> UH1) = closure110()                                    │

02:09:31 #53271 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.45, 0.0011965783214377866, 0.0, 0.0, 0.0,  │

02:09:31 #53272 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53273 [Debug] > │ and closure108 () () : UH1 =                                                 │

02:09:31 #53274 [Debug] > │     let v0 : (unit -> UH1) = closure109()                                    │

02:09:31 #53275 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.44, 0.0004825696045725713, 0.0, 0.0, 0.0,  │

02:09:31 #53276 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53277 [Debug] > │ and closure107 () () : UH1 =                                                 │

02:09:31 #53278 [Debug] > │     let v0 : (unit -> UH1) = closure108()                                    │

02:09:31 #53279 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.43, -0.00024156689762753724, 0.0, 0.0,     │

02:09:31 #53280 [Debug] > │ 0.0, 0.0, 0.0, v0)                                                           │

02:09:31 #53281 [Debug] > │ and closure106 () () : UH1 =                                                 │

02:09:31 #53282 [Debug] > │     let v0 : (unit -> UH1) = closure107()                                    │

02:09:31 #53283 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.42000000000000004, -0.0009606335867685414, │

02:09:31 #53284 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53285 [Debug] > │ and closure105 () () : UH1 =                                                 │

02:09:31 #53286 [Debug] > │     let v0 : (unit -> UH1) = closure106()                                    │

02:09:31 #53287 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.41000000000000003, -0.0016595392656426435, │

02:09:31 #53288 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53289 [Debug] > │ and closure104 () () : UH1 =                                                 │

02:09:31 #53290 [Debug] > │     let v0 : (unit -> UH1) = closure105()                                    │

02:09:31 #53291 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.4, -0.002323615860218846, 0.0, 0.0, 0.0,   │

02:09:31 #53292 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53293 [Debug] > │ and closure103 () () : UH1 =                                                 │

02:09:31 #53294 [Debug] > │     let v0 : (unit -> UH1) = closure104()                                    │

02:09:31 #53295 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.39, -0.002938926261462367, 0.0, 0.0, 0.0,  │

02:09:31 #53296 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53297 [Debug] > │ and closure102 () () : UH1 =                                                 │

02:09:31 #53298 [Debug] > │     let v0 : (unit -> UH1) = closure103()                                    │

02:09:31 #53299 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.38, -0.0034925568262446837, 0.0, 0.0, 0.0, │

02:09:31 #53300 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53301 [Debug] > │ and closure101 () () : UH1 =                                                 │

02:09:31 #53302 [Debug] > │     let v0 : (unit -> UH1) = closure102()                                    │

02:09:31 #53303 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.37, -0.003972888398568774, 0.0, 0.0, 0.0,  │

02:09:31 #53304 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53305 [Debug] > │ and closure100 () () : UH1 =                                                 │

02:09:31 #53306 [Debug] > │     let v0 : (unit -> UH1) = closure101()                                    │

02:09:31 #53307 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.36000000000000004, -0.004369840163132589,  │

02:09:31 #53308 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53309 [Debug] > │ and closure99 () () : UH1 =                                                  │

02:09:31 #53310 [Debug] > │     let v0 : (unit -> UH1) = closure100()                                    │

02:09:31 #53311 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.35000000000000003, -0.004675081213427074,  │

02:09:31 #53312 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53313 [Debug] > │ and closure98 () () : UH1 =                                                  │

02:09:31 #53314 [Debug] > │     let v0 : (unit -> UH1) = closure99()                                     │

02:09:31 #53315 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.34, -0.004882205394146361, 0.0, 0.0, 0.0,  │

02:09:31 #53316 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53317 [Debug] > │ and closure97 () () : UH1 =                                                  │

02:09:31 #53318 [Debug] > │     let v0 : (unit -> UH1) = closure98()                                     │

02:09:31 #53319 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.33, -0.004986865748457456, 0.0, 0.0, 0.0,  │

02:09:31 #53320 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53321 [Debug] > │ and closure96 () () : UH1 =                                                  │

02:09:31 #53322 [Debug] > │     let v0 : (unit -> UH1) = closure97()                                     │

02:09:31 #53323 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.32, -0.004986865748457456, 0.0, 0.0, 0.0,  │

02:09:31 #53324 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53325 [Debug] > │ and closure95 () () : UH1 =                                                  │

02:09:31 #53326 [Debug] > │     let v0 : (unit -> UH1) = closure96()                                     │

02:09:31 #53327 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.31, -0.004882205394146359, 0.0, 0.0, 0.0,  │

02:09:31 #53328 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53329 [Debug] > │ and closure94 () () : UH1 =                                                  │

02:09:31 #53330 [Debug] > │     let v0 : (unit -> UH1) = closure95()                                     │

02:09:31 #53331 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.3, -0.004675081213427074, 0.0, 0.0, 0.0,   │

02:09:31 #53332 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53333 [Debug] > │ and closure93 () () : UH1 =                                                  │

02:09:31 #53334 [Debug] > │     let v0 : (unit -> UH1) = closure94()                                     │

02:09:31 #53335 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.29000000000000004, -0.00436984016313259,   │

02:09:31 #53336 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53337 [Debug] > │ and closure92 () () : UH1 =                                                  │

02:09:31 #53338 [Debug] > │     let v0 : (unit -> UH1) = closure93()                                     │

02:09:31 #53339 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.28, -0.003972888398568771, 0.0, 0.0, 0.0,  │

02:09:31 #53340 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53341 [Debug] > │ and closure91 () () : UH1 =                                                  │

02:09:31 #53342 [Debug] > │     let v0 : (unit -> UH1) = closure92()                                     │

02:09:31 #53343 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.27, -0.003492556826244686, 0.0, 0.0, 0.0,  │

02:09:31 #53344 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53345 [Debug] > │ and closure90 () () : UH1 =                                                  │

02:09:31 #53346 [Debug] > │     let v0 : (unit -> UH1) = closure91()                                     │

02:09:31 #53347 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.26, -0.0029389262614623636, 0.0, 0.0, 0.0, │

02:09:31 #53348 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53349 [Debug] > │ and closure89 () () : UH1 =                                                  │

02:09:31 #53350 [Debug] > │     let v0 : (unit -> UH1) = closure90()                                     │

02:09:31 #53351 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.25, -0.002323615860218842, 0.0, 0.0, 0.0,  │

02:09:31 #53352 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53353 [Debug] > │ and closure88 () () : UH1 =                                                  │

02:09:31 #53354 [Debug] > │     let v0 : (unit -> UH1) = closure89()                                     │

02:09:31 #53355 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.24000000000000002, -0.001659539265642642,  │

02:09:31 #53356 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53357 [Debug] > │ and closure87 () () : UH1 =                                                  │

02:09:31 #53358 [Debug] > │     let v0 : (unit -> UH1) = closure88()                                     │

02:09:31 #53359 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.23, -0.0009606335867685418, 0.0, 0.0, 0.0, │

02:09:31 #53360 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53361 [Debug] > │ and closure86 () () : UH1 =                                                  │

02:09:31 #53362 [Debug] > │     let v0 : (unit -> UH1) = closure87()                                     │

02:09:31 #53363 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.22, -0.00024156689762753317, 0.0, 0.0,     │

02:09:31 #53364 [Debug] > │ 0.0, 0.0, 0.0, v0)                                                           │

02:09:31 #53365 [Debug] > │ and closure85 () () : UH1 =                                                  │

02:09:31 #53366 [Debug] > │     let v0 : (unit -> UH1) = closure86()                                     │

02:09:31 #53367 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.21000000000000002, 0.00048256960457257535, │

02:09:31 #53368 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53369 [Debug] > │ and closure84 () () : UH1 =                                                  │

02:09:31 #53370 [Debug] > │     let v0 : (unit -> UH1) = closure85()                                     │

02:09:31 #53371 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.2, 0.0011965783214377905, 0.0, 0.0, 0.0,   │

02:09:31 #53372 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53373 [Debug] > │ and closure83 () () : UH1 =                                                  │

02:09:31 #53374 [Debug] > │     let v0 : (unit -> UH1) = closure84()                                     │

02:09:31 #53375 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.19, 0.0018854742084416015, 0.0, 0.0, 0.0,  │

02:09:31 #53376 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53377 [Debug] > │ and closure82 () () : UH1 =                                                  │

02:09:31 #53378 [Debug] > │     let v0 : (unit -> UH1) = closure83()                                     │

02:09:31 #53379 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.18000000000000002, 0.002534799269067951,   │

02:09:31 #53380 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53381 [Debug] > │ and closure81 () () : UH1 =                                                  │

02:09:31 #53382 [Debug] > │     let v0 : (unit -> UH1) = closure82()                                     │

02:09:31 #53383 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.17, 0.0031309259876915697, 0.0, 0.0, 0.0,  │

02:09:31 #53384 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53385 [Debug] > │ and closure80 () () : UH1 =                                                  │

02:09:31 #53386 [Debug] > │     let v0 : (unit -> UH1) = closure81()                                     │

02:09:31 #53387 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.16, 0.0036613433329888666, 0.0, 0.0, 0.0,  │

02:09:31 #53388 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53389 [Debug] > │ and closure79 () () : UH1 =                                                  │

02:09:31 #53390 [Debug] > │     let v0 : (unit -> UH1) = closure80()                                     │

02:09:31 #53391 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.15000000000000002, 0.0041149193294682815,  │

02:09:31 #53392 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53393 [Debug] > │ and closure78 () () : UH1 =                                                  │

02:09:31 #53394 [Debug] > │     let v0 : (unit -> UH1) = closure79()                                     │

02:09:31 #53395 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.14, 0.004482134686478519, 0.0, 0.0, 0.0,   │

02:09:31 #53396 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53397 [Debug] > │ and closure77 () () : UH1 =                                                  │

02:09:31 #53398 [Debug] > │     let v0 : (unit -> UH1) = closure78()                                     │

02:09:31 #53399 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.13, 0.004755282581475768, 0.0, 0.0, 0.0,   │

02:09:31 #53400 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53401 [Debug] > │ and closure76 () () : UH1 =                                                  │

02:09:31 #53402 [Debug] > │     let v0 : (unit -> UH1) = closure77()                                     │

02:09:31 #53403 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.12, 0.004928630404658255, 0.0, 0.0, 0.0,   │

02:09:31 #53404 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53405 [Debug] > │ and closure75 () () : UH1 =                                                  │

02:09:31 #53406 [Debug] > │     let v0 : (unit -> UH1) = closure76()                                     │

02:09:31 #53407 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.11, 0.004998540070400965, 0.0, 0.0, 0.0,   │

02:09:31 #53408 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53409 [Debug] > │ and closure74 () () : UH1 =                                                  │

02:09:31 #53410 [Debug] > │     let v0 : (unit -> UH1) = closure75()                                     │

02:09:31 #53411 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.09999999999999999, 0.00496354437049027,    │

02:09:31 #53412 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53413 [Debug] > │ and closure73 () () : UH1 =                                                  │

02:09:31 #53414 [Debug] > │     let v0 : (unit -> UH1) = closure74()                                     │

02:09:31 #53415 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.09, 0.004824377766717757, 0.0, 0.0, 0.0,   │

02:09:31 #53416 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53417 [Debug] > │ and closure72 () () : UH1 =                                                  │

02:09:31 #53418 [Debug] > │     let v0 : (unit -> UH1) = closure73()                                     │

02:09:31 #53419 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.08, 0.004583960976582912, 0.0, 0.0, 0.0,   │

02:09:31 #53420 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53421 [Debug] > │ and closure71 () () : UH1 =                                                  │

02:09:31 #53422 [Debug] > │     let v0 : (unit -> UH1) = closure72()                                     │

02:09:31 #53423 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.06999999999999999, 0.004247339675607605,   │

02:09:31 #53424 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53425 [Debug] > │ and closure70 () () : UH1 =                                                  │

02:09:31 #53426 [Debug] > │     let v0 : (unit -> UH1) = closure71()                                     │

02:09:31 #53427 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.060000000000000005, 0.0038215786027292415, │

02:09:31 #53428 [Debug] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

02:09:31 #53429 [Debug] > │ and closure69 () () : UH1 =                                                  │

02:09:31 #53430 [Debug] > │     let v0 : (unit -> UH1) = closure70()                                     │

02:09:31 #53431 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.05, 0.0033156132912039757, 0.0, 0.0, 0.0,  │

02:09:31 #53432 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53433 [Debug] > │ and closure68 () () : UH1 =                                                  │

02:09:31 #53434 [Debug] > │     let v0 : (unit -> UH1) = closure69()                                     │

02:09:31 #53435 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.04, 0.00274006253677335, 0.0, 0.0, 0.0,    │

02:09:31 #53436 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53437 [Debug] > │ and closure67 () () : UH1 =                                                  │

02:09:31 #53438 [Debug] > │     let v0 : (unit -> UH1) = closure68()                                     │

02:09:31 #53439 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.03, 0.0021070055388626454, 0.0, 0.0, 0.0,  │

02:09:31 #53440 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53441 [Debug] > │ and closure66 () () : UH1 =                                                  │

02:09:31 #53442 [Debug] > │     let v0 : (unit -> UH1) = closure67()                                     │

02:09:31 #53443 [Debug] > │     UH1_0(0.0, 8.422578125E-06, 0.02, 0.0014297283919934465, 0.0, 0.0, 0.0,  │

02:09:31 #53444 [Debug] > │ 0.0, 0.0, v0)                                                                │

02:09:31 #53445 [Debug] > │ and closure132 (v0 : (unit -> UH1), v1 : (unit -> UH3)) () : UH1 =           │

02:09:31 #53446 [Debug] > │     let v2 : UH3 = v1 ()                                                     │

02:09:31 #53447 [Debug] > │     let v3 : UH1 = v0 ()                                                     │

02:09:31 #53448 [Debug] > │     match v2 with                                                            │

02:09:31 #53449 [Debug] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

02:09:31 #53450 [Debug] > │         match v3 with                                                        │

02:09:31 #53451 [Debug] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

02:09:31 #53452 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53453 [Debug] > │             let v24 : float = v9 * 1.25E-05                                  │

02:09:31 #53454 [Debug] > │             let v25 : float = v19 + v24                                      │

02:09:31 #53455 [Debug] > │             let v26 : float = 1.25E-05 * v6                                  │

02:09:31 #53456 [Debug] > │             let v27 : float = 1.25E-05 * v7                                  │

02:09:31 #53457 [Debug] > │             let v28 : float = 1.25E-05 * v8                                  │

02:09:31 #53458 [Debug] > │             let v29 : float = v16 + v26                                      │

02:09:31 #53459 [Debug] > │             let v30 : float = v17 + v27                                      │

02:09:31 #53460 [Debug] > │             let v31 : float = v18 + v28                                      │

02:09:31 #53461 [Debug] > │             let v32 : float = 1.25E-05 * v10                                 │

02:09:31 #53462 [Debug] > │             let v33 : float = 1.25E-05 * v11                                 │

02:09:31 #53463 [Debug] > │             let v34 : float = 1.25E-05 * v12                                 │

02:09:31 #53464 [Debug] > │             let v35 : float = v20 + v32                                      │

02:09:31 #53465 [Debug] > │             let v36 : float = v21 + v33                                      │

02:09:31 #53466 [Debug] > │             let v37 : float = v22 + v34                                      │

02:09:31 #53467 [Debug] > │             let v38 : (unit -> UH1) = closure132(v23, v13)                   │

02:09:31 #53468 [Debug] > │             UH1_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)          │

02:09:31 #53469 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:31 #53470 [Debug] > │             UH1_1                                                            │

02:09:31 #53471 [Debug] > │     | UH3_1 -> (* StreamNil *)                                               │

02:09:31 #53472 [Debug] > │         UH1_1                                                                │

02:09:31 #53473 [Debug] > │ and closure133 (v0 : UH1) () : UH1 =                                         │

02:09:31 #53474 [Debug] > │     v0                                                                       │

02:09:31 #53475 [Debug] > │ and closure134 (v0 : UH1, v1 : Mut0) () : UH1 =                              │

02:09:31 #53476 [Debug] > │     let v2 : US0 = v1.l0                                                     │

02:09:31 #53477 [Debug] > │     match v2 with                                                            │

02:09:31 #53478 [Debug] > │     | US0_0(v3) -> (* Computed *)                                            │

02:09:31 #53479 [Debug] > │         v3                                                                   │

02:09:31 #53480 [Debug] > │     | US0_1(v4) -> (* NotComputed *)                                         │

02:09:31 #53481 [Debug] > │         let v5 : UH1 = v4 ()                                                 │

02:09:31 #53482 [Debug] > │         let v20 : UH1 =                                                      │

02:09:31 #53483 [Debug] > │             match v5 with                                                    │

02:09:31 #53484 [Debug] > │             | UH1_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) -> (*     │

02:09:31 #53485 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53486 [Debug] > │                 let v17 : (unit -> UH1) = method3(v0, v16)                   │

02:09:31 #53487 [Debug] > │                 UH1_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v17)         │

02:09:31 #53488 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:31 #53489 [Debug] > │                 UH1_1                                                        │

02:09:31 #53490 [Debug] > │         let v21 : US0 = US0_0(v20)                                           │

02:09:31 #53491 [Debug] > │         v1.l0 <- v21                                                         │

02:09:31 #53492 [Debug] > │         v20                                                                  │

02:09:31 #53493 [Debug] > │ and method3 (v0 : UH1, v1 : (unit -> UH1)) : (unit -> UH1) =                 │

02:09:31 #53494 [Debug] > │     let v2 : US0 = US0_1(v1)                                                 │

02:09:31 #53495 [Debug] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

02:09:31 #53496 [Debug] > │     closure134(v0, v3)                                                       │

02:09:31 #53497 [Debug] > │ and closure135 (v0 : (unit -> UH1), v1 : (unit -> UH3)) () : UH1 =           │

02:09:31 #53498 [Debug] > │     let v2 : UH3 = v1 ()                                                     │

02:09:31 #53499 [Debug] > │     let v3 : UH1 = v0 ()                                                     │

02:09:31 #53500 [Debug] > │     match v2 with                                                            │

02:09:31 #53501 [Debug] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

02:09:31 #53502 [Debug] > │         match v3 with                                                        │

02:09:31 #53503 [Debug] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

02:09:31 #53504 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53505 [Debug] > │             let v24 : float = v9 * 2.5E-05                                   │

02:09:31 #53506 [Debug] > │             let v25 : float = v19 + v24                                      │

02:09:31 #53507 [Debug] > │             let v26 : float = 2.5E-05 * v6                                   │

02:09:31 #53508 [Debug] > │             let v27 : float = 2.5E-05 * v7                                   │

02:09:31 #53509 [Debug] > │             let v28 : float = 2.5E-05 * v8                                   │

02:09:31 #53510 [Debug] > │             let v29 : float = v16 + v26                                      │

02:09:31 #53511 [Debug] > │             let v30 : float = v17 + v27                                      │

02:09:31 #53512 [Debug] > │             let v31 : float = v18 + v28                                      │

02:09:31 #53513 [Debug] > │             let v32 : float = 2.5E-05 * v10                                  │

02:09:31 #53514 [Debug] > │             let v33 : float = 2.5E-05 * v11                                  │

02:09:31 #53515 [Debug] > │             let v34 : float = 2.5E-05 * v12                                  │

02:09:31 #53516 [Debug] > │             let v35 : float = v20 + v32                                      │

02:09:31 #53517 [Debug] > │             let v36 : float = v21 + v33                                      │

02:09:31 #53518 [Debug] > │             let v37 : float = v22 + v34                                      │

02:09:31 #53519 [Debug] > │             let v38 : (unit -> UH1) = closure135(v23, v13)                   │

02:09:31 #53520 [Debug] > │             UH1_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)          │

02:09:31 #53521 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:31 #53522 [Debug] > │             UH1_1                                                            │

02:09:31 #53523 [Debug] > │     | UH3_1 -> (* StreamNil *)                                               │

02:09:31 #53524 [Debug] > │         UH1_1                                                                │

02:09:31 #53525 [Debug] > │ and closure136 (v0 : (unit -> UH3), v1 : (unit -> UH3)) () : UH3 =           │

02:09:31 #53526 [Debug] > │     let v2 : UH3 = v1 ()                                                     │

02:09:31 #53527 [Debug] > │     let v3 : UH3 = v0 ()                                                     │

02:09:31 #53528 [Debug] > │     match v2 with                                                            │

02:09:31 #53529 [Debug] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

02:09:31 #53530 [Debug] > │         match v3 with                                                        │

02:09:31 #53531 [Debug] > │         | UH3_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

02:09:31 #53532 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53533 [Debug] > │             let v24 : float = v4 + v14                                       │

02:09:31 #53534 [Debug] > │             let v25 : float = v5 + v15                                       │

02:09:31 #53535 [Debug] > │             let v26 : float = v9 + v19                                       │

02:09:31 #53536 [Debug] > │             let v27 : float = v6 + v16                                       │

02:09:31 #53537 [Debug] > │             let v28 : float = v7 + v17                                       │

02:09:31 #53538 [Debug] > │             let v29 : float = v8 + v18                                       │

02:09:31 #53539 [Debug] > │             let v30 : float = v10 + v20                                      │

02:09:31 #53540 [Debug] > │             let v31 : float = v11 + v21                                      │

02:09:31 #53541 [Debug] > │             let v32 : float = v12 + v22                                      │

02:09:31 #53542 [Debug] > │             let v33 : (unit -> UH3) = closure136(v23, v13)                   │

02:09:31 #53543 [Debug] > │             UH3_0(v24, v25, v27, v28, v29, v26, v30, v31, v32, v33)          │

02:09:31 #53544 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53545 [Debug] > │             UH3_1                                                            │

02:09:31 #53546 [Debug] > │     | UH3_1 -> (* StreamNil *)                                               │

02:09:31 #53547 [Debug] > │         UH3_1                                                                │

02:09:31 #53548 [Debug] > │ and closure137 (v0 : (unit -> UH1), v1 : (unit -> UH3)) () : UH1 =           │

02:09:31 #53549 [Debug] > │     let v2 : UH3 = v1 ()                                                     │

02:09:31 #53550 [Debug] > │     let v3 : UH1 = v0 ()                                                     │

02:09:31 #53551 [Debug] > │     match v2 with                                                            │

02:09:31 #53552 [Debug] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

02:09:31 #53553 [Debug] > │         match v3 with                                                        │

02:09:31 #53554 [Debug] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

02:09:31 #53555 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53556 [Debug] > │             let v24 : float = v9 * 4.166666666666667E-06                     │

02:09:31 #53557 [Debug] > │             let v25 : float = v19 + v24                                      │

02:09:31 #53558 [Debug] > │             let v26 : float = 4.166666666666667E-06 * v6                     │

02:09:31 #53559 [Debug] > │             let v27 : float = 4.166666666666667E-06 * v7                     │

02:09:31 #53560 [Debug] > │             let v28 : float = 4.166666666666667E-06 * v8                     │

02:09:31 #53561 [Debug] > │             let v29 : float = v16 + v26                                      │

02:09:31 #53562 [Debug] > │             let v30 : float = v17 + v27                                      │

02:09:31 #53563 [Debug] > │             let v31 : float = v18 + v28                                      │

02:09:31 #53564 [Debug] > │             let v32 : float = 4.166666666666667E-06 * v10                    │

02:09:31 #53565 [Debug] > │             let v33 : float = 4.166666666666667E-06 * v11                    │

02:09:31 #53566 [Debug] > │             let v34 : float = 4.166666666666667E-06 * v12                    │

02:09:31 #53567 [Debug] > │             let v35 : float = v20 + v32                                      │

02:09:31 #53568 [Debug] > │             let v36 : float = v21 + v33                                      │

02:09:31 #53569 [Debug] > │             let v37 : float = v22 + v34                                      │

02:09:31 #53570 [Debug] > │             let v38 : (unit -> UH1) = closure137(v23, v13)                   │

02:09:31 #53571 [Debug] > │             UH1_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)          │

02:09:31 #53572 [Debug] > │         | UH1_1 -> (* StreamNil *)                                           │

02:09:31 #53573 [Debug] > │             UH1_1                                                            │

02:09:31 #53574 [Debug] > │     | UH3_1 -> (* StreamNil *)                                               │

02:09:31 #53575 [Debug] > │         UH1_1                                                                │

02:09:31 #53576 [Debug] > │ and closure131 (v0 : (UH1 -> UH3)) (v1 : UH1) : UH1 =                        │

02:09:31 #53577 [Debug] > │     let v2 : UH3 = v0 v1                                                     │

02:09:31 #53578 [Debug] > │     let v44 : UH1 =                                                          │

02:09:31 #53579 [Debug] > │         match v2 with                                                        │

02:09:31 #53580 [Debug] > │         | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons  │

02:09:31 #53581 [Debug] > │ *)                                                                           │

02:09:31 #53582 [Debug] > │             match v1 with                                                    │

02:09:31 #53583 [Debug] > │             | UH1_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (*  │

02:09:31 #53584 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53585 [Debug] > │                 let v23 : float = v8 * 1.25E-05                              │

02:09:31 #53586 [Debug] > │                 let v24 : float = v18 + v23                                  │

02:09:31 #53587 [Debug] > │                 let v25 : float = 1.25E-05 * v5                              │

02:09:31 #53588 [Debug] > │                 let v26 : float = 1.25E-05 * v6                              │

02:09:31 #53589 [Debug] > │                 let v27 : float = 1.25E-05 * v7                              │

02:09:31 #53590 [Debug] > │                 let v28 : float = v15 + v25                                  │

02:09:31 #53591 [Debug] > │                 let v29 : float = v16 + v26                                  │

02:09:31 #53592 [Debug] > │                 let v30 : float = v17 + v27                                  │

02:09:31 #53593 [Debug] > │                 let v31 : float = 1.25E-05 * v9                              │

02:09:31 #53594 [Debug] > │                 let v32 : float = 1.25E-05 * v10                             │

02:09:31 #53595 [Debug] > │                 let v33 : float = 1.25E-05 * v11                             │

02:09:31 #53596 [Debug] > │                 let v34 : float = v19 + v31                                  │

02:09:31 #53597 [Debug] > │                 let v35 : float = v20 + v32                                  │

02:09:31 #53598 [Debug] > │                 let v36 : float = v21 + v33                                  │

02:09:31 #53599 [Debug] > │                 let v37 : (unit -> UH1) = closure132(v22, v12)               │

02:09:31 #53600 [Debug] > │                 UH1_0(v13, v14, v28, v29, v30, v24, v34, v35, v36, v37)      │

02:09:31 #53601 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:31 #53602 [Debug] > │                 UH1_1                                                        │

02:09:31 #53603 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53604 [Debug] > │             UH1_1                                                            │

02:09:31 #53605 [Debug] > │     let v45 : (unit -> UH1) = closure133(v44)                                │

02:09:31 #53606 [Debug] > │     let v46 : (unit -> UH1) = method3(v44, v45)                              │

02:09:31 #53607 [Debug] > │     let v47 : UH1 = v46 ()                                                   │

02:09:31 #53608 [Debug] > │     let v48 : UH3 = v0 v47                                                   │

02:09:31 #53609 [Debug] > │     let v90 : UH1 =                                                          │

02:09:31 #53610 [Debug] > │         match v48 with                                                       │

02:09:31 #53611 [Debug] > │         | UH3_0(v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) -> (*      │

02:09:31 #53612 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53613 [Debug] > │             match v1 with                                                    │

02:09:31 #53614 [Debug] > │             | UH1_0(v59, v60, v61, v62, v63, v64, v65, v66, v67, v68) -> (*  │

02:09:31 #53615 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53616 [Debug] > │                 let v69 : float = v54 * 1.25E-05                             │

02:09:31 #53617 [Debug] > │                 let v70 : float = v64 + v69                                  │

02:09:31 #53618 [Debug] > │                 let v71 : float = 1.25E-05 * v51                             │

02:09:31 #53619 [Debug] > │                 let v72 : float = 1.25E-05 * v52                             │

02:09:31 #53620 [Debug] > │                 let v73 : float = 1.25E-05 * v53                             │

02:09:31 #53621 [Debug] > │                 let v74 : float = v61 + v71                                  │

02:09:31 #53622 [Debug] > │                 let v75 : float = v62 + v72                                  │

02:09:31 #53623 [Debug] > │                 let v76 : float = v63 + v73                                  │

02:09:31 #53624 [Debug] > │                 let v77 : float = 1.25E-05 * v55                             │

02:09:31 #53625 [Debug] > │                 let v78 : float = 1.25E-05 * v56                             │

02:09:31 #53626 [Debug] > │                 let v79 : float = 1.25E-05 * v57                             │

02:09:31 #53627 [Debug] > │                 let v80 : float = v65 + v77                                  │

02:09:31 #53628 [Debug] > │                 let v81 : float = v66 + v78                                  │

02:09:31 #53629 [Debug] > │                 let v82 : float = v67 + v79                                  │

02:09:31 #53630 [Debug] > │                 let v83 : (unit -> UH1) = closure132(v68, v58)               │

02:09:31 #53631 [Debug] > │                 UH1_0(v59, v60, v74, v75, v76, v70, v80, v81, v82, v83)      │

02:09:31 #53632 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:31 #53633 [Debug] > │                 UH1_1                                                        │

02:09:31 #53634 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53635 [Debug] > │             UH1_1                                                            │

02:09:31 #53636 [Debug] > │     let v91 : (unit -> UH1) = closure133(v90)                                │

02:09:31 #53637 [Debug] > │     let v92 : (unit -> UH1) = method3(v90, v91)                              │

02:09:31 #53638 [Debug] > │     let v93 : UH1 = v92 ()                                                   │

02:09:31 #53639 [Debug] > │     let v94 : UH3 = v0 v93                                                   │

02:09:31 #53640 [Debug] > │     let v136 : UH1 =                                                         │

02:09:31 #53641 [Debug] > │         match v94 with                                                       │

02:09:31 #53642 [Debug] > │         | UH3_0(v95, v96, v97, v98, v99, v100, v101, v102, v103, v104) -> (* │

02:09:31 #53643 [Debug] > │ StreamCons *)                                                                │

02:09:31 #53644 [Debug] > │             match v1 with                                                    │

02:09:31 #53645 [Debug] > │             | UH1_0(v105, v106, v107, v108, v109, v110, v111, v112, v113,    │

02:09:31 #53646 [Debug] > │ v114) -> (* StreamCons *)                                                    │

02:09:31 #53647 [Debug] > │                 let v115 : float = v100 * 2.5E-05                            │

02:09:31 #53648 [Debug] > │                 let v116 : float = v110 + v115                               │

02:09:31 #53649 [Debug] > │                 let v117 : float = 2.5E-05 * v97                             │

02:09:31 #53650 [Debug] > │                 let v118 : float = 2.5E-05 * v98                             │

02:09:31 #53651 [Debug] > │                 let v119 : float = 2.5E-05 * v99                             │

02:09:31 #53652 [Debug] > │                 let v120 : float = v107 + v117                               │

02:09:31 #53653 [Debug] > │                 let v121 : float = v108 + v118                               │

02:09:31 #53654 [Debug] > │                 let v122 : float = v109 + v119                               │

02:09:31 #53655 [Debug] > │                 let v123 : float = 2.5E-05 * v101                            │

02:09:31 #53656 [Debug] > │                 let v124 : float = 2.5E-05 * v102                            │

02:09:31 #53657 [Debug] > │                 let v125 : float = 2.5E-05 * v103                            │

02:09:31 #53658 [Debug] > │                 let v126 : float = v111 + v123                               │

02:09:31 #53659 [Debug] > │                 let v127 : float = v112 + v124                               │

02:09:31 #53660 [Debug] > │                 let v128 : float = v113 + v125                               │

02:09:31 #53661 [Debug] > │                 let v129 : (unit -> UH1) = closure135(v114, v104)            │

02:09:31 #53662 [Debug] > │                 UH1_0(v105, v106, v120, v121, v122, v116, v126, v127, v128,  │

02:09:31 #53663 [Debug] > │ v129)                                                                        │

02:09:31 #53664 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:31 #53665 [Debug] > │                 UH1_1                                                        │

02:09:31 #53666 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53667 [Debug] > │             UH1_1                                                            │

02:09:31 #53668 [Debug] > │     let v137 : (unit -> UH1) = closure133(v136)                              │

02:09:31 #53669 [Debug] > │     let v138 : (unit -> UH1) = method3(v136, v137)                           │

02:09:31 #53670 [Debug] > │     let v139 : UH1 = v138 ()                                                 │

02:09:31 #53671 [Debug] > │     let v140 : UH3 = v0 v139                                                 │

02:09:31 #53672 [Debug] > │     let v177 : UH3 =                                                         │

02:09:31 #53673 [Debug] > │         match v2 with                                                        │

02:09:31 #53674 [Debug] > │         | UH3_0(v141, v142, v143, v144, v145, v146, v147, v148, v149, v150)  │

02:09:31 #53675 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:31 #53676 [Debug] > │             match v48 with                                                   │

02:09:31 #53677 [Debug] > │             | UH3_0(v151, v152, v153, v154, v155, v156, v157, v158, v159,    │

02:09:31 #53678 [Debug] > │ v160) -> (* StreamCons *)                                                    │

02:09:31 #53679 [Debug] > │                 let v161 : float = v141 + v151                               │

02:09:31 #53680 [Debug] > │                 let v162 : float = v142 + v152                               │

02:09:31 #53681 [Debug] > │                 let v163 : float = v146 + v156                               │

02:09:31 #53682 [Debug] > │                 let v164 : float = v143 + v153                               │

02:09:31 #53683 [Debug] > │                 let v165 : float = v144 + v154                               │

02:09:31 #53684 [Debug] > │                 let v166 : float = v145 + v155                               │

02:09:31 #53685 [Debug] > │                 let v167 : float = v147 + v157                               │

02:09:31 #53686 [Debug] > │                 let v168 : float = v148 + v158                               │

02:09:31 #53687 [Debug] > │                 let v169 : float = v149 + v159                               │

02:09:31 #53688 [Debug] > │                 let v170 : (unit -> UH3) = closure136(v160, v150)            │

02:09:31 #53689 [Debug] > │                 UH3_0(v161, v162, v164, v165, v166, v163, v167, v168, v169,  │

02:09:31 #53690 [Debug] > │ v170)                                                                        │

02:09:31 #53691 [Debug] > │             | UH3_1 -> (* StreamNil *)                                       │

02:09:31 #53692 [Debug] > │                 UH3_1                                                        │

02:09:31 #53693 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53694 [Debug] > │             UH3_1                                                            │

02:09:31 #53695 [Debug] > │     let v214 : UH3 =                                                         │

02:09:31 #53696 [Debug] > │         match v177 with                                                      │

02:09:31 #53697 [Debug] > │         | UH3_0(v178, v179, v180, v181, v182, v183, v184, v185, v186, v187)  │

02:09:31 #53698 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:31 #53699 [Debug] > │             match v48 with                                                   │

02:09:31 #53700 [Debug] > │             | UH3_0(v188, v189, v190, v191, v192, v193, v194, v195, v196,    │

02:09:31 #53701 [Debug] > │ v197) -> (* StreamCons *)                                                    │

02:09:31 #53702 [Debug] > │                 let v198 : float = v178 + v188                               │

02:09:31 #53703 [Debug] > │                 let v199 : float = v179 + v189                               │

02:09:31 #53704 [Debug] > │                 let v200 : float = v183 + v193                               │

02:09:31 #53705 [Debug] > │                 let v201 : float = v180 + v190                               │

02:09:31 #53706 [Debug] > │                 let v202 : float = v181 + v191                               │

02:09:31 #53707 [Debug] > │                 let v203 : float = v182 + v192                               │

02:09:31 #53708 [Debug] > │                 let v204 : float = v184 + v194                               │

02:09:31 #53709 [Debug] > │                 let v205 : float = v185 + v195                               │

02:09:31 #53710 [Debug] > │                 let v206 : float = v186 + v196                               │

02:09:31 #53711 [Debug] > │                 let v207 : (unit -> UH3) = closure136(v197, v187)            │

02:09:31 #53712 [Debug] > │                 UH3_0(v198, v199, v201, v202, v203, v200, v204, v205, v206,  │

02:09:31 #53713 [Debug] > │ v207)                                                                        │

02:09:31 #53714 [Debug] > │             | UH3_1 -> (* StreamNil *)                                       │

02:09:31 #53715 [Debug] > │                 UH3_1                                                        │

02:09:31 #53716 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53717 [Debug] > │             UH3_1                                                            │

02:09:31 #53718 [Debug] > │     let v251 : UH3 =                                                         │

02:09:31 #53719 [Debug] > │         match v214 with                                                      │

02:09:31 #53720 [Debug] > │         | UH3_0(v215, v216, v217, v218, v219, v220, v221, v222, v223, v224)  │

02:09:31 #53721 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:31 #53722 [Debug] > │             match v94 with                                                   │

02:09:31 #53723 [Debug] > │             | UH3_0(v225, v226, v227, v228, v229, v230, v231, v232, v233,    │

02:09:31 #53724 [Debug] > │ v234) -> (* StreamCons *)                                                    │

02:09:31 #53725 [Debug] > │                 let v235 : float = v215 + v225                               │

02:09:31 #53726 [Debug] > │                 let v236 : float = v216 + v226                               │

02:09:31 #53727 [Debug] > │                 let v237 : float = v220 + v230                               │

02:09:31 #53728 [Debug] > │                 let v238 : float = v217 + v227                               │

02:09:31 #53729 [Debug] > │                 let v239 : float = v218 + v228                               │

02:09:31 #53730 [Debug] > │                 let v240 : float = v219 + v229                               │

02:09:31 #53731 [Debug] > │                 let v241 : float = v221 + v231                               │

02:09:31 #53732 [Debug] > │                 let v242 : float = v222 + v232                               │

02:09:31 #53733 [Debug] > │                 let v243 : float = v223 + v233                               │

02:09:31 #53734 [Debug] > │                 let v244 : (unit -> UH3) = closure136(v234, v224)            │

02:09:31 #53735 [Debug] > │                 UH3_0(v235, v236, v238, v239, v240, v237, v241, v242, v243,  │

02:09:31 #53736 [Debug] > │ v244)                                                                        │

02:09:31 #53737 [Debug] > │             | UH3_1 -> (* StreamNil *)                                       │

02:09:31 #53738 [Debug] > │                 UH3_1                                                        │

02:09:31 #53739 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53740 [Debug] > │             UH3_1                                                            │

02:09:31 #53741 [Debug] > │     let v288 : UH3 =                                                         │

02:09:31 #53742 [Debug] > │         match v251 with                                                      │

02:09:31 #53743 [Debug] > │         | UH3_0(v252, v253, v254, v255, v256, v257, v258, v259, v260, v261)  │

02:09:31 #53744 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:31 #53745 [Debug] > │             match v94 with                                                   │

02:09:31 #53746 [Debug] > │             | UH3_0(v262, v263, v264, v265, v266, v267, v268, v269, v270,    │

02:09:31 #53747 [Debug] > │ v271) -> (* StreamCons *)                                                    │

02:09:31 #53748 [Debug] > │                 let v272 : float = v252 + v262                               │

02:09:31 #53749 [Debug] > │                 let v273 : float = v253 + v263                               │

02:09:31 #53750 [Debug] > │                 let v274 : float = v257 + v267                               │

02:09:31 #53751 [Debug] > │                 let v275 : float = v254 + v264                               │

02:09:31 #53752 [Debug] > │                 let v276 : float = v255 + v265                               │

02:09:31 #53753 [Debug] > │                 let v277 : float = v256 + v266                               │

02:09:31 #53754 [Debug] > │                 let v278 : float = v258 + v268                               │

02:09:31 #53755 [Debug] > │                 let v279 : float = v259 + v269                               │

02:09:31 #53756 [Debug] > │                 let v280 : float = v260 + v270                               │

02:09:31 #53757 [Debug] > │                 let v281 : (unit -> UH3) = closure136(v271, v261)            │

02:09:31 #53758 [Debug] > │                 UH3_0(v272, v273, v275, v276, v277, v274, v278, v279, v280,  │

02:09:31 #53759 [Debug] > │ v281)                                                                        │

02:09:31 #53760 [Debug] > │             | UH3_1 -> (* StreamNil *)                                       │

02:09:31 #53761 [Debug] > │                 UH3_1                                                        │

02:09:31 #53762 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53763 [Debug] > │             UH3_1                                                            │

02:09:31 #53764 [Debug] > │     let v325 : UH3 =                                                         │

02:09:31 #53765 [Debug] > │         match v288 with                                                      │

02:09:31 #53766 [Debug] > │         | UH3_0(v289, v290, v291, v292, v293, v294, v295, v296, v297, v298)  │

02:09:31 #53767 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:31 #53768 [Debug] > │             match v140 with                                                  │

02:09:31 #53769 [Debug] > │             | UH3_0(v299, v300, v301, v302, v303, v304, v305, v306, v307,    │

02:09:31 #53770 [Debug] > │ v308) -> (* StreamCons *)                                                    │

02:09:31 #53771 [Debug] > │                 let v309 : float = v289 + v299                               │

02:09:31 #53772 [Debug] > │                 let v310 : float = v290 + v300                               │

02:09:31 #53773 [Debug] > │                 let v311 : float = v294 + v304                               │

02:09:31 #53774 [Debug] > │                 let v312 : float = v291 + v301                               │

02:09:31 #53775 [Debug] > │                 let v313 : float = v292 + v302                               │

02:09:31 #53776 [Debug] > │                 let v314 : float = v293 + v303                               │

02:09:31 #53777 [Debug] > │                 let v315 : float = v295 + v305                               │

02:09:31 #53778 [Debug] > │                 let v316 : float = v296 + v306                               │

02:09:31 #53779 [Debug] > │                 let v317 : float = v297 + v307                               │

02:09:31 #53780 [Debug] > │                 let v318 : (unit -> UH3) = closure136(v308, v298)            │

02:09:31 #53781 [Debug] > │                 UH3_0(v309, v310, v312, v313, v314, v311, v315, v316, v317,  │

02:09:31 #53782 [Debug] > │ v318)                                                                        │

02:09:31 #53783 [Debug] > │             | UH3_1 -> (* StreamNil *)                                       │

02:09:31 #53784 [Debug] > │                 UH3_1                                                        │

02:09:31 #53785 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53786 [Debug] > │             UH3_1                                                            │

02:09:31 #53787 [Debug] > │     let v367 : UH1 =                                                         │

02:09:31 #53788 [Debug] > │         match v325 with                                                      │

02:09:31 #53789 [Debug] > │         | UH3_0(v326, v327, v328, v329, v330, v331, v332, v333, v334, v335)  │

02:09:31 #53790 [Debug] > │ -> (* StreamCons *)                                                          │

02:09:31 #53791 [Debug] > │             match v1 with                                                    │

02:09:31 #53792 [Debug] > │             | UH1_0(v336, v337, v338, v339, v340, v341, v342, v343, v344,    │

02:09:31 #53793 [Debug] > │ v345) -> (* StreamCons *)                                                    │

02:09:31 #53794 [Debug] > │                 let v346 : float = v331 * 4.166666666666667E-06              │

02:09:31 #53795 [Debug] > │                 let v347 : float = v341 + v346                               │

02:09:31 #53796 [Debug] > │                 let v348 : float = 4.166666666666667E-06 * v328              │

02:09:31 #53797 [Debug] > │                 let v349 : float = 4.166666666666667E-06 * v329              │

02:09:31 #53798 [Debug] > │                 let v350 : float = 4.166666666666667E-06 * v330              │

02:09:31 #53799 [Debug] > │                 let v351 : float = v338 + v348                               │

02:09:31 #53800 [Debug] > │                 let v352 : float = v339 + v349                               │

02:09:31 #53801 [Debug] > │                 let v353 : float = v340 + v350                               │

02:09:31 #53802 [Debug] > │                 let v354 : float = 4.166666666666667E-06 * v332              │

02:09:31 #53803 [Debug] > │                 let v355 : float = 4.166666666666667E-06 * v333              │

02:09:31 #53804 [Debug] > │                 let v356 : float = 4.166666666666667E-06 * v334              │

02:09:31 #53805 [Debug] > │                 let v357 : float = v342 + v354                               │

02:09:31 #53806 [Debug] > │                 let v358 : float = v343 + v355                               │

02:09:31 #53807 [Debug] > │                 let v359 : float = v344 + v356                               │

02:09:31 #53808 [Debug] > │                 let v360 : (unit -> UH1) = closure137(v345, v335)            │

02:09:31 #53809 [Debug] > │                 UH1_0(v336, v337, v351, v352, v353, v347, v357, v358, v359,  │

02:09:31 #53810 [Debug] > │ v360)                                                                        │

02:09:31 #53811 [Debug] > │             | UH1_1 -> (* StreamNil *)                                       │

02:09:31 #53812 [Debug] > │                 UH1_1                                                        │

02:09:31 #53813 [Debug] > │         | UH3_1 -> (* StreamNil *)                                           │

02:09:31 #53814 [Debug] > │             UH1_1                                                            │

02:09:31 #53815 [Debug] > │     let v368 : (unit -> UH1) = closure133(v367)                              │

02:09:31 #53816 [Debug] > │     let v369 : (unit -> UH1) = method3(v367, v368)                           │

02:09:31 #53817 [Debug] > │     let v370 : UH1 = v369 ()                                                 │

02:09:31 #53818 [Debug] > │     v370                                                                     │

02:09:31 #53819 [Debug] > │ and closure130 () (v0 : (UH1 -> UH3)) : (UH1 -> UH1) =                       │

02:09:31 #53820 [Debug] > │     closure131(v0)                                                           │

02:09:31 #53821 [Debug] > │ and method2 () : ((UH1 -> UH3) -> (UH1 -> UH1)) =                            │

02:09:31 #53822 [Debug] > │     closure130()                                                             │

02:09:31 #53823 [Debug] > │ and closure138 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

02:09:31 #53824 [Debug] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

02:09:31 #53825 [Debug] > │ float * float) =                                                             │

02:09:31 #53826 [Debug] > │     let v9 : float = v2 * v2                                                 │

02:09:31 #53827 [Debug] > │     let v10 : float = v3 * v3                                                │

02:09:31 #53828 [Debug] > │     let v11 : float = v9 + v10                                               │

02:09:31 #53829 [Debug] > │     let v12 : float = v4 * v4                                                │

02:09:31 #53830 [Debug] > │     let v13 : float = v11 + v12                                              │

02:09:31 #53831 [Debug] > │     let v14 : float = sqrt v13                                               │

02:09:31 #53832 [Debug] > │     let v15 : float = -5384.0 * v14                                          │

02:09:31 #53833 [Debug] > │     let v16 : float = v15 * v2                                               │

02:09:31 #53834 [Debug] > │     let v17 : float = v15 * v3                                               │

02:09:31 #53835 [Debug] > │     let v18 : float = v15 * v4                                               │

02:09:31 #53836 [Debug] > │     let v19 : float = v16 / v14                                              │

02:09:31 #53837 [Debug] > │     let v20 : float = v17 / v14                                              │

02:09:31 #53838 [Debug] > │     let v21 : float = v18 / v14                                              │

02:09:31 #53839 [Debug] > │     struct (v19, v20, v21)                                                   │

02:09:31 #53840 [Debug] > │ and closure139 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

02:09:31 #53841 [Debug] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

02:09:31 #53842 [Debug] > │ float * float) =                                                             │

02:09:31 #53843 [Debug] > │     let v9 : float = v2 + -0.65                                              │

02:09:31 #53844 [Debug] > │     let v10 : float = v9 * v9                                                │

02:09:31 #53845 [Debug] > │     let v11 : float = v3 * v3                                                │

02:09:31 #53846 [Debug] > │     let v12 : float = v10 + v11                                              │

02:09:31 #53847 [Debug] > │     let v13 : float = v4 * v4                                                │

02:09:31 #53848 [Debug] > │     let v14 : float = v12 + v13                                              │

02:09:31 #53849 [Debug] > │     let v15 : float = sqrt v14                                               │

02:09:31 #53850 [Debug] > │     let v16 : float = -5384.0 * v15                                          │

02:09:31 #53851 [Debug] > │     let v17 : float = v16 * v9                                               │

02:09:31 #53852 [Debug] > │     let v18 : float = v16 * v3                                               │

02:09:31 #53853 [Debug] > │     let v19 : float = v16 * v4                                               │

02:09:31 #53854 [Debug] > │     let v20 : float = v17 / v15                                              │

02:09:31 #53855 [Debug] > │     let v21 : float = v18 / v15                                              │

02:09:31 #53856 [Debug] > │     let v22 : float = v19 / v15                                              │

02:09:31 #53857 [Debug] > │     struct (v20, v21, v22)                                                   │

02:09:31 #53858 [Debug] > │ and closure141 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float,  │

02:09:31 #53859 [Debug] > │ v5 : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :    │

02:09:31 #53860 [Debug] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

02:09:31 #53861 [Debug] > │ : float, v17 : float) : struct (float * float * float) =                     │

02:09:31 #53862 [Debug] > │     let v18 : float = -1.0 * v2                                              │

02:09:31 #53863 [Debug] > │     let v19 : float = -1.0 * v3                                              │

02:09:31 #53864 [Debug] > │     let v20 : float = -1.0 * v4                                              │

02:09:31 #53865 [Debug] > │     let v21 : float = v11 + v18                                              │

02:09:31 #53866 [Debug] > │     let v22 : float = v12 + v19                                              │

02:09:31 #53867 [Debug] > │     let v23 : float = v13 + v20                                              │

02:09:31 #53868 [Debug] > │     let v24 : float = v21 * v21                                              │

02:09:31 #53869 [Debug] > │     let v25 : float = v22 * v22                                              │

02:09:31 #53870 [Debug] > │     let v26 : float = v24 + v25                                              │

02:09:31 #53871 [Debug] > │     let v27 : float = v23 * v23                                              │

02:09:31 #53872 [Debug] > │     let v28 : float = v26 + v27                                              │

02:09:31 #53873 [Debug] > │     let v29 : float = sqrt v28                                               │

02:09:31 #53874 [Debug] > │     let v30 : float = -5384.0 * v29                                          │

02:09:31 #53875 [Debug] > │     let v31 : float = v30 * v21                                              │

02:09:31 #53876 [Debug] > │     let v32 : float = v30 * v22                                              │

02:09:31 #53877 [Debug] > │     let v33 : float = v30 * v23                                              │

02:09:31 #53878 [Debug] > │     let v34 : float = v31 / v29                                              │

02:09:31 #53879 [Debug] > │     let v35 : float = v32 / v29                                              │

02:09:31 #53880 [Debug] > │     let v36 : float = v33 / v29                                              │

02:09:31 #53881 [Debug] > │     struct (v34, v35, v36)                                                   │

02:09:31 #53882 [Debug] > │ and closure140 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

02:09:31 #53883 [Debug] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : (struct (float *  │

02:09:31 #53884 [Debug] > │ float * float * float * float * float * float * float * float) -> struct     │

02:09:31 #53885 [Debug] > │ (float * float * float)) =                                                   │

02:09:31 #53886 [Debug] > │     closure141(v0, v1, v2, v3, v4, v5, v6, v7, v8)                           │

02:09:31 #53887 [Debug] > │ and method4 () : UH4 =                                                       │

02:09:31 #53888 [Debug] > │     let v0 : (struct (float * float * float * float * float * float * float  │

02:09:31 #53889 [Debug] > │ * float * float) -> struct (float * float * float)) = closure138()           │

02:09:31 #53890 [Debug] > │     let v1 : US1 = US1_0(0, v0)                                              │

02:09:31 #53891 [Debug] > │     let v2 : (struct (float * float * float * float * float * float * float  │

02:09:31 #53892 [Debug] > │ * float * float) -> struct (float * float * float)) = closure139()           │

02:09:31 #53893 [Debug] > │     let v3 : US1 = US1_0(63, v2)                                             │

02:09:31 #53894 [Debug] > │     let v4 : (struct (float * float * float * float * float * float * float  │

02:09:31 #53895 [Debug] > │ * float * float) -> (struct (float * float * float * float * float * float * │

02:09:31 #53896 [Debug] > │ float * float * float) -> struct (float * float * float))) = closure140()    │

02:09:31 #53897 [Debug] > │     let v5 : US1 = US1_1(0, 1, v4)                                           │

02:09:31 #53898 [Debug] > │     let v6 : US1 = US1_1(1, 2, v4)                                           │

02:09:31 #53899 [Debug] > │     let v7 : US1 = US1_1(2, 3, v4)                                           │

02:09:31 #53900 [Debug] > │     let v8 : US1 = US1_1(3, 4, v4)                                           │

02:09:31 #53901 [Debug] > │     let v9 : US1 = US1_1(4, 5, v4)                                           │

02:09:31 #53902 [Debug] > │     let v10 : US1 = US1_1(5, 6, v4)                                          │

02:09:31 #53903 [Debug] > │     let v11 : US1 = US1_1(6, 7, v4)                                          │

02:09:31 #53904 [Debug] > │     let v12 : US1 = US1_1(7, 8, v4)                                          │

02:09:31 #53905 [Debug] > │     let v13 : US1 = US1_1(8, 9, v4)                                          │

02:09:31 #53906 [Debug] > │     let v14 : US1 = US1_1(9, 10, v4)                                         │

02:09:31 #53907 [Debug] > │     let v15 : US1 = US1_1(10, 11, v4)                                        │

02:09:31 #53908 [Debug] > │     let v16 : US1 = US1_1(11, 12, v4)                                        │

02:09:31 #53909 [Debug] > │     let v17 : US1 = US1_1(12, 13, v4)                                        │

02:09:31 #53910 [Debug] > │     let v18 : US1 = US1_1(13, 14, v4)                                        │

02:09:31 #53911 [Debug] > │     let v19 : US1 = US1_1(14, 15, v4)                                        │

02:09:31 #53912 [Debug] > │     let v20 : US1 = US1_1(15, 16, v4)                                        │

02:09:31 #53913 [Debug] > │     let v21 : US1 = US1_1(16, 17, v4)                                        │

02:09:31 #53914 [Debug] > │     let v22 : US1 = US1_1(17, 18, v4)                                        │

02:09:31 #53915 [Debug] > │     let v23 : US1 = US1_1(18, 19, v4)                                        │

02:09:31 #53916 [Debug] > │     let v24 : US1 = US1_1(19, 20, v4)                                        │

02:09:31 #53917 [Debug] > │     let v25 : US1 = US1_1(20, 21, v4)                                        │

02:09:31 #53918 [Debug] > │     let v26 : US1 = US1_1(21, 22, v4)                                        │

02:09:31 #53919 [Debug] > │     let v27 : US1 = US1_1(22, 23, v4)                                        │

02:09:31 #53920 [Debug] > │     let v28 : US1 = US1_1(23, 24, v4)                                        │

02:09:31 #53921 [Debug] > │     let v29 : US1 = US1_1(24, 25, v4)                                        │

02:09:31 #53922 [Debug] > │     let v30 : US1 = US1_1(25, 26, v4)                                        │

02:09:31 #53923 [Debug] > │     let v31 : US1 = US1_1(26, 27, v4)                                        │

02:09:31 #53924 [Debug] > │     let v32 : US1 = US1_1(27, 28, v4)                                        │

02:09:31 #53925 [Debug] > │     let v33 : US1 = US1_1(28, 29, v4)                                        │

02:09:31 #53926 [Debug] > │     let v34 : US1 = US1_1(29, 30, v4)                                        │

02:09:31 #53927 [Debug] > │     let v35 : US1 = US1_1(30, 31, v4)                                        │

02:09:31 #53928 [Debug] > │     let v36 : US1 = US1_1(31, 32, v4)                                        │

02:09:31 #53929 [Debug] > │     let v37 : US1 = US1_1(32, 33, v4)                                        │

02:09:31 #53930 [Debug] > │     let v38 : US1 = US1_1(33, 34, v4)                                        │

02:09:31 #53931 [Debug] > │     let v39 : US1 = US1_1(34, 35, v4)                                        │

02:09:31 #53932 [Debug] > │     let v40 : US1 = US1_1(35, 36, v4)                                        │

02:09:31 #53933 [Debug] > │     let v41 : US1 = US1_1(36, 37, v4)                                        │

02:09:31 #53934 [Debug] > │     let v42 : US1 = US1_1(37, 38, v4)                                        │

02:09:31 #53935 [Debug] > │     let v43 : US1 = US1_1(38, 39, v4)                                        │

02:09:31 #53936 [Debug] > │     let v44 : US1 = US1_1(39, 40, v4)                                        │

02:09:31 #53937 [Debug] > │     let v45 : US1 = US1_1(40, 41, v4)                                        │

02:09:31 #53938 [Debug] > │     let v46 : US1 = US1_1(41, 42, v4)                                        │

02:09:31 #53939 [Debug] > │     let v47 : US1 = US1_1(42, 43, v4)                                        │

02:09:31 #53940 [Debug] > │     let v48 : US1 = US1_1(43, 44, v4)                                        │

02:09:31 #53941 [Debug] > │     let v49 : US1 = US1_1(44, 45, v4)                                        │

02:09:31 #53942 [Debug] > │     let v50 : US1 = US1_1(45, 46, v4)                                        │

02:09:31 #53943 [Debug] > │     let v51 : US1 = US1_1(46, 47, v4)                                        │

02:09:31 #53944 [Debug] > │     let v52 : US1 = US1_1(47, 48, v4)                                        │

02:09:31 #53945 [Debug] > │     let v53 : US1 = US1_1(48, 49, v4)                                        │

02:09:31 #53946 [Debug] > │     let v54 : US1 = US1_1(49, 50, v4)                                        │

02:09:31 #53947 [Debug] > │     let v55 : US1 = US1_1(50, 51, v4)                                        │

02:09:31 #53948 [Debug] > │     let v56 : US1 = US1_1(51, 52, v4)                                        │

02:09:31 #53949 [Debug] > │     let v57 : US1 = US1_1(52, 53, v4)                                        │

02:09:31 #53950 [Debug] > │     let v58 : US1 = US1_1(53, 54, v4)                                        │

02:09:31 #53951 [Debug] > │     let v59 : US1 = US1_1(54, 55, v4)                                        │

02:09:31 #53952 [Debug] > │     let v60 : US1 = US1_1(55, 56, v4)                                        │

02:09:31 #53953 [Debug] > │     let v61 : US1 = US1_1(56, 57, v4)                                        │

02:09:31 #53954 [Debug] > │     let v62 : US1 = US1_1(57, 58, v4)                                        │

02:09:31 #53955 [Debug] > │     let v63 : US1 = US1_1(58, 59, v4)                                        │

02:09:31 #53956 [Debug] > │     let v64 : US1 = US1_1(59, 60, v4)                                        │

02:09:31 #53957 [Debug] > │     let v65 : UH4 = UH4_1                                                    │

02:09:31 #53958 [Debug] > │     let v66 : UH4 = UH4_0(v64, v65)                                          │

02:09:31 #53959 [Debug] > │     let v67 : UH4 = UH4_0(v63, v66)                                          │

02:09:31 #53960 [Debug] > │     let v68 : UH4 = UH4_0(v62, v67)                                          │

02:09:31 #53961 [Debug] > │     let v69 : UH4 = UH4_0(v61, v68)                                          │

02:09:31 #53962 [Debug] > │     let v70 : UH4 = UH4_0(v60, v69)                                          │

02:09:31 #53963 [Debug] > │     let v71 : UH4 = UH4_0(v59, v70)                                          │

02:09:31 #53964 [Debug] > │     let v72 : UH4 = UH4_0(v58, v71)                                          │

02:09:31 #53965 [Debug] > │     let v73 : UH4 = UH4_0(v57, v72)                                          │

02:09:31 #53966 [Debug] > │     let v74 : UH4 = UH4_0(v56, v73)                                          │

02:09:31 #53967 [Debug] > │     let v75 : UH4 = UH4_0(v55, v74)                                          │

02:09:31 #53968 [Debug] > │     let v76 : UH4 = UH4_0(v54, v75)                                          │

02:09:31 #53969 [Debug] > │     let v77 : UH4 = UH4_0(v53, v76)                                          │

02:09:31 #53970 [Debug] > │     let v78 : UH4 = UH4_0(v52, v77)                                          │

02:09:31 #53971 [Debug] > │     let v79 : UH4 = UH4_0(v51, v78)                                          │

02:09:31 #53972 [Debug] > │     let v80 : UH4 = UH4_0(v50, v79)                                          │

02:09:31 #53973 [Debug] > │     let v81 : UH4 = UH4_0(v49, v80)                                          │

02:09:31 #53974 [Debug] > │     let v82 : UH4 = UH4_0(v48, v81)                                          │

02:09:31 #53975 [Debug] > │     let v83 : UH4 = UH4_0(v47, v82)                                          │

02:09:31 #53976 [Debug] > │     let v84 : UH4 = UH4_0(v46, v83)                                          │

02:09:31 #53977 [Debug] > │     let v85 : UH4 = UH4_0(v45, v84)                                          │

02:09:31 #53978 [Debug] > │     let v86 : UH4 = UH4_0(v44, v85)                                          │

02:09:31 #53979 [Debug] > │     let v87 : UH4 = UH4_0(v43, v86)                                          │

02:09:31 #53980 [Debug] > │     let v88 : UH4 = UH4_0(v42, v87)                                          │

02:09:31 #53981 [Debug] > │     let v89 : UH4 = UH4_0(v41, v88)                                          │

02:09:31 #53982 [Debug] > │     let v90 : UH4 = UH4_0(v40, v89)                                          │

02:09:31 #53983 [Debug] > │     let v91 : UH4 = UH4_0(v39, v90)                                          │

02:09:31 #53984 [Debug] > │     let v92 : UH4 = UH4_0(v38, v91)                                          │

02:09:31 #53985 [Debug] > │     let v93 : UH4 = UH4_0(v37, v92)                                          │

02:09:31 #53986 [Debug] > │     let v94 : UH4 = UH4_0(v36, v93)                                          │

02:09:31 #53987 [Debug] > │     let v95 : UH4 = UH4_0(v35, v94)                                          │

02:09:31 #53988 [Debug] > │     let v96 : UH4 = UH4_0(v34, v95)                                          │

02:09:31 #53989 [Debug] > │     let v97 : UH4 = UH4_0(v33, v96)                                          │

02:09:31 #53990 [Debug] > │     let v98 : UH4 = UH4_0(v32, v97)                                          │

02:09:31 #53991 [Debug] > │     let v99 : UH4 = UH4_0(v31, v98)                                          │

02:09:31 #53992 [Debug] > │     let v100 : UH4 = UH4_0(v30, v99)                                         │

02:09:31 #53993 [Debug] > │     let v101 : UH4 = UH4_0(v29, v100)                                        │

02:09:31 #53994 [Debug] > │     let v102 : UH4 = UH4_0(v28, v101)                                        │

02:09:31 #53995 [Debug] > │     let v103 : UH4 = UH4_0(v27, v102)                                        │

02:09:31 #53996 [Debug] > │     let v104 : UH4 = UH4_0(v26, v103)                                        │

02:09:31 #53997 [Debug] > │     let v105 : UH4 = UH4_0(v25, v104)                                        │

02:09:31 #53998 [Debug] > │     let v106 : UH4 = UH4_0(v24, v105)                                        │

02:09:31 #53999 [Debug] > │     let v107 : UH4 = UH4_0(v23, v106)                                        │

02:09:31 #54000 [Debug] > │     let v108 : UH4 = UH4_0(v22, v107)                                        │

02:09:31 #54001 [Debug] > │     let v109 : UH4 = UH4_0(v21, v108)                                        │

02:09:31 #54002 [Debug] > │     let v110 : UH4 = UH4_0(v20, v109)                                        │

02:09:31 #54003 [Debug] > │     let v111 : UH4 = UH4_0(v19, v110)                                        │

02:09:31 #54004 [Debug] > │     let v112 : UH4 = UH4_0(v18, v111)                                        │

02:09:31 #54005 [Debug] > │     let v113 : UH4 = UH4_0(v17, v112)                                        │

02:09:31 #54006 [Debug] > │     let v114 : UH4 = UH4_0(v16, v113)                                        │

02:09:31 #54007 [Debug] > │     let v115 : UH4 = UH4_0(v15, v114)                                        │

02:09:31 #54008 [Debug] > │     let v116 : UH4 = UH4_0(v14, v115)                                        │

02:09:31 #54009 [Debug] > │     let v117 : UH4 = UH4_0(v13, v116)                                        │

02:09:31 #54010 [Debug] > │     let v118 : UH4 = UH4_0(v12, v117)                                        │

02:09:31 #54011 [Debug] > │     let v119 : UH4 = UH4_0(v11, v118)                                        │

02:09:31 #54012 [Debug] > │     let v120 : UH4 = UH4_0(v10, v119)                                        │

02:09:31 #54013 [Debug] > │     let v121 : UH4 = UH4_0(v9, v120)                                         │

02:09:31 #54014 [Debug] > │     let v122 : UH4 = UH4_0(v8, v121)                                         │

02:09:31 #54015 [Debug] > │     let v123 : UH4 = UH4_0(v7, v122)                                         │

02:09:31 #54016 [Debug] > │     let v124 : UH4 = UH4_0(v6, v123)                                         │

02:09:31 #54017 [Debug] > │     let v125 : UH4 = UH4_0(v5, v124)                                         │

02:09:31 #54018 [Debug] > │     let v126 : UH4 = UH4_0(v3, v125)                                         │

02:09:31 #54019 [Debug] > │     UH4_0(v1, v126)                                                          │

02:09:31 #54020 [Debug] > │ and closure143 (v0 : UH5) () : UH5 =                                         │

02:09:31 #54021 [Debug] > │     v0                                                                       │

02:09:31 #54022 [Debug] > │ and method5 (v0 : UH1, v1 : UH5, v2 : int32) : struct (UH5 * int32) =        │

02:09:31 #54023 [Debug] > │     match v0 with                                                            │

02:09:31 #54024 [Debug] > │     | UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons *)   │

02:09:31 #54025 [Debug] > │         let v13 : int32 = v2 + 1                                             │

02:09:31 #54026 [Debug] > │         let v14 : UH1 = v12 ()                                               │

02:09:31 #54027 [Debug] > │         let v15 : (unit -> UH5) = closure143(v1)                             │

02:09:31 #54028 [Debug] > │         let v16 : UH5 = UH5_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v15) │

02:09:31 #54029 [Debug] > │         method5(v14, v16, v13)                                               │

02:09:31 #54030 [Debug] > │     | UH1_1 -> (* StreamNil *)                                               │

02:09:31 #54031 [Debug] > │         struct (v1, v2)                                                      │

02:09:31 #54032 [Debug] > │ and closure144 (v0 : UH5) () : UH5 =                                         │

02:09:31 #54033 [Debug] > │     v0                                                                       │

02:09:31 #54034 [Debug] > │ and method6 (v0 : UH5, v1 : UH5) : UH5 =                                     │

02:09:31 #54035 [Debug] > │     match v0 with                                                            │

02:09:31 #54036 [Debug] > │     | UH5_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons  │

02:09:31 #54037 [Debug] > │ *)                                                                           │

02:09:31 #54038 [Debug] > │         let v13 : UH5 = v12 ()                                               │

02:09:31 #54039 [Debug] > │         let v14 : (unit -> UH5) = closure144(v1)                             │

02:09:31 #54040 [Debug] > │         let v15 : UH5 = UH5_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v14) │

02:09:31 #54041 [Debug] > │         method6(v13, v15)                                                    │

02:09:31 #54042 [Debug] > │     | UH5_1 -> (* StreamNil *)                                               │

02:09:31 #54043 [Debug] > │         v1                                                                   │

02:09:31 #54044 [Debug] > │ and closure145 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

02:09:31 #54045 [Debug] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

02:09:31 #54046 [Debug] > │ float * float) =                                                             │

02:09:31 #54047 [Debug] > │     struct (0.0, 0.0, 0.0)                                                   │

02:09:31 #54048 [Debug] > │ and method9 (v0 : int32, v1 : UH1) : US3 =                                   │

02:09:31 #54049 [Debug] > │     match v1 with                                                            │

02:09:31 #54050 [Debug] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

02:09:31 #54051 [Debug] > │         let v12 : bool = v0 <= 0                                             │

02:09:31 #54052 [Debug] > │         if v12 then                                                          │

02:09:31 #54053 [Debug] > │             US3_1(v2, v3, v4, v5, v6, v7, v8, v9, v10)                       │

02:09:31 #54054 [Debug] > │         else                                                                 │

02:09:31 #54055 [Debug] > │             let v14 : int32 = v0 - 1                                         │

02:09:31 #54056 [Debug] > │             let v15 : UH1 = v11 ()                                           │

02:09:31 #54057 [Debug] > │             method9(v14, v15)                                                │

02:09:31 #54058 [Debug] > │     | UH1_1 -> (* StreamNil *)                                               │

02:09:31 #54059 [Debug] > │         US3_0                                                                │

02:09:31 #54060 [Debug] > │ and closure146 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

02:09:31 #54061 [Debug] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

02:09:31 #54062 [Debug] > │ float * float) =                                                             │

02:09:31 #54063 [Debug] > │     struct (0.0, 0.0, 0.0)                                                   │

02:09:31 #54064 [Debug] > │ and method8 (v0 : int32, v1 : UH1, v2 : UH4, v3 : UH6) : UH6 =               │

02:09:31 #54065 [Debug] > │     match v2 with                                                            │

02:09:31 #54066 [Debug] > │     | UH4_0(v4, v5) -> (* Cons *)                                            │

02:09:31 #54067 [Debug] > │         let v6 : UH6 = method8(v0, v1, v5, v3)                               │

02:09:31 #54068 [Debug] > │         let v55 : (struct (float * float * float * float * float * float *   │

02:09:31 #54069 [Debug] > │ float * float * float) -> struct (float * float * float)) =                  │

02:09:31 #54070 [Debug] > │             match v4 with                                                    │

02:09:31 #54071 [Debug] > │             | US1_0(v7, v8) -> (* ExternalForce *)                           │

02:09:31 #54072 [Debug] > │                 let v9 : bool = v0 = v7                                      │

02:09:31 #54073 [Debug] > │                 if v9 then                                                   │

02:09:31 #54074 [Debug] > │                     v8                                                       │

02:09:31 #54075 [Debug] > │                 else                                                         │

02:09:31 #54076 [Debug] > │                     closure145()                                             │

02:09:31 #54077 [Debug] > │             | US1_1(v12, v13, v14) -> (* InternalForce *)                    │

02:09:31 #54078 [Debug] > │                 let v15 : bool = v0 = v12                                    │

02:09:31 #54079 [Debug] > │                 let v49 : US2 =                                              │

02:09:31 #54080 [Debug] > │                     if v15 then                                              │

02:09:31 #54081 [Debug] > │                         let v16 : US3 = method9(v13, v1)                     │

02:09:31 #54082 [Debug] > │                         match v16 with                                       │

02:09:31 #54083 [Debug] > │                         | US3_0 -> (* None *)                                │

02:09:31 #54084 [Debug] > │                             US2_0                                            │

02:09:31 #54085 [Debug] > │                         | US3_1(v17, v18, v19, v20, v21, v22, v23, v24, v25) │

02:09:31 #54086 [Debug] > │ -> (* Some *)                                                                │

02:09:31 #54087 [Debug] > │                             let v26 : (struct (float * float * float * float │

02:09:31 #54088 [Debug] > │ * float * float * float * float * float) -> struct (float * float * float))  │

02:09:31 #54089 [Debug] > │ = v14 struct (v17, v18, v19, v20, v21, v22, v23, v24, v25)                   │

02:09:31 #54090 [Debug] > │                             US2_1(v26)                                       │

02:09:31 #54091 [Debug] > │                     else                                                     │

02:09:31 #54092 [Debug] > │                         let v31 : bool = v0 = v13                            │

02:09:31 #54093 [Debug] > │                         if v31 then                                          │

02:09:31 #54094 [Debug] > │                             let v32 : US3 = method9(v12, v1)                 │

02:09:31 #54095 [Debug] > │                             match v32 with                                   │

02:09:31 #54096 [Debug] > │                             | US3_0 -> (* None *)                            │

02:09:31 #54097 [Debug] > │                                 US2_0                                        │

02:09:31 #54098 [Debug] > │                             | US3_1(v33, v34, v35, v36, v37, v38, v39, v40,  │

02:09:31 #54099 [Debug] > │ v41) -> (* Some *)                                                           │

02:09:31 #54100 [Debug] > │                                 let v42 : (struct (float * float * float *   │

02:09:31 #54101 [Debug] > │ float * float * float * float * float * float) -> struct (float * float *    │

02:09:31 #54102 [Debug] > │ float)) = v14 struct (v33, v34, v35, v36, v37, v38, v39, v40, v41)           │

02:09:31 #54103 [Debug] > │                                 US2_1(v42)                                   │

02:09:31 #54104 [Debug] > │                         else                                                 │

02:09:31 #54105 [Debug] > │                             US2_0                                            │

02:09:31 #54106 [Debug] > │                 match v49 with                                               │

02:09:31 #54107 [Debug] > │                 | US2_0 -> (* None *)                                        │

02:09:31 #54108 [Debug] > │                     closure146()                                             │

02:09:31 #54109 [Debug] > │                 | US2_1(v50) -> (* Some *)                                   │

02:09:31 #54110 [Debug] > │                     v50                                                      │

02:09:31 #54111 [Debug] > │         UH6_0(v55, v6)                                                       │

02:09:31 #54112 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:09:31 #54113 [Debug] > │         v3                                                                   │

02:09:31 #54114 [Debug] > │ and method10 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5 │

02:09:31 #54115 [Debug] > │ : float, v6 : float, v7 : float, v8 : float, v9 : UH6, v10 : UH7) : UH7 =    │

02:09:31 #54116 [Debug] > │     match v9 with                                                            │

02:09:31 #54117 [Debug] > │     | UH6_0(v11, v12) -> (* Cons *)                                          │

02:09:31 #54118 [Debug] > │         let v13 : UH7 = method10(v0, v1, v2, v3, v4, v5, v6, v7, v8, v12,    │

02:09:31 #54119 [Debug] > │ v10)                                                                         │

02:09:31 #54120 [Debug] > │         let struct (v14 : float, v15 : float, v16 : float) = v11 struct (v0, │

02:09:31 #54121 [Debug] > │ v1, v2, v3, v4, v5, v6, v7, v8)                                              │

02:09:31 #54122 [Debug] > │         UH7_0(v14, v15, v16, v13)                                            │

02:09:31 #54123 [Debug] > │     | UH6_1 -> (* Nil *)                                                     │

02:09:31 #54124 [Debug] > │         v10                                                                  │

02:09:31 #54125 [Debug] > │ and method11 (v0 : UH7, v1 : float, v2 : float, v3 : float) : struct (float  │

02:09:31 #54126 [Debug] > │ * float * float) =                                                           │

02:09:31 #54127 [Debug] > │     match v0 with                                                            │

02:09:31 #54128 [Debug] > │     | UH7_0(v4, v5, v6, v7) -> (* Cons *)                                    │

02:09:31 #54129 [Debug] > │         let v8 : float = v1 + v4                                             │

02:09:31 #54130 [Debug] > │         let v9 : float = v2 + v5                                             │

02:09:31 #54131 [Debug] > │         let v10 : float = v3 + v6                                            │

02:09:31 #54132 [Debug] > │         method11(v7, v8, v9, v10)                                            │

02:09:31 #54133 [Debug] > │     | UH7_1 -> (* Nil *)                                                     │

02:09:31 #54134 [Debug] > │         struct (v1, v2, v3)                                                  │

02:09:31 #54135 [Debug] > │ and closure147 (v0 : UH3) () : UH3 =                                         │

02:09:31 #54136 [Debug] > │     v0                                                                       │

02:09:31 #54137 [Debug] > │ and method7 (v0 : UH4, v1 : UH1, v2 : UH5, v3 : UH3) : UH3 =                 │

02:09:31 #54138 [Debug] > │     match v2 with                                                            │

02:09:31 #54139 [Debug] > │     | UH5_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (*           │

02:09:31 #54140 [Debug] > │ StreamCons *)                                                                │

02:09:31 #54141 [Debug] > │         let v15 : UH5 = v14 ()                                               │

02:09:31 #54142 [Debug] > │         let v16 : UH3 = method7(v0, v1, v15, v3)                             │

02:09:31 #54143 [Debug] > │         let v17 : UH6 = UH6_1                                                │

02:09:31 #54144 [Debug] > │         let v18 : UH6 = method8(v4, v1, v0, v17)                             │

02:09:31 #54145 [Debug] > │         let v19 : UH7 = UH7_1                                                │

02:09:31 #54146 [Debug] > │         let v20 : UH7 = method10(v5, v6, v7, v8, v9, v10, v11, v12, v13,     │

02:09:31 #54147 [Debug] > │ v18, v19)                                                                    │

02:09:31 #54148 [Debug] > │         let v21 : float = 0.0                                                │

02:09:31 #54149 [Debug] > │         let v22 : float = 0.0                                                │

02:09:31 #54150 [Debug] > │         let v23 : float = 0.0                                                │

02:09:31 #54151 [Debug] > │         let struct (v24 : float, v25 : float, v26 : float) = method11(v20,   │

02:09:31 #54152 [Debug] > │ v21, v22, v23)                                                               │

02:09:31 #54153 [Debug] > │         let v27 : float = v24 / v6                                           │

02:09:31 #54154 [Debug] > │         let v28 : float = v25 / v6                                           │

02:09:31 #54155 [Debug] > │         let v29 : float = v26 / v6                                           │

02:09:31 #54156 [Debug] > │         let v30 : (unit -> UH3) = closure147(v16)                            │

02:09:31 #54157 [Debug] > │         UH3_0(0.0, 0.0, v11, v12, v13, 1.0, v27, v28, v29, v30)              │

02:09:31 #54158 [Debug] > │     | UH5_1 -> (* StreamNil *)                                               │

02:09:31 #54159 [Debug] > │         v3                                                                   │

02:09:31 #54160 [Debug] > │ and closure142 (v0 : UH4) (v1 : UH1) : UH3 =                                 │

02:09:31 #54161 [Debug] > │     let v2 : UH5 = UH5_1                                                     │

02:09:31 #54162 [Debug] > │     let v3 : int32 = 0                                                       │

02:09:31 #54163 [Debug] > │     let struct (v4 : UH5, v5 : int32) = method5(v1, v2, v3)                  │

02:09:31 #54164 [Debug] > │     let v6 : UH5 = UH5_1                                                     │

02:09:31 #54165 [Debug] > │     let v7 : UH5 = method6(v4, v6)                                           │

02:09:31 #54166 [Debug] > │     let v8 : UH3 = UH3_1                                                     │

02:09:31 #54167 [Debug] > │     let v9 : UH3 = method7(v0, v1, v7, v8)                                   │

02:09:31 #54168 [Debug] > │     v9                                                                       │

02:09:31 #54169 [Debug] > │ and closure148 (v0 : (UH1 -> UH1), v1 : UH1, v2 : UH1) () : UH8 =            │

02:09:31 #54170 [Debug] > │     let v3 : UH1 = v0 v2                                                     │

02:09:31 #54171 [Debug] > │     let v4 : (unit -> UH8) = closure148(v0, v1, v3)                          │

02:09:31 #54172 [Debug] > │     UH8_0(v2, v4)                                                            │

02:09:31 #54173 [Debug] > │ and method12 (v0 : float, v1 : UH8) : US4 =                                  │

02:09:31 #54174 [Debug] > │     match v1 with                                                            │

02:09:31 #54175 [Debug] > │     | UH8_0(v2, v3) -> (* StreamCons *)                                      │

02:09:31 #54176 [Debug] > │         let v4 : bool = v0 <= 0.0                                            │

02:09:31 #54177 [Debug] > │         if v4 then                                                           │

02:09:31 #54178 [Debug] > │             US4_1(v2)                                                        │

02:09:31 #54179 [Debug] > │         else                                                                 │

02:09:31 #54180 [Debug] > │             let v6 : float = v0 - 1.0                                        │

02:09:31 #54181 [Debug] > │             let v7 : UH8 = v3 ()                                             │

02:09:31 #54182 [Debug] > │             method12(v6, v7)                                                 │

02:09:31 #54183 [Debug] > │     | UH8_1 -> (* StreamNil *)                                               │

02:09:31 #54184 [Debug] > │         US4_0                                                                │

02:09:31 #54185 [Debug] > │ and closure149 (v0 : UH9) () : UH9 =                                         │

02:09:31 #54186 [Debug] > │     v0                                                                       │

02:09:31 #54187 [Debug] > │ and method13 (v0 : UH1, v1 : UH9) : UH9 =                                    │

02:09:31 #54188 [Debug] > │     match v0 with                                                            │

02:09:31 #54189 [Debug] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

02:09:31 #54190 [Debug] > │         let v12 : UH1 = v11 ()                                               │

02:09:31 #54191 [Debug] > │         let v13 : UH9 = method13(v12, v1)                                    │

02:09:31 #54192 [Debug] > │         let v14 : (unit -> UH9) = closure149(v13)                            │

02:09:31 #54193 [Debug] > │         UH9_0(v4, v5, v6, v14)                                               │

02:09:31 #54194 [Debug] > │     | UH1_1 -> (* StreamNil *)                                               │

02:09:31 #54195 [Debug] > │         v1                                                                   │

02:09:31 #54196 [Debug] > │ and method14 (v0 : UH9, v1 : UH7) : UH7 =                                    │

02:09:31 #54197 [Debug] > │     match v0 with                                                            │

02:09:31 #54198 [Debug] > │     | UH9_0(v2, v3, v4, v5) -> (* StreamCons *)                              │

02:09:31 #54199 [Debug] > │         let v6 : UH9 = v5 ()                                                 │

02:09:31 #54200 [Debug] > │         let v7 : UH7 = method14(v6, v1)                                      │

02:09:31 #54201 [Debug] > │         UH7_0(v2, v3, v4, v7)                                                │

02:09:31 #54202 [Debug] > │     | UH9_1 -> (* StreamNil *)                                               │

02:09:31 #54203 [Debug] > │         v1                                                                   │

02:09:31 #54204 [Debug] > │ and method15 (v0 : UH7, v1 : UH7) : UH7 =                                    │

02:09:31 #54205 [Debug] > │     match v0 with                                                            │

02:09:31 #54206 [Debug] > │     | UH7_0(v2, v3, v4, v5) -> (* Cons *)                                    │

02:09:31 #54207 [Debug] > │         let v6 : UH7 = method15(v5, v1)                                      │

02:09:31 #54208 [Debug] > │         UH7_0(v2, v3, v4, v6)                                                │

02:09:31 #54209 [Debug] > │     | UH7_1 -> (* Nil *)                                                     │

02:09:31 #54210 [Debug] > │         v1                                                                   │

02:09:31 #54211 [Debug] > │ and method16 (v0 : UH7, v1 : UH10) : UH10 =                                  │

02:09:31 #54212 [Debug] > │     match v0 with                                                            │

02:09:31 #54213 [Debug] > │     | UH7_0(v2, v3, v4, v5) -> (* Cons *)                                    │

02:09:31 #54214 [Debug] > │         let v6 : UH10 = method16(v5, v1)                                     │

02:09:31 #54215 [Debug] > │         UH10_0(v2, v3, v6)                                                   │

02:09:31 #54216 [Debug] > │     | UH7_1 -> (* Nil *)                                                     │

02:09:31 #54217 [Debug] > │         v1                                                                   │

02:09:31 #54218 [Debug] > │ and closure150 (v0 : UH11) () : UH11 =                                       │

02:09:31 #54219 [Debug] > │     v0                                                                       │

02:09:31 #54220 [Debug] > │ and method17 (v0 : UH10, v1 : UH11) : UH11 =                                 │

02:09:31 #54221 [Debug] > │     match v0 with                                                            │

02:09:31 #54222 [Debug] > │     | UH10_0(v2, v3, v4) -> (* Cons *)                                       │

02:09:31 #54223 [Debug] > │         let v5 : UH11 = method17(v4, v1)                                     │

02:09:31 #54224 [Debug] > │         let v6 : (unit -> UH11) = closure150(v5)                             │

02:09:31 #54225 [Debug] > │         UH11_0(v2, v3, v6)                                                   │

02:09:31 #54226 [Debug] > │     | UH10_1 -> (* Nil *)                                                    │

02:09:31 #54227 [Debug] > │         v1                                                                   │

02:09:31 #54228 [Debug] > │ and closure151 (v0 : UH0) () : UH0 =                                         │

02:09:31 #54229 [Debug] > │     v0                                                                       │

02:09:31 #54230 [Debug] > │ and closure152 (v0 : UH0) () : UH0 =                                         │

02:09:31 #54231 [Debug] > │     v0                                                                       │

02:09:31 #54232 [Debug] > │ and method18 (v0 : UH11) : struct (UH0 * UH0) =                              │

02:09:31 #54233 [Debug] > │     match v0 with                                                            │

02:09:31 #54234 [Debug] > │     | UH11_0(v1, v2, v3) -> (* StreamCons *)                                 │

02:09:31 #54235 [Debug] > │         let v4 : UH11 = v3 ()                                                │

02:09:31 #54236 [Debug] > │         let struct (v5 : UH0, v6 : UH0) = method18(v4)                       │

02:09:31 #54237 [Debug] > │         let v7 : (unit -> UH0) = closure151(v5)                              │

02:09:31 #54238 [Debug] > │         let v8 : UH0 = UH0_0(v1, v7)                                         │

02:09:31 #54239 [Debug] > │         let v9 : (unit -> UH0) = closure152(v6)                              │

02:09:31 #54240 [Debug] > │         let v10 : UH0 = UH0_0(v2, v9)                                        │

02:09:31 #54241 [Debug] > │         struct (v8, v10)                                                     │

02:09:31 #54242 [Debug] > │     | UH11_1 -> (* StreamNil *)                                              │

02:09:31 #54243 [Debug] > │         let v11 : UH0 = UH0_1                                                │

02:09:31 #54244 [Debug] > │         let v12 : UH0 = UH0_1                                                │

02:09:31 #54245 [Debug] > │         struct (v11, v12)                                                    │

02:09:31 #54246 [Debug] > │ and method19 (v0 : UH0, v1 : UH12) : UH12 =                                  │

02:09:31 #54247 [Debug] > │     match v0 with                                                            │

02:09:31 #54248 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:09:31 #54249 [Debug] > │         let v4 : UH0 = v3 ()                                                 │

02:09:31 #54250 [Debug] > │         let v5 : UH12 = method19(v4, v1)                                     │

02:09:31 #54251 [Debug] > │         UH12_0(v2, v5)                                                       │

02:09:31 #54252 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:09:31 #54253 [Debug] > │         v1                                                                   │

02:09:31 #54254 [Debug] > │ and method21 (v0 : UH12, v1 : int32) : int32 =                               │

02:09:31 #54255 [Debug] > │     match v0 with                                                            │

02:09:31 #54256 [Debug] > │     | UH12_0(v2, v3) -> (* Cons *)                                           │

02:09:31 #54257 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:09:31 #54258 [Debug] > │         method21(v3, v4)                                                     │

02:09:31 #54259 [Debug] > │     | UH12_1 -> (* Nil *)                                                    │

02:09:31 #54260 [Debug] > │         v1                                                                   │

02:09:31 #54261 [Debug] > │ and method22 (v0 : (float []), v1 : UH12, v2 : int32) : int32 =              │

02:09:31 #54262 [Debug] > │     match v1 with                                                            │

02:09:31 #54263 [Debug] > │     | UH12_0(v3, v4) -> (* Cons *)                                           │

02:09:31 #54264 [Debug] > │         v0.[int v2] <- v3                                                    │

02:09:31 #54265 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:09:31 #54266 [Debug] > │         method22(v0, v4, v5)                                                 │

02:09:31 #54267 [Debug] > │     | UH12_1 -> (* Nil *)                                                    │

02:09:31 #54268 [Debug] > │         v2                                                                   │

02:09:31 #54269 [Debug] > │ and method20 (v0 : UH12) : (float []) =                                      │

02:09:31 #54270 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:31 #54271 [Debug] > │     let v2 : int32 = method21(v0, v1)                                        │

02:09:31 #54272 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:09:31 #54273 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:31 #54274 [Debug] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

02:09:31 #54275 [Debug] > │     v3                                                                       │

02:09:31 #54276 [Debug] > │ and closure153 (v0 : UH2) () : UH2 =                                         │

02:09:31 #54277 [Debug] > │     v0                                                                       │

02:09:31 #54278 [Debug] > │ and method1 (v0 : UH1, v1 : UH0, v2 : UH2) : UH2 =                           │

02:09:31 #54279 [Debug] > │     match v1 with                                                            │

02:09:31 #54280 [Debug] > │     | UH0_0(v3, v4) -> (* StreamCons *)                                      │

02:09:31 #54281 [Debug] > │         let v5 : UH0 = v4 ()                                                 │

02:09:31 #54282 [Debug] > │         let v6 : UH2 = method1(v0, v5, v2)                                   │

02:09:31 #54283 [Debug] > │         let v7 : ((UH1 -> UH3) -> (UH1 -> UH1)) = method2()                  │

02:09:31 #54284 [Debug] > │         let v8 : UH4 = method4()                                             │

02:09:31 #54285 [Debug] > │         let v9 : (UH1 -> UH3) = closure142(v8)                               │

02:09:31 #54286 [Debug] > │         let v10 : (UH1 -> UH1) = v7 v9                                       │

02:09:31 #54287 [Debug] > │         let v11 : UH1 = v10 v0                                               │

02:09:31 #54288 [Debug] > │         let v12 : (unit -> UH8) = closure148(v10, v0, v11)                   │

02:09:31 #54289 [Debug] > │         let v13 : UH8 = UH8_0(v0, v12)                                       │

02:09:31 #54290 [Debug] > │         let v14 : US4 = method12(v3, v13)                                    │

02:09:31 #54291 [Debug] > │         let v18 : UH1 =                                                      │

02:09:31 #54292 [Debug] > │             match v14 with                                                   │

02:09:31 #54293 [Debug] > │             | US4_0 -> (* None *)                                            │

02:09:31 #54294 [Debug] > │                 failwith<UH1> "Option does not have a value."                │

02:09:31 #54295 [Debug] > │             | US4_1(v15) -> (* Some *)                                       │

02:09:31 #54296 [Debug] > │                 v15                                                          │

02:09:31 #54297 [Debug] > │         let v19 : UH9 = UH9_1                                                │

02:09:31 #54298 [Debug] > │         let v20 : UH9 = method13(v18, v19)                                   │

02:09:31 #54299 [Debug] > │         let v21 : UH7 = UH7_1                                                │

02:09:31 #54300 [Debug] > │         let v22 : UH7 = method14(v20, v21)                                   │

02:09:31 #54301 [Debug] > │         let v23 : float = 0.65                                               │

02:09:31 #54302 [Debug] > │         let v24 : float = 0.0                                                │

02:09:31 #54303 [Debug] > │         let v25 : float = 0.0                                                │

02:09:31 #54304 [Debug] > │         let v26 : UH7 = UH7_1                                                │

02:09:31 #54305 [Debug] > │         let v27 : UH7 = UH7_0(v23, v24, v25, v26)                            │

02:09:31 #54306 [Debug] > │         let v28 : UH7 = method15(v22, v27)                                   │

02:09:31 #54307 [Debug] > │         let v29 : UH10 = UH10_1                                              │

02:09:31 #54308 [Debug] > │         let v30 : UH10 = method16(v28, v29)                                  │

02:09:31 #54309 [Debug] > │         let v31 : UH11 = UH11_1                                              │

02:09:31 #54310 [Debug] > │         let v32 : UH11 = method17(v30, v31)                                  │

02:09:31 #54311 [Debug] > │         let struct (v33 : UH0, v34 : UH0) = method18(v32)                    │

02:09:31 #54312 [Debug] > │         let v35 : UH12 = UH12_1                                              │

02:09:31 #54313 [Debug] > │         let v36 : UH12 = method19(v33, v35)                                  │

02:09:31 #54314 [Debug] > │         let v37 : float = 0.0                                                │

02:09:31 #54315 [Debug] > │         let v38 : UH12 = UH12_0(v37, v36)                                    │

02:09:31 #54316 [Debug] > │         let v39 : (float []) = method20(v38)                                 │

02:09:31 #54317 [Debug] > │         let v40 : UH12 = UH12_1                                              │

02:09:31 #54318 [Debug] > │         let v41 : UH12 = method19(v34, v40)                                  │

02:09:31 #54319 [Debug] > │         let v42 : float = 0.0                                                │

02:09:31 #54320 [Debug] > │         let v43 : UH12 = UH12_0(v42, v41)                                    │

02:09:31 #54321 [Debug] > │         let v44 : (float []) = method20(v43)                                 │

02:09:31 #54322 [Debug] > │         let v45 : (unit -> UH2) = closure153(v6)                             │

02:09:31 #54323 [Debug] > │         UH2_0(v39, v44, v45)                                                 │

02:09:31 #54324 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:09:31 #54325 [Debug] > │         v2                                                                   │

02:09:31 #54326 [Debug] > │ and closure154 (v0 : UH13) () : UH13 =                                       │

02:09:31 #54327 [Debug] > │     v0                                                                       │

02:09:31 #54328 [Debug] > │ and method23 (v0 : UH2, v1 : UH13, v2 : int32) : struct (UH13 * int32) =     │

02:09:31 #54329 [Debug] > │     match v0 with                                                            │

02:09:31 #54330 [Debug] > │     | UH2_0(v3, v4, v5) -> (* StreamCons *)                                  │

02:09:31 #54331 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:09:31 #54332 [Debug] > │         let v7 : UH2 = v5 ()                                                 │

02:09:31 #54333 [Debug] > │         let v8 : (unit -> UH13) = closure154(v1)                             │

02:09:31 #54334 [Debug] > │         let v9 : UH13 = UH13_0(v2, v3, v4, v8)                               │

02:09:31 #54335 [Debug] > │         method23(v7, v9, v6)                                                 │

02:09:31 #54336 [Debug] > │     | UH2_1 -> (* StreamNil *)                                               │

02:09:31 #54337 [Debug] > │         struct (v1, v2)                                                      │

02:09:31 #54338 [Debug] > │ and closure155 (v0 : UH13) () : UH13 =                                       │

02:09:31 #54339 [Debug] > │     v0                                                                       │

02:09:31 #54340 [Debug] > │ and method24 (v0 : UH13, v1 : UH13) : UH13 =                                 │

02:09:31 #54341 [Debug] > │     match v0 with                                                            │

02:09:31 #54342 [Debug] > │     | UH13_0(v2, v3, v4, v5) -> (* StreamCons *)                             │

02:09:31 #54343 [Debug] > │         let v6 : UH13 = v5 ()                                                │

02:09:31 #54344 [Debug] > │         let v7 : (unit -> UH13) = closure155(v1)                             │

02:09:31 #54345 [Debug] > │         let v8 : UH13 = UH13_0(v2, v3, v4, v7)                               │

02:09:31 #54346 [Debug] > │         method24(v6, v8)                                                     │

02:09:31 #54347 [Debug] > │     | UH13_1 -> (* StreamNil *)                                              │

02:09:31 #54348 [Debug] > │         v1                                                                   │

02:09:31 #54349 [Debug] > │ and closure156 (v0 : UH14) () : UH14 =                                       │

02:09:31 #54350 [Debug] > │     v0                                                                       │

02:09:31 #54351 [Debug] > │ and method25 (v0 : UH13, v1 : UH14) : UH14 =                                 │

02:09:31 #54352 [Debug] > │     match v0 with                                                            │

02:09:31 #54353 [Debug] > │     | UH13_0(v2, v3, v4, v5) -> (* StreamCons *)                             │

02:09:31 #54354 [Debug] > │         let v6 : UH13 = v5 ()                                                │

02:09:31 #54355 [Debug] > │         let v7 : UH14 = method25(v6, v1)                                     │

02:09:31 #54356 [Debug] > │         let v8 : string = $"{v2}"                                            │

02:09:31 #54357 [Debug] > │         let v9 : (struct (string * (float []) * (float [])) []) = [|struct   │

02:09:31 #54358 [Debug] > │ (v8, v3, v4)|]                                                               │

02:09:31 #54359 [Debug] > │         let v10 : string = "wave"                                            │

02:09:31 #54360 [Debug] > │         let v11 : string = "position (m)"                                    │

02:09:31 #54361 [Debug] > │         let v12 : string = "displacement (m)"                                │

02:09:31 #54362 [Debug] > │         let v13 : (unit -> UH14) = closure156(v7)                            │

02:09:31 #54363 [Debug] > │         UH14_0(v10, v11, v12, v9, v13)                                       │

02:09:31 #54364 [Debug] > │     | UH13_1 -> (* StreamNil *)                                              │

02:09:31 #54365 [Debug] > │         v1                                                                   │

02:09:31 #54366 [Debug] > │ and method26 (v0 : UH14, v1 : UH15) : UH15 =                                 │

02:09:31 #54367 [Debug] > │     match v0 with                                                            │

02:09:31 #54368 [Debug] > │     | UH14_0(v2, v3, v4, v5, v6) -> (* StreamCons *)                         │

02:09:31 #54369 [Debug] > │         let v7 : UH14 = v6 ()                                                │

02:09:31 #54370 [Debug] > │         let v8 : UH15 = method26(v7, v1)                                     │

02:09:31 #54371 [Debug] > │         UH15_0(v2, v3, v4, v5, v8)                                           │

02:09:31 #54372 [Debug] > │     | UH14_1 -> (* StreamNil *)                                              │

02:09:31 #54373 [Debug] > │         v1                                                                   │

02:09:31 #54374 [Debug] > │ and method28 (v0 : UH15, v1 : int32) : int32 =                               │

02:09:31 #54375 [Debug] > │     match v0 with                                                            │

02:09:31 #54376 [Debug] > │     | UH15_0(v2, v3, v4, v5, v6) -> (* Cons *)                               │

02:09:31 #54377 [Debug] > │         let v7 : int32 = v1 + 1                                              │

02:09:31 #54378 [Debug] > │         method28(v6, v7)                                                     │

02:09:31 #54379 [Debug] > │     | UH15_1 -> (* Nil *)                                                    │

02:09:31 #54380 [Debug] > │         v1                                                                   │

02:09:31 #54381 [Debug] > │ and method29 (v0 : (struct (string * string * string * (struct (string *     │

02:09:31 #54382 [Debug] > │ (float []) * (float [])) [])) []), v1 : UH15, v2 : int32) : int32 =          │

02:09:31 #54383 [Debug] > │     match v1 with                                                            │

02:09:31 #54384 [Debug] > │     | UH15_0(v3, v4, v5, v6, v7) -> (* Cons *)                               │

02:09:31 #54385 [Debug] > │         v0.[int v2] <- struct (v3, v4, v5, v6)                               │

02:09:31 #54386 [Debug] > │         let v8 : int32 = v2 + 1                                              │

02:09:31 #54387 [Debug] > │         method29(v0, v7, v8)                                                 │

02:09:31 #54388 [Debug] > │     | UH15_1 -> (* Nil *)                                                    │

02:09:31 #54389 [Debug] > │         v2                                                                   │

02:09:31 #54390 [Debug] > │ and method27 (v0 : UH15) : (struct (string * string * string * (struct       │

02:09:31 #54391 [Debug] > │ (string * (float []) * (float [])) [])) []) =                                │

02:09:31 #54392 [Debug] > │     let v1 : int32 = 0                                                       │

02:09:31 #54393 [Debug] > │     let v2 : int32 = method28(v0, v1)                                        │

02:09:31 #54394 [Debug] > │     let v3 : (struct (string * string * string * (struct (string * (float [  │

02:09:31 #54395 [Debug] > │ ]) * (float [])) [])) []) = Array.zeroCreate<struct (string * string *       │

02:09:31 #54396 [Debug] > │ string * (struct (string * (float []) * (float [])) []))> (v2)               │

02:09:31 #54397 [Debug] > │     let v4 : int32 = 0                                                       │

02:09:31 #54398 [Debug] > │     let v5 : int32 = method29(v3, v0, v4)                                    │

02:09:31 #54399 [Debug] > │     v3                                                                       │

02:09:31 #54400 [Debug] > │ and method0 () : (struct (string * string * string * (struct (string *       │

02:09:31 #54401 [Debug] > │ (float []) * (float [])) [])) []) =                                          │

02:09:31 #54402 [Debug] > │     let v0 : float = 0.0                                                     │

02:09:31 #54403 [Debug] > │     let v1 : (unit -> UH0) = closure0()                                      │

02:09:31 #54404 [Debug] > │     let v2 : UH0 = UH0_0(v0, v1)                                             │

02:09:31 #54405 [Debug] > │     let v3 : float = 0.0                                                     │

02:09:31 #54406 [Debug] > │     let v4 : float = 8.422578125E-06                                         │

02:09:31 #54407 [Debug] > │     let v5 : float = 0.01                                                    │

02:09:31 #54408 [Debug] > │     let v6 : float = 0.0007224452478461068                                   │

02:09:31 #54409 [Debug] > │     let v7 : float = 0.0                                                     │

02:09:31 #54410 [Debug] > │     let v8 : float = 0.0                                                     │

02:09:31 #54411 [Debug] > │     let v9 : float = 0.0                                                     │

02:09:31 #54412 [Debug] > │     let v10 : float = 0.0                                                    │

02:09:31 #54413 [Debug] > │     let v11 : float = 0.0                                                    │

02:09:31 #54414 [Debug] > │     let v12 : (unit -> UH1) = closure66()                                    │

02:09:31 #54415 [Debug] > │     let v13 : UH1 = UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12)         │

02:09:31 #54416 [Debug] > │     let v14 : UH2 = UH2_1                                                    │

02:09:31 #54417 [Debug] > │     let v15 : UH2 = method1(v13, v2, v14)                                    │

02:09:31 #54418 [Debug] > │     let v16 : UH13 = UH13_1                                                  │

02:09:31 #54419 [Debug] > │     let v17 : int32 = 0                                                      │

02:09:31 #54420 [Debug] > │     let struct (v18 : UH13, v19 : int32) = method23(v15, v16, v17)           │

02:09:31 #54421 [Debug] > │     let v20 : UH13 = UH13_1                                                  │

02:09:31 #54422 [Debug] > │     let v21 : UH13 = method24(v18, v20)                                      │

02:09:31 #54423 [Debug] > │     let v22 : UH14 = UH14_1                                                  │

02:09:31 #54424 [Debug] > │     let v23 : UH14 = method25(v21, v22)                                      │

02:09:31 #54425 [Debug] > │     let v24 : UH15 = UH15_1                                                  │

02:09:31 #54426 [Debug] > │     let v25 : UH15 = method26(v23, v24)                                      │

02:09:31 #54427 [Debug] > │     method27(v25)                                                            │

02:09:31 #54428 [Debug] > │ method0()                                                                    │

02:09:31 #54429 [Debug] > │                                                                              │

02:09:31 #54430 [Debug] > │                                                                              │

02:09:31 #54431 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:31 #54432 [Debug] >

02:09:31 #54433 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:09:31 #54434 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:09:31 #54435 [Debug] > │ ## end                                                                       │

02:09:31 #54436 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:09:34 #54437 [Debug] > [NbConvertApp] Converting notebook physics.dib.ipynb to html

02:09:34 #54438 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:09:34 #54439 [Debug] >   validate(nb)

02:09:34 #54440 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:09:34 #54441 [Debug] >   return _pygments_highlight(

02:09:38 #54442 [Debug] > [NbConvertApp] Writing 2727737 bytes to physics.dib.html

02:09:39 #54443 [Debug] executeAsync / exitCode: 0 / proc.Id: 6420 / output.Length: 4303858

02:09:39 #54444 [Debug] main / executeCommand / exitCode: 0

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: listm'.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: testing.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: optionm'.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: common.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: console.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: math.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: benchmark.dib

02:09:39 #1 [Debug] writeDibCode / output: Spi / path: am'.dib

02:09:39 #5 [Debug] parseDibCode / output: Spi / file: common.dib

02:09:39 #9 [Debug] parseDibCode / output: Spi / file: testing.dib

02:09:39 #5 [Debug] parseDibCode / output: Spi / file: optionm'.dib

02:09:39 #5 [Debug] parseDibCode / output: Spi / file: math.dib

02:09:39 #6 [Debug] parseDibCode / output: Spi / file: benchmark.dib

02:09:39 #8 [Debug] parseDibCode / output: Spi / file: am'.dib

02:09:39 #5 [Debug] parseDibCode / output: Spi / file: console.dib

02:09:39 #7 [Debug] parseDibCode / output: Spi / file: listm'.dib

02:09:39 #10 [Debug] writeDibCode / output: Spi / path: util.dib

02:09:39 #10 [Debug] writeDibCode / output: Spi / path: seq.dib

02:09:39 #10 [Debug] writeDibCode / output: Spi / path: stream.dib

02:09:39 #10 [Debug] writeDibCode / output: Spi / path: physics.dib

02:09:39 #11 [Debug] parseDibCode / output: Spi / file: util.dib

02:09:39 #12 [Debug] parseDibCode / output: Spi / file: seq.dib

02:09:39 #14 [Debug] parseDibCode / output: Spi / file: physics.dib

02:09:39 #13 [Debug] parseDibCode / output: Spi / file: stream.dib

In [ ]:
{ . "$ScriptDir/../apps/chat/build.ps1" } | Invoke-Block
    Finished release [optimized] target(s) in 1.80s

## 7

   Compiling serde v1.0.189

   Compiling parking_lot_core v0.9.9

   Compiling lock_api v0.4.11

   Compiling parking_lot v0.12.1

   Compiling rustix v0.38.20

   Compiling tokio v1.28.2

   Compiling prometheus v0.13.3

   Compiling which v4.4.2

   Compiling tempfile v3.8.0

   Compiling prost-build v0.9.0

   Compiling serde_json v1.0.107

   Compiling hex v0.4.3

   Compiling parity-scale-codec v2.3.1

   Compiling num-rational v0.3.2

   Compiling uint v0.9.5

   Compiling ed25519-dalek v1.0.1

   Compiling tokio-util v0.7.9

   Compiling impl-codec v0.5.1

   Compiling tokio-stream v0.1.14

   Compiling near-account-id v0.17.0

   Compiling primitive-types v0.10.1

   Compiling chrono v0.4.31

   Compiling h2 v0.3.21

   Compiling opentelemetry v0.17.0

   Compiling tokio-io-timeout v1.2.0

   Compiling tonic-build v0.6.2

   Compiling bytesize v1.3.0

   Compiling serde_with v3.4.0

   Compiling opentelemetry-otlp v0.10.0

   Compiling tower v0.4.13

   Compiling tokio-util v0.6.10

   Compiling semver v1.0.20

   Compiling near-primitives-core v0.17.0

   Compiling hyper v0.14.27

   Compiling near-account-id v0.14.0

   Compiling near-crypto v0.17.0

   Compiling actix-rt v2.9.0

   Compiling url v2.4.1

   Compiling hyper-timeout v0.4.1

   Compiling tonic v0.6.2

   Compiling near-fmt v0.17.0

   Compiling actix v0.13.1

   Compiling opentelemetry-semantic-conventions v0.9.0

   Compiling tracing-opentelemetry v0.17.4

   Compiling near-vm-errors v0.17.0

   Compiling schemars v0.8.15

   Compiling serde_yaml v0.9.25

   Compiling near-crypto v0.14.0

   Compiling near-primitives-core v0.14.0

   Compiling near-primitives v0.17.0

   Compiling near-vm-errors v0.14.0

   Compiling tokio-native-tls v0.3.1

   Compiling camino v1.1.6

   Compiling cargo-platform v0.1.4

   Compiling string_cache v0.8.7

   Compiling elementtree v0.7.0

   Compiling hyper-tls v0.5.0

   Compiling near-primitives v0.14.0

   Compiling near-abi v0.3.0

   Compiling ureq v2.8.0

   Compiling is-terminal v0.4.9

   Compiling serde_urlencoded v0.7.1

   Compiling reqwest v0.11.22

   Compiling colored v2.0.4

   Compiling binary-install v0.2.0

   Compiling symbolic-debuginfo v8.8.0

   Compiling cargo_metadata v0.14.2

   Compiling rustc_version v0.4.0

   Compiling near-vm-logic v0.14.0

   Compiling treediff v4.0.2

   Compiling near-o11y v0.17.0

   Compiling json-patch v1.2.0

   Compiling near-sdk v4.1.1

   Compiling near-chain-configs v0.17.0

   Compiling near-jsonrpc-primitives v0.17.0

   Compiling cargo-near v0.3.1

   Compiling near-sandbox-utils v0.7.0

   Compiling near-jsonrpc-client v0.6.0

   Compiling cargo_metadata v0.18.1

   Compiling near-gas v0.2.3

   Compiling tokio-retry v0.3.0

   Compiling near-workspaces v0.8.0

   Compiling chat v0.0.1 (/mnt/c/home/git/polyglot/apps/chat/tests)

    Finished release [optimized] target(s) in 6m 29s

     Running `target/release/chat`





new: ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5296605557370,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 91oHTAX7VYenkaMekbL6CyF1PDjVoqPFWgjjV698wqHH,

        block_hash: F8G1cm4Nh5e3q6hojuX3GcRrWcrvSSA8eXXr75mJG3sh,

        logs: [],

        receipt_ids: [

            eSLDGkZ7q6PCX946yRrHvghbpD22kModiPkw17AWXXY,

        ],

        gas_burnt: NearGas {

            inner: 2427927707802,

        },

        tokens_burnt: 242792770780200000000,

        executor_id: AccountId(

            "dev-20231021061641-10822153252834",

        ),

        status: SuccessReceiptId(eSLDGkZ7q6PCX946yRrHvghbpD22kModiPkw17AWXXY),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: eSLDGkZ7q6PCX946yRrHvghbpD22kModiPkw17AWXXY,

            block_hash: F8G1cm4Nh5e3q6hojuX3GcRrWcrvSSA8eXXr75mJG3sh,

            logs: [],

            receipt_ids: [

                6D5QJBWsQ1fQWCRD5vU5iBVgMWbyDxCdVUeieAM2MbUu,

            ],

            gas_burnt: NearGas {

                inner: 2645495287068,

            },

            tokens_burnt: 264549528706800000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 6D5QJBWsQ1fQWCRD5vU5iBVgMWbyDxCdVUeieAM2MbUu,

            block_hash: 7vWjBaq78hawAn7CEfpEHMW96pgdQiU7qThM3MU8htsr,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.00353813251232316

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621855708811736

  outcome_tokens_burnt_usd: 0.001621855708811736

outcome (success: true):

  outcome_gas_burnt_usd: 0.001767190851761424

  outcome_tokens_burnt_usd: 0.001767190851761424

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





claim_alias(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5293307489320,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 7hgkmvV33iQGqnhrAMJHgXbZxfxtuYuH4pcMPLwQA3fg,

        block_hash: HGyvuqotrDSJn2YpnA2J1Whq3VUbpCqRs9Y4GZFe39Mz,

        logs: [],

        receipt_ids: [

            72KiBz5frSrSfnDggmFTBYn7AodtnP3txzzr9AzDDt8B,

        ],

        gas_burnt: NearGas {

            inner: 2427972426482,

        },

        tokens_burnt: 242797242648200000000,

        executor_id: AccountId(

            "dev-20231021061641-10822153252834",

        ),

        status: SuccessReceiptId(72KiBz5frSrSfnDggmFTBYn7AodtnP3txzzr9AzDDt8B),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 72KiBz5frSrSfnDggmFTBYn7AodtnP3txzzr9AzDDt8B,

            block_hash: HGyvuqotrDSJn2YpnA2J1Whq3VUbpCqRs9Y4GZFe39Mz,

            logs: [

                "claim_alias / alias: \"\" / account_id: AccountId(\n    \"dev-20231021061641-10822153252834\",\n) / timestamp: 1697869003045617793",

            ],

            receipt_ids: [

                3rBgtYoVbtNy65EjNJXFrhipFdSb5rP8bF79bbkVFZoj,

            ],

            gas_burnt: NearGas {

                inner: 2642152500338,

            },

            tokens_burnt: 264215250033800000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: Failure(ActionError(ActionError { index: Some(0), kind: FunctionCallError(ExecutionError("Smart contract panicked: Invalid alias")) })),

        },

        ExecutionOutcome {

            transaction_hash: 3rBgtYoVbtNy65EjNJXFrhipFdSb5rP8bF79bbkVFZoj,

            block_hash: 3WmAXvhHTvdiDpgS5svBKoGgdXN2n29rzsVoWpQrWYPN,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

    ],

    status: Failure(ActionError(ActionError { index: Some(0), kind: FunctionCallError(ExecutionError("Smart contract panicked: Invalid alias")) })),

}

total_gas_burnt_usd: 0.00353592940286576

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621885580889976

  outcome_tokens_burnt_usd: 0.0016218855808899759

outcome (success: false):

  outcome_gas_burnt_usd: 0.0017649578702257842

  outcome_tokens_burnt_usd: 0.0017649578702257837

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





dev_create_account(account1): Account {

    id: AccountId(

        "dev-20231021061643-49971397332991",

    ),

}





generate_cid_borsh(account1): ViewResultDetails {

    result: [

        59,

        0,

        0,

        0,

        98,

        97,

        102,

        107,

        114,

        101,

        105,

        104,

        100,

        119,

        100,

        99,

        101,

        102,

        103,

        104,

        52,

        100,

        113,

        107,

        106,

        118,

        54,

        55,

        117,

        122,

        99,

        109,

        119,

        55,

        111,

        106,

        101,

        101,

        54,

        120,

        101,

        100,

        122,

        100,

        101,

        116,

        111,

        106,

        117,

        122,

        106,

        101,

        118,

        116,

        101,

        110,

        120,

        113,

        117,

        118,

        121,

        107,

        117,

    ],

    logs: [],

}





claim_alias(account1, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5920999705861,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 3DjfJQxrAjCw2AgtPMRvpr6RMXWdxg5hjsRwptrgHwoK,

        block_hash: FqigmWkvE6RuyogqQpYWYscqL99giqZPJn3VmSRFVpG5,

        logs: [],

        receipt_ids: [

            C352cY7TcbekXzmrLyVMg1BjrNm3nHwDopgGTtLziSuQ,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: 242798584208600000000,

        executor_id: AccountId(

            "dev-20231021061643-49971397332991",

        ),

        status: SuccessReceiptId(C352cY7TcbekXzmrLyVMg1BjrNm3nHwDopgGTtLziSuQ),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: C352cY7TcbekXzmrLyVMg1BjrNm3nHwDopgGTtLziSuQ,

            block_hash: 8MA4zVza2P4AsUMZPbDaQzmuW4DB5vNcdXXKWgFL3vcR,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20231021061643-49971397332991\",\n) / timestamp: 1697869005282439551",

            ],

            receipt_ids: [

                FjN7EZfZgQsWbUmVCzu7wwYtLUP4DCvrB2xTRLbbEsBB,

            ],

            gas_burnt: NearGas {

                inner: 3269831301275,

            },

            tokens_burnt: 326983130127500000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: FjN7EZfZgQsWbUmVCzu7wwYtLUP4DCvrB2xTRLbbEsBB,

            block_hash: GodcD5R3jKsJ1zix1qf4xAzzMKqkZ7kXMUrp2Zu9XvgL,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061643-49971397332991",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.003955227803515148

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.001621894542513448

outcome (success: true):

  outcome_gas_burnt_usd: 0.0021842473092517

  outcome_tokens_burnt_usd: 0.0021842473092517

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





claim_alias(account1, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5562755887684,

    },

    transaction: ExecutionOutcome {

        transaction_hash: AoMg4XDGP8NbPkPHv5q5TZybsWQv1CHs6Kj7dygLAZRJ,

        block_hash: 4zvr3A5nFW32xPBvnjg5dgykQHtTZvN6MuugfQHHWWpM,

        logs: [],

        receipt_ids: [

            q3kXcY5scaGHMK2bgz2j16ymj9cTNcp3jUGEwtKWDEs,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: 242798584208600000000,

        executor_id: AccountId(

            "dev-20231021061643-49971397332991",

        ),

        status: SuccessReceiptId(q3kXcY5scaGHMK2bgz2j16ymj9cTNcp3jUGEwtKWDEs),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: q3kXcY5scaGHMK2bgz2j16ymj9cTNcp3jUGEwtKWDEs,

            block_hash: 45yENmFY3aquKoMgSrDwp9zVuL1iehKa7yU4oWAbLRga,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20231021061643-49971397332991\",\n) / timestamp: 1697869006296291428",

                "Alias already claimed",

            ],

            receipt_ids: [

                DyeHUZqJcT4XstXqYtAtnrbriARLboifkmfR74TxCpeD,

            ],

            gas_burnt: NearGas {

                inner: 2911587483098,

            },

            tokens_burnt: 291158748309800000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: DyeHUZqJcT4XstXqYtAtnrbriARLboifkmfR74TxCpeD,

            block_hash: HSF9q1JGEbCHHqXy8XApzLTht68YbU6rQ7PoZ96MsBGK,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061643-49971397332991",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.0037159209329729118

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.001621894542513448

outcome (success: true):

  outcome_gas_burnt_usd: 0.001944940438709464

  outcome_tokens_burnt_usd: 0.001944940438709464

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account1): Some(

    (

        "alias1",

        (

            1697869005282439551,

            0,

        ),

    ),

)





get_alias_map(account1, alias1): Some(

    {

        AccountId(

            "dev-20231021061643-49971397332991",

        ): (

            1697869005282439551,

            0,

        ),

    },

)





dev_create_account(account2): Account {

    id: AccountId(

        "dev-20231021061646-25977764885330",

    ),

}





claim_alias(alias2): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6029011441417,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 6v4YgPt63D4eBoFgSzsn4scB8YkdMwiEcg7U1HxNonSH,

        block_hash: 3whgWBUBbAmwUcR8D2Cvz9tufNvxJ1gZBDVGsmAJmnsv,

        logs: [],

        receipt_ids: [

            8yAALRBcgHLUDgTNqp2rgJJN4KPbzf8rr4ctVL4xvjgb,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: 242798584208600000000,

        executor_id: AccountId(

            "dev-20231021061646-25977764885330",

        ),

        status: SuccessReceiptId(8yAALRBcgHLUDgTNqp2rgJJN4KPbzf8rr4ctVL4xvjgb),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 8yAALRBcgHLUDgTNqp2rgJJN4KPbzf8rr4ctVL4xvjgb,

            block_hash: 24WFMaRge671Y195gp2WVAexJnMtfGpUNA4EVV7U3Rej,

            logs: [

                "claim_alias / alias: \"alias2\" / account_id: AccountId(\n    \"dev-20231021061646-25977764885330\",\n) / timestamp: 1697869008323593753",

            ],

            receipt_ids: [

                4ScMDZmdGPgE9PuoC58ZSJLVPsNWf6S3pEfjXPHUAfUc,

            ],

            gas_burnt: NearGas {

                inner: 3377843036831,

            },

            tokens_burnt: 337784303683100000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 4ScMDZmdGPgE9PuoC58ZSJLVPsNWf6S3pEfjXPHUAfUc,

            block_hash: 99WpfnfMx25egUDEYDmNDqi3btLywxqNrtuADkQXuYGd,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061646-25977764885330",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.004027379642866555

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.001621894542513448

outcome (success: true):

  outcome_gas_burnt_usd: 0.0022563991486031078

  outcome_tokens_burnt_usd: 0.002256399148603108

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account2): Some(

    (

        "alias2",

        (

            1697869008323593753,

            0,

        ),

    ),

)





get_alias_map_borsh(alias2): Some(

    {

        AccountId(

            "dev-20231021061646-25977764885330",

        ): (

            1697869008323593753,

            0,

        ),

    },

)





claim_alias(account2, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6092566064476,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 6BaoQuMzYJapzZXxsBAXfMaEEk4r1W32nmHoLtWVQ5hy,

        block_hash: D1R3WnudPV9PpH1FkctdXYh7gx51xLAsKD8Ufhamr1dd,

        logs: [],

        receipt_ids: [

            14DHcePTTPHvb6gtbK9stM7qE1se4WrV9vtTAeRcHeee,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: 242798584208600000000,

        executor_id: AccountId(

            "dev-20231021061646-25977764885330",

        ),

        status: SuccessReceiptId(14DHcePTTPHvb6gtbK9stM7qE1se4WrV9vtTAeRcHeee),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 14DHcePTTPHvb6gtbK9stM7qE1se4WrV9vtTAeRcHeee,

            block_hash: Wj1CqS84EZ5S3Phw1nh1kbFjYSTW4j3657mCcnUFxHF,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20231021061646-25977764885330\",\n) / timestamp: 1697869009336525919",

            ],

            receipt_ids: [

                2yWnoJYQKaDqwzgJYDdpD5kQY1meYgBrWb2PSPeJSQKh,

            ],

            gas_burnt: NearGas {

                inner: 3441397659890,

            },

            tokens_burnt: 344139765989000000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 2yWnoJYQKaDqwzgJYDdpD5kQY1meYgBrWb2PSPeJSQKh,

            block_hash: 8v87AFRvtXcpXW9DG5YbPYucoTUbeJqkftfjq8khRjYK,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061646-25977764885330",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.004069834131069968

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.001621894542513448

outcome (success: true):

  outcome_gas_burnt_usd: 0.00229885363680652

  outcome_tokens_burnt_usd: 0.00229885363680652

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account2): Some(

    (

        "alias1",

        (

            1697869009336525919,

            1,

        ),

    ),

)





get_alias_map(account2, alias1): Some(

    {

        AccountId(

            "dev-20231021061646-25977764885330",

        ): (

            1697869009336525919,

            1,

        ),

        AccountId(

            "dev-20231021061643-49971397332991",

        ): (

            1697869005282439551,

            0,

        ),

    },

)





get_alias_map(account2, alias2): Some(

    {},

)





claim_alias(account1, alias2): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6088337098636,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 9Uwzr3TnoeGAKbEKYz5xneE5XemjD3SrA5NPo6H3H6Fd,

        block_hash: 3bFCfQ8Wx1QD9ofvc1MmjQMxMf3Q4oZtXgdAWNL6Uv7e,

        logs: [],

        receipt_ids: [

            FGDbFuGiL4RtLg5RHvV8A5EAbjJnqyqVWaktCppvG5We,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: 242798584208600000000,

        executor_id: AccountId(

            "dev-20231021061643-49971397332991",

        ),

        status: SuccessReceiptId(FGDbFuGiL4RtLg5RHvV8A5EAbjJnqyqVWaktCppvG5We),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: FGDbFuGiL4RtLg5RHvV8A5EAbjJnqyqVWaktCppvG5We,

            block_hash: HWfHQmtUnu7a7pjzH3WwAjavoqtWDZgjWkAo7APJBdHW,

            logs: [

                "claim_alias / alias: \"alias2\" / account_id: AccountId(\n    \"dev-20231021061643-49971397332991\",\n) / timestamp: 1697869010351743318",

            ],

            receipt_ids: [

                8sbfDetAgdqxQ4jFiuUCrLm64zEixFP9Ak4cKK3V22N9,

            ],

            gas_burnt: NearGas {

                inner: 3437168694050,

            },

            tokens_burnt: 343716869405000000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 8sbfDetAgdqxQ4jFiuUCrLm64zEixFP9Ak4cKK3V22N9,

            block_hash: 2qEvuKCKQUBmcXgbzQZvNLLnJYzZgL4jSQC5cscPokjQ,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061643-49971397332991",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.004067009181888848

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.001621894542513448

outcome (success: true):

  outcome_gas_burnt_usd: 0.0022960286876254

  outcome_tokens_burnt_usd: 0.0022960286876254

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account1): Some(

    (

        "alias2",

        (

            1697869010351743318,

            0,

        ),

    ),

)





get_alias_map(account1, alias2): Some(

    {

        AccountId(

            "dev-20231021061643-49971397332991",

        ): (

            1697869010351743318,

            0,

        ),

    },

)





get_alias_map(account1, alias1): Some(

    {

        AccountId(

            "dev-20231021061646-25977764885330",

        ): (

            1697869009336525919,

            1,

        ),

    },

)





claim_alias(account1, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6092541381796,

    },

    transaction: ExecutionOutcome {

        transaction_hash: fK7JvyJTZQt8em6mShFUcjvutQ2feUPgwedHAnifyUL,

        block_hash: 7bJu6f5sbc2dRpXzbCaBqQMYWGThgUg7tf8UkqTCmqrS,

        logs: [],

        receipt_ids: [

            APYhodTjYETqA1PbLRa9yotnJ7RfZbHXby3sWDEFeR3F,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: 242798584208600000000,

        executor_id: AccountId(

            "dev-20231021061643-49971397332991",

        ),

        status: SuccessReceiptId(APYhodTjYETqA1PbLRa9yotnJ7RfZbHXby3sWDEFeR3F),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: APYhodTjYETqA1PbLRa9yotnJ7RfZbHXby3sWDEFeR3F,

            block_hash: 3owergySVbvHsicvBpnssryxE68oa4KoTkgJW8SLsVSH,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20231021061643-49971397332991\",\n) / timestamp: 1697869011576628681",

            ],

            receipt_ids: [

                6C5vVNFz6F5P8EbAcqA7AKgCQktvJxXC2u7681nunQgh,

            ],

            gas_burnt: NearGas {

                inner: 3441372977210,

            },

            tokens_burnt: 344137297721000000000,

            executor_id: AccountId(

                "dev-20231021061641-10822153252834",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 6C5vVNFz6F5P8EbAcqA7AKgCQktvJxXC2u7681nunQgh,

            block_hash: DtSfNAdAohceTj4J7WW5disvfeCVuCzm3ugoidxsh9eT,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021061643-49971397332991",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.004069817643039727

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.001621894542513448

outcome (success: true):

  outcome_gas_burnt_usd: 0.0022988371487762797

  outcome_tokens_burnt_usd: 0.0022988371487762797

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account1): Some(

    (

        "alias1",

        (

            1697869011576628681,

            1,

        ),

    ),

)





get_alias_map(account1, alias1): Some(

    {

        AccountId(

            "dev-20231021061643-49971397332991",

        ): (

            1697869011576628681,

            1,

        ),

        AccountId(

            "dev-20231021061646-25977764885330",

        ): (

            1697869009336525919,

            0,

        ),

    },

)





get_alias_map(account1, alias2): Some(

    {},

)

Browserslist: caniuse-lite is outdated. Please run:

  npx update-browserslist-db@latest

  Why you should do it regularly: https://github.com/browserslist/update-db#readme



Rebuilding...



Done in 553ms.

2023-10-21T06:17:10.454777Z  INFO 📦 starting build

2023-10-21T06:17:10.455844Z  INFO spawning asset pipelines

2023-10-21T06:17:13.456458Z  INFO building chat

2023-10-21T06:17:13.456496Z  INFO copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\deps\\hyperui\\public\\components.css"

2023-10-21T06:17:13.456466Z  INFO copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\apps\\chat\\ui\\target\\tailwind.css"

2023-10-21T06:17:13.456460Z  INFO copying & hashing icon path="\\\\?\\C:\\home\\git\\polyglot\\apps\\chat\\ui\\public\\favicon.ico"

2023-10-21T06:17:13.457758Z  INFO finished copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\apps\\chat\\ui\\target\\tailwind.css"

2023-10-21T06:17:13.458599Z  INFO finished copying & hashing icon path="\\\\?\\C:\\home\\git\\polyglot\\apps\\chat\\ui\\public\\favicon.ico"

2023-10-21T06:17:13.470976Z  INFO finished copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\deps\\hyperui\\public\\components.css"

   Compiling proc-macro2 v1.0.69

   Compiling serde v1.0.189

   Compiling lock_api v0.4.11

   Compiling parking_lot_core v0.9.9

   Compiling tracing-core v0.1.32

   Compiling async-trait v0.1.74

   Compiling aho-corasick v1.1.2

   Compiling parking_lot v0.12.1

   Compiling regex-syntax v0.8.2

   Compiling quote v1.0.33

   Compiling syn v2.0.38

   Compiling proc-macro-utils v0.8.0

   Compiling uuid v1.5.0

   Compiling proc-macro-error-attr v1.0.4

   Compiling const_format_proc_macros v0.2.32

   Compiling num-traits v0.2.17

   Compiling manyhow-macros v0.8.1

   Compiling proc-macro-error v1.0.4

   Compiling borsh v1.1.0

   Compiling tokio v1.33.0

   Compiling const_format v0.2.32

   Compiling regex-automata v0.4.3

   Compiling wasm-bindgen-backend v0.2.87

   Compiling proc-macro2-diagnostics v0.10.1

   Compiling manyhow v0.8.1

   Compiling prettyplease v0.2.15

   Compiling regex v1.10.2

   Compiling wasm-bindgen-macro-support v0.2.87

   Compiling serde_derive v1.0.189

   Compiling thiserror-impl v1.0.49

   Compiling futures-macro v0.3.28

   Compiling pin-project-internal v1.1.3

   Compiling tracing-attributes v0.1.27

   Compiling wasm-bindgen-macro v0.2.87

   Compiling wasm-bindgen v0.2.87

   Compiling futures-util v0.3.28

   Compiling js-sys v0.3.64

   Compiling thiserror v1.0.49

   Compiling pin-project v1.1.3

   Compiling derive-where v1.2.5

   Compiling syn_derive v0.1.8

   Compiling tracing v0.1.40

   Compiling typed-builder-macro v0.16.2

   Compiling rstml v0.11.2

   Compiling quote-use-macros v0.7.2

   Compiling web-sys v0.3.64

   Compiling wasm-bindgen-futures v0.4.37

   Compiling futures-executor v0.3.28

   Compiling quote-use v0.7.2

   Compiling futures v0.3.28

   Compiling attribute-derive-macro v0.8.1

   Compiling typed-builder v0.16.2

   Compiling getrandom v0.2.10

   Compiling async-recursion v1.0.5

   Compiling console_error_panic_hook v0.1.7

   Compiling attribute-derive v0.8.1

   Compiling server_fn_macro v0.5.1

   Compiling leptos_hot_reload v0.5.1

   Compiling serde_json v1.0.107

   Compiling serde-wasm-bindgen v0.5.0

   Compiling ciborium v0.2.1

   Compiling slotmap v1.0.6

   Compiling serde_qs v0.12.0

   Compiling toml v0.5.11

   Compiling server_fn_macro_default v0.5.1

   Compiling serde_test v1.0.176

   Compiling serde_urlencoded v0.7.1

   Compiling serde-wasm-bindgen v0.6.0

   Compiling linear-map v1.2.0

   Compiling config v0.13.3

   Compiling leptos_macro v0.5.1

   Compiling leptos_config v0.5.1

   Compiling gloo-utils v0.1.7

   Compiling leptos_reactive v0.5.1

   Compiling gloo-utils v0.2.0

   Compiling reqwest-wasm v0.11.16

   Compiling console_log v1.0.0

   Compiling gloo-net v0.2.6

   Compiling gloo-net v0.4.0

   Compiling server_fn v0.5.1

   Compiling leptos_server v0.5.1

   Compiling leptos_dom v0.5.1

   Compiling leptos v0.5.1

   Compiling leptos_router v0.5.1

   Compiling leptos_meta v0.5.1

   Compiling rexie v0.5.0

   Compiling chat v0.0.1 (C:\home\git\polyglot\apps\chat\ui)

    Finished release [optimized] target(s) in 2m 15s

2023-10-21T06:19:29.338568Z  INFO fetching cargo artifacts

2023-10-21T06:19:29.893434Z  INFO processing WASM for chat

2023-10-21T06:19:29.925897Z  INFO calling wasm-bindgen for chat

2023-10-21T06:19:30.255432Z  INFO copying generated wasm-bindgen artifacts

2023-10-21T06:19:30.629230Z  INFO using system installed binary app=wasm-opt version=version_113

2023-10-21T06:19:30.631079Z  INFO calling wasm-opt

2023-10-21T06:19:45.750138Z  INFO copying generated wasm-opt artifacts

2023-10-21T06:19:45.756671Z  INFO applying new distribution

2023-10-21T06:19:45.765023Z  INFO ✅ success



Build completed!



Filename                                     	Size      

dist\favicon-f1d578da7a480441.ico            	16.28 KiB 

dist\chat-256b136659b2015d_bg.wasm           	908.58 KiB

dist\chat-256b136659b2015d.js                	48.95 KiB 

dist/tailwind-1bb93245bd22a37f-AWLY2BE5.css  	6.93 KiB  

dist/components-61317960c9987b2e-YWB32TZ5.css	78.01 KiB 

dist/1-22H55Z4H.js                           	23.51 KiB 

dist\index.html                              	1.18 KiB  

                                             	——————————

                                             	1.06 MiB  



Lockfile is up to date, resolution step is skipped

Already up to date



Done in 1.8s



   ╭─────────────────────────────────────────────────────────────────╮

   │                                                                 │

   │                Update available! 8.8.0 → 8.9.2.                 │

   │   Changelog: https://github.com/pnpm/pnpm/releases/tag/v8.9.2   │

   │                Run "pnpm add -g pnpm" to update.                │

   │                                                                 │

   │     Follow @pnpmjs for updates: https://twitter.com/pnpmjs      │

   │                                                                 │

   ╰─────────────────────────────────────────────────────────────────╯





> polyglot@ test:e2e C:\home\git\polyglot\apps\chat\ui\e2e

> playwright test



 INFO  Accepting connections at http://localhost:3000

 HTTP  10/21/2023 2:20:08 AM ::1 GET /

 HTTP  10/21/2023 2:20:08 AM ::1 Returned 200 in 97 ms



Running 1 test using 1 worker



[1/1] [Desktop Chrome] › test.spec.ts:3:5 › test

 HTTP  10/21/2023 2:20:12 AM ::1 GET /

 HTTP  10/21/2023 2:20:12 AM ::1 Returned 200 in 5 ms

 HTTP  10/21/2023 2:20:12 AM ::1 GET /tailwind-1bb93245bd22a37f-AWLY2BE5.css

 HTTP  10/21/2023 2:20:12 AM ::1 GET /components-61317960c9987b2e-YWB32TZ5.css

 HTTP  10/21/2023 2:20:12 AM ::1 Returned 200 in 4 ms

 HTTP  10/21/2023 2:20:12 AM ::1 GET /chat-256b136659b2015d_bg.wasm

 HTTP  10/21/2023 2:20:12 AM ::1 GET /1-22H55Z4H.js

 HTTP  10/21/2023 2:20:12 AM ::1 Returned 200 in 5 ms

 HTTP  10/21/2023 2:20:12 AM ::1 Returned 200 in 8 ms

 HTTP  10/21/2023 2:20:12 AM ::1 Returned 200 in 13 ms

  1 passed (12.0s)



To open last HTML report run:



  npx playwright show-report



In [ ]:
{ . "$ScriptDir/../spiral/test/build.ps1" } | Invoke-Block

── pwsh ────────────────────────────────────────────────────────────────────────

. ../../scripts/nbs_header.ps1

. ../../scripts/core.ps1



── pwsh ────────────────────────────────────────────────────────────────────────

{ . ../../apps/spiral/dist/Supervisor$(GetExecutableSuffix) --buildfile test.spi

test.fsx --timeout 10000 } | Invoke-Block



╭─[ 3.67s - stdout ]───────────────────────────────────────────────────────────╮

│ 02:20:24 #1 [Debug] runWithTimeoutAsync / timeout: 60                        │

│ 02:20:24 #2 [Debug] executeAsync / options: { Command =                      │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:main@411-297> }                                         │

│ 02:20:24 #3 [Debug] > pwd: C:\home\git\polyglot\spiral\test                  │

│ 02:20:24 #4 [Debug] > dll_path:                                              │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 02:20:25 #5 [Debug] runWithTimeoutAsync / timeout: 500                       │

│ 02:20:25 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0             │

│ 02:20:25 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} /           │

│ result.Length:                                                               │

│ 02:20:25 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port:      │

│ 13805 / retry: 0                                                             │

│ 02:20:25 #9 [Debug] > Server bound to: http://localhost:13805                │

│ 02:20:25 #10 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 02:20:25 #11 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 02:20:25 #12 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl app () =\n    \u0022test\u0022 |\u003E           │

│ console.write_line\n    0i32\n\ninl main () =\n    print_static              │

│ \u0022\u003Ctest\u003E\u0022\n\n    app\n    |\u003E dyn\n    |\u003E        │

│ ignore\n\n    print_static                                                   │

│ \u0022\u003C/test\u003E\u0022\n","uri":"file:///C:\\home\\git\\polyglot\\spi │

│ ral\\test\\test.spi"}} / result.Length:                                      │

│ 02:20:25 #13 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\home\\git\\polyglot\\spi │

│ ral\\test\\test.spi"}} / result.Length:                                      │

│ 02:20:26 #14 [Debug] > Building C:\home\git\polyglot\spiral\test\test.spi    │

│ 02:20:26 #15 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 02:20:27 #16 [Debug] > <test>                                                │

│ 02:20:27 #17 [Debug] > </test>                                               │

│ 02:20:27 #18 [Debug] buildFile / takeWhileInclusive / fsxContent: Some(let   │

│ rec closure0 () () : int32 =                                                 │

│     let v0 : string = "test"                                                 │

│     System.Console.WriteLine v0                                              │

│     0                                                                        │

│ let v0 : (unit -> int32) = closure0()                                        │

│ ()                                                                           │

│ ) / errors: [] / typeErrorCount: 0                                           │

│ 02:20:27 #19 [Debug] watchWithFilter / Disposing watch stream / fullPath:    │

│ C:\home\git\polyglot\spiral\test / filter: FileName, LastWrite               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

dotnet fable --optimize --lang rs --extension .rs



╭─[ 11.84s - stdout ]──────────────────────────────────────────────────────────╮

│ Fable 4.2.2: F# to Rust compiler (status: alpha)                             │

│                                                                              │

│ Thanks to the contributor! @i-p                                              │

│ Stand with Ukraine! https://standwithukraine.com.ua/                         │

│                                                                              │

│ Parsing test.fsproj...                                                       │

│ .> cmd /C dotnet restore test.csproj -p:FABLE_COMPILER=true                  │

│ -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_RUST=true                         │

│   Determining projects to restore...                                         │

│   Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483      │

│   The last full restore is still up to date. Nothing left to do.             │

│   Total time taken: 0 milliseconds                                           │

│   Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483      │

│   Restoring C:\home\git\polyglot\spiral\test\test.csproj                     │

│   Starting restore process.                                                  │

│   Total time taken: 0 milliseconds                                           │

│   Restored C:\home\git\polyglot\spiral\test\test.csproj (in 346 ms).         │

│ Project and references (1 source files) parsed in 8342ms                     │

│                                                                              │

│ Started Fable compilation...                                                 │

│ Fable compilation finished in 1668ms                                         │

│                                                                              │

│ .\test.fsx(6,0): (6,2) warning FABLE: For Rust, support for F# static and    │

│ module do bindings is disabled by default. It can be enabled with the        │

│ 'static_do_bindings' feature. Use at your own risk!                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

cargo fmt --



── pwsh ────────────────────────────────────────────────────────────────────────

cargo build --release



╭─[ 45.79s - stdout ]──────────────────────────────────────────────────────────╮

│ warning: C:\home\git\polyglot\Cargo.toml: unused manifest key:          │

│ lib.members                                                                │

│    Compiling tracing-core v0.1.32                                     │

│    Compiling regex-syntax v0.8.2                                      │

│    Compiling tracing-attributes v0.1.27                               │

│    Compiling uuid v1.5.0                                              │

│    Compiling bitflags v2.4.1                                          │

│    Compiling proptest v1.3.1                                          │

│    Compiling tracing-log v0.1.3                                       │

│    Compiling tracing-subscriber v0.3.17                               │

│    Compiling tracing v0.1.40                                          │

│    Compiling regex-automata v0.4.3                                    │

│    Compiling regex v1.10.2                                            │

│    Compiling fable_library_rust v0.1.0                                  │

│ (C:\home\git\polyglot\spiral\test\fable_modules\fable-library-rust)        │

│    Compiling test v0.0.1 (C:\home\git\polyglot\spiral\test)           │

│ warning: unused import: `info`                                        │

│    --> spiral\test\./main.rs:190:15                                   │

│     |                                                                 │

│ 190 | use tracing::{info, Level};                                     │

│     |               ^^^^                                              │

│     |                                                                 │

│     = note: `#[warn(unused_imports)]` on by default                   │

│                                                                       │

│ warning: associated items `new`, `add_item`, and `remove_item` are      │

│ never used                                                                 │

│   --> spiral\test\./main.rs:46:8                                      │

│    |                                                                  │

│ 45 | impl Cart {                                                      │

│    | --------- associated items in this implementation                │

│ 46 |     fn new() -> Cart {                                           │

│    |        ^^^                                                       │

│ ...                                                                   │

│ 50 |     fn add_item(&mut self, item: Item) {                         │

│    |        ^^^^^^^^                                                  │

│ ...                                                                   │

│ 56 |     fn remove_item(&mut self, item: &Item) {                     │

│    |        ^^^^^^^^^^^                                               │

│    |                                                                  │

│    = note: `#[warn(dead_code)]` on by default                         │

│                                                                       │

│ warning: function `parse_comment` is never used                       │

│    --> spiral\test\./main.rs:124:4                                    │

│     |                                                                 │

│ 124 | fn parse_comment(input: &str) -> IResult<&str, SpiralToken> {   │

│     |    ^^^^^^^^^^^^^                                                │

│                                                                       │

│ warning: function `parse_string` is never used                        │

│    --> spiral\test\./main.rs:130:4                                    │

│     |                                                                 │

│ 130 | fn parse_string(input: &str) -> IResult<&str, SpiralToken> {    │

│     |    ^^^^^^^^^^^^                                                 │

│                                                                       │

│ warning: function `parse_identifier` is never used                    │

│    --> spiral\test\./main.rs:145:4                                    │

│     |                                                                 │

│ 145 | fn parse_identifier(input: &str) -> IResult<&str, SpiralToken> {[  │

│ 0m                                                                           │

│     |    ^^^^^^^^^^^^^^^^                                             │

│                                                                       │

│ warning: function `parse_integer` is never used                       │

│    --> spiral\test\./main.rs:157:4                                    │

│     |                                                                 │

│ 157 | fn parse_integer(input: &str) -> IResult<&str, SpiralToken> {   │

│     |    ^^^^^^^^^^^^^                                                │

│                                                                       │

│ warning: function `parse_operator` is never used                      │

│    --> spiral\test\./main.rs:165:4                                    │

│     |                                                                 │

│ 165 | fn parse_operator(input: &str) -> IResult<&str, SpiralToken> {  │

│     |    ^^^^^^^^^^^^^^                                               │

│                                                                       │

│ warning: function `parse_token` is never used                         │

│    --> spiral\test\./main.rs:170:4                                    │

│     |                                                                 │

│ 170 | fn parse_token(input: &str) -> IResult<&str, SpiralToken> {     │

│     |    ^^^^^^^^^^^                                                  │

│                                                                       │

│ warning: function `format_token` is never used                        │

│    --> spiral\test\./main.rs:180:4                                    │

│     |                                                                 │

│ 180 | fn format_token(token: &SpiralToken) -> String {                │

│     |    ^^^^^^^^^^^^                                                 │

│                                                                       │

│ warning: function `parse_expression` is never used                    │

│    --> spiral\test\./main.rs:213:4                                    │

│     |                                                                 │

│ 213 | fn parse_expression(input: &str) -> IResult<&str, SpiralToken> {[  │

│ 0m                                                                           │

│     |    ^^^^^^^^^^^^^^^^                                             │

│                                                                       │

│ warning: `test` (bin "test") generated 10 warnings (run `cargo fix      │

│ --bin "test"` to apply 1 suggestion)                                       │

│     Finished release [optimized] target(s) in 45.62s                  │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

$env:RUST_LOG="info"

{ cargo test --release } | Invoke-Block



╭─[ 5.32s - stdout ]───────────────────────────────────────────────────────────╮

│ warning: C:\home\git\polyglot\Cargo.toml: unused manifest key:          │

│ lib.members                                                                │

│    Compiling test v0.0.1 (C:\home\git\polyglot\spiral\test)           │

│     Finished release [optimized] target(s) in 4.90s                   │

│      Running unittests main.rs                                          │

│ (C:\home\git\polyglot\target\release\deps\test-77978ca43562efd9.exe)       │

│                                                                              │

│ running 3 tests                                                              │

│ test test_parse_number ... ok                                                │

│ 2023-10-21T06:21:30.603430Z  INFO test:                     │

│ input=StringLiteral(":%'7.$*mI3</N,U")                                       │

│ 2023-10-21T06:21:30.603578Z  INFO test:                     │

│ input=Integer(-9196625617662053964)                                          │

│ 2023-10-21T06:21:30.603670Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.603762Z  INFO test:                     │

│ input=Comment("?.`i%A=Hl===U'GRp_e=")                                        │

│ 2023-10-21T06:21:30.603807Z  INFO test:                     │

│ input=Integer(8959770383681494929)                                           │

│ 2023-10-21T06:21:30.603902Z  INFO test:                     │

│ input=Identifier("WS8iXD94HKP")                                              │

│ 2023-10-21T06:21:30.603978Z  INFO test:                     │

│ input=Identifier("LBT1F6g8Q0")                                               │

│ 2023-10-21T06:21:30.604014Z  INFO test:                     │

│ input=StringLiteral("m^q&pd+:L")                                             │

│ 2023-10-21T06:21:30.604048Z  INFO test:                     │

│ input=Integer(-6581861584802852435)                                          │

│ 2023-10-21T06:21:30.604098Z  INFO test:                     │

│ input=StringLiteral("=.:q%tI")                                               │

│ 2023-10-21T06:21:30.604138Z  INFO test:                     │

│ input=StringLiteral("=Ec&} !$f$")                                            │

│ 2023-10-21T06:21:30.604170Z  INFO test:                     │

│ input=Integer(-4605455770244727842)                                          │

│ 2023-10-21T06:21:30.604213Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.604314Z  INFO test:                     │

│ input=Identifier("IforXot2BcJ8o21mlD3bTmdRXtrz")                             │

│ 2023-10-21T06:21:30.604413Z  INFO test:                     │

│ input=StringLiteral("wu~{_lb$c+9#s<.")                                       │

│ 2023-10-21T06:21:30.604464Z  INFO test:                     │

│ input=Identifier("Cn")                                                       │

│ 2023-10-21T06:21:30.604523Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.604601Z  INFO test:                     │

│ input=StringLiteral(">l5/4*")                                                │

│ 2023-10-21T06:21:30.604679Z  INFO test:                     │

│ input=StringLiteral("@7~1HW")                                                │

│ 2023-10-21T06:21:30.604722Z  INFO test:                     │

│ input=Integer(-1034303347693446526)                                          │

│ 2023-10-21T06:21:30.604750Z  INFO test:                     │

│ input=Integer(5745012003271186169)                                           │

│ 2023-10-21T06:21:30.604782Z  INFO test:                     │

│ input=StringLiteral(")'")                                                    │

│ 2023-10-21T06:21:30.604810Z  INFO test:                     │

│ input=Integer(-1838169582451690900)                                          │

│ 2023-10-21T06:21:30.604860Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.604898Z  INFO test:                     │

│ input=Identifier("zJhgbL0FGmbqQs9")                                          │

│ 2023-10-21T06:21:30.604964Z  INFO test:                     │

│ input=StringLiteral("':$TVZj<i]@<x#>Ay[cT$+X*#z1]]C")                        │

│ 2023-10-21T06:21:30.605037Z  INFO test:                     │

│ input=StringLiteral("$/VH^n=2~-Q:;W!?`*")                                    │

│ 2023-10-21T06:21:30.605086Z  INFO test:                     │

│ input=Identifier("La32DtBqUNF9Gk6OJH81f")                                    │

│ 2023-10-21T06:21:30.605120Z  INFO test: input=Comment("l")  │

│ 2023-10-21T06:21:30.605154Z  INFO test:                     │

│ input=Comment("hp\\\\e")                                                     │

│ 2023-10-21T06:21:30.605182Z  INFO test:                     │

│ input=Integer(2229463733683126096)                                           │

│ 2023-10-21T06:21:30.605213Z  INFO test:                     │

│ input=Comment("h#:JX`.*.")                                                   │

│ 2023-10-21T06:21:30.605261Z  INFO test:                     │

│ input=Comment("|H+O^N1b$*f/.f'!?\\!/")                                       │

│ 2023-10-21T06:21:30.605314Z  INFO test:                     │

│ input=Identifier("ecAID38UaetKAig7l8ucuf6pTbENx2E")                          │

│ 2023-10-21T06:21:30.605351Z  INFO test:                     │

│ input=Comment("$KPu")                                                        │

│ 2023-10-21T06:21:30.605381Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.605451Z  INFO test:                     │

│ input=StringLiteral(":(YpyV'$y{% $ {`LS{bAcv")                               │

│ 2023-10-21T06:21:30.605503Z  INFO test:                     │

│ input=Comment("J\\]=&=InR}:]~>K8X$.\"=\\d@<U")                               │

│ 2023-10-21T06:21:30.605563Z  INFO test:                     │

│ input=Comment("ALiNO2X,%|UkoGMq.6*ac=LGB6<")                                 │

│ 2023-10-21T06:21:30.605610Z  INFO test:                     │

│ input=Integer(4820545848077248606)                                           │

│ 2023-10-21T06:21:30.605649Z  INFO test:                     │

│ input=Identifier("ZovU3UIW4")                                                │

│ 2023-10-21T06:21:30.605684Z  INFO test:                     │

│ input=Integer(-6489943797418008190)                                          │

│ 2023-10-21T06:21:30.605729Z  INFO test:                     │

│ input=Comment("k$!<`,T`<A#9%s*p%.NG^?/':-?")                                 │

│ 2023-10-21T06:21:30.605811Z  INFO test:                     │

│ input=StringLiteral("<|??:g'CYT-v1*hv'Vy:uNrXEJ")                            │

│ 2023-10-21T06:21:30.605891Z  INFO test:                     │

│ input=Identifier("vg3G3OxuA2TCsk")                                           │

│ 2023-10-21T06:21:30.605973Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.606034Z  INFO test:                     │

│ input=Integer(8919945401352724584)                                           │

│ 2023-10-21T06:21:30.606070Z  INFO test:                     │

│ input=Integer(-6970242238729393885)                                          │

│ 2023-10-21T06:21:30.606108Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.606155Z  INFO test:                     │

│ input=Comment("Vf/c{'R&*&\"8*m9")                                            │

│ 2023-10-21T06:21:30.606208Z  INFO test:                     │

│ input=StringLiteral("b^/BSqT/<:")                                            │

│ 2023-10-21T06:21:30.606253Z  INFO test:                     │

│ input=Integer(-7379764518179048653)                                          │

│ 2023-10-21T06:21:30.606280Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.606331Z  INFO test:                     │

│ input=StringLiteral("?:&'+o`CS/U3B?9&&6':a")                                 │

│ 2023-10-21T06:21:30.606375Z  INFO test:                     │

│ input=Integer(8293090298385389610)                                           │

│ 2023-10-21T06:21:30.606434Z  INFO test:                     │

│ input=StringLiteral("3:<=!j'8:i-h9I$$")                                      │

│ 2023-10-21T06:21:30.606487Z  INFO test:                     │

│ input=StringLiteral("?!e?6?=")                                               │

│ 2023-10-21T06:21:30.606544Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.606644Z  INFO test:                     │

│ input=StringLiteral(" ?(MXS**/UO/x{$B<n}~. L,-")                             │

│ 2023-10-21T06:21:30.606696Z  INFO test: input=Operator("/") │

│ 2023-10-21T06:21:30.606748Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.606798Z  INFO test:                     │

│ input=Comment("?o5?psP5")                                                    │

│ 2023-10-21T06:21:30.606845Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.606899Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.606939Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.606981Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.607021Z  INFO test:                     │

│ input=Integer(8335225859751247044)                                           │

│ 2023-10-21T06:21:30.607066Z  INFO test:                     │

│ input=StringLiteral("")                                                      │

│ 2023-10-21T06:21:30.607146Z  INFO test:                     │

│ input=StringLiteral("7{k.I:p/w%%OIXF?.I>:$UMP")                              │

│ 2023-10-21T06:21:30.607190Z  INFO test:                     │

│ input=Identifier("Bs8AS")                                                    │

│ 2023-10-21T06:21:30.607266Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.607327Z  INFO test:                     │

│ input=Identifier("uig9C2yxjC45H5bu46sWnZJc32JqNWKo")                         │

│ 2023-10-21T06:21:30.607354Z  INFO test:                     │

│ input=Integer(6621454498989493780)                                           │

│ 2023-10-21T06:21:30.607396Z  INFO test:                     │

│ input=Integer(-4227835043526309416)                                          │

│ 2023-10-21T06:21:30.607471Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.607570Z  INFO test:                     │

│ input=Comment("J?1b?%_,")                                                    │

│ 2023-10-21T06:21:30.607663Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.607701Z  INFO test:                     │

│ input=Comment("/`%t`>J\\'b$F")                                               │

│ 2023-10-21T06:21:30.607745Z  INFO test: input=Comment("2")  │

│ 2023-10-21T06:21:30.607779Z  INFO test:                     │

│ input=Comment("&dl,oG{Md&QaQ~N]C\"DP7**&\\. ")                               │

│ 2023-10-21T06:21:30.607807Z  INFO test:                     │

│ input=Comment("m&P,<'4{Z:qg")                                                │

│ 2023-10-21T06:21:30.607830Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.607850Z  INFO test:                     │

│ input=StringLiteral("")                                                      │

│ 2023-10-21T06:21:30.607870Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.607930Z  INFO test:                     │

│ input=StringLiteral("*jlE:4.a<NX{!9r#")                                      │

│ 2023-10-21T06:21:30.607970Z  INFO test:                     │

│ input=Identifier("JKhjof9ga")                                                │

│ 2023-10-21T06:21:30.608021Z  INFO test:                     │

│ input=StringLiteral("/}?Lsa#5?wd{={1$2(?{.3K")                               │

│ 2023-10-21T06:21:30.608071Z  INFO test:                     │

│ input=Identifier("zWto68ZAnQSb5XF92")                                        │

│ 2023-10-21T06:21:30.608126Z  INFO test:                     │

│ input=StringLiteral("</?[3J{w)c}l.B1q")                                      │

│ 2023-10-21T06:21:30.608199Z  INFO test:                     │

│ input=Identifier("mGAb")                                                     │

│ 2023-10-21T06:21:30.608235Z  INFO test:                     │

│ input=Integer(-8327854830265856907)                                          │

│ 2023-10-21T06:21:30.608274Z  INFO test:                     │

│ input=StringLiteral("cZp")                                                   │

│ 2023-10-21T06:21:30.608324Z  INFO test:                     │

│ input=StringLiteral("x+M<!XNovvw?=}")                                        │

│ 2023-10-21T06:21:30.608371Z  INFO test:                     │

│ input=Integer(5419784013676019200)                                           │

│ 2023-10-21T06:21:30.608414Z  INFO test:                     │

│ input=Integer(3023099500530406437)                                           │

│ 2023-10-21T06:21:30.608452Z  INFO test:                     │

│ input=Comment("?\"`qj,z/0?'%0NF_:")                                          │

│ 2023-10-21T06:21:30.608674Z  INFO test:                     │

│ input=StringLiteral("[24?P=>.akHh,s_E=D`w%J1")                               │

│ 2023-10-21T06:21:30.608717Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.608741Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.608774Z  INFO test:                     │

│ input=Comment("K/)E=HTv'(3B)(#x/$jux`\"d\"&")                                │

│ 2023-10-21T06:21:30.608831Z  INFO test:                     │

│ input=Identifier("Q5EusGBsDv356T9F3ei6FSjUOXql9JCG")                         │

│ 2023-10-21T06:21:30.608895Z  INFO test:                     │

│ input=Identifier("VQ0zVfC5iB")                                               │

│ 2023-10-21T06:21:30.608959Z  INFO test:                     │

│ input=Identifier("WuTq75f7PDu4Ae8APIHPq8oPJ1tSHXWs9")                        │

│ 2023-10-21T06:21:30.609020Z  INFO test:                     │

│ input=Identifier("fym3lIgE7rTzJ3SSxJT27F")                                   │

│ 2023-10-21T06:21:30.609065Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.609139Z  INFO test:                     │

│ input=Identifier("J15ChJN8")                                                 │

│ 2023-10-21T06:21:30.609182Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.609222Z  INFO test:                     │

│ input=Comment("KM?&.}>fS$;9l?6w? *Tcb&Rf/")                                  │

│ 2023-10-21T06:21:30.609266Z  INFO test: input=Operator("/") │

│ 2023-10-21T06:21:30.609337Z  INFO test:                     │

│ input=Integer(-5655247334936525185)                                          │

│ 2023-10-21T06:21:30.609490Z  INFO test:                     │

│ input=Identifier("o1We4nJhGgQkIyPJMeNWIh")                                   │

│ 2023-10-21T06:21:30.609624Z  INFO test:                     │

│ input=Integer(-9039939087224836346)                                          │

│ 2023-10-21T06:21:30.609746Z  INFO test:                     │

│ input=Identifier("u7117K2we0E91ZrQ15Dxt3uMkcJ6Ca")                           │

│ 2023-10-21T06:21:30.609783Z  INFO test:                     │

│ input=Integer(-5190434228531641074)                                          │

│ 2023-10-21T06:21:30.609816Z  INFO test:                     │

│ input=StringLiteral("&W-00:L{_$&-f?=3d?Lx")                                  │

│ 2023-10-21T06:21:30.609840Z  INFO test:                     │

│ input=Integer(-6811768727418408013)                                          │

│ 2023-10-21T06:21:30.609861Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.609892Z  INFO test:                     │

│ input=Identifier("jwr5N65967VRNXZoEkV970qO")                                 │

│ 2023-10-21T06:21:30.609939Z  INFO test:                     │

│ input=Identifier("le1Wwbl7qO2QfwNuQ54DNwvH")                                 │

│ 2023-10-21T06:21:30.609972Z  INFO test:                     │

│ input=Identifier("JQd8")                                                     │

│ 2023-10-21T06:21:30.610010Z  INFO test:                     │

│ input=StringLiteral(":/oo=xK){,I{%E:+WPQg*y; u9E")                           │

│ 2023-10-21T06:21:30.610033Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.610054Z  INFO test: input=Comment(".")  │

│ 2023-10-21T06:21:30.610076Z  INFO test:                     │

│ input=StringLiteral("'nj$,")                                                 │

│ 2023-10-21T06:21:30.610110Z  INFO test:                     │

│ input=StringLiteral(">ke%-`M4%&`x.Vs/P3=q'_:s$=<*fT")                        │

│ 2023-10-21T06:21:30.610149Z  INFO test:                     │

│ input=Identifier("i07Z0x")                                                   │

│ 2023-10-21T06:21:30.610187Z  INFO test:                     │

│ input=Integer(7611931397070276562)                                           │

│ 2023-10-21T06:21:30.610212Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.610232Z  INFO test:                     │

│ input=Integer(9024709176534645649)                                           │

│ 2023-10-21T06:21:30.610258Z  INFO test: input=Comment("[    │

│ m+`:^")                                                                      │

│ 2023-10-21T06:21:30.610281Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.610310Z  INFO test:                     │

│ input=Identifier("HL50JtG249UnS")                                            │

│ 2023-10-21T06:21:30.610329Z  INFO test:                     │

│ input=Integer(4610317550750330691)                                           │

│ 2023-10-21T06:21:30.610349Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.610389Z  INFO test:                     │

│ input=Comment("ZO/jNSyZ=/4?%n$k")                                            │

│ 2023-10-21T06:21:30.610436Z  INFO test:                     │

│ input=Identifier("E7Xas")                                                    │

│ 2023-10-21T06:21:30.610473Z  INFO test:                     │

│ input=Comment("1&]?JTq*D'L$w)<~*:y?f/7:&A")                                  │

│ 2023-10-21T06:21:30.610588Z  INFO test:                     │

│ input=StringLiteral("/:-3f`'4&J=#GdPBd|**/DaE")                              │

│ 2023-10-21T06:21:30.610664Z  INFO test: input=Comment("O.[  │

│ ~%WQ!FqBY'%1s")                                                              │

│ 2023-10-21T06:21:30.610691Z  INFO test:                     │

│ input=Integer(-2697541689416557920)                                          │

│ 2023-10-21T06:21:30.610720Z  INFO test:                     │

│ input=Identifier("OZhQhVONAsaBifJ58p")                                       │

│ 2023-10-21T06:21:30.610759Z  INFO test:                     │

│ input=Identifier("i5wI2Zq4gYg9RGtJ38G2k5ZVg4BY")                             │

│ 2023-10-21T06:21:30.610797Z  INFO test:                     │

│ input=Identifier("DGfj3ZAS6k5LIvCr78L5aG2A415dEfjP7")                        │

│ 2023-10-21T06:21:30.610831Z  INFO test:                     │

│ input=StringLiteral("fl.LB|IwR29Y$3'M:.:Jh/")                                │

│ 2023-10-21T06:21:30.610861Z  INFO test:                     │

│ input=Identifier("cFMmoJQM2o6GAL77LoD")                                      │

│ 2023-10-21T06:21:30.610897Z  INFO test:                     │

│ input=StringLiteral(".1~=v)m,[E&M*=/?iYz4.5]")                               │

│ 2023-10-21T06:21:30.610931Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.610983Z  INFO test:                     │

│ input=Comment("/;p3#7<#f?lUO+*G!")                                           │

│ 2023-10-21T06:21:30.611043Z  INFO test:                     │

│ input=StringLiteral("gxo&v.'.")                                              │

│ 2023-10-21T06:21:30.611077Z  INFO test:                     │

│ input=Comment("\\=Pt;AxrKC=KE&0W")                                           │

│ 2023-10-21T06:21:30.611106Z  INFO test: input=Comment(";7") │

│ 2023-10-21T06:21:30.611133Z  INFO test:                     │

│ input=Identifier("tGt9AutZ9c")                                               │

│ 2023-10-21T06:21:30.611168Z  INFO test:                     │

│ input=Comment("`\\~{\"=j+8}c*%{(0$nIL\"^qiY9c1l")                            │

│ 2023-10-21T06:21:30.611304Z  INFO test:                     │

│ input=Identifier("sdD4TKUr7g39iaewUI4Yhjk7w09aEV")                           │

│ 2023-10-21T06:21:30.611418Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.611466Z  INFO test:                     │

│ input=Comment("S?#'I>Mce")                                                   │

│ 2023-10-21T06:21:30.611516Z  INFO test:                     │

│ input=StringLiteral("|F:{x<R&{6iK/+v/U3-|}kMG}")                             │

│ 2023-10-21T06:21:30.611545Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.611576Z  INFO test:                     │

│ input=Comment("_)@\\<\"BC\\& \\=L(k%O")                                      │

│ 2023-10-21T06:21:30.611602Z  INFO test:                     │

│ input=Comment("/`6Po$")                                                      │

│ 2023-10-21T06:21:30.611632Z  INFO test:                     │

│ input=Identifier("s6LWE9Qqbw6PZJ4KL6FVg")                                    │

│ 2023-10-21T06:21:30.611667Z  INFO test:                     │

│ input=StringLiteral("%6OAq/E7@P}]hgOn+/>")                                   │

│ 2023-10-21T06:21:30.611698Z  INFO test:                     │

│ input=StringLiteral("`+MU;p{|L%slS/7")                                       │

│ 2023-10-21T06:21:30.611723Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.611754Z  INFO test:                     │

│ input=Comment("Uy'}jG'._&#U:?=`=Iz<c.q>I\" ")                                │

│ 2023-10-21T06:21:30.611778Z  INFO test:                     │

│ input=Integer(-5335587662599381275)                                          │

│ 2023-10-21T06:21:30.611801Z  INFO test:                     │

│ input=Comment("R\"?.\\NAw[")                                                 │

│ 2023-10-21T06:21:30.611832Z  INFO test:                     │

│ input=Comment("<`g~hC}$$'u/<-6j9./{U</c")                                    │

│ 2023-10-21T06:21:30.611859Z  INFO test:                     │

│ input=StringLiteral("i`$T")                                                  │

│ 2023-10-21T06:21:30.611879Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.611915Z  INFO test:                     │

│ input=Comment(">'mJ,?qWc'd'3}Q&L^SU*T9&3].j")                                │

│ 2023-10-21T06:21:30.611956Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.611984Z  INFO test:                     │

│ input=StringLiteral("'I&1%$~='")                                             │

│ 2023-10-21T06:21:30.612007Z  INFO test: input=Operator("/") │

│ 2023-10-21T06:21:30.612028Z  INFO test:                     │

│ input=Integer(-7009177847642249335)                                          │

│ 2023-10-21T06:21:30.612061Z  INFO test:                     │

│ input=Comment("\\.('a6px`9G.0.@{E1&,s\"&H=")                                 │

│ 2023-10-21T06:21:30.612105Z  INFO test:                     │

│ input=StringLiteral("?%f<Yq*]zt&:")                                          │

│ 2023-10-21T06:21:30.612149Z  INFO test:                     │

│ input=StringLiteral("QO")                                                    │

│ 2023-10-21T06:21:30.612174Z  INFO test:                     │

│ input=StringLiteral("Z")                                                     │

│ 2023-10-21T06:21:30.612194Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.612245Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.612301Z  INFO test:                     │

│ input=Comment("m`k'9%zM6*KJ-*|$J2F\"*Jroo\\3\\")                             │

│ 2023-10-21T06:21:30.612331Z  INFO test:                     │

│ input=Integer(-1452889966007220346)                                          │

│ 2023-10-21T06:21:30.612439Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.612507Z  INFO test:                     │

│ input=StringLiteral("`u($")                                                  │

│ 2023-10-21T06:21:30.612539Z  INFO test:                     │

│ input=Identifier("Om6")                                                      │

│ 2023-10-21T06:21:30.612597Z  INFO test:                     │

│ input=Identifier("lg8FMNHg4e8y4685GMLOY6Ge")                                 │

│ 2023-10-21T06:21:30.612637Z  INFO test:                     │

│ input=Comment("L\"Yy<nm:.*`eLKo*&3Pd-x5y}4:")                                │

│ 2023-10-21T06:21:30.612662Z  INFO test:                     │

│ input=Identifier("bS7Q")                                                     │

│ 2023-10-21T06:21:30.612703Z  INFO test: input=Comment("'{2  │

│ /)7i/d%O{->7F*b.")                                                           │

│ 2023-10-21T06:21:30.612730Z  INFO test:                     │

│ input=Comment("j.*<*<=\\d`z\"F")                                             │

│ 2023-10-21T06:21:30.612752Z  INFO test:                     │

│ input=Integer(-8900154808688674176)                                          │

│ 2023-10-21T06:21:30.612771Z  INFO test:                     │

│ input=Integer(-2734691969863210382)                                          │

│ 2023-10-21T06:21:30.612796Z  INFO test:                     │

│ input=Identifier("DU1S26iF1u6Cq")                                            │

│ 2023-10-21T06:21:30.612821Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.612841Z  INFO test:                     │

│ input=Integer(-2115445687462764142)                                          │

│ 2023-10-21T06:21:30.612867Z  INFO test:                     │

│ input=Identifier("bXV1isMSZ5swRd2rwH")                                       │

│ 2023-10-21T06:21:30.612900Z  INFO test:                     │

│ input=StringLiteral("Q5[wFjj't/xRb4oKeyY")                                   │

│ 2023-10-21T06:21:30.612934Z  INFO test:                     │

│ input=Identifier("o5xl4XepAC")                                               │

│ 2023-10-21T06:21:30.612956Z  INFO test:                     │

│ input=Integer(-5078652306414073696)                                          │

│ 2023-10-21T06:21:30.612987Z  INFO test:                     │

│ input=Comment("((*{s[a=^Fc~'Bmd >PD")                                        │

│ 2023-10-21T06:21:30.613009Z  INFO test:                     │

│ input=Identifier("F")                                                        │

│ 2023-10-21T06:21:30.613039Z  INFO test:                     │

│ input=Identifier("A2W80FWV8Iq652zD2Hf53Pirx")                                │

│ 2023-10-21T06:21:30.613081Z  INFO test:                     │

│ input=Comment("s/,|F.{?x`/a*?K,?Y8@i<")                                      │

│ 2023-10-21T06:21:30.613106Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.613138Z  INFO test: input=Operator("=") │

│ 2023-10-21T06:21:30.613176Z  INFO test:                     │

│ input=Identifier("q")                                                        │

│ 2023-10-21T06:21:30.613209Z  INFO test:                     │

│ input=Identifier("TY513m")                                                   │

│ 2023-10-21T06:21:30.613247Z  INFO test:                     │

│ input=Identifier("RM71YYRJZY24kZTH3l3kz9La9GFf4qb7n")                        │

│ 2023-10-21T06:21:30.613278Z  INFO test:                     │

│ input=Identifier("q7PrU5SXODJ4i")                                            │

│ 2023-10-21T06:21:30.613305Z  INFO test:                     │

│ input=Identifier("aLNXK6N6TrmLNe")                                           │

│ 2023-10-21T06:21:30.613329Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.613380Z  INFO test:                     │

│ input=Comment("/`.o+{?ZB=h%Wa*")                                             │

│ 2023-10-21T06:21:30.613411Z  INFO test:                     │

│ input=Comment("?R'~XO|?e&r'")                                                │

│ 2023-10-21T06:21:30.613446Z  INFO test:                     │

│ input=StringLiteral("/o,8JgL*U<8o-:?-^?y/b/=%C")                             │

│ 2023-10-21T06:21:30.613489Z  INFO test:                     │

│ input=StringLiteral("_{S<")                                                  │

│ 2023-10-21T06:21:30.613532Z  INFO test:                     │

│ input=Identifier("jFD1")                                                     │

│ 2023-10-21T06:21:30.613572Z  INFO test:                     │

│ input=Identifier("T46JYEzNCjokNBK8NsLk869uVokt28H")                          │

│ 2023-10-21T06:21:30.613604Z  INFO test:                     │

│ input=Integer(-5560002636413107780)                                          │

│ 2023-10-21T06:21:30.613654Z  INFO test:                     │

│ input=Comment("\\V>\\&v''2[A")                                               │

│ 2023-10-21T06:21:30.613748Z  INFO test:                     │

│ input=Identifier("yV2N5fELnR")                                               │

│ 2023-10-21T06:21:30.613799Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.613822Z  INFO test:                     │

│ input=Integer(7892817184662118641)                                           │

│ 2023-10-21T06:21:30.613858Z  INFO test:                     │

│ input=Identifier("IQxpOmtm9duZDUbGl2V42byf8DFsE57")                          │

│ 2023-10-21T06:21:30.613894Z  INFO test:                     │

│ input=StringLiteral("%l]dxF&!5%")                                            │

│ 2023-10-21T06:21:30.613921Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.613952Z  INFO test:                     │

│ input=Comment("li/*>//lud\\i@&jX.{S")                                        │

│ 2023-10-21T06:21:30.613981Z  INFO test: input=Operator("+") │

│ 2023-10-21T06:21:30.614023Z  INFO test:                     │

│ input=Comment("0?\":`W\\#9\\NSM?o&$/==yV2MDi<")                              │

│ 2023-10-21T06:21:30.614145Z  INFO test:                     │

│ input=StringLiteral("'<+=:1%BnVzOi+/~'o:8I,>)@!vk")                          │

│ 2023-10-21T06:21:30.614195Z  INFO test:                     │

│ input=Integer(-6754417573644186660)                                          │

│ 2023-10-21T06:21:30.614240Z  INFO test:                     │

│ input=Identifier("f0xtuiflf1")                                               │

│ 2023-10-21T06:21:30.614322Z  INFO test:                     │

│ input=Identifier("XxwL1aG1")                                                 │

│ 2023-10-21T06:21:30.614359Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.614381Z  INFO test:                     │

│ input=Integer(-3118854696200672556)                                          │

│ 2023-10-21T06:21:30.614415Z  INFO test:                     │

│ input=Identifier("QD128aSd7aFWMZey6q4NWqjnM70")                              │

│ 2023-10-21T06:21:30.614453Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.614506Z  INFO test:                     │

│ input=Comment("{99?!{")                                                      │

│ 2023-10-21T06:21:30.614582Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.614630Z  INFO test: input=Operator(")") │

│ 2023-10-21T06:21:30.614675Z  INFO test:                     │

│ input=Identifier("X1N566zfP3jVuNpx990rceXIOF93LY")                           │

│ 2023-10-21T06:21:30.614721Z  INFO test: input=Operator("/") │

│ 2023-10-21T06:21:30.614747Z  INFO test: input=Operator("-") │

│ 2023-10-21T06:21:30.614842Z  INFO test:                     │

│ input=Comment("<>qI3}\\_cO{'?.Db")                                           │

│ 2023-10-21T06:21:30.614893Z  INFO test:                     │

│ input=StringLiteral("97v%K?'dRfnuH<x{4.0@")                                  │

│ 2023-10-21T06:21:30.614927Z  INFO test:                     │

│ input=Integer(-8293961433601806835)                                          │

│ 2023-10-21T06:21:30.614975Z  INFO test:                     │

│ input=Identifier("We0219Xo")                                                 │

│ 2023-10-21T06:21:30.615048Z  INFO test:                     │

│ input=Identifier("eu8K0JBi2Dr9LJTzpAfn")                                     │

│ 2023-10-21T06:21:30.615111Z  INFO test:                     │

│ input=StringLiteral("aW:&]h'tCO+L")                                          │

│ 2023-10-21T06:21:30.615156Z  INFO test:                     │

│ input=Integer(-4037154607898168624)                                          │

│ 2023-10-21T06:21:30.615225Z  INFO test:                     │

│ input=Comment("$bg\"9\"A5e{T/MfZ5<(sn:(*")                                   │

│ 2023-10-21T06:21:30.615271Z  INFO test: input=Operator("*") │

│ 2023-10-21T06:21:30.615330Z  INFO test:                     │

│ input=Comment("\\{/g!&/+.%%")                                                │

│ 2023-10-21T06:21:30.615436Z  INFO test:                     │

│ input=Identifier("G1f18kedH8YYuHGZtey4KLiffs4Q")                             │

│ 2023-10-21T06:21:30.615518Z  INFO test: input=Operator("(") │

│ 2023-10-21T06:21:30.615572Z  INFO test:                     │

│ input=StringLiteral("<<A")                                                   │

│ test prop_parse_format_idempotent ... ok                                     │

│ test                                                                         │

│ adding_and_then_removing_an_item_from_the_cart_leaves_the_cart_unchanged ... │

│ ok                                                                           │

│                                                                              │

│ test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out;  │

│ finished in 0.13s                                                            │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

{ . $ScriptDir/../../target/release/test$(GetExecutableSuffix) } | Invoke-Block



╭─[ 91.26ms - stdout ]─────────────────────────────────────────────────────────╮

│ app=test                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook build.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 316778 bytes to build.dib.html

In [ ]:
{ . "$ScriptDir/../spiral/extension/build.ps1" } | Invoke-Block
Lockfile is up to date, resolution step is skipped

Already up to date



Done in 1.6s

[INFO]: 🎯  Checking for the Wasm target...

[INFO]: 🌀  Compiling to Wasm...

warning: C:\home\git\polyglot\Cargo.toml: unused manifest key: lib.members

    Finished dev [unoptimized + debuginfo] target(s) in 0.45s

[INFO]: ⬇️  Installing wasm-bindgen...

[INFO]: Optional fields missing from Cargo.toml: 'description', 'repository', and 'license'. These are not necessary, but recommended

[INFO]: ✨   Done in 1.33s

[INFO]: 📦   Your wasm pkg is ready to publish at C:\home\git\polyglot\spiral\extension\pkg.

▲ [WARNING] "import.meta" is not available with the "iife" output format and will be empty [empty-import-meta]



    pkg/extension.js:451:45:

      451 │         input = new URL('extension_bg.wasm', import.meta.url);

          ╵                                              ~~~~~~~~~~~



  You need to set the output format to "esm" for "import.meta" to work correctly.



1 warning



  dist\extension_bg-7GXD3MC5.wasm  146.4kb

  dist\content_script.js             7.4kb

  dist\service_worker.js             1.6kb



⚡ Done in 32ms



> polyglot@ test:e2e C:\home\git\polyglot\spiral\extension

> playwright test



 INFO  Accepting connections at http://localhost:3000

 HTTP  10/21/2023 2:21:46 AM ::1 GET /

 HTTP  10/21/2023 2:21:46 AM ::1 Returned 200 in 26 ms



Running 3 tests using 3 workers



[1/3] [Desktop Chrome] › extension.spec.ts:3:5 › popup localhost

[2/3] [Desktop Chrome] › extension.spec.ts:13:5 › libgen

[3/3] [Desktop Chrome] › extension.spec.ts:8:5 › popup extension

 HTTP  10/21/2023 2:21:51 AM ::1 GET /popup

 HTTP  10/21/2023 2:21:51 AM ::1 Returned 200 in 14 ms

 HTTP  10/21/2023 2:21:51 AM ::1 GET /popup.js

 HTTP  10/21/2023 2:21:51 AM ::1 Returned 200 in 5 ms

 HTTP  10/21/2023 2:21:51 AM ::1 GET /content_script.js

 HTTP  10/21/2023 2:21:51 AM ::1 Returned 200 in 5 ms

 HTTP  10/21/2023 2:21:51 AM ::1 GET /extension_bg-7GXD3MC5.wasm

 HTTP  10/21/2023 2:21:51 AM ::1 Returned 200 in 12 ms

 HTTP  10/21/2023 2:21:51 AM ::1 GET /favicon.ico

 HTTP  10/21/2023 2:21:51 AM ::1 Returned 404 in 3 ms

  3 passed (11.6s)



To open last HTML report run:



  npx playwright show-report



In [ ]:
# { . "$ScriptDir/../spiral/cli/build.ps1" } | Invoke-Block
In [ ]:
{ . "$ScriptDir/../apps/dice/build.ps1" } | Invoke-Block
Complexidade: Simple, Duração: Short    

Complexidade: Simple, Duração: Short    

Complexidade: Simple, Duração: Medium   

Complexidade: Moderate, Duração: Medium 

Complexidade: Complex, Duração: Long    

Complexidade: Complex, Duração: Long    

[02:22:07 INF] EXPECTO? Running tests... <Expecto>

[02:22:12 INF] EXPECTO! 7 tests run in 00:00:05.0028582 for FsCheck samples – 7 passed, 0 ignored, 0 failed, 0 errored. Success! <Expecto>



02:22:13 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:22:13 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:22:13 #3 [Debug] > pwd: C:\home\git\polyglot\apps\dice

02:22:13 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:22:13 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:22:13 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:22:14 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:22:14 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:22:14 #9 [Debug] > Server bound to: http://localhost:13805

02:22:14 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 Dice.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:22:16 #11 [Debug] >

02:22:17 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:17 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:17 #14 [Debug] > │ # Dice (Polyglot)                                                            │

02:22:17 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:17 #16 [Debug] >

02:22:17 #17 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:17 #18 [Debug] > #!import ../nbs/Testing.dib

02:22:17 #19 [Debug] >

02:22:17 #20 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:17 #21 [Debug] > #r

02:22:17 #22 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

02:22:17 #23 [Debug] > spNetCore.Html.Abstractions.dll"

02:22:17 #24 [Debug] > #r

02:22:17 #25 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:22:17 #26 [Debug] > otNet.Interactive.dll"

02:22:17 #27 [Debug] > #r

02:22:17 #28 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:22:17 #29 [Debug] > otNet.Interactive.FSharp.dll"

02:22:17 #30 [Debug] > #r

02:22:17 #31 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:22:17 #32 [Debug] > otNet.Interactive.Formatting.dll"

02:22:17 #33 [Debug] > open System

02:22:17 #34 [Debug] > open System.IO

02:22:17 #35 [Debug] > open System.Text

02:22:17 #36 [Debug] > open Microsoft.DotNet.Interactive.Formatting

02:22:20 #37 [Debug] >

02:22:20 #38 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:20 #39 [Debug] > #r

02:22:20 #40 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:22:20 #41 [Debug] > otNet.Interactive.FSharp.dll"

02:22:20 #42 [Debug] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

02:22:20 #43 [Debug] > #r

02:22:20 #44 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:22:20 #45 [Debug] > otNet.Interactive.dll"

02:22:20 #46 [Debug] > open type Microsoft.DotNet.Interactive.Kernel

02:22:20 #47 [Debug] >

02:22:20 #48 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:20 #49 [Debug] > #r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"

02:22:20 #50 [Debug] >

02:22:20 #51 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:20 #52 [Debug] > //// test

02:22:20 #53 [Debug] >

02:22:20 #54 [Debug] > Formatter.ListExpansionLimit <- 100

02:22:21 #55 [Debug] >

02:22:21 #56 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:21 #57 [Debug] > //// test

02:22:21 #58 [Debug] >

02:22:21 #59 [Debug] > type AssertExceptionFormatter (ex) =

02:22:21 #60 [Debug] >     member _.Text =

02:22:21 #61 [Debug] >         ex.ToString()

02:22:21 #62 [Debug] >             .Replace("32m", "<span style=\"color: green;\">")

02:22:21 #63 [Debug] >             .Replace("36m", "</span>")

02:22:21 #64 [Debug] >             .Replace("31m", "<span style=\"color: red;\">")

02:22:21 #65 [Debug] >             .Replace("\n", "<br/>\n")

02:22:21 #66 [Debug] >

02:22:21 #67 [Debug] >

02:22:21 #68 [Debug] > Formatter.Register<AssertExceptionFormatter> ((fun (x :

02:22:21 #69 [Debug] > AssertExceptionFormatter) -> x.Text), "text/html")

02:22:22 #70 [Debug] >

02:22:22 #71 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:22 #72 [Debug] > //// test

02:22:22 #73 [Debug] >

02:22:22 #74 [Debug] > let inline __expect fn log expected actual =

02:22:22 #75 [Debug] >     if log then printfn $"{actual.ToDisplayString ()}"

02:22:22 #76 [Debug] >     try

02:22:22 #77 [Debug] >         "Testing.__expect" |> fn actual expected

02:22:22 #78 [Debug] >     with :? Expecto.AssertException as ex ->

02:22:22 #79 [Debug] >         AssertExceptionFormatter(ex).Display () |> ignore

02:22:22 #80 [Debug] >         failwith (ex.GetType().FullName)

02:22:22 #81 [Debug] >

02:22:22 #82 [Debug] > let inline __contains log expected actual = __expect Expecto.Expect.contains log

02:22:22 #83 [Debug] > expected actual

02:22:22 #84 [Debug] > let inline _contains expected actual = __contains true expected actual

02:22:22 #85 [Debug] >

02:22:22 #86 [Debug] > let inline __equal log expected actual = __expect Expecto.Expect.equal log

02:22:22 #87 [Debug] > expected actual

02:22:22 #88 [Debug] > let inline _equal expected actual = __equal true expected actual

02:22:22 #89 [Debug] >

02:22:22 #90 [Debug] > let inline __isGreaterThan log expected actual = __expect

02:22:22 #91 [Debug] > Expecto.Expect.isGreaterThan log expected actual

02:22:22 #92 [Debug] > let ...

02:22:22 #93 [Debug] >

02:22:22 #94 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:22 #95 [Debug] > //// test

02:22:22 #96 [Debug] >

02:22:22 #97 [Debug] > let inline __isBetween log a b actual =

02:22:22 #98 [Debug] >     let inline isBetween actual (a, b) _ =

02:22:22 #99 [Debug] >         __isGreaterThanOrEqual log a actual

02:22:22 #100 [Debug] >         __isLessThanOrEqual log b actual

02:22:22 #101 [Debug] >     __expect isBetween log (a, b) actual

02:22:22 #102 [Debug] > let inline _isBetween a b actual = __isBetween true a b actual

02:22:22 #103 [Debug] >

02:22:22 #104 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:22 #105 [Debug] > #!import ../nbs/Common.fs

02:22:22 #106 [Debug] >

02:22:22 #107 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:22:22 #108 [Debug] > #if !INTERACTIVE

02:22:22 #109 [Debug] > namespace Polyglot

02:22:22 #110 [Debug] > #endif

02:22:22 #111 [Debug] >

02:22:22 #112 [Debug] > module Common =

02:22:22 #113 [Debug] >

02:22:22 #114 [Debug] >     let nl = System.Environment.NewLine

02:22:22 #115 [Debug] >     let q = @""""

02:22:22 #116 [Debug] >

02:22:22 #117 [Debug] >     let inline cons head tail = head :: tail

02:22:22 #118 [Debug] >

02:22:22 #119 [Debug] >     module String =

02:22:22 #120 [Debug] >         let inline contains (value : string) (input : string) =

02:22:22 #121 [Debug] >             input.Contains value

02:22:22 #122 [Debug] >

02:22:22 #123 [Debug] >         let inline endsWith (value : string) (input : string) =

02:22:22 #124 [Debug] >             input.EndsWith value

02:22:22 #125 [Debug] >

02:22:22 #126 [Debug] >         let inline padLeft totalWidth paddingChar (input : string) =

02:22:22 #127 [Debug] >             input.PadLeft (totalWidth, paddingChar)

02:22:22 #128 [Debug] >

02:22:22 #129 [Debug] >         let inline replace (oldValue : string) (newValue : string) (input :

02:22:22 #130 [Debug] > string) =

02:22:22 #131 [Debug] >             input.Replace (oldValue, newValue)

02:22:22 #132 [Debug] >

02:22:22 #133 [Debug] >         let inline split separator (input : string) =

02:22:22 #134 [Debug] >             input.Split separator

02:22:22 #135 [Debug] >

02:22:22 #136 [Debug] >         let inline spli...

02:22:23 #137 [Debug] >

02:22:23 #138 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:23 #139 [Debug] > open Common

02:22:23 #140 [Debug] >

02:22:23 #141 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:23 #142 [Debug] > // // test

02:22:23 #143 [Debug] >

02:22:23 #144 [Debug] > open testing

02:22:24 #145 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2410-1094-1f987a150246\main.spi

02:22:26 #146 [Debug] >

02:22:26 #147 [Debug] > ╭─[ 2.67s - stdout ]───────────────────────────────────────────────────────────╮

02:22:26 #148 [Debug] > │ ()                                                                           │

02:22:26 #149 [Debug] > │                                                                              │

02:22:26 #150 [Debug] > │                                                                              │

02:22:26 #151 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #152 [Debug] >

02:22:26 #153 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:26 #154 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:26 #155 [Debug] > │ ## sixthPowerSequence                                                        │

02:22:26 #156 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #157 [Debug] >

02:22:26 #158 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:26 #159 [Debug] > let sixthPowerSequence = 1 |> Seq.unfold (fun state -> Some (state, state * 6))

02:22:26 #160 [Debug] > |> Seq.cache

02:22:26 #161 [Debug] >

02:22:26 #162 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:26 #163 [Debug] > //// test

02:22:26 #164 [Debug] >

02:22:26 #165 [Debug] > sixthPowerSequence

02:22:26 #166 [Debug] > |> Seq.take 8

02:22:26 #167 [Debug] > |> Seq.toList

02:22:26 #168 [Debug] > |> _equal [[ 1; 6; 36; 216; 1296; 7776; 46656; 279936 ]]

02:22:26 #169 [Debug] >

02:22:26 #170 [Debug] > ╭─[ 73.26ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:26 #171 [Debug] > │ [ 1, 6, 36, 216, 1296, 7776, 46656, 279936 ]                                 │

02:22:26 #172 [Debug] > │                                                                              │

02:22:26 #173 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #174 [Debug] >

02:22:26 #175 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:26 #176 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:26 #177 [Debug] > │ ## sixth_power_sequence                                                      │

02:22:26 #178 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #179 [Debug] >

02:22:26 #180 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:26 #181 [Debug] > inl sixth_power_sequence () =

02:22:26 #182 [Debug] >     stream.iterate ((*) 6) 1i32

02:22:26 #183 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2627-2710-229de183cd0a\main.spi

02:22:26 #184 [Debug] >

02:22:26 #185 [Debug] > ╭─[ 225.94ms - stdout ]────────────────────────────────────────────────────────╮

02:22:26 #186 [Debug] > │ ()                                                                           │

02:22:26 #187 [Debug] > │                                                                              │

02:22:26 #188 [Debug] > │                                                                              │

02:22:26 #189 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #190 [Debug] >

02:22:26 #191 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:26 #192 [Debug] > // // test

02:22:26 #193 [Debug] >

02:22:26 #194 [Debug] > sixth_power_sequence ()

02:22:26 #195 [Debug] > |> stream.take_while (fun _ i => i <= 7i32)

02:22:26 #196 [Debug] > |> stream.to_list

02:22:26 #197 [Debug] > |> _equal [[ 1i32; 6; 36; 216; 1296; 7776; 46656; 279936 ]]

02:22:26 #198 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2649-4976-4b4cb7ea36f1\main.spi

02:22:26 #199 [Debug] >

02:22:26 #200 [Debug] > ╭─[ 339.18ms - stdout ]────────────────────────────────────────────────────────╮

02:22:26 #201 [Debug] > │ type UH0 =                                                                   │

02:22:26 #202 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:26 #203 [Debug] > │     | UH0_1                                                                  │

02:22:26 #204 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:26 #205 [Debug] > │     let v63 : UH0 = UH0_1                                                    │

02:22:26 #206 [Debug] > │     let v64 : UH0 = UH0_0(279936, v63)                                       │

02:22:26 #207 [Debug] > │     let v65 : UH0 = UH0_0(46656, v64)                                        │

02:22:26 #208 [Debug] > │     let v66 : UH0 = UH0_0(7776, v65)                                         │

02:22:26 #209 [Debug] > │     let v67 : UH0 = UH0_0(1296, v66)                                         │

02:22:26 #210 [Debug] > │     let v68 : UH0 = UH0_0(216, v67)                                          │

02:22:26 #211 [Debug] > │     let v69 : UH0 = UH0_0(36, v68)                                           │

02:22:26 #212 [Debug] > │     let v70 : UH0 = UH0_0(6, v69)                                            │

02:22:26 #213 [Debug] > │     let v71 : UH0 = UH0_0(1, v70)                                            │

02:22:26 #214 [Debug] > │     let v72 : UH0 = UH0_1                                                    │

02:22:26 #215 [Debug] > │     let v73 : UH0 = UH0_0(279936, v72)                                       │

02:22:26 #216 [Debug] > │     let v74 : UH0 = UH0_0(46656, v73)                                        │

02:22:26 #217 [Debug] > │     let v75 : UH0 = UH0_0(7776, v74)                                         │

02:22:26 #218 [Debug] > │     let v76 : UH0 = UH0_0(1296, v75)                                         │

02:22:26 #219 [Debug] > │     let v77 : UH0 = UH0_0(216, v76)                                          │

02:22:26 #220 [Debug] > │     let v78 : UH0 = UH0_0(36, v77)                                           │

02:22:26 #221 [Debug] > │     let v79 : UH0 = UH0_0(6, v78)                                            │

02:22:26 #222 [Debug] > │     let v80 : UH0 = UH0_0(1, v79)                                            │

02:22:26 #223 [Debug] > │     let v81 : string = $"_equal / actual: %A{v71} / expected: %A{v80}"       │

02:22:26 #224 [Debug] > │     ()                                                                       │

02:22:26 #225 [Debug] > │ method0()                                                                    │

02:22:26 #226 [Debug] > │                                                                              │

02:22:26 #227 [Debug] > │                                                                              │

02:22:26 #228 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #229 [Debug] >

02:22:26 #230 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:26 #231 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:26 #232 [Debug] > │ ## accumulateDiceRolls                                                       │

02:22:26 #233 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #234 [Debug] >

02:22:26 #235 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:26 #236 [Debug] > let rec accumulateDiceRolls log rolls power acc =

02:22:26 #237 [Debug] >     match rolls with

02:22:26 #238 [Debug] >     | _ when power < 0 ->

02:22:26 #239 [Debug] >         log |> Option.iter ((|>) $"accumulateDiceRolls / power: {power} / acc:

02:22:26 #240 [Debug] > {acc}")

02:22:26 #241 [Debug] >         Some (acc + 1, rolls)

02:22:26 #242 [Debug] >     | [[]] -> None

02:22:26 #243 [Debug] >     | roll :: rest when roll > 1 ->

02:22:26 #244 [Debug] >         let coeff = sixthPowerSequence |> Seq.item power

02:22:26 #245 [Debug] >         let value = (roll - 1) * coeff

02:22:26 #246 [Debug] >         log |> Option.iter ((|>) $"accumulateDiceRolls / \

02:22:26 #247 [Debug] >             power: {power} / acc: {acc} / roll: {roll} / value: {value}"

02:22:26 #248 [Debug] >         )

02:22:26 #249 [Debug] >         accumulateDiceRolls log rest (power - 1) (acc + value)

02:22:26 #250 [Debug] >     | roll :: rest ->

02:22:26 #251 [Debug] >         log |> Option.iter ((|>) $"accumulateDiceRolls / power: {power} / acc:

02:22:26 #252 [Debug] > {acc} / roll: {roll}")

02:22:26 #253 [Debug] >         accumulateDiceRolls log rest (power - 1) acc

02:22:26 #254 [Debug] >

02:22:26 #255 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:26 #256 [Debug] > //// test

02:22:26 #257 [Debug] >

02:22:26 #258 [Debug] > accumulateDiceRolls (Some (printfn "%s")) [[ 6; 5; 4; 3; 2 ]] 0 1000

02:22:26 #259 [Debug] > |> _equal (Some (1006, [[ 5; 4; 3; 2 ]]))

02:22:26 #260 [Debug] >

02:22:26 #261 [Debug] > ╭─[ 44.68ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:26 #262 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 1000 / roll: 6 / value: 5              │

02:22:26 #263 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 1005                                  │

02:22:26 #264 [Debug] > │ FSharpOption<Tuple<Int32,FSharpList<Int32>>>                                 │

02:22:26 #265 [Debug] > │       Value:       - 1006                                                    │

02:22:26 #266 [Debug] > │       - [ 5, 4, 3, 2 ]                                                       │

02:22:26 #267 [Debug] > │                                                                              │

02:22:26 #268 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:26 #269 [Debug] >

02:22:26 #270 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:26 #271 [Debug] > //// test

02:22:26 #272 [Debug] >

02:22:26 #273 [Debug] > accumulateDiceRolls (Some (printfn "%s")) [[ 6; 5; 4; 3; 2 ]] 1 1000

02:22:26 #274 [Debug] > |> _equal (Some (1035, [[ 4; 3; 2 ]]))

02:22:27 #275 [Debug] >

02:22:27 #276 [Debug] > ╭─[ 40.00ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:27 #277 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 1000 / roll: 6 / value: 30             │

02:22:27 #278 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 1030 / roll: 5 / value: 4              │

02:22:27 #279 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 1034                                  │

02:22:27 #280 [Debug] > │ FSharpOption<Tuple<Int32,FSharpList<Int32>>>                                 │

02:22:27 #281 [Debug] > │       Value:       - 1035                                                    │

02:22:27 #282 [Debug] > │       - [ 4, 3, 2 ]                                                          │

02:22:27 #283 [Debug] > │                                                                              │

02:22:27 #284 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:27 #285 [Debug] >

02:22:27 #286 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:27 #287 [Debug] > //// test

02:22:27 #288 [Debug] >

02:22:27 #289 [Debug] > accumulateDiceRolls (Some (printfn "%s")) [[ 6; 5; 4; 3; 2 ]] 2 1000

02:22:27 #290 [Debug] > |> _equal (Some (1208, [[ 3; 2 ]]))

02:22:27 #291 [Debug] >

02:22:27 #292 [Debug] > ╭─[ 29.24ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:27 #293 [Debug] > │ accumulateDiceRolls / power: 2 / acc: 1000 / roll: 6 / value: 180            │

02:22:27 #294 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 1180 / roll: 5 / value: 24             │

02:22:27 #295 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 1204 / roll: 4 / value: 3              │

02:22:27 #296 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 1207                                  │

02:22:27 #297 [Debug] > │ FSharpOption<Tuple<Int32,FSharpList<Int32>>>                                 │

02:22:27 #298 [Debug] > │       Value:       - 1208                                                    │

02:22:27 #299 [Debug] > │       - [ 3, 2 ]                                                             │

02:22:27 #300 [Debug] > │                                                                              │

02:22:27 #301 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:27 #302 [Debug] >

02:22:27 #303 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:27 #304 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:27 #305 [Debug] > │ ## accumulate_dice_rolls                                                     │

02:22:27 #306 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:27 #307 [Debug] >

02:22:27 #308 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:27 #309 [Debug] > inl accumulate_dice_rolls (log : option (string -> ())) rolls power acc =

02:22:27 #310 [Debug] >     inl rec body acc power rolls =

02:22:27 #311 [Debug] >         match rolls with

02:22:27 #312 [Debug] >         | _ when power < 0 =>

02:22:27 #313 [Debug] >             log |> optionm'.iter ((|>) $"$\"accumulate_dice_rolls / power:

02:22:27 #314 [Debug] > {!power} / acc: {!acc}\"")

02:22:27 #315 [Debug] >             Some (acc + 1, rolls)

02:22:27 #316 [Debug] >         | [[]] => None

02:22:27 #317 [Debug] >         | roll :: rest when roll > 1 =>

02:22:27 #318 [Debug] >             inl coeff = sixth_power_sequence () |> stream.item power

02:22:27 #319 [Debug] >             inl value = (roll - 1) * coeff

02:22:27 #320 [Debug] >             log |> optionm'.iter ((|>) $"$\"accumulate_dice_rolls / power:

02:22:27 #321 [Debug] > {!power} / acc: {!acc} / roll: {!roll} / value: {!value}\""

02:22:27 #322 [Debug] >             )

02:22:27 #323 [Debug] >             loop (acc + value) (power - 1) rest

02:22:27 #324 [Debug] >         | roll :: rest =>

02:22:27 #325 [Debug] >             log |> optionm'.iter ((|>) $"$\"accumulate_dice_rolls / power:

02:22:27 #326 [Debug] > {!power} / acc: {!acc} / roll: {!roll}\"")

02:22:27 #327 [Debug] >             loop acc (power - 1) rest

02:22:27 #328 [Debug] >     and inl loop acc power rolls =

02:22:27 #329 [Debug] >         if var_is rolls |> not

02:22:27 #330 [Debug] >         then body acc power rolls

02:22:27 #331 [Debug] >         else

02:22:27 #332 [Debug] >             inl acc = dyn acc

02:22:27 #333 [Debug] >             join body acc power rolls

02:22:27 #334 [Debug] >     loop acc power rolls

02:22:27 #335 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2707-0709-07dccc22f4b6\main.spi

02:22:27 #336 [Debug] >

02:22:27 #337 [Debug] > ╭─[ 199.63ms - stdout ]────────────────────────────────────────────────────────╮

02:22:27 #338 [Debug] > │ ()                                                                           │

02:22:27 #339 [Debug] > │                                                                              │

02:22:27 #340 [Debug] > │                                                                              │

02:22:27 #341 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:27 #342 [Debug] >

02:22:27 #343 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:27 #344 [Debug] > // // test

02:22:27 #345 [Debug] >

02:22:27 #346 [Debug] > accumulate_dice_rolls (Some console.write_line) [[ 6; 5; 4; 3; 2 ]] 0i32 1000

02:22:27 #347 [Debug] > |> _equal (Some (1006, [[ 5; 4; 3; 2 ]]))

02:22:27 #348 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2727-2709-2db18d6df6c4\main.spi

02:22:27 #349 [Debug] >

02:22:27 #350 [Debug] > ╭─[ 330.37ms - stdout ]────────────────────────────────────────────────────────╮

02:22:27 #351 [Debug] > │ type UH0 =                                                                   │

02:22:27 #352 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:27 #353 [Debug] > │     | UH0_1                                                                  │

02:22:27 #354 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:27 #355 [Debug] > │     | US0_0                                                                  │

02:22:27 #356 [Debug] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

02:22:27 #357 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:27 #358 [Debug] > │     let v0 : string = $"accumulate_dice_rolls / power: {0} / acc: {1000} /   │

02:22:27 #359 [Debug] > │ roll: {6} / value: {5}"                                                      │

02:22:27 #360 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:27 #361 [Debug] > │     let v1 : string = $"accumulate_dice_rolls / power: {-1} / acc: {1005}"   │

02:22:27 #362 [Debug] > │     System.Console.WriteLine v1                                              │

02:22:27 #363 [Debug] > │     let v35 : UH0 = UH0_1                                                    │

02:22:27 #364 [Debug] > │     let v36 : UH0 = UH0_0(2, v35)                                            │

02:22:27 #365 [Debug] > │     let v37 : UH0 = UH0_0(3, v36)                                            │

02:22:27 #366 [Debug] > │     let v38 : UH0 = UH0_0(4, v37)                                            │

02:22:27 #367 [Debug] > │     let v39 : UH0 = UH0_0(5, v38)                                            │

02:22:27 #368 [Debug] > │     let v40 : US0 = US0_1(1006, v39)                                         │

02:22:27 #369 [Debug] > │     let v41 : UH0 = UH0_1                                                    │

02:22:27 #370 [Debug] > │     let v42 : UH0 = UH0_0(2, v41)                                            │

02:22:27 #371 [Debug] > │     let v43 : UH0 = UH0_0(3, v42)                                            │

02:22:27 #372 [Debug] > │     let v44 : UH0 = UH0_0(4, v43)                                            │

02:22:27 #373 [Debug] > │     let v45 : UH0 = UH0_0(5, v44)                                            │

02:22:27 #374 [Debug] > │     let v46 : US0 = US0_1(1006, v45)                                         │

02:22:27 #375 [Debug] > │     let v47 : string = $"_equal / actual: %A{v40} / expected: %A{v46}"       │

02:22:27 #376 [Debug] > │     ()                                                                       │

02:22:27 #377 [Debug] > │ method0()                                                                    │

02:22:27 #378 [Debug] > │                                                                              │

02:22:27 #379 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 1000 / roll: 6 / value: 5            │

02:22:27 #380 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 1005                                │

02:22:27 #381 [Debug] > │                                                                              │

02:22:27 #382 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:27 #383 [Debug] >

02:22:27 #384 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:27 #385 [Debug] > // // test

02:22:27 #386 [Debug] >

02:22:27 #387 [Debug] > accumulate_dice_rolls (Some console.write_line) [[ 6; 5; 4; 3; 2 ]] 1i32 1000

02:22:27 #388 [Debug] > |> _equal (Some (1035, [[ 4; 3; 2 ]]))

02:22:27 #389 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2761-6152-6f898d6cc62d\main.spi

02:22:27 #390 [Debug] >

02:22:27 #391 [Debug] > ╭─[ 291.35ms - stdout ]────────────────────────────────────────────────────────╮

02:22:27 #392 [Debug] > │ type UH0 =                                                                   │

02:22:27 #393 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:27 #394 [Debug] > │     | UH0_1                                                                  │

02:22:27 #395 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:27 #396 [Debug] > │     | US0_0                                                                  │

02:22:27 #397 [Debug] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

02:22:27 #398 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:27 #399 [Debug] > │     let v0 : string = $"accumulate_dice_rolls / power: {1} / acc: {1000} /   │

02:22:27 #400 [Debug] > │ roll: {6} / value: {30}"                                                     │

02:22:27 #401 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:27 #402 [Debug] > │     let v1 : string = $"accumulate_dice_rolls / power: {0} / acc: {1030} /   │

02:22:27 #403 [Debug] > │ roll: {5} / value: {4}"                                                      │

02:22:27 #404 [Debug] > │     System.Console.WriteLine v1                                              │

02:22:27 #405 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1} / acc: {1034}"   │

02:22:27 #406 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:27 #407 [Debug] > │     let v28 : UH0 = UH0_1                                                    │

02:22:27 #408 [Debug] > │     let v29 : UH0 = UH0_0(2, v28)                                            │

02:22:27 #409 [Debug] > │     let v30 : UH0 = UH0_0(3, v29)                                            │

02:22:27 #410 [Debug] > │     let v31 : UH0 = UH0_0(4, v30)                                            │

02:22:27 #411 [Debug] > │     let v32 : US0 = US0_1(1035, v31)                                         │

02:22:27 #412 [Debug] > │     let v33 : UH0 = UH0_1                                                    │

02:22:27 #413 [Debug] > │     let v34 : UH0 = UH0_0(2, v33)                                            │

02:22:27 #414 [Debug] > │     let v35 : UH0 = UH0_0(3, v34)                                            │

02:22:27 #415 [Debug] > │     let v36 : UH0 = UH0_0(4, v35)                                            │

02:22:27 #416 [Debug] > │     let v37 : US0 = US0_1(1035, v36)                                         │

02:22:27 #417 [Debug] > │     let v38 : string = $"_equal / actual: %A{v32} / expected: %A{v37}"       │

02:22:27 #418 [Debug] > │     ()                                                                       │

02:22:27 #419 [Debug] > │ method0()                                                                    │

02:22:27 #420 [Debug] > │                                                                              │

02:22:27 #421 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 1000 / roll: 6 / value: 30           │

02:22:27 #422 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 1030 / roll: 5 / value: 4            │

02:22:27 #423 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 1034                                │

02:22:27 #424 [Debug] > │                                                                              │

02:22:27 #425 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:27 #426 [Debug] >

02:22:27 #427 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:27 #428 [Debug] > // // test

02:22:27 #429 [Debug] >

02:22:27 #430 [Debug] > accumulate_dice_rolls (Some console.write_line) [[ 6; 5; 4; 3; 2 ]] 2i32 1000

02:22:27 #431 [Debug] > |> _equal (Some (1208, [[ 3; 2 ]]))

02:22:28 #432 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2792-9276-931bb7237fcf\main.spi

02:22:28 #433 [Debug] >

02:22:28 #434 [Debug] > ╭─[ 407.11ms - stdout ]────────────────────────────────────────────────────────╮

02:22:28 #435 [Debug] > │ type UH0 =                                                                   │

02:22:28 #436 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:28 #437 [Debug] > │     | UH0_1                                                                  │

02:22:28 #438 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:28 #439 [Debug] > │     | US0_0                                                                  │

02:22:28 #440 [Debug] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

02:22:28 #441 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:28 #442 [Debug] > │     let v0 : string = $"accumulate_dice_rolls / power: {2} / acc: {1000} /   │

02:22:28 #443 [Debug] > │ roll: {6} / value: {180}"                                                    │

02:22:28 #444 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:28 #445 [Debug] > │     let v1 : string = $"accumulate_dice_rolls / power: {1} / acc: {1180} /   │

02:22:28 #446 [Debug] > │ roll: {5} / value: {24}"                                                     │

02:22:28 #447 [Debug] > │     System.Console.WriteLine v1                                              │

02:22:28 #448 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {0} / acc: {1204} /   │

02:22:28 #449 [Debug] > │ roll: {4} / value: {3}"                                                      │

02:22:28 #450 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:28 #451 [Debug] > │     let v3 : string = $"accumulate_dice_rolls / power: {-1} / acc: {1207}"   │

02:22:28 #452 [Debug] > │     System.Console.WriteLine v3                                              │

02:22:28 #453 [Debug] > │     let v22 : UH0 = UH0_1                                                    │

02:22:28 #454 [Debug] > │     let v23 : UH0 = UH0_0(2, v22)                                            │

02:22:28 #455 [Debug] > │     let v24 : UH0 = UH0_0(3, v23)                                            │

02:22:28 #456 [Debug] > │     let v25 : US0 = US0_1(1208, v24)                                         │

02:22:28 #457 [Debug] > │     let v26 : UH0 = UH0_1                                                    │

02:22:28 #458 [Debug] > │     let v27 : UH0 = UH0_0(2, v26)                                            │

02:22:28 #459 [Debug] > │     let v28 : UH0 = UH0_0(3, v27)                                            │

02:22:28 #460 [Debug] > │     let v29 : US0 = US0_1(1208, v28)                                         │

02:22:28 #461 [Debug] > │     let v30 : string = $"_equal / actual: %A{v25} / expected: %A{v29}"       │

02:22:28 #462 [Debug] > │     ()                                                                       │

02:22:28 #463 [Debug] > │ method0()                                                                    │

02:22:28 #464 [Debug] > │                                                                              │

02:22:28 #465 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 1000 / roll: 6 / value: 180          │

02:22:28 #466 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 1180 / roll: 5 / value: 24           │

02:22:28 #467 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 1204 / roll: 4 / value: 3            │

02:22:28 #468 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 1207                                │

02:22:28 #469 [Debug] > │                                                                              │

02:22:28 #470 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #471 [Debug] >

02:22:28 #472 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:28 #473 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:28 #474 [Debug] > │ ## rollWithinBounds                                                          │

02:22:28 #475 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #476 [Debug] >

02:22:28 #477 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:28 #478 [Debug] > let rollWithinBounds log max rolls =

02:22:28 #479 [Debug] >     let power = List.length rolls - 1

02:22:28 #480 [Debug] >     match accumulateDiceRolls log rolls power 0 with

02:22:28 #481 [Debug] >     | Some (result, _) when result >= 1 && result <= max -> Some result

02:22:28 #482 [Debug] >     | _ -> None

02:22:28 #483 [Debug] >

02:22:28 #484 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:28 #485 [Debug] > //// test

02:22:28 #486 [Debug] >

02:22:28 #487 [Debug] > rollWithinBounds (Some (printfn "%s")) 2000 [[ 1; 5; 4; 4; 5 ]]

02:22:28 #488 [Debug] > |> _equal (Some 995)

02:22:28 #489 [Debug] >

02:22:28 #490 [Debug] > ╭─[ 30.92ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:28 #491 [Debug] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 1                            │

02:22:28 #492 [Debug] > │ accumulateDiceRolls / power: 3 / acc: 0 / roll: 5 / value: 864               │

02:22:28 #493 [Debug] > │ accumulateDiceRolls / power: 2 / acc: 864 / roll: 4 / value: 108             │

02:22:28 #494 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 972 / roll: 4 / value: 18              │

02:22:28 #495 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 990 / roll: 5 / value: 4               │

02:22:28 #496 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 994                                   │

02:22:28 #497 [Debug] > │ FSharpOption<Int32>                                                          │

02:22:28 #498 [Debug] > │       Value: 995                                                             │

02:22:28 #499 [Debug] > │                                                                              │

02:22:28 #500 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #501 [Debug] >

02:22:28 #502 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:28 #503 [Debug] > //// test

02:22:28 #504 [Debug] >

02:22:28 #505 [Debug] > rollWithinBounds (Some (printfn "%s")) 2000 [[ 2; 2; 6; 4; 5 ]]

02:22:28 #506 [Debug] > |> _equal (Some 1715)

02:22:28 #507 [Debug] >

02:22:28 #508 [Debug] > ╭─[ 23.48ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:28 #509 [Debug] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 2 / value: 1296              │

02:22:28 #510 [Debug] > │ accumulateDiceRolls / power: 3 / acc: 1296 / roll: 2 / value: 216            │

02:22:28 #511 [Debug] > │ accumulateDiceRolls / power: 2 / acc: 1512 / roll: 6 / value: 180            │

02:22:28 #512 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 1692 / roll: 4 / value: 18             │

02:22:28 #513 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 1710 / roll: 5 / value: 4              │

02:22:28 #514 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 1714                                  │

02:22:28 #515 [Debug] > │ FSharpOption<Int32>                                                          │

02:22:28 #516 [Debug] > │       Value: 1715                                                            │

02:22:28 #517 [Debug] > │                                                                              │

02:22:28 #518 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #519 [Debug] >

02:22:28 #520 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:28 #521 [Debug] > //// test

02:22:28 #522 [Debug] >

02:22:28 #523 [Debug] > rollWithinBounds (Some (printfn "%s")) 2000 [[ 4; 1; 1; 2; 3 ]]

02:22:28 #524 [Debug] > |> _equal None

02:22:28 #525 [Debug] >

02:22:28 #526 [Debug] > ╭─[ 22.64ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:28 #527 [Debug] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 4 / value: 3888              │

02:22:28 #528 [Debug] > │ accumulateDiceRolls / power: 3 / acc: 3888 / roll: 1                         │

02:22:28 #529 [Debug] > │ accumulateDiceRolls / power: 2 / acc: 3888 / roll: 1                         │

02:22:28 #530 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 3888 / roll: 2 / value: 6              │

02:22:28 #531 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 3894 / roll: 3 / value: 2              │

02:22:28 #532 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 3896                                  │

02:22:28 #533 [Debug] > │ <null>                                                                       │

02:22:28 #534 [Debug] > │                                                                              │

02:22:28 #535 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #536 [Debug] >

02:22:28 #537 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:28 #538 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:28 #539 [Debug] > │ ## roll_within_bounds                                                        │

02:22:28 #540 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #541 [Debug] >

02:22:28 #542 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:28 #543 [Debug] > inl roll_within_bounds (log : option (string -> ())) max rolls =

02:22:28 #544 [Debug] >     inl power = listm.length rolls - 1i32

02:22:28 #545 [Debug] >     match accumulate_dice_rolls log rolls power 0 with

02:22:28 #546 [Debug] >     | Some (result, _) when result >= 1 && result <= max => Some result

02:22:28 #547 [Debug] >     | _ => None

02:22:28 #548 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2847-4702-4c475bad5123\main.spi

02:22:28 #549 [Debug] >

02:22:28 #550 [Debug] > ╭─[ 172.38ms - stdout ]────────────────────────────────────────────────────────╮

02:22:28 #551 [Debug] > │ ()                                                                           │

02:22:28 #552 [Debug] > │                                                                              │

02:22:28 #553 [Debug] > │                                                                              │

02:22:28 #554 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #555 [Debug] >

02:22:28 #556 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:28 #557 [Debug] > // // test

02:22:28 #558 [Debug] >

02:22:28 #559 [Debug] > roll_within_bounds (Some console.write_line) 2000 [[ 1; 5; 4; 4; 5 ]]

02:22:28 #560 [Debug] > |> _equal (Some 995)

02:22:28 #561 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2864-6450-60587f6083cf\main.spi

02:22:28 #562 [Debug] >

02:22:28 #563 [Debug] > ╭─[ 264.42ms - stdout ]────────────────────────────────────────────────────────╮

02:22:28 #564 [Debug] > │ type [<Struct>] US0 =                                                        │

02:22:28 #565 [Debug] > │     | US0_0                                                                  │

02:22:28 #566 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:22:28 #567 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:28 #568 [Debug] > │     let v0 : string = $"accumulate_dice_rolls / power: {4} / acc: {0} /      │

02:22:28 #569 [Debug] > │ roll: {1}"                                                                   │

02:22:28 #570 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:28 #571 [Debug] > │     let v1 : string = $"accumulate_dice_rolls / power: {3} / acc: {0} /      │

02:22:28 #572 [Debug] > │ roll: {5} / value: {864}"                                                    │

02:22:28 #573 [Debug] > │     System.Console.WriteLine v1                                              │

02:22:28 #574 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {2} / acc: {864} /    │

02:22:28 #575 [Debug] > │ roll: {4} / value: {108}"                                                    │

02:22:28 #576 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:28 #577 [Debug] > │     let v3 : string = $"accumulate_dice_rolls / power: {1} / acc: {972} /    │

02:22:28 #578 [Debug] > │ roll: {4} / value: {18}"                                                     │

02:22:28 #579 [Debug] > │     System.Console.WriteLine v3                                              │

02:22:28 #580 [Debug] > │     let v4 : string = $"accumulate_dice_rolls / power: {0} / acc: {990} /    │

02:22:28 #581 [Debug] > │ roll: {5} / value: {4}"                                                      │

02:22:28 #582 [Debug] > │     System.Console.WriteLine v4                                              │

02:22:28 #583 [Debug] > │     let v5 : string = $"accumulate_dice_rolls / power: {-1} / acc: {994}"    │

02:22:28 #584 [Debug] > │     System.Console.WriteLine v5                                              │

02:22:28 #585 [Debug] > │     let v9 : US0 = US0_1(995)                                                │

02:22:28 #586 [Debug] > │     let v10 : US0 = US0_1(995)                                               │

02:22:28 #587 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{v10}"        │

02:22:28 #588 [Debug] > │     ()                                                                       │

02:22:28 #589 [Debug] > │ method0()                                                                    │

02:22:28 #590 [Debug] > │                                                                              │

02:22:28 #591 [Debug] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 1                          │

02:22:28 #592 [Debug] > │ accumulate_dice_rolls / power: 3 / acc: 0 / roll: 5 / value: 864             │

02:22:28 #593 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 864 / roll: 4 / value: 108           │

02:22:28 #594 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 972 / roll: 4 / value: 18            │

02:22:28 #595 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 990 / roll: 5 / value: 4             │

02:22:28 #596 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 994                                 │

02:22:28 #597 [Debug] > │                                                                              │

02:22:28 #598 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:28 #599 [Debug] >

02:22:28 #600 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:28 #601 [Debug] > // // test

02:22:28 #602 [Debug] >

02:22:28 #603 [Debug] > roll_within_bounds (Some console.write_line) 2000 [[ 2; 2; 6; 4; 5 ]]

02:22:28 #604 [Debug] > |> _equal (Some 1715)

02:22:29 #605 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2893-9301-9caedd77be00\main.spi

02:22:29 #606 [Debug] >

02:22:29 #607 [Debug] > ╭─[ 263.57ms - stdout ]────────────────────────────────────────────────────────╮

02:22:29 #608 [Debug] > │ type [<Struct>] US0 =                                                        │

02:22:29 #609 [Debug] > │     | US0_0                                                                  │

02:22:29 #610 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:22:29 #611 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:29 #612 [Debug] > │     let v0 : string = $"accumulate_dice_rolls / power: {4} / acc: {0} /      │

02:22:29 #613 [Debug] > │ roll: {2} / value: {1296}"                                                   │

02:22:29 #614 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:29 #615 [Debug] > │     let v1 : string = $"accumulate_dice_rolls / power: {3} / acc: {1296} /   │

02:22:29 #616 [Debug] > │ roll: {2} / value: {216}"                                                    │

02:22:29 #617 [Debug] > │     System.Console.WriteLine v1                                              │

02:22:29 #618 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {2} / acc: {1512} /   │

02:22:29 #619 [Debug] > │ roll: {6} / value: {180}"                                                    │

02:22:29 #620 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:29 #621 [Debug] > │     let v3 : string = $"accumulate_dice_rolls / power: {1} / acc: {1692} /   │

02:22:29 #622 [Debug] > │ roll: {4} / value: {18}"                                                     │

02:22:29 #623 [Debug] > │     System.Console.WriteLine v3                                              │

02:22:29 #624 [Debug] > │     let v4 : string = $"accumulate_dice_rolls / power: {0} / acc: {1710} /   │

02:22:29 #625 [Debug] > │ roll: {5} / value: {4}"                                                      │

02:22:29 #626 [Debug] > │     System.Console.WriteLine v4                                              │

02:22:29 #627 [Debug] > │     let v5 : string = $"accumulate_dice_rolls / power: {-1} / acc: {1714}"   │

02:22:29 #628 [Debug] > │     System.Console.WriteLine v5                                              │

02:22:29 #629 [Debug] > │     let v9 : US0 = US0_1(1715)                                               │

02:22:29 #630 [Debug] > │     let v10 : US0 = US0_1(1715)                                              │

02:22:29 #631 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{v10}"        │

02:22:29 #632 [Debug] > │     ()                                                                       │

02:22:29 #633 [Debug] > │ method0()                                                                    │

02:22:29 #634 [Debug] > │                                                                              │

02:22:29 #635 [Debug] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296            │

02:22:29 #636 [Debug] > │ accumulate_dice_rolls / power: 3 / acc: 1296 / roll: 2 / value: 216          │

02:22:29 #637 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 1512 / roll: 6 / value: 180          │

02:22:29 #638 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 1692 / roll: 4 / value: 18           │

02:22:29 #639 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 1710 / roll: 5 / value: 4            │

02:22:29 #640 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 1714                                │

02:22:29 #641 [Debug] > │                                                                              │

02:22:29 #642 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #643 [Debug] >

02:22:29 #644 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:29 #645 [Debug] > // // test

02:22:29 #646 [Debug] >

02:22:29 #647 [Debug] > roll_within_bounds (Some console.write_line) 2000 [[ 4; 1; 1; 2; 3 ]]

02:22:29 #648 [Debug] > |> _equal None

02:22:29 #649 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2920-2059-2213cee226f2\main.spi

02:22:29 #650 [Debug] >

02:22:29 #651 [Debug] > ╭─[ 248.39ms - stdout ]────────────────────────────────────────────────────────╮

02:22:29 #652 [Debug] > │ type [<Struct>] US0 =                                                        │

02:22:29 #653 [Debug] > │     | US0_0                                                                  │

02:22:29 #654 [Debug] > │     | US0_1 of f1_0 : int32                                                  │

02:22:29 #655 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:29 #656 [Debug] > │     let v0 : string = $"accumulate_dice_rolls / power: {4} / acc: {0} /      │

02:22:29 #657 [Debug] > │ roll: {4} / value: {3888}"                                                   │

02:22:29 #658 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:29 #659 [Debug] > │     let v1 : string = $"accumulate_dice_rolls / power: {3} / acc: {3888} /   │

02:22:29 #660 [Debug] > │ roll: {1}"                                                                   │

02:22:29 #661 [Debug] > │     System.Console.WriteLine v1                                              │

02:22:29 #662 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {2} / acc: {3888} /   │

02:22:29 #663 [Debug] > │ roll: {1}"                                                                   │

02:22:29 #664 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:29 #665 [Debug] > │     let v3 : string = $"accumulate_dice_rolls / power: {1} / acc: {3888} /   │

02:22:29 #666 [Debug] > │ roll: {2} / value: {6}"                                                      │

02:22:29 #667 [Debug] > │     System.Console.WriteLine v3                                              │

02:22:29 #668 [Debug] > │     let v4 : string = $"accumulate_dice_rolls / power: {0} / acc: {3894} /   │

02:22:29 #669 [Debug] > │ roll: {3} / value: {2}"                                                      │

02:22:29 #670 [Debug] > │     System.Console.WriteLine v4                                              │

02:22:29 #671 [Debug] > │     let v5 : string = $"accumulate_dice_rolls / power: {-1} / acc: {3896}"   │

02:22:29 #672 [Debug] > │     System.Console.WriteLine v5                                              │

02:22:29 #673 [Debug] > │     let v9 : US0 = US0_0                                                     │

02:22:29 #674 [Debug] > │     let v10 : US0 = US0_0                                                    │

02:22:29 #675 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{v10}"        │

02:22:29 #676 [Debug] > │     ()                                                                       │

02:22:29 #677 [Debug] > │ method0()                                                                    │

02:22:29 #678 [Debug] > │                                                                              │

02:22:29 #679 [Debug] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 4 / value: 3888            │

02:22:29 #680 [Debug] > │ accumulate_dice_rolls / power: 3 / acc: 3888 / roll: 1                       │

02:22:29 #681 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 3888 / roll: 1                       │

02:22:29 #682 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 3888 / roll: 2 / value: 6            │

02:22:29 #683 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 3894 / roll: 3 / value: 2            │

02:22:29 #684 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 3896                                │

02:22:29 #685 [Debug] > │                                                                              │

02:22:29 #686 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #687 [Debug] >

02:22:29 #688 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:29 #689 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:29 #690 [Debug] > │ ## calculateDiceCount                                                        │

02:22:29 #691 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #692 [Debug] >

02:22:29 #693 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:29 #694 [Debug] > let inline calculateDiceCount log max =

02:22:29 #695 [Debug] >     let rec loop n p =

02:22:29 #696 [Debug] >         if p < max

02:22:29 #697 [Debug] >         then loop (n + 1) (p * 6)

02:22:29 #698 [Debug] >         else

02:22:29 #699 [Debug] >             log |> Option.iter ((|>) $"calculateDiceCount / max: {max} / n: {n}

02:22:29 #700 [Debug] > / p: {p}")

02:22:29 #701 [Debug] >             n

02:22:29 #702 [Debug] >     if max = 1

02:22:29 #703 [Debug] >     then 1

02:22:29 #704 [Debug] >     else loop 0 1

02:22:29 #705 [Debug] >

02:22:29 #706 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:29 #707 [Debug] > //// test

02:22:29 #708 [Debug] >

02:22:29 #709 [Debug] > calculateDiceCount (Some (printfn "%s")) 36

02:22:29 #710 [Debug] > |> _equal 2

02:22:29 #711 [Debug] >

02:22:29 #712 [Debug] > ╭─[ 28.61ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:29 #713 [Debug] > │ calculateDiceCount / max: 36 / n: 2 / p: 36                                  │

02:22:29 #714 [Debug] > │ 2                                                                            │

02:22:29 #715 [Debug] > │                                                                              │

02:22:29 #716 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #717 [Debug] >

02:22:29 #718 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:29 #719 [Debug] > //// test

02:22:29 #720 [Debug] >

02:22:29 #721 [Debug] > calculateDiceCount (Some (printfn "%s")) 7777

02:22:29 #722 [Debug] > |> _equal 6

02:22:29 #723 [Debug] >

02:22:29 #724 [Debug] > ╭─[ 26.41ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:29 #725 [Debug] > │ calculateDiceCount / max: 7777 / n: 6 / p: 46656                             │

02:22:29 #726 [Debug] > │ 6                                                                            │

02:22:29 #727 [Debug] > │                                                                              │

02:22:29 #728 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #729 [Debug] >

02:22:29 #730 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:29 #731 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:29 #732 [Debug] > │ ## calculate_dice_count                                                      │

02:22:29 #733 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #734 [Debug] >

02:22:29 #735 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:29 #736 [Debug] > inl calculate_dice_count (log : option (string -> ())) max =

02:22:29 #737 [Debug] >     inl rec loop n p =

02:22:29 #738 [Debug] >         if p < max

02:22:29 #739 [Debug] >         then loop (n + 1) (p * 6)

02:22:29 #740 [Debug] >         else

02:22:29 #741 [Debug] >             log |> optionm'.iter ((|>) $"$\"calculate_dice_count / max: {!max}

02:22:29 #742 [Debug] > n: {!n} / p: {!p}\"")

02:22:29 #743 [Debug] >             n

02:22:29 #744 [Debug] >     if max = 1

02:22:29 #745 [Debug] >     then 1

02:22:29 #746 [Debug] >     else loop 0 1

02:22:29 #747 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2955-5562-50da450c93c2\main.spi

02:22:29 #748 [Debug] >

02:22:29 #749 [Debug] > ╭─[ 183.49ms - stdout ]────────────────────────────────────────────────────────╮

02:22:29 #750 [Debug] > │ ()                                                                           │

02:22:29 #751 [Debug] > │                                                                              │

02:22:29 #752 [Debug] > │                                                                              │

02:22:29 #753 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #754 [Debug] >

02:22:29 #755 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:29 #756 [Debug] > // // test

02:22:29 #757 [Debug] >

02:22:29 #758 [Debug] > calculate_dice_count (Some console.write_line) 36i32

02:22:29 #759 [Debug] > |> _equal 2i32

02:22:29 #760 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2974-7411-73544ee3e031\main.spi

02:22:29 #761 [Debug] >

02:22:29 #762 [Debug] > ╭─[ 239.51ms - stdout ]────────────────────────────────────────────────────────╮

02:22:29 #763 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:29 #764 [Debug] > │     let v0 : string = $"calculate_dice_count / max: {36} / n: {2} / p: {36}" │

02:22:29 #765 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:29 #766 [Debug] > │     let v1 : string = $"_equal / actual: %A{2} / expected: %A{2}"            │

02:22:29 #767 [Debug] > │     ()                                                                       │

02:22:29 #768 [Debug] > │ method0()                                                                    │

02:22:29 #769 [Debug] > │                                                                              │

02:22:29 #770 [Debug] > │ calculate_dice_count / max: 36 / n: 2 / p: 36                                │

02:22:29 #771 [Debug] > │                                                                              │

02:22:29 #772 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:29 #773 [Debug] >

02:22:29 #774 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:29 #775 [Debug] > // // test

02:22:29 #776 [Debug] >

02:22:29 #777 [Debug] > calculate_dice_count (Some console.write_line) 7777i32

02:22:29 #778 [Debug] > |> _equal 6i32

02:22:30 #779 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-2998-9856-905b7178e627\main.spi

02:22:30 #780 [Debug] >

02:22:30 #781 [Debug] > ╭─[ 231.69ms - stdout ]────────────────────────────────────────────────────────╮

02:22:30 #782 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:30 #783 [Debug] > │     let v0 : string = $"calculate_dice_count / max: {7777} / n: {6} / p:     │

02:22:30 #784 [Debug] > │ {46656}"                                                                     │

02:22:30 #785 [Debug] > │     System.Console.WriteLine v0                                              │

02:22:30 #786 [Debug] > │     let v1 : string = $"_equal / actual: %A{6} / expected: %A{6}"            │

02:22:30 #787 [Debug] > │     ()                                                                       │

02:22:30 #788 [Debug] > │ method0()                                                                    │

02:22:30 #789 [Debug] > │                                                                              │

02:22:30 #790 [Debug] > │ calculate_dice_count / max: 7777 / n: 6 / p: 46656                           │

02:22:30 #791 [Debug] > │                                                                              │

02:22:30 #792 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #793 [Debug] >

02:22:30 #794 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:30 #795 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:30 #796 [Debug] > │ ## rollDice                                                                  │

02:22:30 #797 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #798 [Debug] >

02:22:30 #799 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:30 #800 [Debug] > #if FABLE_COMPILER_RUST

02:22:30 #801 [Debug] > #if !CHAIN

02:22:30 #802 [Debug] > let rollDice () : int =

02:22:30 #803 [Debug] >     Fable.Core.RustInterop.emitRustExpr () "rand::Rng::gen_range(&mut

02:22:30 #804 [Debug] > rand::thread_rng(), 1..7)"

02:22:30 #805 [Debug] > #endif

02:22:30 #806 [Debug] > #else

02:22:30 #807 [Debug] > let private random = System.Random ()

02:22:30 #808 [Debug] > let rollDice () =

02:22:30 #809 [Debug] >     random.Next (1, 7)

02:22:30 #810 [Debug] > #endif

02:22:30 #811 [Debug] >

02:22:30 #812 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:30 #813 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:30 #814 [Debug] > │ ## roll_dice                                                                 │

02:22:30 #815 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #816 [Debug] >

02:22:30 #817 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:30 #818 [Debug] > inl roll_dice () : i32 =

02:22:30 #819 [Debug] >     $"System.Random().Next (1, 7)"

02:22:30 #820 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-3023-2380-2b5114174e38\main.spi

02:22:30 #821 [Debug] >

02:22:30 #822 [Debug] > ╭─[ 174.09ms - stdout ]────────────────────────────────────────────────────────╮

02:22:30 #823 [Debug] > │ ()                                                                           │

02:22:30 #824 [Debug] > │                                                                              │

02:22:30 #825 [Debug] > │                                                                              │

02:22:30 #826 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #827 [Debug] >

02:22:30 #828 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:30 #829 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:30 #830 [Debug] > │ ## rotateNumber                                                              │

02:22:30 #831 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #832 [Debug] >

02:22:30 #833 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:30 #834 [Debug] > let rotateNumber max n =

02:22:30 #835 [Debug] >     (n - 1 + max) % max + 1

02:22:30 #836 [Debug] >

02:22:30 #837 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:30 #838 [Debug] > inl rotate_number max n =

02:22:30 #839 [Debug] >     (n - 1 + max) % max + 1

02:22:30 #840 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-3043-4312-42417eb6d870\main.spi

02:22:30 #841 [Debug] >

02:22:30 #842 [Debug] > ╭─[ 202.98ms - stdout ]────────────────────────────────────────────────────────╮

02:22:30 #843 [Debug] > │ ()                                                                           │

02:22:30 #844 [Debug] > │                                                                              │

02:22:30 #845 [Debug] > │                                                                              │

02:22:30 #846 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #847 [Debug] >

02:22:30 #848 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:30 #849 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:30 #850 [Debug] > │ ## rotateNumbers                                                             │

02:22:30 #851 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #852 [Debug] >

02:22:30 #853 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:30 #854 [Debug] > let rotateNumbers max items =

02:22:30 #855 [Debug] >     items |> Seq.map (rotateNumber max)

02:22:30 #856 [Debug] >

02:22:30 #857 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:30 #858 [Debug] > //// test

02:22:30 #859 [Debug] >

02:22:30 #860 [Debug] > [[ -1 .. 14 ]]

02:22:30 #861 [Debug] > |> rotateNumbers 6

02:22:30 #862 [Debug] > |> Seq.toList

02:22:30 #863 [Debug] > |> _equal [[ 5; 6; 1; 2; 3; 4; 5; 6; 1; 2; 3; 4; 5; 6; 1; 2 ]]

02:22:30 #864 [Debug] >

02:22:30 #865 [Debug] > ╭─[ 39.33ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:30 #866 [Debug] > │ [ 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2 ]                           │

02:22:30 #867 [Debug] > │                                                                              │

02:22:30 #868 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #869 [Debug] >

02:22:30 #870 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:30 #871 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:30 #872 [Debug] > │ ## rotate_numbers                                                            │

02:22:30 #873 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #874 [Debug] >

02:22:30 #875 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:30 #876 [Debug] > inl rotate_numbers max items =

02:22:30 #877 [Debug] >     items |> stream.map (rotate_number max)

02:22:30 #878 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-3069-6916-66de733c5a92\main.spi

02:22:30 #879 [Debug] >

02:22:30 #880 [Debug] > ╭─[ 194.52ms - stdout ]────────────────────────────────────────────────────────╮

02:22:30 #881 [Debug] > │ ()                                                                           │

02:22:30 #882 [Debug] > │                                                                              │

02:22:30 #883 [Debug] > │                                                                              │

02:22:30 #884 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:30 #885 [Debug] >

02:22:30 #886 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:30 #887 [Debug] > // // test

02:22:30 #888 [Debug] >

02:22:30 #889 [Debug] > listm'.init_series -1i32 14 1

02:22:30 #890 [Debug] > |> stream.from_list

02:22:30 #891 [Debug] > |> rotate_numbers 6

02:22:30 #892 [Debug] > |> stream.to_list

02:22:30 #893 [Debug] > |> _equal [[ 5; 6; 1; 2; 3; 4; 5; 6; 1; 2; 3; 4; 5; 6; 1; 2 ]]

02:22:31 #894 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-3088-8878-8977d83ad9d2\main.spi

02:22:31 #895 [Debug] >

02:22:31 #896 [Debug] > ╭─[ 240.80ms - stdout ]────────────────────────────────────────────────────────╮

02:22:31 #897 [Debug] > │ type UH0 =                                                                   │

02:22:31 #898 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:31 #899 [Debug] > │     | UH0_1                                                                  │

02:22:31 #900 [Debug] > │ let rec method0 () : unit =                                                  │

02:22:31 #901 [Debug] > │     let v187 : UH0 = UH0_1                                                   │

02:22:31 #902 [Debug] > │     let v188 : UH0 = UH0_0(2, v187)                                          │

02:22:31 #903 [Debug] > │     let v189 : UH0 = UH0_0(1, v188)                                          │

02:22:31 #904 [Debug] > │     let v190 : UH0 = UH0_0(6, v189)                                          │

02:22:31 #905 [Debug] > │     let v191 : UH0 = UH0_0(5, v190)                                          │

02:22:31 #906 [Debug] > │     let v192 : UH0 = UH0_0(4, v191)                                          │

02:22:31 #907 [Debug] > │     let v193 : UH0 = UH0_0(3, v192)                                          │

02:22:31 #908 [Debug] > │     let v194 : UH0 = UH0_0(2, v193)                                          │

02:22:31 #909 [Debug] > │     let v195 : UH0 = UH0_0(1, v194)                                          │

02:22:31 #910 [Debug] > │     let v196 : UH0 = UH0_0(6, v195)                                          │

02:22:31 #911 [Debug] > │     let v197 : UH0 = UH0_0(5, v196)                                          │

02:22:31 #912 [Debug] > │     let v198 : UH0 = UH0_0(4, v197)                                          │

02:22:31 #913 [Debug] > │     let v199 : UH0 = UH0_0(3, v198)                                          │

02:22:31 #914 [Debug] > │     let v200 : UH0 = UH0_0(2, v199)                                          │

02:22:31 #915 [Debug] > │     let v201 : UH0 = UH0_0(1, v200)                                          │

02:22:31 #916 [Debug] > │     let v202 : UH0 = UH0_0(6, v201)                                          │

02:22:31 #917 [Debug] > │     let v203 : UH0 = UH0_0(5, v202)                                          │

02:22:31 #918 [Debug] > │     let v204 : UH0 = UH0_1                                                   │

02:22:31 #919 [Debug] > │     let v205 : UH0 = UH0_0(2, v204)                                          │

02:22:31 #920 [Debug] > │     let v206 : UH0 = UH0_0(1, v205)                                          │

02:22:31 #921 [Debug] > │     let v207 : UH0 = UH0_0(6, v206)                                          │

02:22:31 #922 [Debug] > │     let v208 : UH0 = UH0_0(5, v207)                                          │

02:22:31 #923 [Debug] > │     let v209 : UH0 = UH0_0(4, v208)                                          │

02:22:31 #924 [Debug] > │     let v210 : UH0 = UH0_0(3, v209)                                          │

02:22:31 #925 [Debug] > │     let v211 : UH0 = UH0_0(2, v210)                                          │

02:22:31 #926 [Debug] > │     let v212 : UH0 = UH0_0(1, v211)                                          │

02:22:31 #927 [Debug] > │     let v213 : UH0 = UH0_0(6, v212)                                          │

02:22:31 #928 [Debug] > │     let v214 : UH0 = UH0_0(5, v213)                                          │

02:22:31 #929 [Debug] > │     let v215 : UH0 = UH0_0(4, v214)                                          │

02:22:31 #930 [Debug] > │     let v216 : UH0 = UH0_0(3, v215)                                          │

02:22:31 #931 [Debug] > │     let v217 : UH0 = UH0_0(2, v216)                                          │

02:22:31 #932 [Debug] > │     let v218 : UH0 = UH0_0(1, v217)                                          │

02:22:31 #933 [Debug] > │     let v219 : UH0 = UH0_0(6, v218)                                          │

02:22:31 #934 [Debug] > │     let v220 : UH0 = UH0_0(5, v219)                                          │

02:22:31 #935 [Debug] > │     let v221 : string = $"_equal / actual: %A{v203} / expected: %A{v220}"    │

02:22:31 #936 [Debug] > │     ()                                                                       │

02:22:31 #937 [Debug] > │ method0()                                                                    │

02:22:31 #938 [Debug] > │                                                                              │

02:22:31 #939 [Debug] > │                                                                              │

02:22:31 #940 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:31 #941 [Debug] >

02:22:31 #942 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:31 #943 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:31 #944 [Debug] > │ ## createSequentialRoller                                                    │

02:22:31 #945 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:31 #946 [Debug] >

02:22:31 #947 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:31 #948 [Debug] > let createSequentialRoller list =

02:22:31 #949 [Debug] >     let mutable currentIndex = 0

02:22:31 #950 [Debug] >     fun () ->

02:22:31 #951 [Debug] >         match list |> List.tryItem currentIndex with

02:22:31 #952 [Debug] >         | Some item ->

02:22:31 #953 [Debug] >             currentIndex <- currentIndex + 1

02:22:31 #954 [Debug] >             item

02:22:31 #955 [Debug] >         | None ->

02:22:31 #956 [Debug] >             failwith "createSequentialRoller / End of list"

02:22:31 #957 [Debug] >

02:22:31 #958 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:31 #959 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:31 #960 [Debug] > │ ## create_sequential_roller                                                  │

02:22:31 #961 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:31 #962 [Debug] >

02:22:31 #963 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:31 #964 [Debug] > inl create_sequential_roller list =

02:22:31 #965 [Debug] >     inl s = list |> listm.rev |> listm.append list |> stream.from_list |>

02:22:31 #966 [Debug] > stream.memoize

02:22:31 #967 [Debug] >     inl current_index = mut 0i32

02:22:31 #968 [Debug] >     inl acc = mut 1

02:22:31 #969 [Debug] >     inl len = mut -1

02:22:31 #970 [Debug] >     let rec loop () =

02:22:31 #971 [Debug] >         match s () |> stream.try_item *current_index with

02:22:31 #972 [Debug] >         | Some item =>

02:22:31 #973 [Debug] >             current_index <- *current_index + 1

02:22:31 #974 [Debug] >             item

02:22:31 #975 [Debug] >         | None =>

02:22:31 #976 [Debug] >             if *len = -1

02:22:31 #977 [Debug] >             then len <- *current_index

02:22:31 #978 [Debug] >             acc <-

02:22:31 #979 [Debug] >                 if *acc >= *len

02:22:31 #980 [Debug] >                 then 1

02:22:31 #981 [Debug] >                 else *acc + 1

02:22:31 #982 [Debug] >             current_index <- *acc - 1

02:22:31 #983 [Debug] >             loop ()

02:22:31 #984 [Debug] >     loop

02:22:31 #985 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-3117-1729-1cdcaeea9361\main.spi

02:22:31 #986 [Debug] >

02:22:31 #987 [Debug] > ╭─[ 267.55ms - stdout ]────────────────────────────────────────────────────────╮

02:22:31 #988 [Debug] > │ ()                                                                           │

02:22:31 #989 [Debug] > │                                                                              │

02:22:31 #990 [Debug] > │                                                                              │

02:22:31 #991 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:31 #992 [Debug] >

02:22:31 #993 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:31 #994 [Debug] > // // test

02:22:31 #995 [Debug] >

02:22:31 #996 [Debug] > inl sequential_roll = create_sequential_roller [[ 1i32; 2; 3; 4 ]]

02:22:31 #997 [Debug] >

02:22:31 #998 [Debug] > am.init 20i32 (ignore >> sequential_roll)

02:22:31 #999 [Debug] > |> _equal (a ;[[ 1; 2; 3; 4; 4; 3; 2; 1; 2; 3; 4; 4; 3; 2; 1; 3; 4; 4; 3; 2 ]] :

02:22:31 #1000 [Debug] > a i32 i32)

02:22:31 #1001 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-3144-4418-41e90f65e8d2\main.spi

02:22:31 #1002 [Debug] >

02:22:31 #1003 [Debug] > ╭─[ 453.59ms - stdout ]────────────────────────────────────────────────────────╮

02:22:31 #1004 [Debug] > │ type UH0 =                                                                   │

02:22:31 #1005 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:22:31 #1006 [Debug] > │     | UH0_1                                                                  │

02:22:31 #1007 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:31 #1008 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:22:31 #1009 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:22:31 #1010 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:22:31 #1011 [Debug] > │ and Mut1 = {mutable l0 : int32}                                              │

02:22:31 #1012 [Debug] > │ and Mut2 = {mutable l0 : int32}                                              │

02:22:31 #1013 [Debug] > │ and [<Struct>] US1 =                                                         │

02:22:31 #1014 [Debug] > │     | US1_0                                                                  │

02:22:31 #1015 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:22:31 #1016 [Debug] > │ let rec closure8 () () : UH0 =                                               │

02:22:31 #1017 [Debug] > │     UH0_1                                                                    │

02:22:31 #1018 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:22:31 #1019 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:22:31 #1020 [Debug] > │     UH0_0(1, v0)                                                             │

02:22:31 #1021 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:22:31 #1022 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:22:31 #1023 [Debug] > │     UH0_0(2, v0)                                                             │

02:22:31 #1024 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:22:31 #1025 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:22:31 #1026 [Debug] > │     UH0_0(3, v0)                                                             │

02:22:31 #1027 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:22:31 #1028 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:22:31 #1029 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:31 #1030 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:22:31 #1031 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:22:31 #1032 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:31 #1033 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:22:31 #1034 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:22:31 #1035 [Debug] > │     UH0_0(3, v0)                                                             │

02:22:31 #1036 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:22:31 #1037 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:22:31 #1038 [Debug] > │     UH0_0(2, v0)                                                             │

02:22:31 #1039 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:22:31 #1040 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:22:31 #1041 [Debug] > │     UH0_0(1, v0)                                                             │

02:22:31 #1042 [Debug] > │ and method1 (v0 : Mut2) : bool =                                             │

02:22:31 #1043 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:22:31 #1044 [Debug] > │     let v2 : bool = v1 < 20                                                  │

02:22:31 #1045 [Debug] > │     v2                                                                       │

02:22:31 #1046 [Debug] > │ and closure9 (v0 : Mut0) () : UH0 =                                          │

02:22:31 #1047 [Debug] > │     let v1 : US0 = v0.l0                                                     │

02:22:31 #1048 [Debug] > │     match v1 with                                                            │

02:22:31 #1049 [Debug] > │     | US0_0(v2) -> (* Computed *)                                            │

02:22:31 #1050 [Debug] > │         v2                                                                   │

02:22:31 #1051 [Debug] > │     | US0_1(v3) -> (* NotComputed *)                                         │

02:22:31 #1052 [Debug] > │         let v4 : UH0 = v3 ()                                                 │

02:22:31 #1053 [Debug] > │         let v13 : UH0 =                                                      │

02:22:31 #1054 [Debug] > │             match v4 with                                                    │

02:22:31 #1055 [Debug] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

02:22:31 #1056 [Debug] > │                 let v8 : US0 = US0_1(v7)                                     │

02:22:31 #1057 [Debug] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

02:22:31 #1058 [Debug] > │                 let v10 : (unit -> UH0) = closure9(v9)                       │

02:22:31 #1059 [Debug] > │                 UH0_0(v6, v10)                                               │

02:22:31 #1060 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:22:31 #1061 [Debug] > │                 UH0_1                                                        │

02:22:31 #1062 [Debug] > │         let v14 : US0 = US0_0(v13)                                           │

02:22:31 #1063 [Debug] > │         v0.l0 <- v14                                                         │

02:22:31 #1064 [Debug] > │         v13                                                                  │

02:22:31 #1065 [Debug] > │ and method3 (v0 : int32, v1 : UH0) : US1 =                                   │

02:22:31 #1066 [Debug] > │     match v1 with                                                            │

02:22:31 #1067 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:22:31 #1068 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:22:31 #1069 [Debug] > │         if v4 then                                                           │

02:22:31 #1070 [Debug] > │             US1_1(v2)                                                        │

02:22:31 #1071 [Debug] > │         else                                                                 │

02:22:31 #1072 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:22:31 #1073 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:22:31 #1074 [Debug] > │             method3(v6, v7)                                                  │

02:22:31 #1075 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:22:31 #1076 [Debug] > │         US1_0                                                                │

02:22:31 #1077 [Debug] > │ and method2 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1) : int32 =           │

02:22:31 #1078 [Debug] > │     let v4 : US0 = v0.l0                                                     │

02:22:31 #1079 [Debug] > │     let v19 : UH0 =                                                          │

02:22:31 #1080 [Debug] > │         match v4 with                                                        │

02:22:31 #1081 [Debug] > │         | US0_0(v5) -> (* Computed *)                                        │

02:22:31 #1082 [Debug] > │             v5                                                               │

02:22:31 #1083 [Debug] > │         | US0_1(v6) -> (* NotComputed *)                                     │

02:22:31 #1084 [Debug] > │             let v7 : UH0 = v6 ()                                             │

02:22:31 #1085 [Debug] > │             let v16 : UH0 =                                                  │

02:22:31 #1086 [Debug] > │                 match v7 with                                                │

02:22:31 #1087 [Debug] > │                 | UH0_0(v9, v10) -> (* StreamCons *)                         │

02:22:31 #1088 [Debug] > │                     let v11 : US0 = US0_1(v10)                               │

02:22:31 #1089 [Debug] > │                     let v12 : Mut0 = {l0 = v11} : Mut0                       │

02:22:31 #1090 [Debug] > │                     let v13 : (unit -> UH0) = closure9(v12)                  │

02:22:31 #1091 [Debug] > │                     UH0_0(v9, v13)                                           │

02:22:31 #1092 [Debug] > │                 | UH0_1 -> (* StreamNil *)                                   │

02:22:31 #1093 [Debug] > │                     UH0_1                                                    │

02:22:31 #1094 [Debug] > │             let v17 : US0 = US0_0(v16)                                       │

02:22:31 #1095 [Debug] > │             v0.l0 <- v17                                                     │

02:22:31 #1096 [Debug] > │             v16                                                              │

02:22:31 #1097 [Debug] > │     let v20 : int32 = v1.l0                                                  │

02:22:31 #1098 [Debug] > │     let v21 : US1 = method3(v20, v19)                                        │

02:22:31 #1099 [Debug] > │     match v21 with                                                           │

02:22:31 #1100 [Debug] > │     | US1_0 -> (* None *)                                                    │

02:22:31 #1101 [Debug] > │         let v25 : int32 = v3.l0                                              │

02:22:31 #1102 [Debug] > │         let v26 : bool = v25 = -1                                            │

02:22:31 #1103 [Debug] > │         if v26 then                                                          │

02:22:31 #1104 [Debug] > │             let v27 : int32 = v1.l0                                          │

02:22:31 #1105 [Debug] > │             v3.l0 <- v27                                                     │

02:22:31 #1106 [Debug] > │             ()                                                               │

02:22:31 #1107 [Debug] > │         let v28 : int32 = v2.l0                                              │

02:22:31 #1108 [Debug] > │         let v29 : int32 = v3.l0                                              │

02:22:31 #1109 [Debug] > │         let v30 : bool = v28 >= v29                                          │

02:22:31 #1110 [Debug] > │         let v33 : int32 =                                                    │

02:22:31 #1111 [Debug] > │             if v30 then                                                      │

02:22:31 #1112 [Debug] > │                 1                                                            │

02:22:31 #1113 [Debug] > │             else                                                             │

02:22:31 #1114 [Debug] > │                 let v31 : int32 = v2.l0                                      │

02:22:31 #1115 [Debug] > │                 let v32 : int32 = v31 + 1                                    │

02:22:31 #1116 [Debug] > │                 v32                                                          │

02:22:31 #1117 [Debug] > │         v2.l0 <- v33                                                         │

02:22:31 #1118 [Debug] > │         let v34 : int32 = v2.l0                                              │

02:22:31 #1119 [Debug] > │         let v35 : int32 = v34 - 1                                            │

02:22:31 #1120 [Debug] > │         v1.l0 <- v35                                                         │

02:22:31 #1121 [Debug] > │         method2(v0, v1, v2, v3)                                              │

02:22:31 #1122 [Debug] > │     | US1_1(v22) -> (* Some *)                                               │

02:22:31 #1123 [Debug] > │         let v23 : int32 = v1.l0                                              │

02:22:31 #1124 [Debug] > │         let v24 : int32 = v23 + 1                                            │

02:22:31 #1125 [Debug] > │         v1.l0 <- v24                                                         │

02:22:31 #1126 [Debug] > │         v22                                                                  │

02:22:31 #1127 [Debug] > │ and method4 (v0 : (int32 []), v1 : (int32 []), v2 : int32) : bool =          │

02:22:31 #1128 [Debug] > │     let v3 : int32 = v0.Length                                               │

02:22:31 #1129 [Debug] > │     let v4 : bool = v2 < v3                                                  │

02:22:31 #1130 [Debug] > │     if v4 then                                                               │

02:22:31 #1131 [Debug] > │         let v5 : int32 = v0.[int v2]                                         │

02:22:31 #1132 [Debug] > │         let v6 : int32 = v1.[int v2]                                         │

02:22:31 #1133 [Debug] > │         let v7 : bool = v5 = v6                                              │

02:22:31 #1134 [Debug] > │         if v7 then                                                           │

02:22:31 #1135 [Debug] > │             let v8 : int32 = v2 + 1                                          │

02:22:31 #1136 [Debug] > │             method4(v0, v1, v8)                                              │

02:22:31 #1137 [Debug] > │         else                                                                 │

02:22:31 #1138 [Debug] > │             false                                                            │

02:22:31 #1139 [Debug] > │     else                                                                     │

02:22:31 #1140 [Debug] > │         true                                                                 │

02:22:31 #1141 [Debug] > │ and method0 () : unit =                                                      │

02:22:31 #1142 [Debug] > │     let v0 : (unit -> UH0) = closure0()                                      │

02:22:31 #1143 [Debug] > │     let v1 : US0 = US0_1(v0)                                                 │

02:22:31 #1144 [Debug] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

02:22:31 #1145 [Debug] > │     let v3 : Mut1 = {l0 = 0} : Mut1                                          │

02:22:31 #1146 [Debug] > │     let v4 : Mut1 = {l0 = 1} : Mut1                                          │

02:22:31 #1147 [Debug] > │     let v5 : Mut1 = {l0 = -1} : Mut1                                         │

02:22:31 #1148 [Debug] > │     let v6 : (int32 []) = Array.zeroCreate<int32> (20)                       │

02:22:31 #1149 [Debug] > │     let v7 : Mut2 = {l0 = 0} : Mut2                                          │

02:22:31 #1150 [Debug] > │     while method1(v7) do                                                     │

02:22:31 #1151 [Debug] > │         let v9 : int32 = v7.l0                                               │

02:22:31 #1152 [Debug] > │         let v10 : int32 = method2(v2, v3, v4, v5)                            │

02:22:31 #1153 [Debug] > │         v6.[int v9] <- v10                                                   │

02:22:31 #1154 [Debug] > │         let v11 : int32 = v9 + 1                                             │

02:22:31 #1155 [Debug] > │         v7.l0 <- v11                                                         │

02:22:31 #1156 [Debug] > │         ()                                                                   │

02:22:31 #1157 [Debug] > │     let v12 : (int32 []) = [|1; 2; 3; 4; 4; 3; 2; 1; 2; 3; 4; 4; 3; 2; 1; 3; │

02:22:31 #1158 [Debug] > │ 4; 4; 3; 2|]                                                                 │

02:22:31 #1159 [Debug] > │     let v13 : int32 = v6.Length                                              │

02:22:31 #1160 [Debug] > │     let v14 : int32 = v12.Length                                             │

02:22:31 #1161 [Debug] > │     let v15 : bool = v13 = v14                                               │

02:22:31 #1162 [Debug] > │     let v16 : bool = v15 <> true                                             │

02:22:31 #1163 [Debug] > │     let v19 : bool =                                                         │

02:22:31 #1164 [Debug] > │         if v16 then                                                          │

02:22:31 #1165 [Debug] > │             false                                                            │

02:22:31 #1166 [Debug] > │         else                                                                 │

02:22:31 #1167 [Debug] > │             let v17 : int32 = 0                                              │

02:22:31 #1168 [Debug] > │             method4(v6, v12, v17)                                            │

02:22:31 #1169 [Debug] > │     let v20 : string = $"_equal / actual: %A{v6} / expected: %A{v12}"        │

02:22:31 #1170 [Debug] > │     let v21 : bool = v19 = false                                             │

02:22:31 #1171 [Debug] > │     if v21 then                                                              │

02:22:31 #1172 [Debug] > │         failwith<unit> v20                                                   │

02:22:31 #1173 [Debug] > │ method0()                                                                    │

02:22:31 #1174 [Debug] > │                                                                              │

02:22:31 #1175 [Debug] > │                                                                              │

02:22:31 #1176 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:31 #1177 [Debug] >

02:22:31 #1178 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:31 #1179 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:31 #1180 [Debug] > │ ## rollProgressively                                                         │

02:22:31 #1181 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:31 #1182 [Debug] >

02:22:31 #1183 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:31 #1184 [Debug] > let rollProgressively log roll reroll max =

02:22:31 #1185 [Debug] >     let power = (calculateDiceCount log max) - 1

02:22:31 #1186 [Debug] >     let rec loop rolls size =

02:22:31 #1187 [Debug] >         if size < power + 1

02:22:31 #1188 [Debug] >         then loop (roll () :: rolls) (size + 1)

02:22:31 #1189 [Debug] >         else

02:22:31 #1190 [Debug] >             match accumulateDiceRolls log rolls power 0 with

02:22:31 #1191 [Debug] >             | Some (result, _) when result <= max -> result

02:22:31 #1192 [Debug] >             | _ when reroll -> loop (List.init power (fun _ -> roll ())) power

02:22:31 #1193 [Debug] >             | _ -> loop (roll () :: rolls) (size + 1)

02:22:31 #1194 [Debug] >     loop [[]] 0

02:22:32 #1195 [Debug] >

02:22:32 #1196 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:32 #1197 [Debug] > //// test

02:22:32 #1198 [Debug] >

02:22:32 #1199 [Debug] > rollProgressively None rollDice false 1

02:22:32 #1200 [Debug] > |> _equal 1

02:22:32 #1201 [Debug] >

02:22:32 #1202 [Debug] > ╭─[ 21.73ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:32 #1203 [Debug] > │ 1                                                                            │

02:22:32 #1204 [Debug] > │                                                                              │

02:22:32 #1205 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:32 #1206 [Debug] >

02:22:32 #1207 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:32 #1208 [Debug] > //// test

02:22:32 #1209 [Debug] >

02:22:32 #1210 [Debug] > let sequentialRoll = createSequentialRoller [[ 5; 4; 4; 5; 1 ]]

02:22:32 #1211 [Debug] >

02:22:32 #1212 [Debug] > rollProgressively (Some (printfn "%s")) sequentialRoll false 2000

02:22:32 #1213 [Debug] > |> _equal 995

02:22:32 #1214 [Debug] >

02:22:32 #1215 [Debug] > ╭─[ 30.45ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:32 #1216 [Debug] > │ calculateDiceCount / max: 2000 / n: 5 / p: 7776                              │

02:22:32 #1217 [Debug] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 1                            │

02:22:32 #1218 [Debug] > │ accumulateDiceRolls / power: 3 / acc: 0 / roll: 5 / value: 864               │

02:22:32 #1219 [Debug] > │ accumulateDiceRolls / power: 2 / acc: 864 / roll: 4 / value: 108             │

02:22:32 #1220 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 972 / roll: 4 / value: 18              │

02:22:32 #1221 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 990 / roll: 5 / value: 4               │

02:22:32 #1222 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 994                                   │

02:22:32 #1223 [Debug] > │ 995                                                                          │

02:22:32 #1224 [Debug] > │                                                                              │

02:22:32 #1225 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:32 #1226 [Debug] >

02:22:32 #1227 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:32 #1228 [Debug] > //// test

02:22:32 #1229 [Debug] >

02:22:32 #1230 [Debug] > let sequentialRoll = createSequentialRoller [[ 5; 4; 4; 5; 2 ]]

02:22:32 #1231 [Debug] >

02:22:32 #1232 [Debug] > fun () -> rollProgressively (Some (printfn "%s")) sequentialRoll false 2000 |>

02:22:32 #1233 [Debug] > ignore

02:22:32 #1234 [Debug] > |> _throwsC (fun ex _ ->

02:22:32 #1235 [Debug] >     printException ex

02:22:32 #1236 [Debug] >     |> _equal "System.Exception: createSequentialRoller / End of list"

02:22:32 #1237 [Debug] > )

02:22:32 #1238 [Debug] >

02:22:32 #1239 [Debug] > ╭─[ 49.79ms - stdout ]─────────────────────────────────────────────────────────╮

02:22:32 #1240 [Debug] > │ FSI_0031+it@5-11                                                             │

02:22:32 #1241 [Debug] > │ calculateDiceCount / max: 2000 / n: 5 / p: 7776                              │

02:22:32 #1242 [Debug] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 2 / value: 1296              │

02:22:32 #1243 [Debug] > │ accumulateDiceRolls / power: 3 / acc: 1296 / roll: 5 / value: 864            │

02:22:32 #1244 [Debug] > │ accumulateDiceRolls / power: 2 / acc: 2160 / roll: 4 / value: 108            │

02:22:32 #1245 [Debug] > │ accumulateDiceRolls / power: 1 / acc: 2268 / roll: 4 / value: 18             │

02:22:32 #1246 [Debug] > │ accumulateDiceRolls / power: 0 / acc: 2286 / roll: 5 / value: 4              │

02:22:32 #1247 [Debug] > │ accumulateDiceRolls / power: -1 / acc: 2290                                  │

02:22:32 #1248 [Debug] > │ System.Exception: createSequentialRoller / End of list                       │

02:22:32 #1249 [Debug] > │                                                                              │

02:22:32 #1250 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:32 #1251 [Debug] >

02:22:32 #1252 [Debug] > ── fsharp - ignored ────────────────────────────────────────────────────────────

02:22:32 #1253 [Debug] > //// ignore

02:22:32 #1254 [Debug] >

02:22:32 #1255 [Debug] > rollProgressively (Some (printfn "%s")) rollDice false 2000

02:22:32 #1256 [Debug] >

02:22:32 #1257 [Debug] > ── fsharp - ignored ────────────────────────────────────────────────────────────

02:22:32 #1258 [Debug] > //// ignore

02:22:32 #1259 [Debug] >

02:22:32 #1260 [Debug] > rollProgressively (Some (printfn "%s")) rollDice true 2000

02:22:32 #1261 [Debug] >

02:22:32 #1262 [Debug] > ── fsharp - ignored ────────────────────────────────────────────────────────────

02:22:32 #1263 [Debug] > //// ignore

02:22:32 #1264 [Debug] >

02:22:32 #1265 [Debug] > [[ 1 .. 1000 ]]

02:22:32 #1266 [Debug] > |> List.map (fun _ -> rollProgressively None rollDice false 10)

02:22:32 #1267 [Debug] > |> List.groupBy id

02:22:32 #1268 [Debug] > |> List.map (fun (k, v) -> k, v.Length)

02:22:32 #1269 [Debug] > |> List.sortBy fst

02:22:32 #1270 [Debug] >

02:22:32 #1271 [Debug] > ── fsharp - ignored ────────────────────────────────────────────────────────────

02:22:32 #1272 [Debug] > //// ignore

02:22:32 #1273 [Debug] >

02:22:32 #1274 [Debug] > [[ 1 .. 1000 ]]

02:22:32 #1275 [Debug] > |> List.map (fun _ -> rollProgressively None rollDice true 10)

02:22:32 #1276 [Debug] > |> List.groupBy id

02:22:32 #1277 [Debug] > |> List.map (fun (k, v) -> k, v.Length)

02:22:32 #1278 [Debug] > |> List.sortBy fst

02:22:32 #1279 [Debug] >

02:22:32 #1280 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:32 #1281 [Debug] > //// test

02:22:32 #1282 [Debug] >

02:22:32 #1283 [Debug] > [[ 1 .. 100 ]]

02:22:32 #1284 [Debug] > |> List.iter (fun n ->

02:22:32 #1285 [Debug] >     [[ 0 .. 1 ]]

02:22:32 #1286 [Debug] >     |> List.iter (fun reroll ->

02:22:32 #1287 [Debug] >         [[ 1 .. 3500 ]]

02:22:32 #1288 [Debug] >         |> List.map (fun _ -> rollProgressively None rollDice (reroll = 1) n)

02:22:32 #1289 [Debug] >         |> List.groupBy id

02:22:32 #1290 [Debug] >         |> List.length

02:22:32 #1291 [Debug] >         |> __equal false n

02:22:32 #1292 [Debug] >     )

02:22:32 #1293 [Debug] > )

02:22:40 #1294 [Debug] >

02:22:40 #1295 [Debug] > ── fsharp - ignored ────────────────────────────────────────────────────────────

02:22:40 #1296 [Debug] > //// ignore

02:22:40 #1297 [Debug] >

02:22:40 #1298 [Debug] > let run () =

02:22:40 #1299 [Debug] >     let inline rollMax fn max n =

02:22:40 #1300 [Debug] >         [[ 1 .. n ]]

02:22:40 #1301 [Debug] >         |> List.map (fun _ -> fn max)

02:22:40 #1302 [Debug] >         |> List.groupBy id

02:22:40 #1303 [Debug] >         |> List.map (fun (_, v) -> v.Length)

02:22:40 #1304 [Debug] >

02:22:40 #1305 [Debug] >     let max = 10

02:22:40 #1306 [Debug] >     let n = 30

02:22:40 #1307 [Debug] >     let even = (n / max) |> int

02:22:40 #1308 [Debug] >

02:22:40 #1309 [Debug] >     let rec rollN current =

02:22:40 #1310 [Debug] >         let roll = rollMax (rollProgressively None rollDice true) max n

02:22:40 #1311 [Debug] >         if roll |> List.forall ((=) even)

02:22:40 #1312 [Debug] >         then current

02:22:40 #1313 [Debug] >         else rollN (current + 1)

02:22:40 #1314 [Debug] >

02:22:40 #1315 [Debug] >     rollN 0

02:22:40 #1316 [Debug] >

02:22:40 #1317 [Debug] > // run ()

02:22:40 #1318 [Debug] >

02:22:40 #1319 [Debug] > ── fsharp - ignored ────────────────────────────────────────────────────────────

02:22:40 #1320 [Debug] > //// ignore

02:22:40 #1321 [Debug] >

02:22:40 #1322 [Debug] > // [[ 1 .. 100 ]]

02:22:40 #1323 [Debug] > // |> List.map (fun i ->

02:22:40 #1324 [Debug] > //     let roll = rollN 0

02:22:40 #1325 [Debug] > //     printfn $"i: {i} / roll: {roll}"

02:22:40 #1326 [Debug] > //     roll

02:22:40 #1327 [Debug] > // )

02:22:40 #1328 [Debug] > // |> List.map float

02:22:40 #1329 [Debug] > // |> List.average

02:22:40 #1330 [Debug] >

02:22:40 #1331 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:40 #1332 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:40 #1333 [Debug] > │ ## roll_progressively                                                        │

02:22:40 #1334 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:40 #1335 [Debug] >

02:22:40 #1336 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:40 #1337 [Debug] > inl roll_progressively (log : option (string -> ())) roll reroll max =

02:22:40 #1338 [Debug] >     inl power = (calculate_dice_count log max) - 1i32

02:22:40 #1339 [Debug] >     let rec loop rolls size =

02:22:40 #1340 [Debug] >         if size < power + 1

02:22:40 #1341 [Debug] >         then loop (roll () :: rolls) (size + 1)

02:22:40 #1342 [Debug] >         else

02:22:40 #1343 [Debug] >             match accumulate_dice_rolls log rolls power 0 with

02:22:40 #1344 [Debug] >             | Some (result, _) when result <= max => result

02:22:40 #1345 [Debug] >             | _ when reroll => loop (listm.init power (fun _ => roll ())) power

02:22:40 #1346 [Debug] >             | _ => loop (roll () :: rolls) (size + 1)

02:22:40 #1347 [Debug] >     loop [[]] 0

02:22:40 #1348 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-4036-3674-3fc1f46877fc\main.spi

02:22:40 #1349 [Debug] >

02:22:40 #1350 [Debug] > ╭─[ 194.82ms - stdout ]────────────────────────────────────────────────────────╮

02:22:40 #1351 [Debug] > │ ()                                                                           │

02:22:40 #1352 [Debug] > │                                                                              │

02:22:40 #1353 [Debug] > │                                                                              │

02:22:40 #1354 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:40 #1355 [Debug] >

02:22:40 #1356 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:40 #1357 [Debug] > // // test

02:22:40 #1358 [Debug] >

02:22:40 #1359 [Debug] > roll_progressively None roll_dice false 1

02:22:40 #1360 [Debug] > |> _equal 1

02:22:40 #1361 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-4056-5626-5e2eacb273a7\main.spi

02:22:40 #1362 [Debug] >

02:22:40 #1363 [Debug] > ╭─[ 236.80ms - stdout ]────────────────────────────────────────────────────────╮

02:22:40 #1364 [Debug] > │ type UH0 =                                                                   │

02:22:40 #1365 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:40 #1366 [Debug] > │     | UH0_1                                                                  │

02:22:40 #1367 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:40 #1368 [Debug] > │     | US0_0                                                                  │

02:22:40 #1369 [Debug] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

02:22:40 #1370 [Debug] > │ let rec method3 (v0 : UH0, v1 : int32) : US0 =                               │

02:22:40 #1371 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1} / acc: {v1}"     │

02:22:40 #1372 [Debug] > │     let v3 : int32 = v1 + 1                                                  │

02:22:40 #1373 [Debug] > │     US0_1(v3, v0)                                                            │

02:22:40 #1374 [Debug] > │ and method2 (v0 : UH0, v1 : int32) : US0 =                                   │

02:22:40 #1375 [Debug] > │     match v0 with                                                            │

02:22:40 #1376 [Debug] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

02:22:40 #1377 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:40 #1378 [Debug] > │         if v5 then                                                           │

02:22:40 #1379 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:40 #1380 [Debug] > │             let v7 : string = $"accumulate_dice_rolls / power: {0} / acc:    │

02:22:40 #1381 [Debug] > │ {v1} / roll: {v3} / value: {v6}"                                             │

02:22:40 #1382 [Debug] > │             let v8 : int32 = v1 + v6                                         │

02:22:40 #1383 [Debug] > │             method3(v4, v8)                                                  │

02:22:40 #1384 [Debug] > │         else                                                                 │

02:22:40 #1385 [Debug] > │             let v10 : string = $"accumulate_dice_rolls / power: {0} / acc:   │

02:22:40 #1386 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:40 #1387 [Debug] > │             method3(v4, v1)                                                  │

02:22:40 #1388 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:22:40 #1389 [Debug] > │         US0_0                                                                │

02:22:40 #1390 [Debug] > │ and method1 (v0 : UH0, v1 : int32) : int32 =                                 │

02:22:40 #1391 [Debug] > │     let v2 : bool = v1 < 1                                                   │

02:22:40 #1392 [Debug] > │     if v2 then                                                               │

02:22:40 #1393 [Debug] > │         let v3 : int32 = System.Random().Next (1, 7)                         │

02:22:40 #1394 [Debug] > │         let v4 : UH0 = UH0_0(v3, v0)                                         │

02:22:40 #1395 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:22:40 #1396 [Debug] > │         method1(v4, v5)                                                      │

02:22:40 #1397 [Debug] > │     else                                                                     │

02:22:40 #1398 [Debug] > │         let v7 : int32 = 0                                                   │

02:22:40 #1399 [Debug] > │         let v8 : US0 = method2(v0, v7)                                       │

02:22:40 #1400 [Debug] > │         match v8 with                                                        │

02:22:40 #1401 [Debug] > │         | US0_1(v9, v10) -> (* Some *)                                       │

02:22:40 #1402 [Debug] > │             let v11 : bool = v9 <= 1                                         │

02:22:40 #1403 [Debug] > │             if v11 then                                                      │

02:22:40 #1404 [Debug] > │                 v9                                                           │

02:22:40 #1405 [Debug] > │             else                                                             │

02:22:40 #1406 [Debug] > │                 let v12 : int32 = System.Random().Next (1, 7)                │

02:22:40 #1407 [Debug] > │                 let v13 : UH0 = UH0_0(v12, v0)                               │

02:22:40 #1408 [Debug] > │                 let v14 : int32 = v1 + 1                                     │

02:22:40 #1409 [Debug] > │                 method1(v13, v14)                                            │

02:22:40 #1410 [Debug] > │         | _ ->                                                               │

02:22:40 #1411 [Debug] > │             let v17 : int32 = System.Random().Next (1, 7)                    │

02:22:40 #1412 [Debug] > │             let v18 : UH0 = UH0_0(v17, v0)                                   │

02:22:40 #1413 [Debug] > │             let v19 : int32 = v1 + 1                                         │

02:22:40 #1414 [Debug] > │             method1(v18, v19)                                                │

02:22:40 #1415 [Debug] > │ and method0 () : unit =                                                      │

02:22:40 #1416 [Debug] > │     let v0 : UH0 = UH0_1                                                     │

02:22:40 #1417 [Debug] > │     let v1 : int32 = 0                                                       │

02:22:40 #1418 [Debug] > │     let v2 : int32 = method1(v0, v1)                                         │

02:22:40 #1419 [Debug] > │     let v3 : bool = v2 = 1                                                   │

02:22:40 #1420 [Debug] > │     let v4 : string = $"_equal / actual: %A{v2} / expected: %A{1}"           │

02:22:40 #1421 [Debug] > │     let v5 : bool = v3 = false                                               │

02:22:40 #1422 [Debug] > │     if v5 then                                                               │

02:22:40 #1423 [Debug] > │         failwith<unit> v4                                                    │

02:22:40 #1424 [Debug] > │ method0()                                                                    │

02:22:40 #1425 [Debug] > │                                                                              │

02:22:40 #1426 [Debug] > │                                                                              │

02:22:40 #1427 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:40 #1428 [Debug] >

02:22:40 #1429 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:40 #1430 [Debug] > // // test

02:22:40 #1431 [Debug] >

02:22:40 #1432 [Debug] > inl sequential_roll = create_sequential_roller [[ 5; 4; 4; 5; 1 ]]

02:22:40 #1433 [Debug] >

02:22:40 #1434 [Debug] > roll_progressively (Some console.write_line) sequential_roll false 2000

02:22:40 #1435 [Debug] > |> _equal 995

02:22:40 #1436 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-4082-8215-8b1b6186cfba\main.spi

02:22:41 #1437 [Debug] >

02:22:41 #1438 [Debug] > ╭─[ 414.75ms - stdout ]────────────────────────────────────────────────────────╮

02:22:41 #1439 [Debug] > │ type UH0 =                                                                   │

02:22:41 #1440 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:22:41 #1441 [Debug] > │     | UH0_1                                                                  │

02:22:41 #1442 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:41 #1443 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:22:41 #1444 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:22:41 #1445 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:22:41 #1446 [Debug] > │ and Mut1 = {mutable l0 : int32}                                              │

02:22:41 #1447 [Debug] > │ and UH1 =                                                                    │

02:22:41 #1448 [Debug] > │     | UH1_0 of int32 * UH1                                                   │

02:22:41 #1449 [Debug] > │     | UH1_1                                                                  │

02:22:41 #1450 [Debug] > │ and [<Struct>] US1 =                                                         │

02:22:41 #1451 [Debug] > │     | US1_0                                                                  │

02:22:41 #1452 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:22:41 #1453 [Debug] > │ and [<Struct>] US2 =                                                         │

02:22:41 #1454 [Debug] > │     | US2_0                                                                  │

02:22:41 #1455 [Debug] > │     | US2_1 of f1_0 : int32 * f1_1 : UH1                                     │

02:22:41 #1456 [Debug] > │ let rec closure10 () () : UH0 =                                              │

02:22:41 #1457 [Debug] > │     UH0_1                                                                    │

02:22:41 #1458 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:22:41 #1459 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:22:41 #1460 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1461 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:22:41 #1462 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:22:41 #1463 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1464 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:22:41 #1465 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:22:41 #1466 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1467 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:22:41 #1468 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:22:41 #1469 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1470 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:22:41 #1471 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:22:41 #1472 [Debug] > │     UH0_0(1, v0)                                                             │

02:22:41 #1473 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:22:41 #1474 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:22:41 #1475 [Debug] > │     UH0_0(1, v0)                                                             │

02:22:41 #1476 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:22:41 #1477 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:22:41 #1478 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1479 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:22:41 #1480 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:22:41 #1481 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1482 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:22:41 #1483 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:22:41 #1484 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1485 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:22:41 #1486 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:22:41 #1487 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1488 [Debug] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

02:22:41 #1489 [Debug] > │     let v1 : US0 = v0.l0                                                     │

02:22:41 #1490 [Debug] > │     match v1 with                                                            │

02:22:41 #1491 [Debug] > │     | US0_0(v2) -> (* Computed *)                                            │

02:22:41 #1492 [Debug] > │         v2                                                                   │

02:22:41 #1493 [Debug] > │     | US0_1(v3) -> (* NotComputed *)                                         │

02:22:41 #1494 [Debug] > │         let v4 : UH0 = v3 ()                                                 │

02:22:41 #1495 [Debug] > │         let v13 : UH0 =                                                      │

02:22:41 #1496 [Debug] > │             match v4 with                                                    │

02:22:41 #1497 [Debug] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

02:22:41 #1498 [Debug] > │                 let v8 : US0 = US0_1(v7)                                     │

02:22:41 #1499 [Debug] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

02:22:41 #1500 [Debug] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

02:22:41 #1501 [Debug] > │                 UH0_0(v6, v10)                                               │

02:22:41 #1502 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:22:41 #1503 [Debug] > │                 UH0_1                                                        │

02:22:41 #1504 [Debug] > │         let v14 : US0 = US0_0(v13)                                           │

02:22:41 #1505 [Debug] > │         v0.l0 <- v14                                                         │

02:22:41 #1506 [Debug] > │         v13                                                                  │

02:22:41 #1507 [Debug] > │ and method3 (v0 : int32, v1 : UH0) : US1 =                                   │

02:22:41 #1508 [Debug] > │     match v1 with                                                            │

02:22:41 #1509 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:22:41 #1510 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:22:41 #1511 [Debug] > │         if v4 then                                                           │

02:22:41 #1512 [Debug] > │             US1_1(v2)                                                        │

02:22:41 #1513 [Debug] > │         else                                                                 │

02:22:41 #1514 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:22:41 #1515 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:22:41 #1516 [Debug] > │             method3(v6, v7)                                                  │

02:22:41 #1517 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:22:41 #1518 [Debug] > │         US1_0                                                                │

02:22:41 #1519 [Debug] > │ and method2 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1) : int32 =           │

02:22:41 #1520 [Debug] > │     let v4 : US0 = v0.l0                                                     │

02:22:41 #1521 [Debug] > │     let v19 : UH0 =                                                          │

02:22:41 #1522 [Debug] > │         match v4 with                                                        │

02:22:41 #1523 [Debug] > │         | US0_0(v5) -> (* Computed *)                                        │

02:22:41 #1524 [Debug] > │             v5                                                               │

02:22:41 #1525 [Debug] > │         | US0_1(v6) -> (* NotComputed *)                                     │

02:22:41 #1526 [Debug] > │             let v7 : UH0 = v6 ()                                             │

02:22:41 #1527 [Debug] > │             let v16 : UH0 =                                                  │

02:22:41 #1528 [Debug] > │                 match v7 with                                                │

02:22:41 #1529 [Debug] > │                 | UH0_0(v9, v10) -> (* StreamCons *)                         │

02:22:41 #1530 [Debug] > │                     let v11 : US0 = US0_1(v10)                               │

02:22:41 #1531 [Debug] > │                     let v12 : Mut0 = {l0 = v11} : Mut0                       │

02:22:41 #1532 [Debug] > │                     let v13 : (unit -> UH0) = closure11(v12)                 │

02:22:41 #1533 [Debug] > │                     UH0_0(v9, v13)                                           │

02:22:41 #1534 [Debug] > │                 | UH0_1 -> (* StreamNil *)                                   │

02:22:41 #1535 [Debug] > │                     UH0_1                                                    │

02:22:41 #1536 [Debug] > │             let v17 : US0 = US0_0(v16)                                       │

02:22:41 #1537 [Debug] > │             v0.l0 <- v17                                                     │

02:22:41 #1538 [Debug] > │             v16                                                              │

02:22:41 #1539 [Debug] > │     let v20 : int32 = v1.l0                                                  │

02:22:41 #1540 [Debug] > │     let v21 : US1 = method3(v20, v19)                                        │

02:22:41 #1541 [Debug] > │     match v21 with                                                           │

02:22:41 #1542 [Debug] > │     | US1_0 -> (* None *)                                                    │

02:22:41 #1543 [Debug] > │         let v25 : int32 = v3.l0                                              │

02:22:41 #1544 [Debug] > │         let v26 : bool = v25 = -1                                            │

02:22:41 #1545 [Debug] > │         if v26 then                                                          │

02:22:41 #1546 [Debug] > │             let v27 : int32 = v1.l0                                          │

02:22:41 #1547 [Debug] > │             v3.l0 <- v27                                                     │

02:22:41 #1548 [Debug] > │             ()                                                               │

02:22:41 #1549 [Debug] > │         let v28 : int32 = v2.l0                                              │

02:22:41 #1550 [Debug] > │         let v29 : int32 = v3.l0                                              │

02:22:41 #1551 [Debug] > │         let v30 : bool = v28 >= v29                                          │

02:22:41 #1552 [Debug] > │         let v33 : int32 =                                                    │

02:22:41 #1553 [Debug] > │             if v30 then                                                      │

02:22:41 #1554 [Debug] > │                 1                                                            │

02:22:41 #1555 [Debug] > │             else                                                             │

02:22:41 #1556 [Debug] > │                 let v31 : int32 = v2.l0                                      │

02:22:41 #1557 [Debug] > │                 let v32 : int32 = v31 + 1                                    │

02:22:41 #1558 [Debug] > │                 v32                                                          │

02:22:41 #1559 [Debug] > │         v2.l0 <- v33                                                         │

02:22:41 #1560 [Debug] > │         let v34 : int32 = v2.l0                                              │

02:22:41 #1561 [Debug] > │         let v35 : int32 = v34 - 1                                            │

02:22:41 #1562 [Debug] > │         v1.l0 <- v35                                                         │

02:22:41 #1563 [Debug] > │         method2(v0, v1, v2, v3)                                              │

02:22:41 #1564 [Debug] > │     | US1_1(v22) -> (* Some *)                                               │

02:22:41 #1565 [Debug] > │         let v23 : int32 = v1.l0                                              │

02:22:41 #1566 [Debug] > │         let v24 : int32 = v23 + 1                                            │

02:22:41 #1567 [Debug] > │         v1.l0 <- v24                                                         │

02:22:41 #1568 [Debug] > │         v22                                                                  │

02:22:41 #1569 [Debug] > │ and method9 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1570 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1} / acc: {v1}"     │

02:22:41 #1571 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:41 #1572 [Debug] > │     let v3 : int32 = v1 + 1                                                  │

02:22:41 #1573 [Debug] > │     US2_1(v3, v0)                                                            │

02:22:41 #1574 [Debug] > │ and method8 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1575 [Debug] > │     match v0 with                                                            │

02:22:41 #1576 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1577 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1578 [Debug] > │         if v5 then                                                           │

02:22:41 #1579 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1580 [Debug] > │             let v7 : string = $"accumulate_dice_rolls / power: {0} / acc:    │

02:22:41 #1581 [Debug] > │ {v1} / roll: {v3} / value: {v6}"                                             │

02:22:41 #1582 [Debug] > │             System.Console.WriteLine v7                                      │

02:22:41 #1583 [Debug] > │             let v8 : int32 = v1 + v6                                         │

02:22:41 #1584 [Debug] > │             method9(v4, v8)                                                  │

02:22:41 #1585 [Debug] > │         else                                                                 │

02:22:41 #1586 [Debug] > │             let v10 : string = $"accumulate_dice_rolls / power: {0} / acc:   │

02:22:41 #1587 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1588 [Debug] > │             System.Console.WriteLine v10                                     │

02:22:41 #1589 [Debug] > │             method9(v4, v1)                                                  │

02:22:41 #1590 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1591 [Debug] > │         US2_0                                                                │

02:22:41 #1592 [Debug] > │ and method7 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1593 [Debug] > │     match v0 with                                                            │

02:22:41 #1594 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1595 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1596 [Debug] > │         if v5 then                                                           │

02:22:41 #1597 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1598 [Debug] > │             let v7 : int32 = v6 * 6                                          │

02:22:41 #1599 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {1} / acc:    │

02:22:41 #1600 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1601 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1602 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1603 [Debug] > │             method8(v4, v9)                                                  │

02:22:41 #1604 [Debug] > │         else                                                                 │

02:22:41 #1605 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {1} / acc:   │

02:22:41 #1606 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1607 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1608 [Debug] > │             method8(v4, v1)                                                  │

02:22:41 #1609 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1610 [Debug] > │         US2_0                                                                │

02:22:41 #1611 [Debug] > │ and method6 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1612 [Debug] > │     match v0 with                                                            │

02:22:41 #1613 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1614 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1615 [Debug] > │         if v5 then                                                           │

02:22:41 #1616 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1617 [Debug] > │             let v7 : int32 = v6 * 36                                         │

02:22:41 #1618 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {2} / acc:    │

02:22:41 #1619 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1620 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1621 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1622 [Debug] > │             method7(v4, v9)                                                  │

02:22:41 #1623 [Debug] > │         else                                                                 │

02:22:41 #1624 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {2} / acc:   │

02:22:41 #1625 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1626 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1627 [Debug] > │             method7(v4, v1)                                                  │

02:22:41 #1628 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1629 [Debug] > │         US2_0                                                                │

02:22:41 #1630 [Debug] > │ and method5 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1631 [Debug] > │     match v0 with                                                            │

02:22:41 #1632 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1633 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1634 [Debug] > │         if v5 then                                                           │

02:22:41 #1635 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1636 [Debug] > │             let v7 : int32 = v6 * 216                                        │

02:22:41 #1637 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {3} / acc:    │

02:22:41 #1638 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1639 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1640 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1641 [Debug] > │             method6(v4, v9)                                                  │

02:22:41 #1642 [Debug] > │         else                                                                 │

02:22:41 #1643 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {3} / acc:   │

02:22:41 #1644 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1645 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1646 [Debug] > │             method6(v4, v1)                                                  │

02:22:41 #1647 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1648 [Debug] > │         US2_0                                                                │

02:22:41 #1649 [Debug] > │ and method4 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1650 [Debug] > │     match v0 with                                                            │

02:22:41 #1651 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1652 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1653 [Debug] > │         if v5 then                                                           │

02:22:41 #1654 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1655 [Debug] > │             let v7 : int32 = v6 * 1296                                       │

02:22:41 #1656 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {4} / acc:    │

02:22:41 #1657 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1658 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1659 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1660 [Debug] > │             method5(v4, v9)                                                  │

02:22:41 #1661 [Debug] > │         else                                                                 │

02:22:41 #1662 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {4} / acc:   │

02:22:41 #1663 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1664 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1665 [Debug] > │             method5(v4, v1)                                                  │

02:22:41 #1666 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1667 [Debug] > │         US2_0                                                                │

02:22:41 #1668 [Debug] > │ and method1 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : UH1, v5 :      │

02:22:41 #1669 [Debug] > │ int32) : int32 =                                                             │

02:22:41 #1670 [Debug] > │     let v6 : bool = v5 < 5                                                   │

02:22:41 #1671 [Debug] > │     if v6 then                                                               │

02:22:41 #1672 [Debug] > │         let v7 : int32 = method2(v0, v1, v2, v3)                             │

02:22:41 #1673 [Debug] > │         let v8 : UH1 = UH1_0(v7, v4)                                         │

02:22:41 #1674 [Debug] > │         let v9 : int32 = v5 + 1                                              │

02:22:41 #1675 [Debug] > │         method1(v0, v1, v2, v3, v8, v9)                                      │

02:22:41 #1676 [Debug] > │     else                                                                     │

02:22:41 #1677 [Debug] > │         let v11 : int32 = 0                                                  │

02:22:41 #1678 [Debug] > │         let v12 : US2 = method4(v4, v11)                                     │

02:22:41 #1679 [Debug] > │         match v12 with                                                       │

02:22:41 #1680 [Debug] > │         | US2_1(v13, v14) -> (* Some *)                                      │

02:22:41 #1681 [Debug] > │             let v15 : bool = v13 <= 2000                                     │

02:22:41 #1682 [Debug] > │             if v15 then                                                      │

02:22:41 #1683 [Debug] > │                 v13                                                          │

02:22:41 #1684 [Debug] > │             else                                                             │

02:22:41 #1685 [Debug] > │                 let v16 : int32 = method2(v0, v1, v2, v3)                    │

02:22:41 #1686 [Debug] > │                 let v17 : UH1 = UH1_0(v16, v4)                               │

02:22:41 #1687 [Debug] > │                 let v18 : int32 = v5 + 1                                     │

02:22:41 #1688 [Debug] > │                 method1(v0, v1, v2, v3, v17, v18)                            │

02:22:41 #1689 [Debug] > │         | _ ->                                                               │

02:22:41 #1690 [Debug] > │             let v21 : int32 = method2(v0, v1, v2, v3)                        │

02:22:41 #1691 [Debug] > │             let v22 : UH1 = UH1_0(v21, v4)                                   │

02:22:41 #1692 [Debug] > │             let v23 : int32 = v5 + 1                                         │

02:22:41 #1693 [Debug] > │             method1(v0, v1, v2, v3, v22, v23)                                │

02:22:41 #1694 [Debug] > │ and method0 () : unit =                                                      │

02:22:41 #1695 [Debug] > │     let v0 : (unit -> UH0) = closure0()                                      │

02:22:41 #1696 [Debug] > │     let v1 : US0 = US0_1(v0)                                                 │

02:22:41 #1697 [Debug] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

02:22:41 #1698 [Debug] > │     let v3 : Mut1 = {l0 = 0} : Mut1                                          │

02:22:41 #1699 [Debug] > │     let v4 : Mut1 = {l0 = 1} : Mut1                                          │

02:22:41 #1700 [Debug] > │     let v5 : Mut1 = {l0 = -1} : Mut1                                         │

02:22:41 #1701 [Debug] > │     let v6 : string = $"calculate_dice_count / max: {2000} / n: {5} / p:     │

02:22:41 #1702 [Debug] > │ {7776}"                                                                      │

02:22:41 #1703 [Debug] > │     System.Console.WriteLine v6                                              │

02:22:41 #1704 [Debug] > │     let v7 : UH1 = UH1_1                                                     │

02:22:41 #1705 [Debug] > │     let v8 : int32 = 0                                                       │

02:22:41 #1706 [Debug] > │     let v9 : int32 = method1(v2, v3, v4, v5, v7, v8)                         │

02:22:41 #1707 [Debug] > │     let v10 : bool = v9 = 995                                                │

02:22:41 #1708 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{995}"        │

02:22:41 #1709 [Debug] > │     let v12 : bool = v10 = false                                             │

02:22:41 #1710 [Debug] > │     if v12 then                                                              │

02:22:41 #1711 [Debug] > │         failwith<unit> v11                                                   │

02:22:41 #1712 [Debug] > │ method0()                                                                    │

02:22:41 #1713 [Debug] > │                                                                              │

02:22:41 #1714 [Debug] > │ calculate_dice_count / max: 2000 / n: 5 / p: 7776                            │

02:22:41 #1715 [Debug] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 1                          │

02:22:41 #1716 [Debug] > │ accumulate_dice_rolls / power: 3 / acc: 0 / roll: 5 / value: 864             │

02:22:41 #1717 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 864 / roll: 4 / value: 108           │

02:22:41 #1718 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 972 / roll: 4 / value: 18            │

02:22:41 #1719 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 990 / roll: 5 / value: 4             │

02:22:41 #1720 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 994                                 │

02:22:41 #1721 [Debug] > │                                                                              │

02:22:41 #1722 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:41 #1723 [Debug] >

02:22:41 #1724 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:41 #1725 [Debug] > // // test

02:22:41 #1726 [Debug] >

02:22:41 #1727 [Debug] > inl sequential_roll = create_sequential_roller [[ 5; 4; 4; 5; 2 ]]

02:22:41 #1728 [Debug] >

02:22:41 #1729 [Debug] > roll_progressively (Some console.write_line) sequential_roll false 2000

02:22:41 #1730 [Debug] > |> _equal 1678

02:22:41 #1731 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-4136-3630-33ac8dc5d2a2\main.spi

02:22:41 #1732 [Debug] >

02:22:41 #1733 [Debug] > ╭─[ 470.60ms - stdout ]────────────────────────────────────────────────────────╮

02:22:41 #1734 [Debug] > │ type UH0 =                                                                   │

02:22:41 #1735 [Debug] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

02:22:41 #1736 [Debug] > │     | UH0_1                                                                  │

02:22:41 #1737 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:41 #1738 [Debug] > │     | US0_0 of f0_0 : UH0                                                    │

02:22:41 #1739 [Debug] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

02:22:41 #1740 [Debug] > │ and Mut0 = {mutable l0 : US0}                                                │

02:22:41 #1741 [Debug] > │ and Mut1 = {mutable l0 : int32}                                              │

02:22:41 #1742 [Debug] > │ and UH1 =                                                                    │

02:22:41 #1743 [Debug] > │     | UH1_0 of int32 * UH1                                                   │

02:22:41 #1744 [Debug] > │     | UH1_1                                                                  │

02:22:41 #1745 [Debug] > │ and [<Struct>] US1 =                                                         │

02:22:41 #1746 [Debug] > │     | US1_0                                                                  │

02:22:41 #1747 [Debug] > │     | US1_1 of f1_0 : int32                                                  │

02:22:41 #1748 [Debug] > │ and [<Struct>] US2 =                                                         │

02:22:41 #1749 [Debug] > │     | US2_0                                                                  │

02:22:41 #1750 [Debug] > │     | US2_1 of f1_0 : int32 * f1_1 : UH1                                     │

02:22:41 #1751 [Debug] > │ let rec closure10 () () : UH0 =                                              │

02:22:41 #1752 [Debug] > │     UH0_1                                                                    │

02:22:41 #1753 [Debug] > │ and closure9 () () : UH0 =                                                   │

02:22:41 #1754 [Debug] > │     let v0 : (unit -> UH0) = closure10()                                     │

02:22:41 #1755 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1756 [Debug] > │ and closure8 () () : UH0 =                                                   │

02:22:41 #1757 [Debug] > │     let v0 : (unit -> UH0) = closure9()                                      │

02:22:41 #1758 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1759 [Debug] > │ and closure7 () () : UH0 =                                                   │

02:22:41 #1760 [Debug] > │     let v0 : (unit -> UH0) = closure8()                                      │

02:22:41 #1761 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1762 [Debug] > │ and closure6 () () : UH0 =                                                   │

02:22:41 #1763 [Debug] > │     let v0 : (unit -> UH0) = closure7()                                      │

02:22:41 #1764 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1765 [Debug] > │ and closure5 () () : UH0 =                                                   │

02:22:41 #1766 [Debug] > │     let v0 : (unit -> UH0) = closure6()                                      │

02:22:41 #1767 [Debug] > │     UH0_0(2, v0)                                                             │

02:22:41 #1768 [Debug] > │ and closure4 () () : UH0 =                                                   │

02:22:41 #1769 [Debug] > │     let v0 : (unit -> UH0) = closure5()                                      │

02:22:41 #1770 [Debug] > │     UH0_0(2, v0)                                                             │

02:22:41 #1771 [Debug] > │ and closure3 () () : UH0 =                                                   │

02:22:41 #1772 [Debug] > │     let v0 : (unit -> UH0) = closure4()                                      │

02:22:41 #1773 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1774 [Debug] > │ and closure2 () () : UH0 =                                                   │

02:22:41 #1775 [Debug] > │     let v0 : (unit -> UH0) = closure3()                                      │

02:22:41 #1776 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1777 [Debug] > │ and closure1 () () : UH0 =                                                   │

02:22:41 #1778 [Debug] > │     let v0 : (unit -> UH0) = closure2()                                      │

02:22:41 #1779 [Debug] > │     UH0_0(4, v0)                                                             │

02:22:41 #1780 [Debug] > │ and closure0 () () : UH0 =                                                   │

02:22:41 #1781 [Debug] > │     let v0 : (unit -> UH0) = closure1()                                      │

02:22:41 #1782 [Debug] > │     UH0_0(5, v0)                                                             │

02:22:41 #1783 [Debug] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

02:22:41 #1784 [Debug] > │     let v1 : US0 = v0.l0                                                     │

02:22:41 #1785 [Debug] > │     match v1 with                                                            │

02:22:41 #1786 [Debug] > │     | US0_0(v2) -> (* Computed *)                                            │

02:22:41 #1787 [Debug] > │         v2                                                                   │

02:22:41 #1788 [Debug] > │     | US0_1(v3) -> (* NotComputed *)                                         │

02:22:41 #1789 [Debug] > │         let v4 : UH0 = v3 ()                                                 │

02:22:41 #1790 [Debug] > │         let v13 : UH0 =                                                      │

02:22:41 #1791 [Debug] > │             match v4 with                                                    │

02:22:41 #1792 [Debug] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

02:22:41 #1793 [Debug] > │                 let v8 : US0 = US0_1(v7)                                     │

02:22:41 #1794 [Debug] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

02:22:41 #1795 [Debug] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

02:22:41 #1796 [Debug] > │                 UH0_0(v6, v10)                                               │

02:22:41 #1797 [Debug] > │             | UH0_1 -> (* StreamNil *)                                       │

02:22:41 #1798 [Debug] > │                 UH0_1                                                        │

02:22:41 #1799 [Debug] > │         let v14 : US0 = US0_0(v13)                                           │

02:22:41 #1800 [Debug] > │         v0.l0 <- v14                                                         │

02:22:41 #1801 [Debug] > │         v13                                                                  │

02:22:41 #1802 [Debug] > │ and method3 (v0 : int32, v1 : UH0) : US1 =                                   │

02:22:41 #1803 [Debug] > │     match v1 with                                                            │

02:22:41 #1804 [Debug] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

02:22:41 #1805 [Debug] > │         let v4 : bool = v0 <= 0                                              │

02:22:41 #1806 [Debug] > │         if v4 then                                                           │

02:22:41 #1807 [Debug] > │             US1_1(v2)                                                        │

02:22:41 #1808 [Debug] > │         else                                                                 │

02:22:41 #1809 [Debug] > │             let v6 : int32 = v0 - 1                                          │

02:22:41 #1810 [Debug] > │             let v7 : UH0 = v3 ()                                             │

02:22:41 #1811 [Debug] > │             method3(v6, v7)                                                  │

02:22:41 #1812 [Debug] > │     | UH0_1 -> (* StreamNil *)                                               │

02:22:41 #1813 [Debug] > │         US1_0                                                                │

02:22:41 #1814 [Debug] > │ and method2 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1) : int32 =           │

02:22:41 #1815 [Debug] > │     let v4 : US0 = v0.l0                                                     │

02:22:41 #1816 [Debug] > │     let v19 : UH0 =                                                          │

02:22:41 #1817 [Debug] > │         match v4 with                                                        │

02:22:41 #1818 [Debug] > │         | US0_0(v5) -> (* Computed *)                                        │

02:22:41 #1819 [Debug] > │             v5                                                               │

02:22:41 #1820 [Debug] > │         | US0_1(v6) -> (* NotComputed *)                                     │

02:22:41 #1821 [Debug] > │             let v7 : UH0 = v6 ()                                             │

02:22:41 #1822 [Debug] > │             let v16 : UH0 =                                                  │

02:22:41 #1823 [Debug] > │                 match v7 with                                                │

02:22:41 #1824 [Debug] > │                 | UH0_0(v9, v10) -> (* StreamCons *)                         │

02:22:41 #1825 [Debug] > │                     let v11 : US0 = US0_1(v10)                               │

02:22:41 #1826 [Debug] > │                     let v12 : Mut0 = {l0 = v11} : Mut0                       │

02:22:41 #1827 [Debug] > │                     let v13 : (unit -> UH0) = closure11(v12)                 │

02:22:41 #1828 [Debug] > │                     UH0_0(v9, v13)                                           │

02:22:41 #1829 [Debug] > │                 | UH0_1 -> (* StreamNil *)                                   │

02:22:41 #1830 [Debug] > │                     UH0_1                                                    │

02:22:41 #1831 [Debug] > │             let v17 : US0 = US0_0(v16)                                       │

02:22:41 #1832 [Debug] > │             v0.l0 <- v17                                                     │

02:22:41 #1833 [Debug] > │             v16                                                              │

02:22:41 #1834 [Debug] > │     let v20 : int32 = v1.l0                                                  │

02:22:41 #1835 [Debug] > │     let v21 : US1 = method3(v20, v19)                                        │

02:22:41 #1836 [Debug] > │     match v21 with                                                           │

02:22:41 #1837 [Debug] > │     | US1_0 -> (* None *)                                                    │

02:22:41 #1838 [Debug] > │         let v25 : int32 = v3.l0                                              │

02:22:41 #1839 [Debug] > │         let v26 : bool = v25 = -1                                            │

02:22:41 #1840 [Debug] > │         if v26 then                                                          │

02:22:41 #1841 [Debug] > │             let v27 : int32 = v1.l0                                          │

02:22:41 #1842 [Debug] > │             v3.l0 <- v27                                                     │

02:22:41 #1843 [Debug] > │             ()                                                               │

02:22:41 #1844 [Debug] > │         let v28 : int32 = v2.l0                                              │

02:22:41 #1845 [Debug] > │         let v29 : int32 = v3.l0                                              │

02:22:41 #1846 [Debug] > │         let v30 : bool = v28 >= v29                                          │

02:22:41 #1847 [Debug] > │         let v33 : int32 =                                                    │

02:22:41 #1848 [Debug] > │             if v30 then                                                      │

02:22:41 #1849 [Debug] > │                 1                                                            │

02:22:41 #1850 [Debug] > │             else                                                             │

02:22:41 #1851 [Debug] > │                 let v31 : int32 = v2.l0                                      │

02:22:41 #1852 [Debug] > │                 let v32 : int32 = v31 + 1                                    │

02:22:41 #1853 [Debug] > │                 v32                                                          │

02:22:41 #1854 [Debug] > │         v2.l0 <- v33                                                         │

02:22:41 #1855 [Debug] > │         let v34 : int32 = v2.l0                                              │

02:22:41 #1856 [Debug] > │         let v35 : int32 = v34 - 1                                            │

02:22:41 #1857 [Debug] > │         v1.l0 <- v35                                                         │

02:22:41 #1858 [Debug] > │         method2(v0, v1, v2, v3)                                              │

02:22:41 #1859 [Debug] > │     | US1_1(v22) -> (* Some *)                                               │

02:22:41 #1860 [Debug] > │         let v23 : int32 = v1.l0                                              │

02:22:41 #1861 [Debug] > │         let v24 : int32 = v23 + 1                                            │

02:22:41 #1862 [Debug] > │         v1.l0 <- v24                                                         │

02:22:41 #1863 [Debug] > │         v22                                                                  │

02:22:41 #1864 [Debug] > │ and method9 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1865 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1} / acc: {v1}"     │

02:22:41 #1866 [Debug] > │     System.Console.WriteLine v2                                              │

02:22:41 #1867 [Debug] > │     let v3 : int32 = v1 + 1                                                  │

02:22:41 #1868 [Debug] > │     US2_1(v3, v0)                                                            │

02:22:41 #1869 [Debug] > │ and method8 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1870 [Debug] > │     match v0 with                                                            │

02:22:41 #1871 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1872 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1873 [Debug] > │         if v5 then                                                           │

02:22:41 #1874 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1875 [Debug] > │             let v7 : string = $"accumulate_dice_rolls / power: {0} / acc:    │

02:22:41 #1876 [Debug] > │ {v1} / roll: {v3} / value: {v6}"                                             │

02:22:41 #1877 [Debug] > │             System.Console.WriteLine v7                                      │

02:22:41 #1878 [Debug] > │             let v8 : int32 = v1 + v6                                         │

02:22:41 #1879 [Debug] > │             method9(v4, v8)                                                  │

02:22:41 #1880 [Debug] > │         else                                                                 │

02:22:41 #1881 [Debug] > │             let v10 : string = $"accumulate_dice_rolls / power: {0} / acc:   │

02:22:41 #1882 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1883 [Debug] > │             System.Console.WriteLine v10                                     │

02:22:41 #1884 [Debug] > │             method9(v4, v1)                                                  │

02:22:41 #1885 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1886 [Debug] > │         US2_0                                                                │

02:22:41 #1887 [Debug] > │ and method7 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1888 [Debug] > │     match v0 with                                                            │

02:22:41 #1889 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1890 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1891 [Debug] > │         if v5 then                                                           │

02:22:41 #1892 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1893 [Debug] > │             let v7 : int32 = v6 * 6                                          │

02:22:41 #1894 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {1} / acc:    │

02:22:41 #1895 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1896 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1897 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1898 [Debug] > │             method8(v4, v9)                                                  │

02:22:41 #1899 [Debug] > │         else                                                                 │

02:22:41 #1900 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {1} / acc:   │

02:22:41 #1901 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1902 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1903 [Debug] > │             method8(v4, v1)                                                  │

02:22:41 #1904 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1905 [Debug] > │         US2_0                                                                │

02:22:41 #1906 [Debug] > │ and method6 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1907 [Debug] > │     match v0 with                                                            │

02:22:41 #1908 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1909 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1910 [Debug] > │         if v5 then                                                           │

02:22:41 #1911 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1912 [Debug] > │             let v7 : int32 = v6 * 36                                         │

02:22:41 #1913 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {2} / acc:    │

02:22:41 #1914 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1915 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1916 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1917 [Debug] > │             method7(v4, v9)                                                  │

02:22:41 #1918 [Debug] > │         else                                                                 │

02:22:41 #1919 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {2} / acc:   │

02:22:41 #1920 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1921 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1922 [Debug] > │             method7(v4, v1)                                                  │

02:22:41 #1923 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1924 [Debug] > │         US2_0                                                                │

02:22:41 #1925 [Debug] > │ and method5 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1926 [Debug] > │     match v0 with                                                            │

02:22:41 #1927 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1928 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1929 [Debug] > │         if v5 then                                                           │

02:22:41 #1930 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1931 [Debug] > │             let v7 : int32 = v6 * 216                                        │

02:22:41 #1932 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {3} / acc:    │

02:22:41 #1933 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1934 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1935 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1936 [Debug] > │             method6(v4, v9)                                                  │

02:22:41 #1937 [Debug] > │         else                                                                 │

02:22:41 #1938 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {3} / acc:   │

02:22:41 #1939 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1940 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1941 [Debug] > │             method6(v4, v1)                                                  │

02:22:41 #1942 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1943 [Debug] > │         US2_0                                                                │

02:22:41 #1944 [Debug] > │ and method4 (v0 : UH1, v1 : int32) : US2 =                                   │

02:22:41 #1945 [Debug] > │     match v0 with                                                            │

02:22:41 #1946 [Debug] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

02:22:41 #1947 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:41 #1948 [Debug] > │         if v5 then                                                           │

02:22:41 #1949 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:41 #1950 [Debug] > │             let v7 : int32 = v6 * 1296                                       │

02:22:41 #1951 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {4} / acc:    │

02:22:41 #1952 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:41 #1953 [Debug] > │             System.Console.WriteLine v8                                      │

02:22:41 #1954 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:41 #1955 [Debug] > │             method5(v4, v9)                                                  │

02:22:41 #1956 [Debug] > │         else                                                                 │

02:22:41 #1957 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {4} / acc:   │

02:22:41 #1958 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:41 #1959 [Debug] > │             System.Console.WriteLine v11                                     │

02:22:41 #1960 [Debug] > │             method5(v4, v1)                                                  │

02:22:41 #1961 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:41 #1962 [Debug] > │         US2_0                                                                │

02:22:41 #1963 [Debug] > │ and method1 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : UH1, v5 :      │

02:22:41 #1964 [Debug] > │ int32) : int32 =                                                             │

02:22:41 #1965 [Debug] > │     let v6 : bool = v5 < 5                                                   │

02:22:41 #1966 [Debug] > │     if v6 then                                                               │

02:22:41 #1967 [Debug] > │         let v7 : int32 = method2(v0, v1, v2, v3)                             │

02:22:41 #1968 [Debug] > │         let v8 : UH1 = UH1_0(v7, v4)                                         │

02:22:41 #1969 [Debug] > │         let v9 : int32 = v5 + 1                                              │

02:22:41 #1970 [Debug] > │         method1(v0, v1, v2, v3, v8, v9)                                      │

02:22:41 #1971 [Debug] > │     else                                                                     │

02:22:41 #1972 [Debug] > │         let v11 : int32 = 0                                                  │

02:22:41 #1973 [Debug] > │         let v12 : US2 = method4(v4, v11)                                     │

02:22:41 #1974 [Debug] > │         match v12 with                                                       │

02:22:41 #1975 [Debug] > │         | US2_1(v13, v14) -> (* Some *)                                      │

02:22:41 #1976 [Debug] > │             let v15 : bool = v13 <= 2000                                     │

02:22:41 #1977 [Debug] > │             if v15 then                                                      │

02:22:41 #1978 [Debug] > │                 v13                                                          │

02:22:41 #1979 [Debug] > │             else                                                             │

02:22:41 #1980 [Debug] > │                 let v16 : int32 = method2(v0, v1, v2, v3)                    │

02:22:41 #1981 [Debug] > │                 let v17 : UH1 = UH1_0(v16, v4)                               │

02:22:41 #1982 [Debug] > │                 let v18 : int32 = v5 + 1                                     │

02:22:41 #1983 [Debug] > │                 method1(v0, v1, v2, v3, v17, v18)                            │

02:22:41 #1984 [Debug] > │         | _ ->                                                               │

02:22:41 #1985 [Debug] > │             let v21 : int32 = method2(v0, v1, v2, v3)                        │

02:22:41 #1986 [Debug] > │             let v22 : UH1 = UH1_0(v21, v4)                                   │

02:22:41 #1987 [Debug] > │             let v23 : int32 = v5 + 1                                         │

02:22:41 #1988 [Debug] > │             method1(v0, v1, v2, v3, v22, v23)                                │

02:22:41 #1989 [Debug] > │ and method0 () : unit =                                                      │

02:22:41 #1990 [Debug] > │     let v0 : (unit -> UH0) = closure0()                                      │

02:22:41 #1991 [Debug] > │     let v1 : US0 = US0_1(v0)                                                 │

02:22:41 #1992 [Debug] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

02:22:41 #1993 [Debug] > │     let v3 : Mut1 = {l0 = 0} : Mut1                                          │

02:22:41 #1994 [Debug] > │     let v4 : Mut1 = {l0 = 1} : Mut1                                          │

02:22:41 #1995 [Debug] > │     let v5 : Mut1 = {l0 = -1} : Mut1                                         │

02:22:41 #1996 [Debug] > │     let v6 : string = $"calculate_dice_count / max: {2000} / n: {5} / p:     │

02:22:41 #1997 [Debug] > │ {7776}"                                                                      │

02:22:41 #1998 [Debug] > │     System.Console.WriteLine v6                                              │

02:22:41 #1999 [Debug] > │     let v7 : UH1 = UH1_1                                                     │

02:22:41 #2000 [Debug] > │     let v8 : int32 = 0                                                       │

02:22:41 #2001 [Debug] > │     let v9 : int32 = method1(v2, v3, v4, v5, v7, v8)                         │

02:22:41 #2002 [Debug] > │     let v10 : bool = v9 = 1678                                               │

02:22:41 #2003 [Debug] > │     let v11 : string = $"_equal / actual: %A{v9} / expected: %A{1678}"       │

02:22:41 #2004 [Debug] > │     let v12 : bool = v10 = false                                             │

02:22:41 #2005 [Debug] > │     if v12 then                                                              │

02:22:41 #2006 [Debug] > │         failwith<unit> v11                                                   │

02:22:41 #2007 [Debug] > │ method0()                                                                    │

02:22:41 #2008 [Debug] > │                                                                              │

02:22:41 #2009 [Debug] > │ calculate_dice_count / max: 2000 / n: 5 / p: 7776                            │

02:22:41 #2010 [Debug] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296            │

02:22:41 #2011 [Debug] > │ accumulate_dice_rolls / power: 3 / acc: 1296 / roll: 5 / value: 864          │

02:22:41 #2012 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 2160 / roll: 4 / value: 108          │

02:22:41 #2013 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 2268 / roll: 4 / value: 18           │

02:22:41 #2014 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 2286 / roll: 5 / value: 4            │

02:22:41 #2015 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 2290                                │

02:22:41 #2016 [Debug] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296            │

02:22:41 #2017 [Debug] > │ accumulate_dice_rolls / power: 3 / acc: 1296 / roll: 2 / value: 216          │

02:22:41 #2018 [Debug] > │ accumulate_dice_rolls / power: 2 / acc: 1512 / roll: 5 / value: 144          │

02:22:41 #2019 [Debug] > │ accumulate_dice_rolls / power: 1 / acc: 1656 / roll: 4 / value: 18           │

02:22:41 #2020 [Debug] > │ accumulate_dice_rolls / power: 0 / acc: 1674 / roll: 4 / value: 3            │

02:22:41 #2021 [Debug] > │ accumulate_dice_rolls / power: -1 / acc: 1677                                │

02:22:41 #2022 [Debug] > │                                                                              │

02:22:41 #2023 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:41 #2024 [Debug] >

02:22:41 #2025 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:41 #2026 [Debug] > // // test

02:22:41 #2027 [Debug] >

02:22:41 #2028 [Debug] > listm'.init_series 1i32 40 1

02:22:41 #2029 [Debug] > |> listm.map (fun _ => roll_progressively None roll_dice false 10)

02:22:41 #2030 [Debug] > |> listm'.group_by id

02:22:41 #2031 [Debug] > |> listm.map (fun (k, v) => k, (listm.length v : i32))

02:22:41 #2032 [Debug] > |> listm.toArray

02:22:41 #2033 [Debug] > |> fun (ar : a i32 _) =>

02:22:41 #2034 [Debug] >     $"!ar |> Array.sortBy (fun (struct (a, b)) -> a)" : a i32 $"struct (int32 *

02:22:41 #2035 [Debug] > int32)"

02:22:42 #2036 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-4196-9644-92ae3321829d\main.spi

02:22:42 #2037 [Debug] >

02:22:42 #2038 [Debug] > ╭─[ 713.64ms - return value ]──────────────────────────────────────────────────╮

02:22:42 #2039 [Debug] > │ <table><thead><tr><th><i>index</i></th><th>value</th></tr></thead><tbody><tr │

02:22:42 #2040 [Debug] > │ ><td>0</td><td><details class="dni-treeview"><summary><span                  │

02:22:42 #2041 [Debug] > │ class="dni-code-hint"><code>(1,                                              │

02:22:42 #2042 [Debug] > │ 2)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2043 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2044 [Debug] > │ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2045 [Debug] > │ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2046 [Debug] > │ tails></td></tr><tr><td>1</td><td><details                                   │

02:22:42 #2047 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(2,          │

02:22:42 #2048 [Debug] > │ 6)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2049 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2050 [Debug] > │ class="dni-plaintext"><pre>2</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2051 [Debug] > │ class="dni-plaintext"><pre>6</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2052 [Debug] > │ tails></td></tr><tr><td>2</td><td><details                                   │

02:22:42 #2053 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(3,          │

02:22:42 #2054 [Debug] > │ 4)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2055 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2056 [Debug] > │ class="dni-plaintext"><pre>3</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2057 [Debug] > │ class="dni-plaintext"><pre>4</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2058 [Debug] > │ tails></td></tr><tr><td>3</td><td><details                                   │

02:22:42 #2059 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(4,          │

02:22:42 #2060 [Debug] > │ 5)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2061 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2062 [Debug] > │ class="dni-plaintext"><pre>4</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2063 [Debug] > │ class="dni-plaintext"><pre>5</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2064 [Debug] > │ tails></td></tr><tr><td>4</td><td><details                                   │

02:22:42 #2065 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(5,          │

02:22:42 #2066 [Debug] > │ 9)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2067 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2068 [Debug] > │ class="dni-plaintext"><pre>5</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2069 [Debug] > │ class="dni-plaintext"><pre>9</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2070 [Debug] > │ tails></td></tr><tr><td>5</td><td><details                                   │

02:22:42 #2071 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(6,          │

02:22:42 #2072 [Debug] > │ 2)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2073 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2074 [Debug] > │ class="dni-plaintext"><pre>6</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2075 [Debug] > │ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2076 [Debug] > │ tails></td></tr><tr><td>6</td><td><details                                   │

02:22:42 #2077 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(7,          │

02:22:42 #2078 [Debug] > │ 1)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2079 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2080 [Debug] > │ class="dni-plaintext"><pre>7</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2081 [Debug] > │ class="dni-plaintext"><pre>1</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2082 [Debug] > │ tails></td></tr><tr><td>7</td><td><details                                   │

02:22:42 #2083 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(8,          │

02:22:42 #2084 [Debug] > │ 3)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2085 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2086 [Debug] > │ class="dni-plaintext"><pre>8</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2087 [Debug] > │ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2088 [Debug] > │ tails></td></tr><tr><td>8</td><td><details                                   │

02:22:42 #2089 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(9,          │

02:22:42 #2090 [Debug] > │ 5)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2091 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2092 [Debug] > │ class="dni-plaintext"><pre>9</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:42 #2093 [Debug] > │ class="dni-plaintext"><pre>5</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2094 [Debug] > │ tails></td></tr><tr><td>9</td><td><details                                   │

02:22:42 #2095 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(10,         │

02:22:42 #2096 [Debug] > │ 3)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:42 #2097 [Debug] > │ >Item1</td><td><div                                                          │

02:22:42 #2098 [Debug] > │ class="dni-plaintext"><pre>10</pre></div></td></tr><tr><td>Item2</td><td><di │

02:22:42 #2099 [Debug] > │ v                                                                            │

02:22:42 #2100 [Debug] > │ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

02:22:42 #2101 [Debug] > │ tails></td></tr></tbody></table><style>                                      │

02:22:42 #2102 [Debug] > │ .dni-code-hint {                                                             │

02:22:42 #2103 [Debug] > │     font-style: italic;                                                      │

02:22:42 #2104 [Debug] > │     overflow: hidden;                                                        │

02:22:42 #2105 [Debug] > │     white-space: nowrap;                                                     │

02:22:42 #2106 [Debug] > │ }                                                                            │

02:22:42 #2107 [Debug] > │ .dni-treeview {                                                              │

02:22:42 #2108 [Debug] > │     white-space: nowrap;                                                     │

02:22:42 #2109 [Debug] > │ }                                                                            │

02:22:42 #2110 [Debug] > │ .dni-treeview td {                                                           │

02:22:42 #2111 [Debug] > │     vertical-align: top;                                                     │

02:22:42 #2112 [Debug] > │     text-align: start;                                                       │

02:22:42 #2113 [Debug] > │ }                                                                            │

02:22:42 #2114 [Debug] > │ details.dni-treeview {                                                       │

02:22:42 #2115 [Debug] > │     padding-left: 1em;                                                       │

02:22:42 #2116 [Debug] > │ }                                                                            │

02:22:42 #2117 [Debug] > │ table td {                                                                   │

02:22:42 #2118 [Debug] > │     text-align: start;                                                       │

02:22:42 #2119 [Debug] > │ }                                                                            │

02:22:42 #2120 [Debug] > │ table tr {                                                                   │

02:22:42 #2121 [Debug] > │     vertical-align: top;                                                     │

02:22:42 #2122 [Debug] > │     margin: 0em 0px;                                                         │

02:22:42 #2123 [Debug] > │ }                                                                            │

02:22:42 #2124 [Debug] > │ table tr td pre                                                              │

02:22:42 #2125 [Debug] > │ {                                                                            │

02:22:42 #2126 [Debug] > │     vertical-align: top !important;                                          │

02:22:42 #2127 [Debug] > │     margin: 0em 0px !important;                                              │

02:22:42 #2128 [Debug] > │ }                                                                            │

02:22:42 #2129 [Debug] > │ table th {                                                                   │

02:22:42 #2130 [Debug] > │     text-align: start;                                                       │

02:22:42 #2131 [Debug] > │ }                                                                            │

02:22:42 #2132 [Debug] > │ </style>                                                                     │

02:22:42 #2133 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:42 #2134 [Debug] >

02:22:42 #2135 [Debug] > ╭─[ 760.27ms - stdout ]────────────────────────────────────────────────────────╮

02:22:42 #2136 [Debug] > │ type UH0 =                                                                   │

02:22:42 #2137 [Debug] > │     | UH0_0 of int32 * UH0                                                   │

02:22:42 #2138 [Debug] > │     | UH0_1                                                                  │

02:22:42 #2139 [Debug] > │ and [<Struct>] US0 =                                                         │

02:22:42 #2140 [Debug] > │     | US0_0                                                                  │

02:22:42 #2141 [Debug] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

02:22:42 #2142 [Debug] > │ and UH1 =                                                                    │

02:22:42 #2143 [Debug] > │     | UH1_0 of int32 * UH0 * UH1                                             │

02:22:42 #2144 [Debug] > │     | UH1_1                                                                  │

02:22:42 #2145 [Debug] > │ and UH2 =                                                                    │

02:22:42 #2146 [Debug] > │     | UH2_0 of int32 * int32 * UH2                                           │

02:22:42 #2147 [Debug] > │     | UH2_1                                                                  │

02:22:42 #2148 [Debug] > │ let rec method4 (v0 : UH0, v1 : int32) : US0 =                               │

02:22:42 #2149 [Debug] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1} / acc: {v1}"     │

02:22:42 #2150 [Debug] > │     let v3 : int32 = v1 + 1                                                  │

02:22:42 #2151 [Debug] > │     US0_1(v3, v0)                                                            │

02:22:42 #2152 [Debug] > │ and method3 (v0 : UH0, v1 : int32) : US0 =                                   │

02:22:42 #2153 [Debug] > │     match v0 with                                                            │

02:22:42 #2154 [Debug] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

02:22:42 #2155 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:42 #2156 [Debug] > │         if v5 then                                                           │

02:22:42 #2157 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:42 #2158 [Debug] > │             let v7 : string = $"accumulate_dice_rolls / power: {0} / acc:    │

02:22:42 #2159 [Debug] > │ {v1} / roll: {v3} / value: {v6}"                                             │

02:22:42 #2160 [Debug] > │             let v8 : int32 = v1 + v6                                         │

02:22:42 #2161 [Debug] > │             method4(v4, v8)                                                  │

02:22:42 #2162 [Debug] > │         else                                                                 │

02:22:42 #2163 [Debug] > │             let v10 : string = $"accumulate_dice_rolls / power: {0} / acc:   │

02:22:42 #2164 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:42 #2165 [Debug] > │             method4(v4, v1)                                                  │

02:22:42 #2166 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:22:42 #2167 [Debug] > │         US0_0                                                                │

02:22:42 #2168 [Debug] > │ and method2 (v0 : UH0, v1 : int32) : US0 =                                   │

02:22:42 #2169 [Debug] > │     match v0 with                                                            │

02:22:42 #2170 [Debug] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

02:22:42 #2171 [Debug] > │         let v5 : bool = v3 > 1                                               │

02:22:42 #2172 [Debug] > │         if v5 then                                                           │

02:22:42 #2173 [Debug] > │             let v6 : int32 = v3 - 1                                          │

02:22:42 #2174 [Debug] > │             let v7 : int32 = v6 * 6                                          │

02:22:42 #2175 [Debug] > │             let v8 : string = $"accumulate_dice_rolls / power: {1} / acc:    │

02:22:42 #2176 [Debug] > │ {v1} / roll: {v3} / value: {v7}"                                             │

02:22:42 #2177 [Debug] > │             let v9 : int32 = v1 + v7                                         │

02:22:42 #2178 [Debug] > │             method3(v4, v9)                                                  │

02:22:42 #2179 [Debug] > │         else                                                                 │

02:22:42 #2180 [Debug] > │             let v11 : string = $"accumulate_dice_rolls / power: {1} / acc:   │

02:22:42 #2181 [Debug] > │ {v1} / roll: {v3}"                                                           │

02:22:42 #2182 [Debug] > │             method3(v4, v1)                                                  │

02:22:42 #2183 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:22:42 #2184 [Debug] > │         US0_0                                                                │

02:22:42 #2185 [Debug] > │ and method1 (v0 : UH0, v1 : int32) : int32 =                                 │

02:22:42 #2186 [Debug] > │     let v2 : bool = v1 < 2                                                   │

02:22:42 #2187 [Debug] > │     if v2 then                                                               │

02:22:42 #2188 [Debug] > │         let v3 : int32 = System.Random().Next (1, 7)                         │

02:22:42 #2189 [Debug] > │         let v4 : UH0 = UH0_0(v3, v0)                                         │

02:22:42 #2190 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:22:42 #2191 [Debug] > │         method1(v4, v5)                                                      │

02:22:42 #2192 [Debug] > │     else                                                                     │

02:22:42 #2193 [Debug] > │         let v7 : int32 = 0                                                   │

02:22:42 #2194 [Debug] > │         let v8 : US0 = method2(v0, v7)                                       │

02:22:42 #2195 [Debug] > │         match v8 with                                                        │

02:22:42 #2196 [Debug] > │         | US0_1(v9, v10) -> (* Some *)                                       │

02:22:42 #2197 [Debug] > │             let v11 : bool = v9 <= 10                                        │

02:22:42 #2198 [Debug] > │             if v11 then                                                      │

02:22:42 #2199 [Debug] > │                 v9                                                           │

02:22:42 #2200 [Debug] > │             else                                                             │

02:22:42 #2201 [Debug] > │                 let v12 : int32 = System.Random().Next (1, 7)                │

02:22:42 #2202 [Debug] > │                 let v13 : UH0 = UH0_0(v12, v0)                               │

02:22:42 #2203 [Debug] > │                 let v14 : int32 = v1 + 1                                     │

02:22:42 #2204 [Debug] > │                 method1(v13, v14)                                            │

02:22:42 #2205 [Debug] > │         | _ ->                                                               │

02:22:42 #2206 [Debug] > │             let v17 : int32 = System.Random().Next (1, 7)                    │

02:22:42 #2207 [Debug] > │             let v18 : UH0 = UH0_0(v17, v0)                                   │

02:22:42 #2208 [Debug] > │             let v19 : int32 = v1 + 1                                         │

02:22:42 #2209 [Debug] > │             method1(v18, v19)                                                │

02:22:42 #2210 [Debug] > │ and method5 (v0 : int32, v1 : UH1, v2 : bool, v3 : UH1) : struct (bool *     │

02:22:42 #2211 [Debug] > │ UH1) =                                                                       │

02:22:42 #2212 [Debug] > │     match v1 with                                                            │

02:22:42 #2213 [Debug] > │     | UH1_0(v4, v5, v6) -> (* Cons *)                                        │

02:22:42 #2214 [Debug] > │         let v7 : bool = v4 = v0                                              │

02:22:42 #2215 [Debug] > │         let struct (v11 : bool, v12 : UH1) =                                 │

02:22:42 #2216 [Debug] > │             if v7 then                                                       │

02:22:42 #2217 [Debug] > │                 let v8 : UH0 = UH0_0(v0, v5)                                 │

02:22:42 #2218 [Debug] > │                 let v9 : UH1 = UH1_0(v4, v8, v3)                             │

02:22:42 #2219 [Debug] > │                 struct (true, v9)                                            │

02:22:42 #2220 [Debug] > │             else                                                             │

02:22:42 #2221 [Debug] > │                 let v10 : UH1 = UH1_0(v4, v5, v3)                            │

02:22:42 #2222 [Debug] > │                 struct (v2, v10)                                             │

02:22:42 #2223 [Debug] > │         method5(v0, v6, v11, v12)                                            │

02:22:42 #2224 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:42 #2225 [Debug] > │         struct (v2, v3)                                                      │

02:22:42 #2226 [Debug] > │ and method7 (v0 : UH0, v1 : int32) : int32 =                                 │

02:22:42 #2227 [Debug] > │     match v0 with                                                            │

02:22:42 #2228 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:22:42 #2229 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:22:42 #2230 [Debug] > │         method7(v3, v4)                                                      │

02:22:42 #2231 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:22:42 #2232 [Debug] > │         v1                                                                   │

02:22:42 #2233 [Debug] > │ and method6 (v0 : UH1, v1 : UH2) : UH2 =                                     │

02:22:42 #2234 [Debug] > │     match v0 with                                                            │

02:22:42 #2235 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:22:42 #2236 [Debug] > │         let v5 : UH2 = method6(v4, v1)                                       │

02:22:42 #2237 [Debug] > │         let v6 : int32 = 0                                                   │

02:22:42 #2238 [Debug] > │         let v7 : int32 = method7(v3, v6)                                     │

02:22:42 #2239 [Debug] > │         UH2_0(v2, v7, v5)                                                    │

02:22:42 #2240 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:22:42 #2241 [Debug] > │         v1                                                                   │

02:22:42 #2242 [Debug] > │ and method9 (v0 : UH2, v1 : int32) : int32 =                                 │

02:22:42 #2243 [Debug] > │     match v0 with                                                            │

02:22:42 #2244 [Debug] > │     | UH2_0(v2, v3, v4) -> (* Cons *)                                        │

02:22:42 #2245 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:22:42 #2246 [Debug] > │         method9(v4, v5)                                                      │

02:22:42 #2247 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:22:42 #2248 [Debug] > │         v1                                                                   │

02:22:42 #2249 [Debug] > │ and method10 (v0 : (struct (int32 * int32) []), v1 : UH2, v2 : int32) :      │

02:22:42 #2250 [Debug] > │ int32 =                                                                      │

02:22:42 #2251 [Debug] > │     match v1 with                                                            │

02:22:42 #2252 [Debug] > │     | UH2_0(v3, v4, v5) -> (* Cons *)                                        │

02:22:42 #2253 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:22:42 #2254 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:22:42 #2255 [Debug] > │         method10(v0, v5, v6)                                                 │

02:22:42 #2256 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:22:42 #2257 [Debug] > │         v2                                                                   │

02:22:42 #2258 [Debug] > │ and method8 (v0 : UH2) : (struct (int32 * int32) []) =                       │

02:22:42 #2259 [Debug] > │     let v1 : int32 = 0                                                       │

02:22:42 #2260 [Debug] > │     let v2 : int32 = method9(v0, v1)                                         │

02:22:42 #2261 [Debug] > │     let v3 : (struct (int32 * int32) []) = Array.zeroCreate<struct (int32 *  │

02:22:42 #2262 [Debug] > │ int32)> (v2)                                                                 │

02:22:42 #2263 [Debug] > │     let v4 : int32 = 0                                                       │

02:22:42 #2264 [Debug] > │     let v5 : int32 = method10(v3, v0, v4)                                    │

02:22:42 #2265 [Debug] > │     v3                                                                       │

02:22:42 #2266 [Debug] > │ and method0 () : (struct (int32 * int32) []) =                               │

02:22:42 #2267 [Debug] > │     let v0 : string = $"calculate_dice_count / max: {10} / n: {2} / p: {36}" │

02:22:42 #2268 [Debug] > │     let v1 : UH0 = UH0_1                                                     │

02:22:42 #2269 [Debug] > │     let v2 : int32 = 0                                                       │

02:22:42 #2270 [Debug] > │     let v3 : int32 = method1(v1, v2)                                         │

02:22:42 #2271 [Debug] > │     let v4 : string = $"calculate_dice_count / max: {10} / n: {2} / p: {36}" │

02:22:42 #2272 [Debug] > │     let v5 : UH0 = UH0_1                                                     │

02:22:42 #2273 [Debug] > │     let v6 : int32 = 0                                                       │

02:22:42 #2274 [Debug] > │     let v7 : int32 = method1(v5, v6)                                         │

02:22:42 #2275 [Debug] > │     let v8 : string = $"calculate_dice_count / max: {10} / n: {2} / p: {36}" │

02:22:42 #2276 [Debug] > │     let v9 : UH0 = UH0_1                                                     │

02:22:42 #2277 [Debug] > │     let v10 : int32 = 0                                                      │

02:22:42 #2278 [Debug] > │     let v11 : int32 = method1(v9, v10)                                       │

02:22:42 #2279 [Debug] > │     let v12 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2280 [Debug] > │ {36}"                                                                        │

02:22:42 #2281 [Debug] > │     let v13 : UH0 = UH0_1                                                    │

02:22:42 #2282 [Debug] > │     let v14 : int32 = 0                                                      │

02:22:42 #2283 [Debug] > │     let v15 : int32 = method1(v13, v14)                                      │

02:22:42 #2284 [Debug] > │     let v16 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2285 [Debug] > │ {36}"                                                                        │

02:22:42 #2286 [Debug] > │     let v17 : UH0 = UH0_1                                                    │

02:22:42 #2287 [Debug] > │     let v18 : int32 = 0                                                      │

02:22:42 #2288 [Debug] > │     let v19 : int32 = method1(v17, v18)                                      │

02:22:42 #2289 [Debug] > │     let v20 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2290 [Debug] > │ {36}"                                                                        │

02:22:42 #2291 [Debug] > │     let v21 : UH0 = UH0_1                                                    │

02:22:42 #2292 [Debug] > │     let v22 : int32 = 0                                                      │

02:22:42 #2293 [Debug] > │     let v23 : int32 = method1(v21, v22)                                      │

02:22:42 #2294 [Debug] > │     let v24 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2295 [Debug] > │ {36}"                                                                        │

02:22:42 #2296 [Debug] > │     let v25 : UH0 = UH0_1                                                    │

02:22:42 #2297 [Debug] > │     let v26 : int32 = 0                                                      │

02:22:42 #2298 [Debug] > │     let v27 : int32 = method1(v25, v26)                                      │

02:22:42 #2299 [Debug] > │     let v28 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2300 [Debug] > │ {36}"                                                                        │

02:22:42 #2301 [Debug] > │     let v29 : UH0 = UH0_1                                                    │

02:22:42 #2302 [Debug] > │     let v30 : int32 = 0                                                      │

02:22:42 #2303 [Debug] > │     let v31 : int32 = method1(v29, v30)                                      │

02:22:42 #2304 [Debug] > │     let v32 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2305 [Debug] > │ {36}"                                                                        │

02:22:42 #2306 [Debug] > │     let v33 : UH0 = UH0_1                                                    │

02:22:42 #2307 [Debug] > │     let v34 : int32 = 0                                                      │

02:22:42 #2308 [Debug] > │     let v35 : int32 = method1(v33, v34)                                      │

02:22:42 #2309 [Debug] > │     let v36 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2310 [Debug] > │ {36}"                                                                        │

02:22:42 #2311 [Debug] > │     let v37 : UH0 = UH0_1                                                    │

02:22:42 #2312 [Debug] > │     let v38 : int32 = 0                                                      │

02:22:42 #2313 [Debug] > │     let v39 : int32 = method1(v37, v38)                                      │

02:22:42 #2314 [Debug] > │     let v40 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2315 [Debug] > │ {36}"                                                                        │

02:22:42 #2316 [Debug] > │     let v41 : UH0 = UH0_1                                                    │

02:22:42 #2317 [Debug] > │     let v42 : int32 = 0                                                      │

02:22:42 #2318 [Debug] > │     let v43 : int32 = method1(v41, v42)                                      │

02:22:42 #2319 [Debug] > │     let v44 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2320 [Debug] > │ {36}"                                                                        │

02:22:42 #2321 [Debug] > │     let v45 : UH0 = UH0_1                                                    │

02:22:42 #2322 [Debug] > │     let v46 : int32 = 0                                                      │

02:22:42 #2323 [Debug] > │     let v47 : int32 = method1(v45, v46)                                      │

02:22:42 #2324 [Debug] > │     let v48 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2325 [Debug] > │ {36}"                                                                        │

02:22:42 #2326 [Debug] > │     let v49 : UH0 = UH0_1                                                    │

02:22:42 #2327 [Debug] > │     let v50 : int32 = 0                                                      │

02:22:42 #2328 [Debug] > │     let v51 : int32 = method1(v49, v50)                                      │

02:22:42 #2329 [Debug] > │     let v52 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2330 [Debug] > │ {36}"                                                                        │

02:22:42 #2331 [Debug] > │     let v53 : UH0 = UH0_1                                                    │

02:22:42 #2332 [Debug] > │     let v54 : int32 = 0                                                      │

02:22:42 #2333 [Debug] > │     let v55 : int32 = method1(v53, v54)                                      │

02:22:42 #2334 [Debug] > │     let v56 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2335 [Debug] > │ {36}"                                                                        │

02:22:42 #2336 [Debug] > │     let v57 : UH0 = UH0_1                                                    │

02:22:42 #2337 [Debug] > │     let v58 : int32 = 0                                                      │

02:22:42 #2338 [Debug] > │     let v59 : int32 = method1(v57, v58)                                      │

02:22:42 #2339 [Debug] > │     let v60 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2340 [Debug] > │ {36}"                                                                        │

02:22:42 #2341 [Debug] > │     let v61 : UH0 = UH0_1                                                    │

02:22:42 #2342 [Debug] > │     let v62 : int32 = 0                                                      │

02:22:42 #2343 [Debug] > │     let v63 : int32 = method1(v61, v62)                                      │

02:22:42 #2344 [Debug] > │     let v64 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2345 [Debug] > │ {36}"                                                                        │

02:22:42 #2346 [Debug] > │     let v65 : UH0 = UH0_1                                                    │

02:22:42 #2347 [Debug] > │     let v66 : int32 = 0                                                      │

02:22:42 #2348 [Debug] > │     let v67 : int32 = method1(v65, v66)                                      │

02:22:42 #2349 [Debug] > │     let v68 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2350 [Debug] > │ {36}"                                                                        │

02:22:42 #2351 [Debug] > │     let v69 : UH0 = UH0_1                                                    │

02:22:42 #2352 [Debug] > │     let v70 : int32 = 0                                                      │

02:22:42 #2353 [Debug] > │     let v71 : int32 = method1(v69, v70)                                      │

02:22:42 #2354 [Debug] > │     let v72 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2355 [Debug] > │ {36}"                                                                        │

02:22:42 #2356 [Debug] > │     let v73 : UH0 = UH0_1                                                    │

02:22:42 #2357 [Debug] > │     let v74 : int32 = 0                                                      │

02:22:42 #2358 [Debug] > │     let v75 : int32 = method1(v73, v74)                                      │

02:22:42 #2359 [Debug] > │     let v76 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2360 [Debug] > │ {36}"                                                                        │

02:22:42 #2361 [Debug] > │     let v77 : UH0 = UH0_1                                                    │

02:22:42 #2362 [Debug] > │     let v78 : int32 = 0                                                      │

02:22:42 #2363 [Debug] > │     let v79 : int32 = method1(v77, v78)                                      │

02:22:42 #2364 [Debug] > │     let v80 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2365 [Debug] > │ {36}"                                                                        │

02:22:42 #2366 [Debug] > │     let v81 : UH0 = UH0_1                                                    │

02:22:42 #2367 [Debug] > │     let v82 : int32 = 0                                                      │

02:22:42 #2368 [Debug] > │     let v83 : int32 = method1(v81, v82)                                      │

02:22:42 #2369 [Debug] > │     let v84 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2370 [Debug] > │ {36}"                                                                        │

02:22:42 #2371 [Debug] > │     let v85 : UH0 = UH0_1                                                    │

02:22:42 #2372 [Debug] > │     let v86 : int32 = 0                                                      │

02:22:42 #2373 [Debug] > │     let v87 : int32 = method1(v85, v86)                                      │

02:22:42 #2374 [Debug] > │     let v88 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2375 [Debug] > │ {36}"                                                                        │

02:22:42 #2376 [Debug] > │     let v89 : UH0 = UH0_1                                                    │

02:22:42 #2377 [Debug] > │     let v90 : int32 = 0                                                      │

02:22:42 #2378 [Debug] > │     let v91 : int32 = method1(v89, v90)                                      │

02:22:42 #2379 [Debug] > │     let v92 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2380 [Debug] > │ {36}"                                                                        │

02:22:42 #2381 [Debug] > │     let v93 : UH0 = UH0_1                                                    │

02:22:42 #2382 [Debug] > │     let v94 : int32 = 0                                                      │

02:22:42 #2383 [Debug] > │     let v95 : int32 = method1(v93, v94)                                      │

02:22:42 #2384 [Debug] > │     let v96 : string = $"calculate_dice_count / max: {10} / n: {2} / p:      │

02:22:42 #2385 [Debug] > │ {36}"                                                                        │

02:22:42 #2386 [Debug] > │     let v97 : UH0 = UH0_1                                                    │

02:22:42 #2387 [Debug] > │     let v98 : int32 = 0                                                      │

02:22:42 #2388 [Debug] > │     let v99 : int32 = method1(v97, v98)                                      │

02:22:42 #2389 [Debug] > │     let v100 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2390 [Debug] > │ {36}"                                                                        │

02:22:42 #2391 [Debug] > │     let v101 : UH0 = UH0_1                                                   │

02:22:42 #2392 [Debug] > │     let v102 : int32 = 0                                                     │

02:22:42 #2393 [Debug] > │     let v103 : int32 = method1(v101, v102)                                   │

02:22:42 #2394 [Debug] > │     let v104 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2395 [Debug] > │ {36}"                                                                        │

02:22:42 #2396 [Debug] > │     let v105 : UH0 = UH0_1                                                   │

02:22:42 #2397 [Debug] > │     let v106 : int32 = 0                                                     │

02:22:42 #2398 [Debug] > │     let v107 : int32 = method1(v105, v106)                                   │

02:22:42 #2399 [Debug] > │     let v108 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2400 [Debug] > │ {36}"                                                                        │

02:22:42 #2401 [Debug] > │     let v109 : UH0 = UH0_1                                                   │

02:22:42 #2402 [Debug] > │     let v110 : int32 = 0                                                     │

02:22:42 #2403 [Debug] > │     let v111 : int32 = method1(v109, v110)                                   │

02:22:42 #2404 [Debug] > │     let v112 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2405 [Debug] > │ {36}"                                                                        │

02:22:42 #2406 [Debug] > │     let v113 : UH0 = UH0_1                                                   │

02:22:42 #2407 [Debug] > │     let v114 : int32 = 0                                                     │

02:22:42 #2408 [Debug] > │     let v115 : int32 = method1(v113, v114)                                   │

02:22:42 #2409 [Debug] > │     let v116 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2410 [Debug] > │ {36}"                                                                        │

02:22:42 #2411 [Debug] > │     let v117 : UH0 = UH0_1                                                   │

02:22:42 #2412 [Debug] > │     let v118 : int32 = 0                                                     │

02:22:42 #2413 [Debug] > │     let v119 : int32 = method1(v117, v118)                                   │

02:22:42 #2414 [Debug] > │     let v120 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2415 [Debug] > │ {36}"                                                                        │

02:22:42 #2416 [Debug] > │     let v121 : UH0 = UH0_1                                                   │

02:22:42 #2417 [Debug] > │     let v122 : int32 = 0                                                     │

02:22:42 #2418 [Debug] > │     let v123 : int32 = method1(v121, v122)                                   │

02:22:42 #2419 [Debug] > │     let v124 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2420 [Debug] > │ {36}"                                                                        │

02:22:42 #2421 [Debug] > │     let v125 : UH0 = UH0_1                                                   │

02:22:42 #2422 [Debug] > │     let v126 : int32 = 0                                                     │

02:22:42 #2423 [Debug] > │     let v127 : int32 = method1(v125, v126)                                   │

02:22:42 #2424 [Debug] > │     let v128 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2425 [Debug] > │ {36}"                                                                        │

02:22:42 #2426 [Debug] > │     let v129 : UH0 = UH0_1                                                   │

02:22:42 #2427 [Debug] > │     let v130 : int32 = 0                                                     │

02:22:42 #2428 [Debug] > │     let v131 : int32 = method1(v129, v130)                                   │

02:22:42 #2429 [Debug] > │     let v132 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2430 [Debug] > │ {36}"                                                                        │

02:22:42 #2431 [Debug] > │     let v133 : UH0 = UH0_1                                                   │

02:22:42 #2432 [Debug] > │     let v134 : int32 = 0                                                     │

02:22:42 #2433 [Debug] > │     let v135 : int32 = method1(v133, v134)                                   │

02:22:42 #2434 [Debug] > │     let v136 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2435 [Debug] > │ {36}"                                                                        │

02:22:42 #2436 [Debug] > │     let v137 : UH0 = UH0_1                                                   │

02:22:42 #2437 [Debug] > │     let v138 : int32 = 0                                                     │

02:22:42 #2438 [Debug] > │     let v139 : int32 = method1(v137, v138)                                   │

02:22:42 #2439 [Debug] > │     let v140 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2440 [Debug] > │ {36}"                                                                        │

02:22:42 #2441 [Debug] > │     let v141 : UH0 = UH0_1                                                   │

02:22:42 #2442 [Debug] > │     let v142 : int32 = 0                                                     │

02:22:42 #2443 [Debug] > │     let v143 : int32 = method1(v141, v142)                                   │

02:22:42 #2444 [Debug] > │     let v144 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2445 [Debug] > │ {36}"                                                                        │

02:22:42 #2446 [Debug] > │     let v145 : UH0 = UH0_1                                                   │

02:22:42 #2447 [Debug] > │     let v146 : int32 = 0                                                     │

02:22:42 #2448 [Debug] > │     let v147 : int32 = method1(v145, v146)                                   │

02:22:42 #2449 [Debug] > │     let v148 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2450 [Debug] > │ {36}"                                                                        │

02:22:42 #2451 [Debug] > │     let v149 : UH0 = UH0_1                                                   │

02:22:42 #2452 [Debug] > │     let v150 : int32 = 0                                                     │

02:22:42 #2453 [Debug] > │     let v151 : int32 = method1(v149, v150)                                   │

02:22:42 #2454 [Debug] > │     let v152 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2455 [Debug] > │ {36}"                                                                        │

02:22:42 #2456 [Debug] > │     let v153 : UH0 = UH0_1                                                   │

02:22:42 #2457 [Debug] > │     let v154 : int32 = 0                                                     │

02:22:42 #2458 [Debug] > │     let v155 : int32 = method1(v153, v154)                                   │

02:22:42 #2459 [Debug] > │     let v156 : string = $"calculate_dice_count / max: {10} / n: {2} / p:     │

02:22:42 #2460 [Debug] > │ {36}"                                                                        │

02:22:42 #2461 [Debug] > │     let v157 : UH0 = UH0_1                                                   │

02:22:42 #2462 [Debug] > │     let v158 : int32 = 0                                                     │

02:22:42 #2463 [Debug] > │     let v159 : int32 = method1(v157, v158)                                   │

02:22:42 #2464 [Debug] > │     let v160 : bool = v3 = v7                                                │

02:22:42 #2465 [Debug] > │     let struct (v170 : bool, v171 : UH1) =                                   │

02:22:42 #2466 [Debug] > │         if v160 then                                                         │

02:22:42 #2467 [Debug] > │             let v161 : UH0 = UH0_1                                           │

02:22:42 #2468 [Debug] > │             let v162 : UH0 = UH0_0(v3, v161)                                 │

02:22:42 #2469 [Debug] > │             let v163 : UH0 = UH0_0(v7, v162)                                 │

02:22:42 #2470 [Debug] > │             let v164 : UH1 = UH1_1                                           │

02:22:42 #2471 [Debug] > │             let v165 : UH1 = UH1_0(v3, v163, v164)                           │

02:22:42 #2472 [Debug] > │             struct (true, v165)                                              │

02:22:42 #2473 [Debug] > │         else                                                                 │

02:22:42 #2474 [Debug] > │             let v166 : UH0 = UH0_1                                           │

02:22:42 #2475 [Debug] > │             let v167 : UH0 = UH0_0(v3, v166)                                 │

02:22:42 #2476 [Debug] > │             let v168 : UH1 = UH1_1                                           │

02:22:42 #2477 [Debug] > │             let v169 : UH1 = UH1_0(v3, v167, v168)                           │

02:22:42 #2478 [Debug] > │             struct (false, v169)                                             │

02:22:42 #2479 [Debug] > │     let v175 : UH1 =                                                         │

02:22:42 #2480 [Debug] > │         if v170 then                                                         │

02:22:42 #2481 [Debug] > │             v171                                                             │

02:22:42 #2482 [Debug] > │         else                                                                 │

02:22:42 #2483 [Debug] > │             let v172 : UH0 = UH0_1                                           │

02:22:42 #2484 [Debug] > │             let v173 : UH0 = UH0_0(v7, v172)                                 │

02:22:42 #2485 [Debug] > │             UH1_0(v7, v173, v171)                                            │

02:22:42 #2486 [Debug] > │     let v176 : bool = false                                                  │

02:22:42 #2487 [Debug] > │     let v177 : UH1 = UH1_1                                                   │

02:22:42 #2488 [Debug] > │     let struct (v178 : bool, v179 : UH1) = method5(v11, v175, v176, v177)    │

02:22:42 #2489 [Debug] > │     let v183 : UH1 =                                                         │

02:22:42 #2490 [Debug] > │         if v178 then                                                         │

02:22:42 #2491 [Debug] > │             v179                                                             │

02:22:42 #2492 [Debug] > │         else                                                                 │

02:22:42 #2493 [Debug] > │             let v180 : UH0 = UH0_1                                           │

02:22:42 #2494 [Debug] > │             let v181 : UH0 = UH0_0(v11, v180)                                │

02:22:42 #2495 [Debug] > │             UH1_0(v11, v181, v179)                                           │

02:22:42 #2496 [Debug] > │     let v184 : bool = false                                                  │

02:22:42 #2497 [Debug] > │     let v185 : UH1 = UH1_1                                                   │

02:22:42 #2498 [Debug] > │     let struct (v186 : bool, v187 : UH1) = method5(v15, v183, v184, v185)    │

02:22:42 #2499 [Debug] > │     let v191 : UH1 =                                                         │

02:22:42 #2500 [Debug] > │         if v186 then                                                         │

02:22:42 #2501 [Debug] > │             v187                                                             │

02:22:42 #2502 [Debug] > │         else                                                                 │

02:22:42 #2503 [Debug] > │             let v188 : UH0 = UH0_1                                           │

02:22:42 #2504 [Debug] > │             let v189 : UH0 = UH0_0(v15, v188)                                │

02:22:42 #2505 [Debug] > │             UH1_0(v15, v189, v187)                                           │

02:22:42 #2506 [Debug] > │     let v192 : bool = false                                                  │

02:22:42 #2507 [Debug] > │     let v193 : UH1 = UH1_1                                                   │

02:22:42 #2508 [Debug] > │     let struct (v194 : bool, v195 : UH1) = method5(v19, v191, v192, v193)    │

02:22:42 #2509 [Debug] > │     let v199 : UH1 =                                                         │

02:22:42 #2510 [Debug] > │         if v194 then                                                         │

02:22:42 #2511 [Debug] > │             v195                                                             │

02:22:42 #2512 [Debug] > │         else                                                                 │

02:22:42 #2513 [Debug] > │             let v196 : UH0 = UH0_1                                           │

02:22:42 #2514 [Debug] > │             let v197 : UH0 = UH0_0(v19, v196)                                │

02:22:42 #2515 [Debug] > │             UH1_0(v19, v197, v195)                                           │

02:22:42 #2516 [Debug] > │     let v200 : bool = false                                                  │

02:22:42 #2517 [Debug] > │     let v201 : UH1 = UH1_1                                                   │

02:22:42 #2518 [Debug] > │     let struct (v202 : bool, v203 : UH1) = method5(v23, v199, v200, v201)    │

02:22:42 #2519 [Debug] > │     let v207 : UH1 =                                                         │

02:22:42 #2520 [Debug] > │         if v202 then                                                         │

02:22:42 #2521 [Debug] > │             v203                                                             │

02:22:42 #2522 [Debug] > │         else                                                                 │

02:22:42 #2523 [Debug] > │             let v204 : UH0 = UH0_1                                           │

02:22:42 #2524 [Debug] > │             let v205 : UH0 = UH0_0(v23, v204)                                │

02:22:42 #2525 [Debug] > │             UH1_0(v23, v205, v203)                                           │

02:22:42 #2526 [Debug] > │     let v208 : bool = false                                                  │

02:22:42 #2527 [Debug] > │     let v209 : UH1 = UH1_1                                                   │

02:22:42 #2528 [Debug] > │     let struct (v210 : bool, v211 : UH1) = method5(v27, v207, v208, v209)    │

02:22:42 #2529 [Debug] > │     let v215 : UH1 =                                                         │

02:22:42 #2530 [Debug] > │         if v210 then                                                         │

02:22:42 #2531 [Debug] > │             v211                                                             │

02:22:42 #2532 [Debug] > │         else                                                                 │

02:22:42 #2533 [Debug] > │             let v212 : UH0 = UH0_1                                           │

02:22:42 #2534 [Debug] > │             let v213 : UH0 = UH0_0(v27, v212)                                │

02:22:42 #2535 [Debug] > │             UH1_0(v27, v213, v211)                                           │

02:22:42 #2536 [Debug] > │     let v216 : bool = false                                                  │

02:22:42 #2537 [Debug] > │     let v217 : UH1 = UH1_1                                                   │

02:22:42 #2538 [Debug] > │     let struct (v218 : bool, v219 : UH1) = method5(v31, v215, v216, v217)    │

02:22:42 #2539 [Debug] > │     let v223 : UH1 =                                                         │

02:22:42 #2540 [Debug] > │         if v218 then                                                         │

02:22:42 #2541 [Debug] > │             v219                                                             │

02:22:42 #2542 [Debug] > │         else                                                                 │

02:22:42 #2543 [Debug] > │             let v220 : UH0 = UH0_1                                           │

02:22:42 #2544 [Debug] > │             let v221 : UH0 = UH0_0(v31, v220)                                │

02:22:42 #2545 [Debug] > │             UH1_0(v31, v221, v219)                                           │

02:22:42 #2546 [Debug] > │     let v224 : bool = false                                                  │

02:22:42 #2547 [Debug] > │     let v225 : UH1 = UH1_1                                                   │

02:22:42 #2548 [Debug] > │     let struct (v226 : bool, v227 : UH1) = method5(v35, v223, v224, v225)    │

02:22:42 #2549 [Debug] > │     let v231 : UH1 =                                                         │

02:22:42 #2550 [Debug] > │         if v226 then                                                         │

02:22:42 #2551 [Debug] > │             v227                                                             │

02:22:42 #2552 [Debug] > │         else                                                                 │

02:22:42 #2553 [Debug] > │             let v228 : UH0 = UH0_1                                           │

02:22:42 #2554 [Debug] > │             let v229 : UH0 = UH0_0(v35, v228)                                │

02:22:42 #2555 [Debug] > │             UH1_0(v35, v229, v227)                                           │

02:22:42 #2556 [Debug] > │     let v232 : bool = false                                                  │

02:22:42 #2557 [Debug] > │     let v233 : UH1 = UH1_1                                                   │

02:22:42 #2558 [Debug] > │     let struct (v234 : bool, v235 : UH1) = method5(v39, v231, v232, v233)    │

02:22:42 #2559 [Debug] > │     let v239 : UH1 =                                                         │

02:22:42 #2560 [Debug] > │         if v234 then                                                         │

02:22:42 #2561 [Debug] > │             v235                                                             │

02:22:42 #2562 [Debug] > │         else                                                                 │

02:22:42 #2563 [Debug] > │             let v236 : UH0 = UH0_1                                           │

02:22:42 #2564 [Debug] > │             let v237 : UH0 = UH0_0(v39, v236)                                │

02:22:42 #2565 [Debug] > │             UH1_0(v39, v237, v235)                                           │

02:22:42 #2566 [Debug] > │     let v240 : bool = false                                                  │

02:22:42 #2567 [Debug] > │     let v241 : UH1 = UH1_1                                                   │

02:22:42 #2568 [Debug] > │     let struct (v242 : bool, v243 : UH1) = method5(v43, v239, v240, v241)    │

02:22:42 #2569 [Debug] > │     let v247 : UH1 =                                                         │

02:22:42 #2570 [Debug] > │         if v242 then                                                         │

02:22:42 #2571 [Debug] > │             v243                                                             │

02:22:42 #2572 [Debug] > │         else                                                                 │

02:22:42 #2573 [Debug] > │             let v244 : UH0 = UH0_1                                           │

02:22:42 #2574 [Debug] > │             let v245 : UH0 = UH0_0(v43, v244)                                │

02:22:42 #2575 [Debug] > │             UH1_0(v43, v245, v243)                                           │

02:22:42 #2576 [Debug] > │     let v248 : bool = false                                                  │

02:22:42 #2577 [Debug] > │     let v249 : UH1 = UH1_1                                                   │

02:22:42 #2578 [Debug] > │     let struct (v250 : bool, v251 : UH1) = method5(v47, v247, v248, v249)    │

02:22:42 #2579 [Debug] > │     let v255 : UH1 =                                                         │

02:22:42 #2580 [Debug] > │         if v250 then                                                         │

02:22:42 #2581 [Debug] > │             v251                                                             │

02:22:42 #2582 [Debug] > │         else                                                                 │

02:22:42 #2583 [Debug] > │             let v252 : UH0 = UH0_1                                           │

02:22:42 #2584 [Debug] > │             let v253 : UH0 = UH0_0(v47, v252)                                │

02:22:42 #2585 [Debug] > │             UH1_0(v47, v253, v251)                                           │

02:22:42 #2586 [Debug] > │     let v256 : bool = false                                                  │

02:22:42 #2587 [Debug] > │     let v257 : UH1 = UH1_1                                                   │

02:22:42 #2588 [Debug] > │     let struct (v258 : bool, v259 : UH1) = method5(v51, v255, v256, v257)    │

02:22:42 #2589 [Debug] > │     let v263 : UH1 =                                                         │

02:22:42 #2590 [Debug] > │         if v258 then                                                         │

02:22:42 #2591 [Debug] > │             v259                                                             │

02:22:42 #2592 [Debug] > │         else                                                                 │

02:22:42 #2593 [Debug] > │             let v260 : UH0 = UH0_1                                           │

02:22:42 #2594 [Debug] > │             let v261 : UH0 = UH0_0(v51, v260)                                │

02:22:42 #2595 [Debug] > │             UH1_0(v51, v261, v259)                                           │

02:22:42 #2596 [Debug] > │     let v264 : bool = false                                                  │

02:22:42 #2597 [Debug] > │     let v265 : UH1 = UH1_1                                                   │

02:22:42 #2598 [Debug] > │     let struct (v266 : bool, v267 : UH1) = method5(v55, v263, v264, v265)    │

02:22:42 #2599 [Debug] > │     let v271 : UH1 =                                                         │

02:22:42 #2600 [Debug] > │         if v266 then                                                         │

02:22:42 #2601 [Debug] > │             v267                                                             │

02:22:42 #2602 [Debug] > │         else                                                                 │

02:22:42 #2603 [Debug] > │             let v268 : UH0 = UH0_1                                           │

02:22:42 #2604 [Debug] > │             let v269 : UH0 = UH0_0(v55, v268)                                │

02:22:42 #2605 [Debug] > │             UH1_0(v55, v269, v267)                                           │

02:22:42 #2606 [Debug] > │     let v272 : bool = false                                                  │

02:22:42 #2607 [Debug] > │     let v273 : UH1 = UH1_1                                                   │

02:22:42 #2608 [Debug] > │     let struct (v274 : bool, v275 : UH1) = method5(v59, v271, v272, v273)    │

02:22:42 #2609 [Debug] > │     let v279 : UH1 =                                                         │

02:22:42 #2610 [Debug] > │         if v274 then                                                         │

02:22:42 #2611 [Debug] > │             v275                                                             │

02:22:42 #2612 [Debug] > │         else                                                                 │

02:22:42 #2613 [Debug] > │             let v276 : UH0 = UH0_1                                           │

02:22:42 #2614 [Debug] > │             let v277 : UH0 = UH0_0(v59, v276)                                │

02:22:42 #2615 [Debug] > │             UH1_0(v59, v277, v275)                                           │

02:22:42 #2616 [Debug] > │     let v280 : bool = false                                                  │

02:22:42 #2617 [Debug] > │     let v281 : UH1 = UH1_1                                                   │

02:22:42 #2618 [Debug] > │     let struct (v282 : bool, v283 : UH1) = method5(v63, v279, v280, v281)    │

02:22:42 #2619 [Debug] > │     let v287 : UH1 =                                                         │

02:22:42 #2620 [Debug] > │         if v282 then                                                         │

02:22:42 #2621 [Debug] > │             v283                                                             │

02:22:42 #2622 [Debug] > │         else                                                                 │

02:22:42 #2623 [Debug] > │             let v284 : UH0 = UH0_1                                           │

02:22:42 #2624 [Debug] > │             let v285 : UH0 = UH0_0(v63, v284)                                │

02:22:42 #2625 [Debug] > │             UH1_0(v63, v285, v283)                                           │

02:22:42 #2626 [Debug] > │     let v288 : bool = false                                                  │

02:22:42 #2627 [Debug] > │     let v289 : UH1 = UH1_1                                                   │

02:22:42 #2628 [Debug] > │     let struct (v290 : bool, v291 : UH1) = method5(v67, v287, v288, v289)    │

02:22:42 #2629 [Debug] > │     let v295 : UH1 =                                                         │

02:22:42 #2630 [Debug] > │         if v290 then                                                         │

02:22:42 #2631 [Debug] > │             v291                                                             │

02:22:42 #2632 [Debug] > │         else                                                                 │

02:22:42 #2633 [Debug] > │             let v292 : UH0 = UH0_1                                           │

02:22:42 #2634 [Debug] > │             let v293 : UH0 = UH0_0(v67, v292)                                │

02:22:42 #2635 [Debug] > │             UH1_0(v67, v293, v291)                                           │

02:22:42 #2636 [Debug] > │     let v296 : bool = false                                                  │

02:22:42 #2637 [Debug] > │     let v297 : UH1 = UH1_1                                                   │

02:22:42 #2638 [Debug] > │     let struct (v298 : bool, v299 : UH1) = method5(v71, v295, v296, v297)    │

02:22:42 #2639 [Debug] > │     let v303 : UH1 =                                                         │

02:22:42 #2640 [Debug] > │         if v298 then                                                         │

02:22:42 #2641 [Debug] > │             v299                                                             │

02:22:42 #2642 [Debug] > │         else                                                                 │

02:22:42 #2643 [Debug] > │             let v300 : UH0 = UH0_1                                           │

02:22:42 #2644 [Debug] > │             let v301 : UH0 = UH0_0(v71, v300)                                │

02:22:42 #2645 [Debug] > │             UH1_0(v71, v301, v299)                                           │

02:22:42 #2646 [Debug] > │     let v304 : bool = false                                                  │

02:22:42 #2647 [Debug] > │     let v305 : UH1 = UH1_1                                                   │

02:22:42 #2648 [Debug] > │     let struct (v306 : bool, v307 : UH1) = method5(v75, v303, v304, v305)    │

02:22:42 #2649 [Debug] > │     let v311 : UH1 =                                                         │

02:22:42 #2650 [Debug] > │         if v306 then                                                         │

02:22:42 #2651 [Debug] > │             v307                                                             │

02:22:42 #2652 [Debug] > │         else                                                                 │

02:22:42 #2653 [Debug] > │             let v308 : UH0 = UH0_1                                           │

02:22:42 #2654 [Debug] > │             let v309 : UH0 = UH0_0(v75, v308)                                │

02:22:42 #2655 [Debug] > │             UH1_0(v75, v309, v307)                                           │

02:22:42 #2656 [Debug] > │     let v312 : bool = false                                                  │

02:22:42 #2657 [Debug] > │     let v313 : UH1 = UH1_1                                                   │

02:22:42 #2658 [Debug] > │     let struct (v314 : bool, v315 : UH1) = method5(v79, v311, v312, v313)    │

02:22:42 #2659 [Debug] > │     let v319 : UH1 =                                                         │

02:22:42 #2660 [Debug] > │         if v314 then                                                         │

02:22:42 #2661 [Debug] > │             v315                                                             │

02:22:42 #2662 [Debug] > │         else                                                                 │

02:22:42 #2663 [Debug] > │             let v316 : UH0 = UH0_1                                           │

02:22:42 #2664 [Debug] > │             let v317 : UH0 = UH0_0(v79, v316)                                │

02:22:42 #2665 [Debug] > │             UH1_0(v79, v317, v315)                                           │

02:22:42 #2666 [Debug] > │     let v320 : bool = false                                                  │

02:22:42 #2667 [Debug] > │     let v321 : UH1 = UH1_1                                                   │

02:22:42 #2668 [Debug] > │     let struct (v322 : bool, v323 : UH1) = method5(v83, v319, v320, v321)    │

02:22:42 #2669 [Debug] > │     let v327 : UH1 =                                                         │

02:22:42 #2670 [Debug] > │         if v322 then                                                         │

02:22:42 #2671 [Debug] > │             v323                                                             │

02:22:42 #2672 [Debug] > │         else                                                                 │

02:22:42 #2673 [Debug] > │             let v324 : UH0 = UH0_1                                           │

02:22:42 #2674 [Debug] > │             let v325 : UH0 = UH0_0(v83, v324)                                │

02:22:42 #2675 [Debug] > │             UH1_0(v83, v325, v323)                                           │

02:22:42 #2676 [Debug] > │     let v328 : bool = false                                                  │

02:22:42 #2677 [Debug] > │     let v329 : UH1 = UH1_1                                                   │

02:22:42 #2678 [Debug] > │     let struct (v330 : bool, v331 : UH1) = method5(v87, v327, v328, v329)    │

02:22:42 #2679 [Debug] > │     let v335 : UH1 =                                                         │

02:22:42 #2680 [Debug] > │         if v330 then                                                         │

02:22:42 #2681 [Debug] > │             v331                                                             │

02:22:42 #2682 [Debug] > │         else                                                                 │

02:22:42 #2683 [Debug] > │             let v332 : UH0 = UH0_1                                           │

02:22:42 #2684 [Debug] > │             let v333 : UH0 = UH0_0(v87, v332)                                │

02:22:42 #2685 [Debug] > │             UH1_0(v87, v333, v331)                                           │

02:22:42 #2686 [Debug] > │     let v336 : bool = false                                                  │

02:22:42 #2687 [Debug] > │     let v337 : UH1 = UH1_1                                                   │

02:22:42 #2688 [Debug] > │     let struct (v338 : bool, v339 : UH1) = method5(v91, v335, v336, v337)    │

02:22:42 #2689 [Debug] > │     let v343 : UH1 =                                                         │

02:22:42 #2690 [Debug] > │         if v338 then                                                         │

02:22:42 #2691 [Debug] > │             v339                                                             │

02:22:42 #2692 [Debug] > │         else                                                                 │

02:22:42 #2693 [Debug] > │             let v340 : UH0 = UH0_1                                           │

02:22:42 #2694 [Debug] > │             let v341 : UH0 = UH0_0(v91, v340)                                │

02:22:42 #2695 [Debug] > │             UH1_0(v91, v341, v339)                                           │

02:22:42 #2696 [Debug] > │     let v344 : bool = false                                                  │

02:22:42 #2697 [Debug] > │     let v345 : UH1 = UH1_1                                                   │

02:22:42 #2698 [Debug] > │     let struct (v346 : bool, v347 : UH1) = method5(v95, v343, v344, v345)    │

02:22:42 #2699 [Debug] > │     let v351 : UH1 =                                                         │

02:22:42 #2700 [Debug] > │         if v346 then                                                         │

02:22:42 #2701 [Debug] > │             v347                                                             │

02:22:42 #2702 [Debug] > │         else                                                                 │

02:22:42 #2703 [Debug] > │             let v348 : UH0 = UH0_1                                           │

02:22:42 #2704 [Debug] > │             let v349 : UH0 = UH0_0(v95, v348)                                │

02:22:42 #2705 [Debug] > │             UH1_0(v95, v349, v347)                                           │

02:22:42 #2706 [Debug] > │     let v352 : bool = false                                                  │

02:22:42 #2707 [Debug] > │     let v353 : UH1 = UH1_1                                                   │

02:22:42 #2708 [Debug] > │     let struct (v354 : bool, v355 : UH1) = method5(v99, v351, v352, v353)    │

02:22:42 #2709 [Debug] > │     let v359 : UH1 =                                                         │

02:22:42 #2710 [Debug] > │         if v354 then                                                         │

02:22:42 #2711 [Debug] > │             v355                                                             │

02:22:42 #2712 [Debug] > │         else                                                                 │

02:22:42 #2713 [Debug] > │             let v356 : UH0 = UH0_1                                           │

02:22:42 #2714 [Debug] > │             let v357 : UH0 = UH0_0(v99, v356)                                │

02:22:42 #2715 [Debug] > │             UH1_0(v99, v357, v355)                                           │

02:22:42 #2716 [Debug] > │     let v360 : bool = false                                                  │

02:22:42 #2717 [Debug] > │     let v361 : UH1 = UH1_1                                                   │

02:22:42 #2718 [Debug] > │     let struct (v362 : bool, v363 : UH1) = method5(v103, v359, v360, v361)   │

02:22:42 #2719 [Debug] > │     let v367 : UH1 =                                                         │

02:22:42 #2720 [Debug] > │         if v362 then                                                         │

02:22:42 #2721 [Debug] > │             v363                                                             │

02:22:42 #2722 [Debug] > │         else                                                                 │

02:22:42 #2723 [Debug] > │             let v364 : UH0 = UH0_1                                           │

02:22:42 #2724 [Debug] > │             let v365 : UH0 = UH0_0(v103, v364)                               │

02:22:42 #2725 [Debug] > │             UH1_0(v103, v365, v363)                                          │

02:22:42 #2726 [Debug] > │     let v368 : bool = false                                                  │

02:22:42 #2727 [Debug] > │     let v369 : UH1 = UH1_1                                                   │

02:22:42 #2728 [Debug] > │     let struct (v370 : bool, v371 : UH1) = method5(v107, v367, v368, v369)   │

02:22:42 #2729 [Debug] > │     let v375 : UH1 =                                                         │

02:22:42 #2730 [Debug] > │         if v370 then                                                         │

02:22:42 #2731 [Debug] > │             v371                                                             │

02:22:42 #2732 [Debug] > │         else                                                                 │

02:22:42 #2733 [Debug] > │             let v372 : UH0 = UH0_1                                           │

02:22:42 #2734 [Debug] > │             let v373 : UH0 = UH0_0(v107, v372)                               │

02:22:42 #2735 [Debug] > │             UH1_0(v107, v373, v371)                                          │

02:22:42 #2736 [Debug] > │     let v376 : bool = false                                                  │

02:22:42 #2737 [Debug] > │     let v377 : UH1 = UH1_1                                                   │

02:22:42 #2738 [Debug] > │     let struct (v378 : bool, v379 : UH1) = method5(v111, v375, v376, v377)   │

02:22:42 #2739 [Debug] > │     let v383 : UH1 =                                                         │

02:22:42 #2740 [Debug] > │         if v378 then                                                         │

02:22:42 #2741 [Debug] > │             v379                                                             │

02:22:42 #2742 [Debug] > │         else                                                                 │

02:22:42 #2743 [Debug] > │             let v380 : UH0 = UH0_1                                           │

02:22:42 #2744 [Debug] > │             let v381 : UH0 = UH0_0(v111, v380)                               │

02:22:42 #2745 [Debug] > │             UH1_0(v111, v381, v379)                                          │

02:22:42 #2746 [Debug] > │     let v384 : bool = false                                                  │

02:22:42 #2747 [Debug] > │     let v385 : UH1 = UH1_1                                                   │

02:22:42 #2748 [Debug] > │     let struct (v386 : bool, v387 : UH1) = method5(v115, v383, v384, v385)   │

02:22:42 #2749 [Debug] > │     let v391 : UH1 =                                                         │

02:22:42 #2750 [Debug] > │         if v386 then                                                         │

02:22:42 #2751 [Debug] > │             v387                                                             │

02:22:42 #2752 [Debug] > │         else                                                                 │

02:22:42 #2753 [Debug] > │             let v388 : UH0 = UH0_1                                           │

02:22:42 #2754 [Debug] > │             let v389 : UH0 = UH0_0(v115, v388)                               │

02:22:42 #2755 [Debug] > │             UH1_0(v115, v389, v387)                                          │

02:22:42 #2756 [Debug] > │     let v392 : bool = false                                                  │

02:22:42 #2757 [Debug] > │     let v393 : UH1 = UH1_1                                                   │

02:22:42 #2758 [Debug] > │     let struct (v394 : bool, v395 : UH1) = method5(v119, v391, v392, v393)   │

02:22:42 #2759 [Debug] > │     let v399 : UH1 =                                                         │

02:22:42 #2760 [Debug] > │         if v394 then                                                         │

02:22:42 #2761 [Debug] > │             v395                                                             │

02:22:42 #2762 [Debug] > │         else                                                                 │

02:22:42 #2763 [Debug] > │             let v396 : UH0 = UH0_1                                           │

02:22:42 #2764 [Debug] > │             let v397 : UH0 = UH0_0(v119, v396)                               │

02:22:42 #2765 [Debug] > │             UH1_0(v119, v397, v395)                                          │

02:22:42 #2766 [Debug] > │     let v400 : bool = false                                                  │

02:22:42 #2767 [Debug] > │     let v401 : UH1 = UH1_1                                                   │

02:22:42 #2768 [Debug] > │     let struct (v402 : bool, v403 : UH1) = method5(v123, v399, v400, v401)   │

02:22:42 #2769 [Debug] > │     let v407 : UH1 =                                                         │

02:22:42 #2770 [Debug] > │         if v402 then                                                         │

02:22:42 #2771 [Debug] > │             v403                                                             │

02:22:42 #2772 [Debug] > │         else                                                                 │

02:22:42 #2773 [Debug] > │             let v404 : UH0 = UH0_1                                           │

02:22:42 #2774 [Debug] > │             let v405 : UH0 = UH0_0(v123, v404)                               │

02:22:42 #2775 [Debug] > │             UH1_0(v123, v405, v403)                                          │

02:22:42 #2776 [Debug] > │     let v408 : bool = false                                                  │

02:22:42 #2777 [Debug] > │     let v409 : UH1 = UH1_1                                                   │

02:22:42 #2778 [Debug] > │     let struct (v410 : bool, v411 : UH1) = method5(v127, v407, v408, v409)   │

02:22:42 #2779 [Debug] > │     let v415 : UH1 =                                                         │

02:22:42 #2780 [Debug] > │         if v410 then                                                         │

02:22:42 #2781 [Debug] > │             v411                                                             │

02:22:42 #2782 [Debug] > │         else                                                                 │

02:22:42 #2783 [Debug] > │             let v412 : UH0 = UH0_1                                           │

02:22:42 #2784 [Debug] > │             let v413 : UH0 = UH0_0(v127, v412)                               │

02:22:42 #2785 [Debug] > │             UH1_0(v127, v413, v411)                                          │

02:22:42 #2786 [Debug] > │     let v416 : bool = false                                                  │

02:22:42 #2787 [Debug] > │     let v417 : UH1 = UH1_1                                                   │

02:22:42 #2788 [Debug] > │     let struct (v418 : bool, v419 : UH1) = method5(v131, v415, v416, v417)   │

02:22:42 #2789 [Debug] > │     let v423 : UH1 =                                                         │

02:22:42 #2790 [Debug] > │         if v418 then                                                         │

02:22:42 #2791 [Debug] > │             v419                                                             │

02:22:42 #2792 [Debug] > │         else                                                                 │

02:22:42 #2793 [Debug] > │             let v420 : UH0 = UH0_1                                           │

02:22:42 #2794 [Debug] > │             let v421 : UH0 = UH0_0(v131, v420)                               │

02:22:42 #2795 [Debug] > │             UH1_0(v131, v421, v419)                                          │

02:22:42 #2796 [Debug] > │     let v424 : bool = false                                                  │

02:22:42 #2797 [Debug] > │     let v425 : UH1 = UH1_1                                                   │

02:22:42 #2798 [Debug] > │     let struct (v426 : bool, v427 : UH1) = method5(v135, v423, v424, v425)   │

02:22:42 #2799 [Debug] > │     let v431 : UH1 =                                                         │

02:22:42 #2800 [Debug] > │         if v426 then                                                         │

02:22:42 #2801 [Debug] > │             v427                                                             │

02:22:42 #2802 [Debug] > │         else                                                                 │

02:22:42 #2803 [Debug] > │             let v428 : UH0 = UH0_1                                           │

02:22:42 #2804 [Debug] > │             let v429 : UH0 = UH0_0(v135, v428)                               │

02:22:42 #2805 [Debug] > │             UH1_0(v135, v429, v427)                                          │

02:22:42 #2806 [Debug] > │     let v432 : bool = false                                                  │

02:22:42 #2807 [Debug] > │     let v433 : UH1 = UH1_1                                                   │

02:22:42 #2808 [Debug] > │     let struct (v434 : bool, v435 : UH1) = method5(v139, v431, v432, v433)   │

02:22:42 #2809 [Debug] > │     let v439 : UH1 =                                                         │

02:22:42 #2810 [Debug] > │         if v434 then                                                         │

02:22:42 #2811 [Debug] > │             v435                                                             │

02:22:42 #2812 [Debug] > │         else                                                                 │

02:22:42 #2813 [Debug] > │             let v436 : UH0 = UH0_1                                           │

02:22:42 #2814 [Debug] > │             let v437 : UH0 = UH0_0(v139, v436)                               │

02:22:42 #2815 [Debug] > │             UH1_0(v139, v437, v435)                                          │

02:22:42 #2816 [Debug] > │     let v440 : bool = false                                                  │

02:22:42 #2817 [Debug] > │     let v441 : UH1 = UH1_1                                                   │

02:22:42 #2818 [Debug] > │     let struct (v442 : bool, v443 : UH1) = method5(v143, v439, v440, v441)   │

02:22:42 #2819 [Debug] > │     let v447 : UH1 =                                                         │

02:22:42 #2820 [Debug] > │         if v442 then                                                         │

02:22:42 #2821 [Debug] > │             v443                                                             │

02:22:42 #2822 [Debug] > │         else                                                                 │

02:22:42 #2823 [Debug] > │             let v444 : UH0 = UH0_1                                           │

02:22:42 #2824 [Debug] > │             let v445 : UH0 = UH0_0(v143, v444)                               │

02:22:42 #2825 [Debug] > │             UH1_0(v143, v445, v443)                                          │

02:22:42 #2826 [Debug] > │     let v448 : bool = false                                                  │

02:22:42 #2827 [Debug] > │     let v449 : UH1 = UH1_1                                                   │

02:22:42 #2828 [Debug] > │     let struct (v450 : bool, v451 : UH1) = method5(v147, v447, v448, v449)   │

02:22:42 #2829 [Debug] > │     let v455 : UH1 =                                                         │

02:22:42 #2830 [Debug] > │         if v450 then                                                         │

02:22:42 #2831 [Debug] > │             v451                                                             │

02:22:42 #2832 [Debug] > │         else                                                                 │

02:22:43 #2833 [Debug] > │             let v452 : UH0 = UH0_1                                           │

02:22:43 #2834 [Debug] > │             let v453 : UH0 = UH0_0(v147, v452)                               │

02:22:43 #2835 [Debug] > │             UH1_0(v147, v453, v451)                                          │

02:22:43 #2836 [Debug] > │     let v456 : bool = false                                                  │

02:22:43 #2837 [Debug] > │     let v457 : UH1 = UH1_1                                                   │

02:22:43 #2838 [Debug] > │     let struct (v458 : bool, v459 : UH1) = method5(v151, v455, v456, v457)   │

02:22:43 #2839 [Debug] > │     let v463 : UH1 =                                                         │

02:22:43 #2840 [Debug] > │         if v458 then                                                         │

02:22:43 #2841 [Debug] > │             v459                                                             │

02:22:43 #2842 [Debug] > │         else                                                                 │

02:22:43 #2843 [Debug] > │             let v460 : UH0 = UH0_1                                           │

02:22:43 #2844 [Debug] > │             let v461 : UH0 = UH0_0(v151, v460)                               │

02:22:43 #2845 [Debug] > │             UH1_0(v151, v461, v459)                                          │

02:22:43 #2846 [Debug] > │     let v464 : bool = false                                                  │

02:22:43 #2847 [Debug] > │     let v465 : UH1 = UH1_1                                                   │

02:22:43 #2848 [Debug] > │     let struct (v466 : bool, v467 : UH1) = method5(v155, v463, v464, v465)   │

02:22:43 #2849 [Debug] > │     let v471 : UH1 =                                                         │

02:22:43 #2850 [Debug] > │         if v466 then                                                         │

02:22:43 #2851 [Debug] > │             v467                                                             │

02:22:43 #2852 [Debug] > │         else                                                                 │

02:22:43 #2853 [Debug] > │             let v468 : UH0 = UH0_1                                           │

02:22:43 #2854 [Debug] > │             let v469 : UH0 = UH0_0(v155, v468)                               │

02:22:43 #2855 [Debug] > │             UH1_0(v155, v469, v467)                                          │

02:22:43 #2856 [Debug] > │     let v472 : bool = false                                                  │

02:22:43 #2857 [Debug] > │     let v473 : UH1 = UH1_1                                                   │

02:22:43 #2858 [Debug] > │     let struct (v474 : bool, v475 : UH1) = method5(v159, v471, v472, v473)   │

02:22:43 #2859 [Debug] > │     let v479 : UH1 =                                                         │

02:22:43 #2860 [Debug] > │         if v474 then                                                         │

02:22:43 #2861 [Debug] > │             v475                                                             │

02:22:43 #2862 [Debug] > │         else                                                                 │

02:22:43 #2863 [Debug] > │             let v476 : UH0 = UH0_1                                           │

02:22:43 #2864 [Debug] > │             let v477 : UH0 = UH0_0(v159, v476)                               │

02:22:43 #2865 [Debug] > │             UH1_0(v159, v477, v475)                                          │

02:22:43 #2866 [Debug] > │     let v480 : UH2 = UH2_1                                                   │

02:22:43 #2867 [Debug] > │     let v481 : UH2 = method6(v479, v480)                                     │

02:22:43 #2868 [Debug] > │     let v482 : (struct (int32 * int32) []) = method8(v481)                   │

02:22:43 #2869 [Debug] > │     let v483 : (struct (int32 * int32) []) = v482 |> Array.sortBy (fun       │

02:22:43 #2870 [Debug] > │ (struct (a, b)) -> a)                                                        │

02:22:43 #2871 [Debug] > │     v483                                                                     │

02:22:43 #2872 [Debug] > │ method0()                                                                    │

02:22:43 #2873 [Debug] > │                                                                              │

02:22:43 #2874 [Debug] > │                                                                              │

02:22:43 #2875 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:43 #2876 [Debug] >

02:22:43 #2877 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:22:43 #2878 [Debug] > // // test

02:22:43 #2879 [Debug] > // // print_code=false

02:22:43 #2880 [Debug] >

02:22:43 #2881 [Debug] > listm'.init_series 1i32 40 1

02:22:43 #2882 [Debug] > |> listm.map (fun _ => roll_progressively None roll_dice true 10)

02:22:43 #2883 [Debug] > |> listm'.group_by id

02:22:43 #2884 [Debug] > |> listm.map (fun (k, v) => k, (listm.length v : i32))

02:22:43 #2885 [Debug] > |> listm.toArray

02:22:43 #2886 [Debug] > |> fun (ar : a i32 _) =>

02:22:43 #2887 [Debug] >     $"!ar |> Array.sortBy (fun (struct (a, b)) -> a)" : a i32 $"struct (int32 *

02:22:43 #2888 [Debug] > int32)"

02:22:43 #2889 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0222-4302-0223-044c16a9b4be\main.spi

02:22:43 #2890 [Debug] >

02:22:43 #2891 [Debug] > ╭─[ 585.49ms - return value ]──────────────────────────────────────────────────╮

02:22:43 #2892 [Debug] > │ <table><thead><tr><th><i>index</i></th><th>value</th></tr></thead><tbody><tr │

02:22:43 #2893 [Debug] > │ ><td>0</td><td><details class="dni-treeview"><summary><span                  │

02:22:43 #2894 [Debug] > │ class="dni-code-hint"><code>(2,                                              │

02:22:43 #2895 [Debug] > │ 6)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2896 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2897 [Debug] > │ class="dni-plaintext"><pre>2</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2898 [Debug] > │ class="dni-plaintext"><pre>6</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2899 [Debug] > │ tails></td></tr><tr><td>1</td><td><details                                   │

02:22:43 #2900 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(3,          │

02:22:43 #2901 [Debug] > │ 2)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2902 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2903 [Debug] > │ class="dni-plaintext"><pre>3</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2904 [Debug] > │ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2905 [Debug] > │ tails></td></tr><tr><td>2</td><td><details                                   │

02:22:43 #2906 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(4,          │

02:22:43 #2907 [Debug] > │ 3)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2908 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2909 [Debug] > │ class="dni-plaintext"><pre>4</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2910 [Debug] > │ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2911 [Debug] > │ tails></td></tr><tr><td>3</td><td><details                                   │

02:22:43 #2912 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(5,          │

02:22:43 #2913 [Debug] > │ 6)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2914 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2915 [Debug] > │ class="dni-plaintext"><pre>5</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2916 [Debug] > │ class="dni-plaintext"><pre>6</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2917 [Debug] > │ tails></td></tr><tr><td>4</td><td><details                                   │

02:22:43 #2918 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(6,          │

02:22:43 #2919 [Debug] > │ 6)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2920 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2921 [Debug] > │ class="dni-plaintext"><pre>6</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2922 [Debug] > │ class="dni-plaintext"><pre>6</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2923 [Debug] > │ tails></td></tr><tr><td>5</td><td><details                                   │

02:22:43 #2924 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(7,          │

02:22:43 #2925 [Debug] > │ 7)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2926 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2927 [Debug] > │ class="dni-plaintext"><pre>7</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2928 [Debug] > │ class="dni-plaintext"><pre>7</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2929 [Debug] > │ tails></td></tr><tr><td>6</td><td><details                                   │

02:22:43 #2930 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(8,          │

02:22:43 #2931 [Debug] > │ 5)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2932 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2933 [Debug] > │ class="dni-plaintext"><pre>8</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2934 [Debug] > │ class="dni-plaintext"><pre>5</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2935 [Debug] > │ tails></td></tr><tr><td>7</td><td><details                                   │

02:22:43 #2936 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(9,          │

02:22:43 #2937 [Debug] > │ 2)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2938 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2939 [Debug] > │ class="dni-plaintext"><pre>9</pre></div></td></tr><tr><td>Item2</td><td><div │

02:22:43 #2940 [Debug] > │ class="dni-plaintext"><pre>2</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2941 [Debug] > │ tails></td></tr><tr><td>8</td><td><details                                   │

02:22:43 #2942 [Debug] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(10,         │

02:22:43 #2943 [Debug] > │ 3)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

02:22:43 #2944 [Debug] > │ >Item1</td><td><div                                                          │

02:22:43 #2945 [Debug] > │ class="dni-plaintext"><pre>10</pre></div></td></tr><tr><td>Item2</td><td><di │

02:22:43 #2946 [Debug] > │ v                                                                            │

02:22:43 #2947 [Debug] > │ class="dni-plaintext"><pre>3</pre></div></td></tr></tbody></table></div></de │

02:22:43 #2948 [Debug] > │ tails></td></tr></tbody></table><style>                                      │

02:22:43 #2949 [Debug] > │ .dni-code-hint {                                                             │

02:22:43 #2950 [Debug] > │     font-style: italic;                                                      │

02:22:43 #2951 [Debug] > │     overflow: hidden;                                                        │

02:22:43 #2952 [Debug] > │     white-space: nowrap;                                                     │

02:22:43 #2953 [Debug] > │ }                                                                            │

02:22:43 #2954 [Debug] > │ .dni-treeview {                                                              │

02:22:43 #2955 [Debug] > │     white-space: nowrap;                                                     │

02:22:43 #2956 [Debug] > │ }                                                                            │

02:22:43 #2957 [Debug] > │ .dni-treeview td {                                                           │

02:22:43 #2958 [Debug] > │     vertical-align: top;                                                     │

02:22:43 #2959 [Debug] > │     text-align: start;                                                       │

02:22:43 #2960 [Debug] > │ }                                                                            │

02:22:43 #2961 [Debug] > │ details.dni-treeview {                                                       │

02:22:43 #2962 [Debug] > │     padding-left: 1em;                                                       │

02:22:43 #2963 [Debug] > │ }                                                                            │

02:22:43 #2964 [Debug] > │ table td {                                                                   │

02:22:43 #2965 [Debug] > │     text-align: start;                                                       │

02:22:43 #2966 [Debug] > │ }                                                                            │

02:22:43 #2967 [Debug] > │ table tr {                                                                   │

02:22:43 #2968 [Debug] > │     vertical-align: top;                                                     │

02:22:43 #2969 [Debug] > │     margin: 0em 0px;                                                         │

02:22:43 #2970 [Debug] > │ }                                                                            │

02:22:43 #2971 [Debug] > │ table tr td pre                                                              │

02:22:43 #2972 [Debug] > │ {                                                                            │

02:22:43 #2973 [Debug] > │     vertical-align: top !important;                                          │

02:22:43 #2974 [Debug] > │     margin: 0em 0px !important;                                              │

02:22:43 #2975 [Debug] > │ }                                                                            │

02:22:43 #2976 [Debug] > │ table th {                                                                   │

02:22:43 #2977 [Debug] > │     text-align: start;                                                       │

02:22:43 #2978 [Debug] > │ }                                                                            │

02:22:43 #2979 [Debug] > │ </style>                                                                     │

02:22:43 #2980 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:43 #2981 [Debug] >

02:22:43 #2982 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:22:43 #2983 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:22:43 #2984 [Debug] > │ ## main                                                                      │

02:22:43 #2985 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:22:43 #2986 [Debug] >

02:22:43 #2987 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:22:43 #2988 [Debug] > let main args =

02:22:43 #2989 [Debug] >     let result = rollWithinBounds (Some (printfn "%s")) 2000 [[ 1; 5; 4; 4; 5 ]]

02:22:43 #2990 [Debug] >     trace Debug (fun () -> $"main / result: {result |> Option.defaultValue -1}")

02:22:43 #2991 [Debug] > getLocals

02:22:43 #2992 [Debug] >     0

02:22:45 #2993 [Debug] > [NbConvertApp] Converting notebook Dice.dib.ipynb to html

02:22:45 #2994 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:22:45 #2995 [Debug] >   validate(nb)

02:22:46 #2996 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:22:46 #2997 [Debug] >   return _pygments_highlight(

02:22:46 #2998 [Debug] > [NbConvertApp] Writing 453257 bytes to Dice.dib.html

02:22:47 #2999 [Debug] executeAsync / exitCode: 0 / proc.Id: 31148 / output.Length: 205518

02:22:47 #3000 [Debug] main / executeCommand / exitCode: 0

02:22:47 #1 [Debug] writeDibCode / output: Fs / path: Dice.dib

02:22:47 #1 [Debug] writeDibCode / output: Spi / path: Dice.dib

02:22:47 #3 [Debug] parseDibCode / output: Fs / file: Dice.dib

02:22:47 #3 [Debug] parseDibCode / output: Spi / file: Dice.dib

02:22:48 #1 [Debug] persistCodeProject / packages: [Fable.Core] / modules: [nbs/Common.fs] / path: C:\home\git\polyglot\apps\dice / name: Dice / code.Length: 3568

02:22:48 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\apps\dice\target\Dice.fsproj

02:22:48 #3 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r linux-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\dice\target"

  CancellationToken = None

  OnLine = None }

02:22:48 #4 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

02:22:49 #5 [Debug] >   Determining projects to restore...

02:22:50 #6 [Debug] >   Restored C:\home\git\polyglot\apps\dice\target\Dice.fsproj (in 380 ms).

02:22:50 #7 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\dice\target\Dice.fsproj]

02:22:53 #8 [Debug] >   Dice -> C:\home\git\polyglot\apps\dice\target\bin\release\net8.0\linux-x64\Dice.dll

02:22:54 #9 [Debug] >   Dice -> C:\home\git\polyglot\apps\dice\dist\

02:22:54 #10 [Debug] executeAsync / exitCode: 0 / proc.Id: 49904 / output.Length: 594

02:22:54 #11 [Debug] executeAsync / options: { Command = "dotnet publish -c release -o ../dist -r win-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\apps\dice\target"

  CancellationToken = None

  OnLine = None }

02:22:55 #12 [Debug] > MSBuild version 17.8.0-preview-23418-03+0125fc9fb for .NET

02:22:55 #13 [Debug] >   Determining projects to restore...

02:22:56 #14 [Debug] >   Restored C:\home\git\polyglot\apps\dice\target\Dice.fsproj (in 359 ms).

02:22:56 #15 [Debug] > C:\Program Files\dotnet\sdk\8.0.100-rc.1.23463.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(311,5): message NETSDK1057: You are using a preview version of .NET. See: https://aka.ms/dotnet-support-policy [C:\home\git\polyglot\apps\dice\target\Dice.fsproj]

02:22:59 #16 [Debug] >   Dice -> C:\home\git\polyglot\apps\dice\target\bin\release\net8.0\win-x64\Dice.dll

02:23:06 #17 [Debug] >   Dice -> C:\home\git\polyglot\apps\dice\dist\

02:23:06 #18 [Debug] executeAsync / exitCode: 0 / proc.Id: 68464 / output.Length: 592

Fable 4.2.2: F# to Rust compiler (status: alpha)



Thanks to the contributor! @davidtme

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing target\Dice.fsproj...

target> cmd /C dotnet restore Dice.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_RUST=true

  Determining projects to restore...

  Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

  The last full restore is still up to date. Nothing left to do.

  Total time taken: 0 milliseconds

  Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

  Restoring C:\home\git\polyglot\apps\dice\target\Dice.csproj

  Starting restore process.

  Total time taken: 0 milliseconds

  Restored C:\home\git\polyglot\apps\dice\target\Dice.csproj (in 398 ms).

Project and references (2 source files) parsed in 7685ms



Started Fable compilation...

Fable compilation finished in 2669ms



Fable 4.2.2: F# to TypeScript compiler

Minimum fable-library version (when installed from npm): 1.1.1



Thanks to the contributor! @johannesmols

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing target\Dice.fsproj...

target> cmd /C dotnet restore Dice.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_TYPESCRIPT=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 4111ms



Started Fable compilation...

Fable compilation finished in 2719ms



Fable 4.2.2: F# to Python compiler (status: beta)



Thanks to the contributor! @Titaye

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing target\Dice.fsproj...

target> cmd /C dotnet restore Dice.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_PYTHON=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 4190ms



Started Fable compilation...

Fable compilation finished in 2494ms



Fable 4.2.2: F# to PHP compiler (status: experimental)



Thanks to the contributor! @anchann

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing target\Dice.fsproj...

target> cmd /C dotnet restore Dice.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_PHP=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 4082ms



Started Fable compilation...

Fable compilation finished in 2495ms



.\target\Dice.fs(20,37): (20,89) error FABLE: String templates are not supported

.\target\Dice.fs(26,37): (27,76) error FABLE: String templates are not supported

.\target\Dice.fs(31,37): (31,104) error FABLE: String templates are not supported

.\target\Dice.fs(53,41): (53,93) error FABLE: String templates are not supported

.\target\Dice.fs(123,31): (123,83) error FABLE: String templates are not supported

Compilation failed


# Invoke-Block / $Retries: 1 / $OnError: Continue / $exitcode: 1 / $EnvVars: null / $Error: '' / $ScriptBlock:
'dotnet fable target/Dice.fsproj --optimize --lang php --extension .php --outDir target/php'


Fable 4.2.2: F# to Dart compiler (status: beta)



Thanks to the contributor! @kerams

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing target\Dice.fsproj...

target> cmd /C dotnet restore Dice.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_DART=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 4087ms



Started Fable compilation...

Fable compilation finished in 2512ms



.\..\..\nbs\Common.fs(1,1): error FABLE: Cannot find reference for Microsoft.FSharp.Core.PrintfFormat`5

.\target\Dice.fs(1,1): error FABLE: Cannot find reference for System.Random

.\target\Dice.fs(1,1): error FABLE: Cannot find reference for System.IO.TextWriter

.\target\Dice.fs(1,1): error FABLE: Cannot find reference for Microsoft.FSharp.Core.PrintfFormat`5

Compilation failed


# Invoke-Block / $Retries: 1 / $OnError: Continue / $exitcode: 1 / $EnvVars: null / $Error: '' / $ScriptBlock:
'dotnet fable target/Dice.fsproj --optimize --lang dart --extension .dart --outDir target/dart'


Fable 4.2.2: F# to Rust compiler (status: alpha)



Thanks to the contributor! @GordonBGood

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing target\Dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 202ms



Started Fable compilation...

Fable compilation finished in 2493ms



   Compiling dice v0.0.1 (C:\home\git\polyglot\apps\dice)

    Finished release [optimized] target(s) in 4.10s

     Running `target\release\dice.exe`

accumulateDiceRolls / power: 4 / acc: 0 / roll: 1

accumulateDiceRolls / power: 3 / acc: 0 / roll: 5 / value: 864

accumulateDiceRolls / power: 2 / acc: 864 / roll: 4 / value: 108

accumulateDiceRolls / power: 1 / acc: 972 / roll: 4 / value: 18

accumulateDiceRolls / power: 0 / acc: 990 / roll: 5 / value: 4

accumulateDiceRolls / power: -1 / acc: 994

02:24:01 #1 [Debug] main / result: 995

   Compiling dice v0.0.1 (C:\home\git\polyglot\apps\dice)

   Compiling dice_contract v0.0.1 (C:\home\git\polyglot\apps\dice\contract)

    Finished release [optimized] target(s) in 7.77s

## 7

 Downloading crates ...

  Downloaded borsh v1.1.0

   Compiling serde v1.0.189

   Compiling serde_derive v1.0.189

   Compiling lock_api v0.4.11

   Compiling parking_lot_core v0.9.9

   Compiling tracing-core v0.1.32

   Compiling tracing-attributes v0.1.27

   Compiling winnow v0.5.17

   Compiling bitflags v2.4.1

   Compiling rustix v0.38.20

   Compiling toml_edit v0.19.15

   Compiling regex-syntax v0.8.2

   Compiling async-trait v0.1.74

   Compiling proc-macro-crate v1.3.1

   Compiling parking_lot v0.12.1

   Compiling regex-automata v0.4.3

   Compiling tokio v1.28.2

   Compiling parity-scale-codec-derive v2.3.1

   Compiling powerfmt v0.2.0

   Compiling which v4.4.2

   Compiling prost-build v0.9.0

   Compiling regex v1.10.2

   Compiling deranged v0.3.9

   Compiling time v0.3.30

   Compiling tempfile v3.8.0

   Compiling tokio-stream v0.1.14

   Compiling iana-time-zone v0.1.58

   Compiling serde_with_macros v3.4.0

   Compiling flate2 v1.0.28

   Compiling tracing v0.1.40

   Compiling tokio-util v0.7.9

   Compiling tonic-build v0.6.2

   Compiling tokio-io-timeout v1.2.0

   Compiling tracing-log v0.1.3

   Compiling h2 v0.3.21

   Compiling opentelemetry-otlp v0.10.0

   Compiling tower v0.4.13

   Compiling toml v0.5.11

   Compiling serde_json v1.0.107

   Compiling proc-macro-crate v0.1.5

   Compiling hex v0.4.3

   Compiling borsh-derive v0.9.3

   Compiling uint v0.9.5

   Compiling borsh-derive v0.10.3

   Compiling num-rational v0.3.2

   Compiling ed25519-dalek v1.0.1

   Compiling hyper v0.14.27

   Compiling chrono v0.4.31

   Compiling parity-scale-codec v2.3.1

   Compiling impl-codec v0.5.1

   Compiling opentelemetry v0.17.0

   Compiling primitive-types v0.10.1

   Compiling bytesize v1.3.0

   Compiling hyper-timeout v0.4.1

   Compiling near-rpc-error-core v0.17.0

   Compiling semver v1.0.20

   Compiling serde_with v3.4.0

   Compiling near-config-utils v0.17.0

   Compiling tracing-subscriber v0.3.17

   Compiling tracing-futures v0.2.5

   Compiling tokio-util v0.6.10

   Compiling num-traits v0.2.17

   Compiling openssl v0.10.57

   Compiling tonic v0.6.2

   Compiling url v2.4.1

   Compiling borsh v0.9.3

   Compiling near-rpc-error-macro v0.17.0

   Compiling borsh v0.10.3

   Compiling near-account-id v0.17.0

   Compiling near-account-id v0.14.0

   Compiling near-rpc-error-core v0.14.0

   Compiling near-primitives-core v0.17.0

   Compiling near-crypto v0.17.0

   Compiling actix-rt v2.9.0

   Compiling zip v0.6.6

   Compiling actix v0.13.1

   Compiling native-tls v0.2.11

   Compiling near-fmt v0.17.0

   Compiling schemars v0.8.15

   Compiling serde_yaml v0.9.25

   Compiling ureq v2.8.0

   Compiling near-rpc-error-macro v0.14.0

   Compiling prometheus v0.13.3

   Compiling near-vm-errors v0.17.0

   Compiling tracing-appender v0.2.2

   Compiling tracing-opentelemetry v0.17.4

   Compiling opentelemetry-semantic-conventions v0.9.0

   Compiling near-primitives-core v0.14.0

   Compiling binary-install v0.2.0

   Compiling near-crypto v0.14.0

   Compiling near-o11y v0.17.0

   Compiling string_cache v0.8.7

   Compiling near-primitives v0.17.0

   Compiling camino v1.1.6

   Compiling tokio-native-tls v0.3.1

   Compiling cargo-platform v0.1.4

   Compiling near-vm-errors v0.14.0

   Compiling os_str_bytes v6.6.1

   Compiling elementtree v0.7.0

   Compiling clap_lex v0.2.4

   Compiling near-primitives v0.14.0

   Compiling near-sandbox-utils v0.7.0

   Compiling hyper-tls v0.5.0

   Compiling is-terminal v0.4.9

   Compiling near-abi v0.3.0

   Compiling zeropool-bn v0.5.11

   Compiling serde_urlencoded v0.7.1

   Compiling zip v0.5.13

   Compiling reqwest v0.11.22

   Compiling symbolic-debuginfo v8.8.0

   Compiling env_logger v0.9.3

   Compiling clap v3.2.25

   Compiling borsh v1.1.0

   Compiling near-workspaces v0.8.0

   Compiling near-chain-configs v0.17.0

   Compiling near-vm-logic v0.14.0

   Compiling near-jsonrpc-primitives v0.17.0

   Compiling colored v2.0.4

   Compiling cargo_metadata v0.14.2

   Compiling rustc_version v0.4.0

   Compiling treediff v4.0.2

   Compiling near-sdk v4.1.1

   Compiling cargo-near v0.3.1

   Compiling json-patch v1.2.0

   Compiling near-jsonrpc-client v0.6.0

   Compiling cargo_metadata v0.18.1

   Compiling near-gas v0.2.3

   Compiling tokio-retry v0.3.0

   Compiling dice v0.0.1 (/mnt/c/home/git/polyglot/apps/dice/tests)

    Finished release [optimized] target(s) in 10m 36s

     Running `target/release/dice`





new: ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5273611536186,

    },

    transaction: ExecutionOutcome {

        transaction_hash: CT6nULZdfRmjy6JaLGShuSEWiABFUhEZjUEZAHTeqf1u,

        block_hash: 36kCmucgD8Tqt7VAu46USmLqcNWHeFwmVhDe8ixyD7S2,

        logs: [],

        receipt_ids: [

            36JkFq3smAyqeuCiVDr6uAdaKLa5uCgr5DqGJiuodvYv,

        ],

        gas_burnt: NearGas {

            inner: 2427927707802,

        },

        tokens_burnt: 242792770780200000000,

        executor_id: AccountId(

            "dev-20231021063501-99487318119281",

        ),

        status: SuccessReceiptId(36JkFq3smAyqeuCiVDr6uAdaKLa5uCgr5DqGJiuodvYv),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 36JkFq3smAyqeuCiVDr6uAdaKLa5uCgr5DqGJiuodvYv,

            block_hash: 36kCmucgD8Tqt7VAu46USmLqcNWHeFwmVhDe8ixyD7S2,

            logs: [],

            receipt_ids: [

                H527QKLZaZgEbuNYzdKheeRc37xbpkwLfookeUuuvYPk,

            ],

            gas_burnt: NearGas {

                inner: 2622501265884,

            },

            tokens_burnt: 262250126588400000000,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: H527QKLZaZgEbuNYzdKheeRc37xbpkwLfookeUuuvYPk,

            block_hash: Dr9qN6xW8SK4qWZa2KEtmJn4ApN9CiKx9PH4XVUtQrqL,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.0035227725061722477

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621855708811736

  outcome_tokens_burnt_usd: 0.001621855708811736

outcome (success: true):

  outcome_gas_burnt_usd: 0.0017518308456105117

  outcome_tokens_burnt_usd: 0.0017518308456105122

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





roll_within_bounds(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5459725500163,

    },

    transaction: ExecutionOutcome {

        transaction_hash: CvmD4ZEiJ7t49FXX5nM7B93NwEXTyzbZBzxPLWbaAE8y,

        block_hash: E6n41d4xTkbJ6c8er2R2Q9YwV27cui6PnY9Q2TTpxio3,

        logs: [],

        receipt_ids: [

            HyN79R77zrawEjin2ArXt9AobjyeXC8YqQRV5bJ4pR7Y,

        ],

        gas_burnt: NearGas {

            inner: 2428032796700,

        },

        tokens_burnt: 242803279670000000000,

        executor_id: AccountId(

            "dev-20231021063501-99487318119281",

        ),

        status: SuccessReceiptId(HyN79R77zrawEjin2ArXt9AobjyeXC8YqQRV5bJ4pR7Y),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: HyN79R77zrawEjin2ArXt9AobjyeXC8YqQRV5bJ4pR7Y,

            block_hash: E6n41d4xTkbJ6c8er2R2Q9YwV27cui6PnY9Q2TTpxio3,

            logs: [

                "roll_within_bounds / max: 2000 / rolls: [1, 5, 4, 4, 5]",

                "accumulateDiceRolls / power: 4 / acc: 0 / roll: 1",

                "accumulateDiceRolls / power: 3 / acc: 0 / roll: 5 / value: 864",

                "accumulateDiceRolls / power: 2 / acc: 864 / roll: 4 / value: 108",

                "accumulateDiceRolls / power: 1 / acc: 972 / roll: 4 / value: 18",

                "accumulateDiceRolls / power: 0 / acc: 990 / roll: 5 / value: 4",

                "accumulateDiceRolls / power: -1 / acc: 994",

            ],

            receipt_ids: [

                3xHgS1tcTfQJJGULk7uaZotqpXv87ifAF3iVVVCxhvsc,

            ],

            gas_burnt: NearGas {

                inner: 2808510140963,

            },

            tokens_burnt: 280851014096300000000,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue('995'),

        },

        ExecutionOutcome {

            transaction_hash: 3xHgS1tcTfQJJGULk7uaZotqpXv87ifAF3iVVVCxhvsc,

            block_hash: BvQ3moy2uYN7QPnptYRd2JtNXCPahE1QYKLeAywPqZc2,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue('995'),

}

total_gas_burnt_usd: 0.0036470966341088837

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016219259081956

  outcome_tokens_burnt_usd: 0.0016219259081956

outcome (success: true):

  outcome_gas_burnt_usd: 0.001876084774163284

  outcome_tokens_burnt_usd: 0.001876084774163284

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





roll_within_bounds_borsh(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5470222311500,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 32Ya7TWkr9BMMNnUKQHUgTNAdH1vqtEEr2CC47Ff3FYG,

        block_hash: FJDXh2NqghnLBaVPJdWojoGc7RXwwtqcQgKVymsFHRsy,

        logs: [],

        receipt_ids: [

            GnVX3vbuhwHko39chGN8DR87JyyFjr83m5YE7kGToefj,

        ],

        gas_burnt: NearGas {

            inner: 2428037268568,

        },

        tokens_burnt: 242803726856800000000,

        executor_id: AccountId(

            "dev-20231021063501-99487318119281",

        ),

        status: SuccessReceiptId(GnVX3vbuhwHko39chGN8DR87JyyFjr83m5YE7kGToefj),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: GnVX3vbuhwHko39chGN8DR87JyyFjr83m5YE7kGToefj,

            block_hash: FJDXh2NqghnLBaVPJdWojoGc7RXwwtqcQgKVymsFHRsy,

            logs: [

                "roll_within_bounds / max: 2000 / rolls: [2, 2, 6, 4, 5]",

                "accumulateDiceRolls / power: 4 / acc: 0 / roll: 2 / value: 1296",

                "accumulateDiceRolls / power: 3 / acc: 1296 / roll: 2 / value: 216",

                "accumulateDiceRolls / power: 2 / acc: 1512 / roll: 6 / value: 180",

                "accumulateDiceRolls / power: 1 / acc: 1692 / roll: 4 / value: 18",

                "accumulateDiceRolls / power: 0 / acc: 1710 / roll: 5 / value: 4",

                "accumulateDiceRolls / power: -1 / acc: 1714",

            ],

            receipt_ids: [

                Ekwf1JcgEkXejBLtAanpG4e52wevR1k1Fh8EfrKNrBaP,

            ],

            gas_burnt: NearGas {

                inner: 2819002480432,

            },

            tokens_burnt: 281900248043200000000,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue(AbMGAAA=),

        },

        ExecutionOutcome {

            transaction_hash: Ekwf1JcgEkXejBLtAanpG4e52wevR1k1Fh8EfrKNrBaP,

            block_hash: 7mVSHzumSavoB7hV6NS6H8BGpzCcgSvegFe6SXAT1ouj,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(AbMGAAA=),

}

total_gas_burnt_usd: 0.0036541085040819993

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016219288954034238

  outcome_tokens_burnt_usd: 0.001621928895403424

outcome (success: true):

  outcome_gas_burnt_usd: 0.0018830936569285757

  outcome_tokens_burnt_usd: 0.0018830936569285757

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0

n: Some(

    Some(

        1715,

    ),

)





generate_random_number(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 9629365406039,

    },

    transaction: ExecutionOutcome {

        transaction_hash: FuxPhyYjURD3caGUNnXzvTHr2NfHQGfCmHPpFZB3zVtx,

        block_hash: 7XA4VKbFYcyT3RJPZ3vo5TfqdUKHVF46vmGFf43Dsvhq,

        logs: [],

        receipt_ids: [

            CbgruXf5gJ5G93eGa8yx554tknfY5u2tiJdhuneLV224,

        ],

        gas_burnt: NearGas {

            inner: 2427997021756,

        },

        tokens_burnt: 242799702175600000000,

        executor_id: AccountId(

            "dev-20231021063501-99487318119281",

        ),

        status: SuccessReceiptId(CbgruXf5gJ5G93eGa8yx554tknfY5u2tiJdhuneLV224),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: CbgruXf5gJ5G93eGa8yx554tknfY5u2tiJdhuneLV224,

            block_hash: 7XA4VKbFYcyT3RJPZ3vo5TfqdUKHVF46vmGFf43Dsvhq,

            logs: [

                "generate_random_number / max: 2000 / seed: [4, 76, 63, 113, 186, 102, 239, 249, 108, 177, 155, 141, 171, 49, 66, 132, 214, 86, 53, 174, 95, 52, 203, 219, 254, 201, 208, 68, 74, 237, 166, 42] / block_timestamp: 1697870105780461061 / signer_account_id: \"dev-20231021063501-99487318119281\" / account_balance: 99996914293411177505960000 / block_height: 23 / epoch_height: 1 / entropy: [4, 76, 63, 113, 186, 102, 239, 249, 108, 177, 155, 141, 171, 49, 66, 132, 214, 86, 53, 174, 95, 52, 203, 219, 254, 201, 208, 68, 74, 237, 166, 42, 5, 158, 204, 145, 221, 11, 144, 23, 100, 101, 118, 45, 50, 48, 50, 51, 49, 48, 50, 49, 48, 54, 51, 53, 48, 49, 45, 57, 57, 52, 56, 55, 51, 49, 56, 49, 49, 57, 50, 56, 49, 64, 48, 231, 92, 16, 11, 0, 150, 43, 183, 82, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0] / hash_vec: [187, 247, 135, 201, 30, 5, 146, 7, 70, 158, 129, 242, 8, 175, 193, 38, 26, 101, 173, 217, 63, 165, 61, 124, 2, 146, 240, 27, 128, 128, 133, 130, 38, 236, 45, 229, 111, 209, 29, 117, 74, 69, 201, 240, 75, 223, 126, 108, 198, 51, 30, 43, 54, 163, 52, 251, 209, 132, 226, 93, 169, 55, 29, 208] / rolls_list: [1, 1, 3, 3, 6, 5, 2, 1, 4, 2, 3, 2, 2, 1, 1, 2, 2, 5, 5, 1, 3, 3, 1, 4, 2, 2, 6, 3, 2, 2, 1, 4, 2, 2, 3, 1, 3, 5, 5, 3, 2, 3, 3, 6, 3, 1, 6, 6, 6, 3, 6, 1, 6, 1, 4, 5, 5, 6, 4, 3, 1, 1, 5, 4]",

                "calculateDiceCount / max: 2000 / n: 5 / p: 7776",

                "accumulateDiceRolls / power: 4 / acc: 0 / roll: 6 / value: 6480",

                "accumulateDiceRolls / power: 3 / acc: 6480 / roll: 3 / value: 432",

                "accumulateDiceRolls / power: 2 / acc: 6912 / roll: 3 / value: 72",

                "accumulateDiceRolls / power: 1 / acc: 6984 / roll: 1",

                "accumulateDiceRolls / power: 0 / acc: 6984 / roll: 1",

                "accumulateDiceRolls / power: -1 / acc: 6984",

                "accumulateDiceRolls / power: 4 / acc: 0 / roll: 5 / value: 5184",

                "accumulateDiceRolls / power: 3 / acc: 5184 / roll: 6 / value: 1080",

                "accumulateDiceRolls / power: 2 / acc: 6264 / roll: 3 / value: 72",

                "accumulateDiceRolls / power: 1 / acc: 6336 / roll: 3 / value: 12",

                "accumulateDiceRolls / power: 0 / acc: 6348 / roll: 1",

                "accumulateDiceRolls / power: -1 / acc: 6348",

                "accumulateDiceRolls / power: 4 / acc: 0 / roll: 2 / value: 1296",

                "accumulateDiceRolls / power: 3 / acc: 1296 / roll: 5 / value: 864",

                "accumulateDiceRolls / power: 2 / acc: 2160 / roll: 6 / value: 180",

                "accumulateDiceRolls / power: 1 / acc: 2340 / roll: 3 / value: 12",

                "accumulateDiceRolls / power: 0 / acc: 2352 / roll: 3 / value: 2",

                "accumulateDiceRolls / power: -1 / acc: 2354",

                "accumulateDiceRolls / power: 4 / acc: 0 / roll: 1",

                "accumulateDiceRolls / power: 3 / acc: 0 / roll: 2 / value: 216",

                "accumulateDiceRolls / power: 2 / acc: 216 / roll: 5 / value: 144",

                "accumulateDiceRolls / power: 1 / acc: 360 / roll: 6 / value: 30",

                "accumulateDiceRolls / power: 0 / acc: 390 / roll: 3 / value: 2",

                "accumulateDiceRolls / power: -1 / acc: 392",

            ],

            receipt_ids: [

                5dikA6VvGxE5giH7j8UZEFZUVvvELTSbnVtprJndiwmK,

            ],

            gas_burnt: NearGas {

                inner: 6978185821783,

            },

            tokens_burnt: 697818582178300000000,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue('393'),

        },

        ExecutionOutcome {

            transaction_hash: 5dikA6VvGxE5giH7j8UZEFZUVvvELTSbnVtprJndiwmK,

            block_hash: 7s7LdEP3WV1gAS9hLQiniGKaknZvj7SEeLEJf6WL2ACx,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: 0,

            executor_id: AccountId(

                "dev-20231021063501-99487318119281",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue('393'),

}

total_gas_burnt_usd: 0.006432416091234052

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621902010533008

  outcome_tokens_burnt_usd: 0.0016219020105330078

outcome (success: true):

  outcome_gas_burnt_usd: 0.004661428128951044

  outcome_tokens_burnt_usd: 0.004661428128951044

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0

n: 393

In [ ]:
{ . "$ScriptDir/../apps/perf/build.ps1" } | Invoke-Block
02:35:07 #1 [Debug] runWithTimeoutAsync / timeout: 60

02:35:07 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

02:35:07 #3 [Debug] > pwd: C:\home\git\polyglot\apps\perf

02:35:07 #4 [Debug] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

02:35:08 #5 [Debug] runWithTimeoutAsync / timeout: 500

02:35:08 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

02:35:08 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

02:35:08 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

02:35:08 #9 [Debug] > Server bound to: http://localhost:13805

02:35:08 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 Perf.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

02:35:11 #11 [Debug] >

02:35:11 #12 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:11 #13 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:11 #14 [Debug] > │ ## Perf (Polyglot)                                                           │

02:35:11 #15 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:11 #16 [Debug] >

02:35:11 #17 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:35:11 #18 [Debug] > // // test

02:35:11 #19 [Debug] >

02:35:11 #20 [Debug] > open testing

02:35:11 #21 [Debug] > open benchmark

02:35:15 #22 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0235-1440-4005-41f226d87090\main.spi

02:35:18 #23 [Debug] >

02:35:18 #24 [Debug] > ╭─[ 6.40s - stdout ]───────────────────────────────────────────────────────────╮

02:35:18 #25 [Debug] > │ ()                                                                           │

02:35:18 #26 [Debug] > │                                                                              │

02:35:18 #27 [Debug] > │                                                                              │

02:35:18 #28 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:18 #29 [Debug] >

02:35:18 #30 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:35:18 #31 [Debug] > inl (/@) x = listm'.(/@) x

02:35:18 #32 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0235-1815-1515-1a03dbd202ed\main.spi

02:35:18 #33 [Debug] >

02:35:18 #34 [Debug] > ╭─[ 204.83ms - stdout ]────────────────────────────────────────────────────────╮

02:35:18 #35 [Debug] > │ ()                                                                           │

02:35:18 #36 [Debug] > │                                                                              │

02:35:18 #37 [Debug] > │                                                                              │

02:35:18 #38 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:18 #39 [Debug] >

02:35:18 #40 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:18 #41 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:18 #42 [Debug] > │ ## TestCaseResult                                                            │

02:35:18 #43 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:18 #44 [Debug] >

02:35:18 #45 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:18 #46 [Debug] > type TestCaseResult =

02:35:18 #47 [Debug] >     {

02:35:18 #48 [Debug] >         Input: string

02:35:18 #49 [Debug] >         Expected: string

02:35:18 #50 [Debug] >         Result: string

02:35:18 #51 [Debug] >         TimeList: int64 list

02:35:18 #52 [Debug] >     }

02:35:18 #53 [Debug] >

02:35:18 #54 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:35:18 #55 [Debug] > #r

02:35:18 #56 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

02:35:18 #57 [Debug] > spNetCore.Html.Abstractions.dll"

02:35:18 #58 [Debug] > #r

02:35:18 #59 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:35:18 #60 [Debug] > otNet.Interactive.dll"

02:35:18 #61 [Debug] > #r

02:35:18 #62 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:35:18 #63 [Debug] > otNet.Interactive.FSharp.dll"

02:35:18 #64 [Debug] > #r

02:35:18 #65 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:35:18 #66 [Debug] > otNet.Interactive.Formatting.dll"

02:35:18 #67 [Debug] > open System

02:35:18 #68 [Debug] > open System.IO

02:35:18 #69 [Debug] > open System.Text

02:35:18 #70 [Debug] > open Microsoft.DotNet.Interactive.Formatting

02:35:19 #71 [Debug] >

02:35:19 #72 [Debug] > ── fsharp - import ─────────────────────────────────────────────────────────────

02:35:19 #73 [Debug] > #r

02:35:19 #74 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:35:19 #75 [Debug] > otNet.Interactive.FSharp.dll"

02:35:19 #76 [Debug] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

02:35:19 #77 [Debug] > #r

02:35:19 #78 [Debug] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

02:35:19 #79 [Debug] > otNet.Interactive.dll"

02:35:19 #80 [Debug] > open type Microsoft.DotNet.Interactive.Kernel

02:35:20 #81 [Debug] >

02:35:20 #82 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:20 #83 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:20 #84 [Debug] > │ ## run                                                                       │

02:35:20 #85 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:20 #86 [Debug] >

02:35:20 #87 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:20 #88 [Debug] > let run count (solutions: (string * ('TInput -> 'TExpected)) list) (input,

02:35:20 #89 [Debug] > expected) =

02:35:20 #90 [Debug] >     let inputStr =

02:35:20 #91 [Debug] >         match box input with

02:35:20 #92 [Debug] >         | :? System.Collections.ICollection as input ->

02:35:20 #93 [Debug] >             System.Linq.Enumerable.Cast<obj> input

02:35:20 #94 [Debug] >             |> Seq.map string

02:35:20 #95 [Debug] >             |> String.concat ","

02:35:20 #96 [Debug] >         | _ -> input.ToString ()

02:35:20 #97 [Debug] >

02:35:20 #98 [Debug] >     printfn ""

02:35:20 #99 [Debug] >     printfn $"Solution: {inputStr}  "

02:35:20 #100 [Debug] >

02:35:20 #101 [Debug] >     let performanceInvoke (fn: unit -> 'T) =

02:35:20 #102 [Debug] >         GC.Collect ()

02:35:20 #103 [Debug] >         let stopwatch = System.Diagnostics.Stopwatch ()

02:35:20 #104 [Debug] >         stopwatch.Start ()

02:35:20 #105 [Debug] >         let time1 = stopwatch.ElapsedMilliseconds

02:35:20 #106 [Debug] >

02:35:20 #107 [Debug] >         let result =

02:35:20 #108 [Debug] >             [[| 0 .. count |]]

02:35:20 #109 [Debug] >             |> Array.Parallel.map (fun _ ->

02:35:20 #110 [Debug] >                 fn ()

02:35:20 #111 [Debug] >             )

02:35:20 #112 [Debug] >             |> Array.last

02:35:20 #113 [Debug] >

02:35:20 #114 [Debug] >         let time2 = stopwatch.ElapsedMilliseconds - time1

02:35:20 #115 [Debug] >

02:35:20 #116 [Debug] >         result, time2

02:35:20 #117 [Debug] >

02:35:20 #118 [Debug] >     let resultsWithTime =

02:35:20 #119 [Debug] >         solutions

02:35:20 #120 [Debug] >         |> List.mapi (fun i (testName, solution) ->

02:35:20 #121 [Debug] >             let result, time = performanceInvoke (fun () -> solution input)

02:35:20 #122 [Debug] >             printfn $"Test case %d{i + 1}. %s{testName}. Time: %A{time}  "

02:35:20 #123 [Debug] >             result, time

02:35:20 #124 [Debug] >         )

02:35:20 #125 [Debug] >

02:35:20 #126 [Debug] >

02:35:20 #127 [Debug] >     match resultsWithTime |> List.map fst with

02:35:20 #128 [Debug] >     | ([[]] | [[ _ ]]) -> ()

02:35:20 #129 [Debug] >     | (head :: tail) when tail |> List.forall ((=) head) -> ()

02:35:20 #130 [Debug] >     | results -> failwithf $"Challenge error: %A{results}"

02:35:20 #131 [Debug] >

02:35:20 #132 [Debug] >     {

02:35:20 #133 [Debug] >         Input = inputStr

02:35:20 #134 [Debug] >         Expected = expected.ToString ()

02:35:20 #135 [Debug] >         Result = resultsWithTime |> Seq.map fst |> Seq.head |> fun x ->

02:35:20 #136 [Debug] > x.ToString ()

02:35:20 #137 [Debug] >         TimeList = resultsWithTime |> List.map snd

02:35:20 #138 [Debug] >     }

02:35:21 #139 [Debug] >

02:35:21 #140 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:21 #141 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:21 #142 [Debug] > │ ## runAll                                                                    │

02:35:21 #143 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:21 #144 [Debug] >

02:35:21 #145 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:21 #146 [Debug] > let runAll testName count (solutions: (string * ('TInput -> 'TExpected)) list)

02:35:21 #147 [Debug] > testCases =

02:35:21 #148 [Debug] >     printfn ""

02:35:21 #149 [Debug] >     printfn ""

02:35:21 #150 [Debug] >     printfn $"Test: {testName}"

02:35:21 #151 [Debug] >     testCases

02:35:21 #152 [Debug] >     |> Seq.map (run count solutions)

02:35:21 #153 [Debug] >     |> Seq.toList

02:35:21 #154 [Debug] >

02:35:21 #155 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:21 #156 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:21 #157 [Debug] > │ ## sortResultList                                                            │

02:35:21 #158 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:21 #159 [Debug] >

02:35:21 #160 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:21 #161 [Debug] > let sortResultList resultList =

02:35:21 #162 [Debug] >     let table =

02:35:21 #163 [Debug] >         let rows =

02:35:21 #164 [Debug] >             resultList

02:35:21 #165 [Debug] >             |> List.map (fun result ->

02:35:21 #166 [Debug] >                 let best =

02:35:21 #167 [Debug] >                     result.TimeList

02:35:21 #168 [Debug] >                     |> List.mapi (fun i time ->

02:35:21 #169 [Debug] >                         i + 1, time

02:35:21 #170 [Debug] >                     )

02:35:21 #171 [Debug] >                     |> List.sortBy snd

02:35:21 #172 [Debug] >                     |> List.head

02:35:21 #173 [Debug] >                     |> fun x -> x.ToString ()

02:35:21 #174 [Debug] >                 let row =

02:35:21 #175 [Debug] >                     [[

02:35:21 #176 [Debug] >                         result.Input

02:35:21 #177 [Debug] >                         result.Expected

02:35:21 #178 [Debug] >                         result.Result

02:35:21 #179 [Debug] >                         best

02:35:21 #180 [Debug] >                     ]]

02:35:21 #181 [Debug] >                 let color =

02:35:21 #182 [Debug] >                     match result.Expected = result.Result with

02:35:21 #183 [Debug] >                     | true -> Some ConsoleColor.DarkGreen

02:35:21 #184 [Debug] >                     | false -> Some ConsoleColor.DarkRed

02:35:21 #185 [Debug] >                 row, color

02:35:21 #186 [Debug] >             )

02:35:21 #187 [Debug] >         let header =

02:35:21 #188 [Debug] >             [[

02:35:21 #189 [Debug] >                 [[

02:35:21 #190 [Debug] >                     "Input"

02:35:21 #191 [Debug] >                     "Expected"

02:35:21 #192 [Debug] >                     "Result"

02:35:21 #193 [Debug] >                     "Best"

02:35:21 #194 [Debug] >                 ]]

02:35:21 #195 [Debug] >                 [[

02:35:21 #196 [Debug] >                     "---"

02:35:21 #197 [Debug] >                     "---"

02:35:21 #198 [Debug] >                     "---"

02:35:21 #199 [Debug] >                     "---"

02:35:21 #200 [Debug] >                 ]]

02:35:21 #201 [Debug] >             ]]

02:35:21 #202 [Debug] >             |> List.map (fun row -> row, None)

02:35:21 #203 [Debug] >         header @ rows

02:35:21 #204 [Debug] >

02:35:21 #205 [Debug] >     let formattedTable =

02:35:21 #206 [Debug] >         let lengthMap =

02:35:21 #207 [Debug] >             table

02:35:21 #208 [Debug] >             |> List.map fst

02:35:21 #209 [Debug] >             |> List.transpose

02:35:21 #210 [Debug] >             |> List.map (fun column ->

02:35:21 #211 [Debug] >                 column

02:35:21 #212 [Debug] >                 |> List.map String.length

02:35:21 #213 [Debug] >                 |> List.sortDescending

02:35:21 #214 [Debug] >                 |> List.tryHead

02:35:21 #215 [Debug] >                 |> Option.defaultValue 0

02:35:21 #216 [Debug] >             )

02:35:21 #217 [Debug] >             |> List.indexed

02:35:21 #218 [Debug] >             |> Map.ofList

02:35:21 #219 [Debug] >         table

02:35:21 #220 [Debug] >         |> List.map (fun (row, color) ->

02:35:21 #221 [Debug] >             let newRow =

02:35:21 #222 [Debug] >                 row

02:35:21 #223 [Debug] >                 |> List.mapi (fun i cell ->

02:35:21 #224 [Debug] >                     cell.PadRight lengthMap.[[i]]

02:35:21 #225 [Debug] >                 )

02:35:21 #226 [Debug] >             newRow, color

02:35:21 #227 [Debug] >         )

02:35:21 #228 [Debug] >

02:35:21 #229 [Debug] >     printfn ""

02:35:21 #230 [Debug] >     formattedTable

02:35:21 #231 [Debug] >     |> List.iter (fun (row, color) ->

02:35:21 #232 [Debug] >         match color with

02:35:21 #233 [Debug] >         | Some color -> Console.ForegroundColor <- color

02:35:21 #234 [Debug] >         | None -> Console.ResetColor ()

02:35:21 #235 [Debug] >

02:35:21 #236 [Debug] >         printfn "%s" (String.Join ("\t| ", row))

02:35:21 #237 [Debug] >

02:35:21 #238 [Debug] >         Console.ResetColor ()

02:35:21 #239 [Debug] >     )

02:35:21 #240 [Debug] >

02:35:21 #241 [Debug] >     let averages =

02:35:21 #242 [Debug] >         resultList

02:35:21 #243 [Debug] >         |> List.map (fun result -> result.TimeList |> List.map float)

02:35:21 #244 [Debug] >         |> List.transpose

02:35:21 #245 [Debug] >         |> List.map List.average

02:35:21 #246 [Debug] >         |> List.map int64

02:35:21 #247 [Debug] >         |> List.indexed

02:35:21 #248 [Debug] >

02:35:21 #249 [Debug] >     printfn ""

02:35:21 #250 [Debug] >     printfn "Average Ranking  "

02:35:21 #251 [Debug] >     averages

02:35:21 #252 [Debug] >     |> List.sortBy snd

02:35:21 #253 [Debug] >     |> List.iter (fun (i, avg) ->

02:35:21 #254 [Debug] >         printfn $"Test case %d{i + 1}. Average Time: %A{avg}  "

02:35:21 #255 [Debug] >     )

02:35:21 #256 [Debug] >

02:35:21 #257 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:21 #258 [Debug] > let mutable _count =

02:35:21 #259 [Debug] >     if ("CI" |> System.Environment.GetEnvironmentVariable |> fun x -> $"%A{x}")

02:35:21 #260 [Debug] > <> "<null>"

02:35:21 #261 [Debug] >     then 2000000

02:35:21 #262 [Debug] >     else 2000

02:35:22 #263 [Debug] >

02:35:22 #264 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:35:22 #265 [Debug] > inl get_count () =

02:35:22 #266 [Debug] >     if ("CI" |> get_environment_variable |> format_debug) <> "<null>"

02:35:22 #267 [Debug] >     then 2000000i32

02:35:22 #268 [Debug] >     else 2000

02:35:22 #269 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0235-2202-0221-027c4dc50435\main.spi

02:35:22 #270 [Debug] >

02:35:22 #271 [Debug] > ╭─[ 173.79ms - stdout ]────────────────────────────────────────────────────────╮

02:35:22 #272 [Debug] > │ ()                                                                           │

02:35:22 #273 [Debug] > │                                                                              │

02:35:22 #274 [Debug] > │                                                                              │

02:35:22 #275 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:22 #276 [Debug] >

02:35:22 #277 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:22 #278 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:22 #279 [Debug] > │ ## empty3Tests                                                               │

02:35:22 #280 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:22 #281 [Debug] >

02:35:22 #282 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:22 #283 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:22 #284 [Debug] > │ Test: Empty3                                                                 │

02:35:22 #285 [Debug] > │                                                                              │

02:35:22 #286 [Debug] > │ Solution: (a, a)                                                             │

02:35:22 #287 [Debug] > │ Test case 1. A. Time: 91L                                                    │

02:35:22 #288 [Debug] > │                                                                              │

02:35:22 #289 [Debug] > │ Solution: (a, a)                                                             │

02:35:22 #290 [Debug] > │ Test case 1. A. Time: 56L                                                    │

02:35:22 #291 [Debug] > │                                                                              │

02:35:22 #292 [Debug] > │ Input  | Expected      | Result | Best                                       │

02:35:22 #293 [Debug] > │ ---    | ---           | ---    | ---                                        │

02:35:22 #294 [Debug] > │ (a, a) | a             | a      | (1, 91)                                    │

02:35:22 #295 [Debug] > │ (a, a) | a             | a      | (1, 56)                                    │

02:35:22 #296 [Debug] > │                                                                              │

02:35:22 #297 [Debug] > │ Averages                                                                     │

02:35:22 #298 [Debug] > │ Test case 1. Average Time: 73L                                               │

02:35:22 #299 [Debug] > │                                                                              │

02:35:22 #300 [Debug] > │ Ranking                                                                      │

02:35:22 #301 [Debug] > │ Test case 1. Average Time: 73L                                               │

02:35:22 #302 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:22 #303 [Debug] >

02:35:22 #304 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:22 #305 [Debug] > //// test

02:35:22 #306 [Debug] >

02:35:22 #307 [Debug] > let solutions = [[

02:35:22 #308 [Debug] >     "A",

02:35:22 #309 [Debug] >     fun (a, _b) ->

02:35:22 #310 [Debug] >         a

02:35:22 #311 [Debug] > ]]

02:35:22 #312 [Debug] > let testCases = seq {

02:35:22 #313 [Debug] >     ("a", "a"), "a"

02:35:22 #314 [Debug] >     ("a", "a"), "a"

02:35:22 #315 [Debug] > }

02:35:22 #316 [Debug] > let rec empty3Tests = runAll (nameof empty3Tests) _count solutions testCases

02:35:22 #317 [Debug] > empty3Tests

02:35:22 #318 [Debug] > |> sortResultList

02:35:22 #319 [Debug] >

02:35:22 #320 [Debug] > ╭─[ 493.31ms - stdout ]────────────────────────────────────────────────────────╮

02:35:22 #321 [Debug] > │                                                                              │

02:35:22 #322 [Debug] > │                                                                              │

02:35:22 #323 [Debug] > │ Test: empty3Tests                                                            │

02:35:22 #324 [Debug] > │                                                                              │

02:35:22 #325 [Debug] > │ Solution: (a, a)                                                             │

02:35:22 #326 [Debug] > │ Test case 1. A. Time: 1L                                                     │

02:35:22 #327 [Debug] > │                                                                              │

02:35:22 #328 [Debug] > │ Solution: (a, a)                                                             │

02:35:22 #329 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:22 #330 [Debug] > │                                                                              │

02:35:22 #331 [Debug] > │ Input 	| Expected	| Result	| Best                                                  │

02:35:22 #332 [Debug] > │ ---   	| ---     	| ---   	| ---                                                   │

02:35:22 #333 [Debug] > │ (a, a)	| a       	| a     	| (1, 1)                                                │

02:35:22 #334 [Debug] > │ (a, a)	| a       	| a     	| (1, 0)                                                │

02:35:22 #335 [Debug] > │                                                                              │

02:35:22 #336 [Debug] > │ Average Ranking                                                              │

02:35:22 #337 [Debug] > │ Test case 1. Average Time: 0L                                                │

02:35:22 #338 [Debug] > │                                                                              │

02:35:22 #339 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:22 #340 [Debug] >

02:35:22 #341 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:22 #342 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:22 #343 [Debug] > │ ## empty2Tests                                                               │

02:35:22 #344 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:22 #345 [Debug] >

02:35:22 #346 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:22 #347 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:22 #348 [Debug] > │ Test: Empty2                                                                 │

02:35:22 #349 [Debug] > │                                                                              │

02:35:22 #350 [Debug] > │ Solution: (a, a)                                                             │

02:35:22 #351 [Debug] > │ Test case 1. A. Time: 59L                                                    │

02:35:22 #352 [Debug] > │                                                                              │

02:35:22 #353 [Debug] > │ Solution: (a, a)                                                             │

02:35:22 #354 [Debug] > │ Test case 1. A. Time: 53L                                                    │

02:35:22 #355 [Debug] > │                                                                              │

02:35:22 #356 [Debug] > │ Input   | Expected        | Result  | Best                                   │

02:35:22 #357 [Debug] > │ ---     | ---             | ---     | ---                                    │

02:35:22 #358 [Debug] > │ (a, a)  | a               | a       | (1, 59)                                │

02:35:22 #359 [Debug] > │ (a, a)  | a               | a       | (1, 53)                                │

02:35:22 #360 [Debug] > │                                                                              │

02:35:22 #361 [Debug] > │ Averages                                                                     │

02:35:22 #362 [Debug] > │ Test case 1. Average Time: 56L                                               │

02:35:22 #363 [Debug] > │                                                                              │

02:35:22 #364 [Debug] > │ Ranking                                                                      │

02:35:22 #365 [Debug] > │ Test case 1. Average Time: 56L                                               │

02:35:22 #366 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:22 #367 [Debug] >

02:35:22 #368 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:22 #369 [Debug] > //// test

02:35:22 #370 [Debug] >

02:35:22 #371 [Debug] > let solutions = [[

02:35:22 #372 [Debug] >     "A",

02:35:22 #373 [Debug] >     fun (a, _b) ->

02:35:22 #374 [Debug] >         a

02:35:22 #375 [Debug] > ]]

02:35:22 #376 [Debug] > let testCases = seq {

02:35:22 #377 [Debug] >     ("a", "a"), "a"

02:35:22 #378 [Debug] >     ("a", "a"), "a"

02:35:22 #379 [Debug] > }

02:35:22 #380 [Debug] > let rec empty2Tests = runAll (nameof empty2Tests) _count solutions testCases

02:35:22 #381 [Debug] > empty2Tests

02:35:22 #382 [Debug] > |> sortResultList

02:35:23 #383 [Debug] >

02:35:23 #384 [Debug] > ╭─[ 291.22ms - stdout ]────────────────────────────────────────────────────────╮

02:35:23 #385 [Debug] > │                                                                              │

02:35:23 #386 [Debug] > │                                                                              │

02:35:23 #387 [Debug] > │ Test: empty2Tests                                                            │

02:35:23 #388 [Debug] > │                                                                              │

02:35:23 #389 [Debug] > │ Solution: (a, a)                                                             │

02:35:23 #390 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:23 #391 [Debug] > │                                                                              │

02:35:23 #392 [Debug] > │ Solution: (a, a)                                                             │

02:35:23 #393 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:23 #394 [Debug] > │                                                                              │

02:35:23 #395 [Debug] > │ Input 	| Expected	| Result	| Best                                                  │

02:35:23 #396 [Debug] > │ ---   	| ---     	| ---   	| ---                                                   │

02:35:23 #397 [Debug] > │ (a, a)	| a       	| a     	| (1, 0)                                                │

02:35:23 #398 [Debug] > │ (a, a)	| a       	| a     	| (1, 0)                                                │

02:35:23 #399 [Debug] > │                                                                              │

02:35:23 #400 [Debug] > │ Average Ranking                                                              │

02:35:23 #401 [Debug] > │ Test case 1. Average Time: 0L                                                │

02:35:23 #402 [Debug] > │                                                                              │

02:35:23 #403 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:23 #404 [Debug] >

02:35:23 #405 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:23 #406 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:23 #407 [Debug] > │ ## emptyTests                                                                │

02:35:23 #408 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:23 #409 [Debug] >

02:35:23 #410 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:23 #411 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:23 #412 [Debug] > │ Test: Empty                                                                  │

02:35:23 #413 [Debug] > │                                                                              │

02:35:23 #414 [Debug] > │ Solution: 0                                                                  │

02:35:23 #415 [Debug] > │ Test case 1. A. Time: 61L                                                    │

02:35:23 #416 [Debug] > │                                                                              │

02:35:23 #417 [Debug] > │ Solution: 2                                                                  │

02:35:23 #418 [Debug] > │ Test case 1. A. Time: 62L                                                    │

02:35:23 #419 [Debug] > │                                                                              │

02:35:23 #420 [Debug] > │ Solution: 5                                                                  │

02:35:23 #421 [Debug] > │ Test case 1. A. Time: 70L                                                    │

02:35:23 #422 [Debug] > │                                                                              │

02:35:23 #423 [Debug] > │ Input   | Expected        | Result  | Best                                   │

02:35:23 #424 [Debug] > │ ---     | ---             | ---     | ---                                    │

02:35:23 #425 [Debug] > │ 0       | 0               | 0       | (1, 61)                                │

02:35:23 #426 [Debug] > │ 2       | 2               | 2       | (1, 62)                                │

02:35:23 #427 [Debug] > │ 5       | 5               | 5       | (1, 70)                                │

02:35:23 #428 [Debug] > │                                                                              │

02:35:23 #429 [Debug] > │ Averages                                                                     │

02:35:23 #430 [Debug] > │ Test case 1. Average Time: 64L                                               │

02:35:23 #431 [Debug] > │                                                                              │

02:35:23 #432 [Debug] > │ Ranking                                                                      │

02:35:23 #433 [Debug] > │ Test case 1. Average Time: 64L                                               │

02:35:23 #434 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:23 #435 [Debug] >

02:35:23 #436 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:23 #437 [Debug] > //// test

02:35:23 #438 [Debug] >

02:35:23 #439 [Debug] > let solutions = [[

02:35:23 #440 [Debug] >     "A",

02:35:23 #441 [Debug] >     fun n ->

02:35:23 #442 [Debug] >         n + 0

02:35:23 #443 [Debug] > ]]

02:35:23 #444 [Debug] > let testCases = seq {

02:35:23 #445 [Debug] >     0, 0

02:35:23 #446 [Debug] >     2, 2

02:35:23 #447 [Debug] >     5, 5

02:35:23 #448 [Debug] > }

02:35:23 #449 [Debug] > let rec emptyTests = runAll (nameof emptyTests) _count solutions testCases

02:35:23 #450 [Debug] > emptyTests

02:35:23 #451 [Debug] > |> sortResultList

02:35:23 #452 [Debug] >

02:35:23 #453 [Debug] > ╭─[ 503.15ms - stdout ]────────────────────────────────────────────────────────╮

02:35:23 #454 [Debug] > │                                                                              │

02:35:23 #455 [Debug] > │                                                                              │

02:35:23 #456 [Debug] > │ Test: emptyTests                                                             │

02:35:23 #457 [Debug] > │                                                                              │

02:35:23 #458 [Debug] > │ Solution: 0                                                                  │

02:35:23 #459 [Debug] > │ Test case 1. A. Time: 3L                                                     │

02:35:23 #460 [Debug] > │                                                                              │

02:35:23 #461 [Debug] > │ Solution: 2                                                                  │

02:35:23 #462 [Debug] > │ Test case 1. A. Time: 7L                                                     │

02:35:23 #463 [Debug] > │                                                                              │

02:35:23 #464 [Debug] > │ Solution: 5                                                                  │

02:35:23 #465 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:23 #466 [Debug] > │                                                                              │

02:35:23 #467 [Debug] > │ Input	| Expected	| Result	| Best                                                   │

02:35:23 #468 [Debug] > │ ---  	| ---     	| ---   	| ---                                                    │

02:35:23 #469 [Debug] > │ 0    	| 0       	| 0     	| (1, 3)                                                 │

02:35:23 #470 [Debug] > │ 2    	| 2       	| 2     	| (1, 7)                                                 │

02:35:23 #471 [Debug] > │ 5    	| 5       	| 5     	| (1, 0)                                                 │

02:35:23 #472 [Debug] > │                                                                              │

02:35:23 #473 [Debug] > │ Average Ranking                                                              │

02:35:23 #474 [Debug] > │ Test case 1. Average Time: 3L                                                │

02:35:23 #475 [Debug] > │                                                                              │

02:35:23 #476 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:23 #477 [Debug] >

02:35:23 #478 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:23 #479 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:23 #480 [Debug] > │ ## uniqueLettersTests                                                        │

02:35:23 #481 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:23 #482 [Debug] >

02:35:23 #483 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:23 #484 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:23 #485 [Debug] > │ Test: UniqueLetters                                                          │

02:35:23 #486 [Debug] > │                                                                              │

02:35:23 #487 [Debug] > │ Solution: abc                                                                │

02:35:23 #488 [Debug] > │ Test case 1. A. Time: 1512L                                                  │

02:35:23 #489 [Debug] > │ Test case 2. B. Time: 1947L                                                  │

02:35:23 #490 [Debug] > │ Test case 3. C. Time: 2023L                                                  │

02:35:23 #491 [Debug] > │ Test case 4. D. Time: 1358L                                                  │

02:35:23 #492 [Debug] > │ Test case 5. E. Time: 1321L                                                  │

02:35:23 #493 [Debug] > │ Test case 6. F. Time: 1346L                                                  │

02:35:23 #494 [Debug] > │ Test case 7. G. Time: 1304L                                                  │

02:35:23 #495 [Debug] > │ Test case 8. H. Time: 1383L                                                  │

02:35:23 #496 [Debug] > │ Test case 9. I. Time: 1495L                                                  │

02:35:23 #497 [Debug] > │ Test case 10. J. Time: 1245L                                                 │

02:35:23 #498 [Debug] > │ Test case 11. K. Time: 1219L                                                 │

02:35:23 #499 [Debug] > │                                                                              │

02:35:23 #500 [Debug] > │ Solution: accabb                                                             │

02:35:23 #501 [Debug] > │ Test case 1. A. Time: 1648L                                                  │

02:35:23 #502 [Debug] > │ Test case 2. B. Time: 2061L                                                  │

02:35:23 #503 [Debug] > │ Test case 3. C. Time: 2413L                                                  │

02:35:23 #504 [Debug] > │ Test case 4. D. Time: 1561L                                                  │

02:35:23 #505 [Debug] > │ Test case 5. E. Time: 1593L                                                  │

02:35:23 #506 [Debug] > │ Test case 6. F. Time: 1518L                                                  │

02:35:23 #507 [Debug] > │ Test case 7. G. Time: 1415L                                                  │

02:35:23 #508 [Debug] > │ Test case 8. H. Time: 1510L                                                  │

02:35:23 #509 [Debug] > │ Test case 9. I. Time: 1445L                                                  │

02:35:23 #510 [Debug] > │ Test case 10. J. Time: 1636L                                                 │

02:35:23 #511 [Debug] > │ Test case 11. K. Time: 1317L                                                 │

02:35:23 #512 [Debug] > │                                                                              │

02:35:23 #513 [Debug] > │ Solution: pprrqqpp                                                           │

02:35:23 #514 [Debug] > │ Test case 1. A. Time: 2255L                                                  │

02:35:23 #515 [Debug] > │ Test case 2. B. Time: 2408L                                                  │

02:35:23 #516 [Debug] > │ Test case 3. C. Time: 2393L                                                  │

02:35:23 #517 [Debug] > │ Test case 4. D. Time: 1675L                                                  │

02:35:23 #518 [Debug] > │ Test case 5. E. Time: 1911L                                                  │

02:35:23 #519 [Debug] > │ Test case 6. F. Time: 2126L                                                  │

02:35:23 #520 [Debug] > │ Test case 7. G. Time: 1504L                                                  │

02:35:23 #521 [Debug] > │ Test case 8. H. Time: 1715L                                                  │

02:35:23 #522 [Debug] > │ Test case 9. I. Time: 1537L                                                  │

02:35:23 #523 [Debug] > │ Test case 10. J. Time: 1522L                                                 │

02:35:23 #524 [Debug] > │ Test case 11. K. Time: 1322L                                                 │

02:35:23 #525 [Debug] > │                                                                              │

02:35:23 #526 [Debug] > │ Solution:                                                                    │

02:35:23 #527 [Debug] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

02:35:23 #528 [Debug] > │ bbb                                                                          │

02:35:23 #529 [Debug] > │ Test case 1. A. Time: 13073L                                                 │

02:35:23 #530 [Debug] > │ Test case 2. B. Time: 11519L                                                 │

02:35:23 #531 [Debug] > │ Test case 3. C. Time: 8373L                                                  │

02:35:23 #532 [Debug] > │ Test case 4. D. Time: 5860L                                                  │

02:35:23 #533 [Debug] > │ Test case 5. E. Time: 6490L                                                  │

02:35:23 #534 [Debug] > │ Test case 6. F. Time: 6325L                                                  │

02:35:23 #535 [Debug] > │ Test case 7. G. Time: 5799L                                                  │

02:35:23 #536 [Debug] > │ Test case 8. H. Time: 7099L                                                  │

02:35:23 #537 [Debug] > │ Test case 9. I. Time: 6133L                                                  │

02:35:23 #538 [Debug] > │ Test case 10. J. Time: 5993L                                                 │

02:35:23 #539 [Debug] > │ Test case 11. K. Time: 2040L                                                 │

02:35:23 #540 [Debug] > │                                                                              │

02:35:23 #541 [Debug] > │ Input                                                                        │

02:35:23 #542 [Debug] > │ | Expected        | Result  | Best                                           │

02:35:23 #543 [Debug] > │ ---                                                                          │

02:35:23 #544 [Debug] > │                                                                              │

02:35:23 #545 [Debug] > │ | ---             | ---     | ---                                            │

02:35:23 #546 [Debug] > │ abc                                                                          │

02:35:23 #547 [Debug] > │                                                                              │

02:35:23 #548 [Debug] > │ | abc             | abc     | (11, 1219)                                     │

02:35:23 #549 [Debug] > │ accabb                                                                       │

02:35:23 #550 [Debug] > │ | acb             | acb     | (11, 1317)                                     │

02:35:23 #551 [Debug] > │ pprrqqpp                                                                     │

02:35:23 #552 [Debug] > │ | prq             | prq     | (11, 1322)                                     │

02:35:23 #553 [Debug] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

02:35:23 #554 [Debug] > │ bbb | acb             | acb     | (11, 2040)                                 │

02:35:23 #555 [Debug] > │                                                                              │

02:35:23 #556 [Debug] > │ Averages                                                                     │

02:35:23 #557 [Debug] > │ Test case 1. Average Time: 4622L                                             │

02:35:23 #558 [Debug] > │ Test case 2. Average Time: 4483L                                             │

02:35:23 #559 [Debug] > │ Test case 3. Average Time: 3800L                                             │

02:35:23 #560 [Debug] > │ Test case 4. Average Time: 2613L                                             │

02:35:23 #561 [Debug] > │ Test case 5. Average Time: 2828L                                             │

02:35:23 #562 [Debug] > │ Test case 6. Average Time: 2828L                                             │

02:35:23 #563 [Debug] > │ Test case 7. Average Time: 2505L                                             │

02:35:23 #564 [Debug] > │ Test case 8. Average Time: 2926L                                             │

02:35:23 #565 [Debug] > │ Test case 9. Average Time: 2652L                                             │

02:35:23 #566 [Debug] > │ Test case 10. Average Time: 2599L                                            │

02:35:23 #567 [Debug] > │ Test case 11. Average Time: 1474L                                            │

02:35:23 #568 [Debug] > │                                                                              │

02:35:23 #569 [Debug] > │ Ranking                                                                      │

02:35:23 #570 [Debug] > │ Test case 1. Average Time: 4622L                                             │

02:35:23 #571 [Debug] > │ Test case 2. Average Time: 4483L                                             │

02:35:23 #572 [Debug] > │ Test case 3. Average Time: 3800L                                             │

02:35:23 #573 [Debug] > │ Test case 8. Average Time: 2926L                                             │

02:35:23 #574 [Debug] > │ Test case 5. Average Time: 2828L                                             │

02:35:23 #575 [Debug] > │ Test case 6. Average Time: 2828L                                             │

02:35:23 #576 [Debug] > │ Test case 9. Average Time: 2652L                                             │

02:35:23 #577 [Debug] > │ Test case 4. Average Time: 2613L                                             │

02:35:23 #578 [Debug] > │ Test case 10. Average Time: 2599L                                            │

02:35:23 #579 [Debug] > │ Test case 7. Average Time: 2505L                                             │

02:35:23 #580 [Debug] > │ Test case 11. Average Time: 1474L                                            │

02:35:23 #581 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:23 #582 [Debug] >

02:35:23 #583 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:23 #584 [Debug] > //// test

02:35:23 #585 [Debug] >

02:35:23 #586 [Debug] > let solutions = [[

02:35:23 #587 [Debug] >     "A",

02:35:23 #588 [Debug] >     fun input ->

02:35:23 #589 [Debug] >         input

02:35:23 #590 [Debug] >         |> Seq.toList

02:35:23 #591 [Debug] >         |> List.fold (fun acc x -> if List.contains x acc then acc else acc @ [[

02:35:23 #592 [Debug] > x ]]) [[]]

02:35:23 #593 [Debug] >         |> Seq.toArray

02:35:23 #594 [Debug] >         |> String

02:35:23 #595 [Debug] >

02:35:23 #596 [Debug] >     "B",

02:35:23 #597 [Debug] >     fun input ->

02:35:23 #598 [Debug] >         input

02:35:23 #599 [Debug] >         |> Seq.rev

02:35:23 #600 [Debug] >         |> fun list -> Seq.foldBack (fun x acc -> if List.contains x acc then

02:35:23 #601 [Debug] > acc else x :: acc) list [[]]

02:35:23 #602 [Debug] >         |> Seq.rev

02:35:23 #603 [Debug] >         |> Seq.toArray

02:35:23 #604 [Debug] >         |> String

02:35:23 #605 [Debug] >

02:35:23 #606 [Debug] >     "C",

02:35:23 #607 [Debug] >     fun input ->

02:35:23 #608 [Debug] >         input

02:35:23 #609 [Debug] >         |> Seq.rev

02:35:23 #610 [Debug] >         |> fun list -> Seq.foldBack (fun x (set, acc) -> if Set.contains x set

02:35:23 #611 [Debug] > then set, acc else set.Add x, x :: acc) list (Set.empty, [[]])

02:35:23 #612 [Debug] >         |> snd

02:35:23 #613 [Debug] >         |> Seq.rev

02:35:23 #614 [Debug] >         |> Seq.toArray

02:35:23 #615 [Debug] >         |> String

02:35:23 #616 [Debug] >

02:35:23 #617 [Debug] >     "D",

02:35:23 #618 [Debug] >     fun input ->

02:35:23 #619 [Debug] >         input

02:35:23 #620 [Debug] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

02:35:23 #621 [Debug] > else set.Add x, Array.append acc [[| x |]]) (Set.empty, [[||]])

02:35:23 #622 [Debug] >         |> snd

02:35:23 #623 [Debug] >         |> String

02:35:23 #624 [Debug] >

02:35:23 #625 [Debug] >     "E",

02:35:23 #626 [Debug] >     fun input ->

02:35:23 #627 [Debug] >         input

02:35:23 #628 [Debug] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

02:35:23 #629 [Debug] > else set.Add x, x :: acc) (Set.empty, [[]])

02:35:23 #630 [Debug] >         |> snd

02:35:23 #631 [Debug] >         |> List.rev

02:35:23 #632 [Debug] >         |> List.toArray

02:35:23 #633 [Debug] >         |> String

02:35:23 #634 [Debug] >

02:35:23 #635 [Debug] >     "F",

02:35:23 #636 [Debug] >     fun input ->

02:35:23 #637 [Debug] >         input

02:35:23 #638 [Debug] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

02:35:23 #639 [Debug] > else set.Add x, acc @ [[ x ]]) (Set.empty, [[]])

02:35:23 #640 [Debug] >         |> snd

02:35:23 #641 [Debug] >         |> List.toArray

02:35:23 #642 [Debug] >         |> String

02:35:23 #643 [Debug] >

02:35:23 #644 [Debug] >     "G",

02:35:23 #645 [Debug] >     fun input ->

02:35:23 #646 [Debug] >         input

02:35:23 #647 [Debug] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

02:35:23 #648 [Debug] > else set.Add x, x :: acc) (Set.empty, [[]])

02:35:23 #649 [Debug] >         |> snd

02:35:23 #650 [Debug] >         |> List.toArray

02:35:23 #651 [Debug] >         |> Array.rev

02:35:23 #652 [Debug] >         |> String

02:35:23 #653 [Debug] >

02:35:23 #654 [Debug] >     "H",

02:35:23 #655 [Debug] >     fun input ->

02:35:23 #656 [Debug] >         input

02:35:23 #657 [Debug] >         |> Seq.toList

02:35:23 #658 [Debug] >         |> fun list ->

02:35:23 #659 [Debug] >             let rec loop set = function

02:35:23 #660 [Debug] >                 | head :: tail when Set.contains head set -> loop set tail

02:35:23 #661 [Debug] >                 | head :: tail -> (loop (set.Add head) tail) @ [[ head ]]

02:35:23 #662 [Debug] >                 | [[]] -> [[]]

02:35:23 #663 [Debug] >             loop Set.empty list

02:35:23 #664 [Debug] >             |> List.rev

02:35:23 #665 [Debug] >         |> List.toArray

02:35:23 #666 [Debug] >         |> String

02:35:23 #667 [Debug] >

02:35:23 #668 [Debug] >     "I",

02:35:23 #669 [Debug] >     fun input ->

02:35:23 #670 [Debug] >         input

02:35:23 #671 [Debug] >         |> Seq.toList

02:35:23 #672 [Debug] >         |> fun list ->

02:35:23 #673 [Debug] >             let rec loop set = function

02:35:23 #674 [Debug] >                 | head :: tail when Set.contains head set -> loop set tail

02:35:23 #675 [Debug] >                 | head :: tail -> loop (set.Add head) tail |> Array.append [[|

02:35:23 #676 [Debug] > head |]]

02:35:23 #677 [Debug] >                 | [[]] -> [[||]]

02:35:23 #678 [Debug] >             loop Set.empty list

02:35:23 #679 [Debug] >         |> String

02:35:23 #680 [Debug] >

02:35:23 #681 [Debug] >     "J",

02:35:23 #682 [Debug] >     fun input ->

02:35:23 #683 [Debug] >         input

02:35:23 #684 [Debug] >         |> Seq.toList

02:35:23 #685 [Debug] >         |> fun list ->

02:35:23 #686 [Debug] >             let rec loop set = function

02:35:23 #687 [Debug] >                 | head :: tail when Set.contains head set -> loop set tail

02:35:23 #688 [Debug] >                 | head :: tail -> head :: loop (set.Add head) tail

02:35:23 #689 [Debug] >                 | [[]] -> [[]]

02:35:23 #690 [Debug] >             loop Set.empty list

02:35:23 #691 [Debug] >         |> List.toArray

02:35:23 #692 [Debug] >         |> String

02:35:23 #693 [Debug] >

02:35:23 #694 [Debug] >     "K",

02:35:23 #695 [Debug] >     fun input ->

02:35:23 #696 [Debug] >         input

02:35:23 #697 [Debug] >         |> Seq.distinct

02:35:23 #698 [Debug] >         |> Seq.toArray

02:35:23 #699 [Debug] >         |> String

02:35:23 #700 [Debug] > ]]

02:35:23 #701 [Debug] > let testCases = seq {

02:35:23 #702 [Debug] >     "abc", "abc"

02:35:23 #703 [Debug] >     "accabb", "acb"

02:35:23 #704 [Debug] >     "pprrqqpp", "prq"

02:35:23 #705 [Debug] >

02:35:23 #706 [Debug] > "aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbbbbb

02:35:23 #707 [Debug] > ", "acb"

02:35:23 #708 [Debug] > }

02:35:23 #709 [Debug] > let rec uniqueLettersTests = runAll (nameof uniqueLettersTests) _count solutions

02:35:23 #710 [Debug] > testCases

02:35:23 #711 [Debug] > uniqueLettersTests

02:35:23 #712 [Debug] > |> sortResultList

02:35:30 #713 [Debug] >

02:35:30 #714 [Debug] > ╭─[ 6.69s - stdout ]───────────────────────────────────────────────────────────╮

02:35:30 #715 [Debug] > │                                                                              │

02:35:30 #716 [Debug] > │                                                                              │

02:35:30 #717 [Debug] > │ Test: uniqueLettersTests                                                     │

02:35:30 #718 [Debug] > │                                                                              │

02:35:30 #719 [Debug] > │ Solution: abc                                                                │

02:35:30 #720 [Debug] > │ Test case 1. A. Time: 5L                                                     │

02:35:30 #721 [Debug] > │ Test case 2. B. Time: 5L                                                     │

02:35:30 #722 [Debug] > │ Test case 3. C. Time: 11L                                                    │

02:35:30 #723 [Debug] > │ Test case 4. D. Time: 2L                                                     │

02:35:30 #724 [Debug] > │ Test case 5. E. Time: 4L                                                     │

02:35:30 #725 [Debug] > │ Test case 6. F. Time: 3L                                                     │

02:35:30 #726 [Debug] > │ Test case 7. G. Time: 3L                                                     │

02:35:30 #727 [Debug] > │ Test case 8. H. Time: 2L                                                     │

02:35:30 #728 [Debug] > │ Test case 9. I. Time: 2L                                                     │

02:35:30 #729 [Debug] > │ Test case 10. J. Time: 1L                                                    │

02:35:30 #730 [Debug] > │ Test case 11. K. Time: 3L                                                    │

02:35:30 #731 [Debug] > │                                                                              │

02:35:30 #732 [Debug] > │ Solution: accabb                                                             │

02:35:30 #733 [Debug] > │ Test case 1. A. Time: 1L                                                     │

02:35:30 #734 [Debug] > │ Test case 2. B. Time: 1L                                                     │

02:35:30 #735 [Debug] > │ Test case 3. C. Time: 2L                                                     │

02:35:30 #736 [Debug] > │ Test case 4. D. Time: 1L                                                     │

02:35:30 #737 [Debug] > │ Test case 5. E. Time: 1L                                                     │

02:35:30 #738 [Debug] > │ Test case 6. F. Time: 1L                                                     │

02:35:30 #739 [Debug] > │ Test case 7. G. Time: 1L                                                     │

02:35:30 #740 [Debug] > │ Test case 8. H. Time: 0L                                                     │

02:35:30 #741 [Debug] > │ Test case 9. I. Time: 0L                                                     │

02:35:30 #742 [Debug] > │ Test case 10. J. Time: 1L                                                    │

02:35:30 #743 [Debug] > │ Test case 11. K. Time: 1L                                                    │

02:35:30 #744 [Debug] > │                                                                              │

02:35:30 #745 [Debug] > │ Solution: pprrqqpp                                                           │

02:35:30 #746 [Debug] > │ Test case 1. A. Time: 1L                                                     │

02:35:30 #747 [Debug] > │ Test case 2. B. Time: 1L                                                     │

02:35:30 #748 [Debug] > │ Test case 3. C. Time: 2L                                                     │

02:35:30 #749 [Debug] > │ Test case 4. D. Time: 1L                                                     │

02:35:30 #750 [Debug] > │ Test case 5. E. Time: 2L                                                     │

02:35:30 #751 [Debug] > │ Test case 6. F. Time: 1L                                                     │

02:35:30 #752 [Debug] > │ Test case 7. G. Time: 1L                                                     │

02:35:30 #753 [Debug] > │ Test case 8. H. Time: 1L                                                     │

02:35:30 #754 [Debug] > │ Test case 9. I. Time: 1L                                                     │

02:35:30 #755 [Debug] > │ Test case 10. J. Time: 1L                                                    │

02:35:30 #756 [Debug] > │ Test case 11. K. Time: 0L                                                    │

02:35:30 #757 [Debug] > │                                                                              │

02:35:30 #758 [Debug] > │ Solution:                                                                    │

02:35:30 #759 [Debug] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

02:35:30 #760 [Debug] > │ bbb                                                                          │

02:35:30 #761 [Debug] > │ Test case 1. A. Time: 13L                                                    │

02:35:30 #762 [Debug] > │ Test case 2. B. Time: 11L                                                    │

02:35:30 #763 [Debug] > │ Test case 3. C. Time: 14L                                                    │

02:35:30 #764 [Debug] > │ Test case 4. D. Time: 9L                                                     │

02:35:30 #765 [Debug] > │ Test case 5. E. Time: 10L                                                    │

02:35:30 #766 [Debug] > │ Test case 6. F. Time: 9L                                                     │

02:35:30 #767 [Debug] > │ Test case 7. G. Time: 8L                                                     │

02:35:30 #768 [Debug] > │ Test case 8. H. Time: 8L                                                     │

02:35:30 #769 [Debug] > │ Test case 9. I. Time: 7L                                                     │

02:35:30 #770 [Debug] > │ Test case 10. J. Time: 10L                                                   │

02:35:30 #771 [Debug] > │ Test case 11. K. Time: 6L                                                    │

02:35:30 #772 [Debug] > │                                                                              │

02:35:30 #773 [Debug] > │ Input                                                                        │

02:35:30 #774 [Debug] > │ | Expected	| Result	| Best                                                       │

02:35:30 #775 [Debug] > │ ---                                                                          │

02:35:30 #776 [Debug] > │ | ---     	| ---   	| ---                                                        │

02:35:30 #777 [Debug] > │ abc                                                                          │

02:35:30 #778 [Debug] > │ | abc     	| abc   	| (10, 1)                                                    │

02:35:30 #779 [Debug] > │ accabb                                                                       │

02:35:30 #780 [Debug] > │ | acb     	| acb   	| (8, 0)                                                     │

02:35:30 #781 [Debug] > │ pprrqqpp                                                                     │

02:35:30 #782 [Debug] > │ | prq     	| prq   	| (11, 0)                                                    │

02:35:30 #783 [Debug] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

02:35:30 #784 [Debug] > │ bbb	| acb     	| acb   	| (11, 6)                                                  │

02:35:30 #785 [Debug] > │                                                                              │

02:35:30 #786 [Debug] > │ Average Ranking                                                              │

02:35:30 #787 [Debug] > │ Test case 8. Average Time: 2L                                                │

02:35:30 #788 [Debug] > │ Test case 9. Average Time: 2L                                                │

02:35:30 #789 [Debug] > │ Test case 11. Average Time: 2L                                               │

02:35:30 #790 [Debug] > │ Test case 4. Average Time: 3L                                                │

02:35:30 #791 [Debug] > │ Test case 6. Average Time: 3L                                                │

02:35:30 #792 [Debug] > │ Test case 7. Average Time: 3L                                                │

02:35:30 #793 [Debug] > │ Test case 10. Average Time: 3L                                               │

02:35:30 #794 [Debug] > │ Test case 2. Average Time: 4L                                                │

02:35:30 #795 [Debug] > │ Test case 5. Average Time: 4L                                                │

02:35:30 #796 [Debug] > │ Test case 1. Average Time: 5L                                                │

02:35:30 #797 [Debug] > │ Test case 3. Average Time: 7L                                                │

02:35:30 #798 [Debug] > │                                                                              │

02:35:30 #799 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:30 #800 [Debug] >

02:35:30 #801 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:30 #802 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:30 #803 [Debug] > │ ## rotateStringsTests                                                        │

02:35:30 #804 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:30 #805 [Debug] >

02:35:30 #806 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:30 #807 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:30 #808 [Debug] > │ https://www.hackerrank.com/challenges/rotate-string/forum                    │

02:35:30 #809 [Debug] > │                                                                              │

02:35:30 #810 [Debug] > │ Test: RotateStrings                                                          │

02:35:30 #811 [Debug] > │                                                                              │

02:35:30 #812 [Debug] > │ Solution: abc                                                                │

02:35:30 #813 [Debug] > │ Test case 1. A. Time: 1842L                                                  │

02:35:30 #814 [Debug] > │ Test case 2. B. Time: 1846L                                                  │

02:35:30 #815 [Debug] > │ Test case 3. C. Time: 1936L                                                  │

02:35:30 #816 [Debug] > │ Test case 4. CA. Time: 2224L                                                 │

02:35:30 #817 [Debug] > │ Test case 5. CB. Time: 2329L                                                 │

02:35:30 #818 [Debug] > │ Test case 6. D. Time: 2474L                                                  │

02:35:30 #819 [Debug] > │ Test case 7. E. Time: 1664L                                                  │

02:35:30 #820 [Debug] > │ Test case 8. F. Time: 1517L                                                  │

02:35:30 #821 [Debug] > │ Test case 9. FA. Time: 1651L                                                 │

02:35:30 #822 [Debug] > │ Test case 10. FB. Time: 3764L                                                │

02:35:30 #823 [Debug] > │ Test case 11. FC. Time: 5415L                                                │

02:35:30 #824 [Debug] > │                                                                              │

02:35:30 #825 [Debug] > │ Solution: abcde                                                              │

02:35:30 #826 [Debug] > │ Test case 1. A. Time: 3356L                                                  │

02:35:30 #827 [Debug] > │ Test case 2. B. Time: 2592L                                                  │

02:35:30 #828 [Debug] > │ Test case 3. C. Time: 2346L                                                  │

02:35:30 #829 [Debug] > │ Test case 4. CA. Time: 2997L                                                 │

02:35:30 #830 [Debug] > │ Test case 5. CB. Time: 3061L                                                 │

02:35:30 #831 [Debug] > │ Test case 6. D. Time: 4051L                                                  │

02:35:30 #832 [Debug] > │ Test case 7. E. Time: 1905L                                                  │

02:35:30 #833 [Debug] > │ Test case 8. F. Time: 1771L                                                  │

02:35:30 #834 [Debug] > │ Test case 9. FA. Time: 2175L                                                 │

02:35:30 #835 [Debug] > │ Test case 10. FB. Time: 3275L                                                │

02:35:30 #836 [Debug] > │ Test case 11. FC. Time: 5266L                                                │

02:35:30 #837 [Debug] > │                                                                              │

02:35:30 #838 [Debug] > │ Solution: abcdefghi                                                          │

02:35:30 #839 [Debug] > │ Test case 1. A. Time: 4492L                                                  │

02:35:30 #840 [Debug] > │ Test case 2. B. Time: 3526L                                                  │

02:35:30 #841 [Debug] > │ Test case 3. C. Time: 3583L                                                  │

02:35:30 #842 [Debug] > │ Test case 4. CA. Time: 3711L                                                 │

02:35:30 #843 [Debug] > │ Test case 5. CB. Time: 4783L                                                 │

02:35:30 #844 [Debug] > │ Test case 6. D. Time: 7557L                                                  │

02:35:30 #845 [Debug] > │ Test case 7. E. Time: 3452L                                                  │

02:35:30 #846 [Debug] > │ Test case 8. F. Time: 3050L                                                  │

02:35:30 #847 [Debug] > │ Test case 9. FA. Time: 3275L                                                 │

02:35:30 #848 [Debug] > │ Test case 10. FB. Time: 4635L                                                │

02:35:30 #849 [Debug] > │ Test case 11. FC. Time: 5616L                                                │

02:35:30 #850 [Debug] > │                                                                              │

02:35:30 #851 [Debug] > │ Solution: abab                                                               │

02:35:30 #852 [Debug] > │ Test case 1. A. Time: 2093L                                                  │

02:35:30 #853 [Debug] > │ Test case 2. B. Time: 1843L                                                  │

02:35:30 #854 [Debug] > │ Test case 3. C. Time: 1746L                                                  │

02:35:30 #855 [Debug] > │ Test case 4. CA. Time: 2085L                                                 │

02:35:30 #856 [Debug] > │ Test case 5. CB. Time: 2139L                                                 │

02:35:30 #857 [Debug] > │ Test case 6. D. Time: 2095L                                                  │

02:35:30 #858 [Debug] > │ Test case 7. E. Time: 1723L                                                  │

02:35:30 #859 [Debug] > │ Test case 8. F. Time: 1558L                                                  │

02:35:30 #860 [Debug] > │ Test case 9. FA. Time: 1620L                                                 │

02:35:30 #861 [Debug] > │ Test case 10. FB. Time: 2319L                                                │

02:35:30 #862 [Debug] > │ Test case 11. FC. Time: 3918L                                                │

02:35:30 #863 [Debug] > │                                                                              │

02:35:30 #864 [Debug] > │ Solution: aa                                                                 │

02:35:30 #865 [Debug] > │ Test case 1. A. Time: 1107L                                                  │

02:35:30 #866 [Debug] > │ Test case 2. B. Time: 1241L                                                  │

02:35:30 #867 [Debug] > │ Test case 3. C. Time: 1183L                                                  │

02:35:30 #868 [Debug] > │ Test case 4. CA. Time: 1563L                                                 │

02:35:30 #869 [Debug] > │ Test case 5. CB. Time: 1525L                                                 │

02:35:30 #870 [Debug] > │ Test case 6. D. Time: 1591L                                                  │

02:35:30 #871 [Debug] > │ Test case 7. E. Time: 1327L                                                  │

02:35:30 #872 [Debug] > │ Test case 8. F. Time: 1151L                                                  │

02:35:30 #873 [Debug] > │ Test case 9. FA. Time: 1180L                                                 │

02:35:30 #874 [Debug] > │ Test case 10. FB. Time: 1733L                                                │

02:35:30 #875 [Debug] > │ Test case 11. FC. Time: 2817L                                                │

02:35:30 #876 [Debug] > │                                                                              │

02:35:30 #877 [Debug] > │ Solution: z                                                                  │

02:35:30 #878 [Debug] > │ Test case 1. A. Time: 816L                                                   │

02:35:30 #879 [Debug] > │ Test case 2. B. Time: 745L                                                   │

02:35:30 #880 [Debug] > │ Test case 3. C. Time: 928L                                                   │

02:35:30 #881 [Debug] > │ Test case 4. CA. Time: 1375L                                                 │

02:35:30 #882 [Debug] > │ Test case 5. CB. Time: 1029L                                                 │

02:35:30 #883 [Debug] > │ Test case 6. D. Time: 852L                                                   │

02:35:30 #884 [Debug] > │ Test case 7. E. Time: 712L                                                   │

02:35:30 #885 [Debug] > │ Test case 8. F. Time: 263L                                                   │

02:35:30 #886 [Debug] > │ Test case 9. FA. Time: 232L                                                  │

02:35:30 #887 [Debug] > │ Test case 10. FB. Time: 773L                                                 │

02:35:30 #888 [Debug] > │ Test case 11. FC. Time: 1789L                                                │

02:35:30 #889 [Debug] > │                                                                              │

02:35:30 #890 [Debug] > │ Input           | Expected                                                   │

02:35:30 #891 [Debug] > │                                                                              │

02:35:30 #892 [Debug] > │ | Result                                                                     │

02:35:30 #893 [Debug] > │                                                                              │

02:35:30 #894 [Debug] > │ | Best                                                                       │

02:35:30 #895 [Debug] > │ ---             | ---                                                        │

02:35:30 #896 [Debug] > │                                                                              │

02:35:30 #897 [Debug] > │ | ---                                                                        │

02:35:30 #898 [Debug] > │                                                                              │

02:35:30 #899 [Debug] > │ | ---                                                                        │

02:35:30 #900 [Debug] > │ abc             | bca cab abc                                                │

02:35:30 #901 [Debug] > │                                                                              │

02:35:30 #902 [Debug] > │ | bca cab abc                                                                │

02:35:30 #903 [Debug] > │                                                                              │

02:35:30 #904 [Debug] > │ | (8, 1517)                                                                  │

02:35:30 #905 [Debug] > │ abcde           | bcdea cdeab deabc eabcd abcde                              │

02:35:30 #906 [Debug] > │ | bcdea cdeab deabc eabcd abcde                                              │

02:35:30 #907 [Debug] > │ | (8, 1771)                                                                  │

02:35:30 #908 [Debug] > │ abcdefghi       | bcdefghia cdefghiab defghiabc efghiabcd fghiabcde          │

02:35:30 #909 [Debug] > │ ghiabcdef hiabcdefg iabcdefgh abcdefghi       | bcdefghia cdefghiab          │

02:35:30 #910 [Debug] > │ defghiabc efghiabcd fghiabcde ghiabcdef hiabcdefg iabcdefgh abcdefghi        │

02:35:30 #911 [Debug] > │ | (8, 3050)                                                                  │

02:35:30 #912 [Debug] > │ abab            | baba abab baba abab                                        │

02:35:30 #913 [Debug] > │                                                                              │

02:35:30 #914 [Debug] > │ | baba abab baba abab                                                        │

02:35:30 #915 [Debug] > │                                                                              │

02:35:30 #916 [Debug] > │ | (8, 1558)                                                                  │

02:35:30 #917 [Debug] > │ aa              | aa aa                                                      │

02:35:30 #918 [Debug] > │                                                                              │

02:35:30 #919 [Debug] > │ | aa aa                                                                      │

02:35:30 #920 [Debug] > │                                                                              │

02:35:30 #921 [Debug] > │ | (1, 1107)                                                                  │

02:35:30 #922 [Debug] > │ z               | z                                                          │

02:35:30 #923 [Debug] > │                                                                              │

02:35:30 #924 [Debug] > │ | z                                                                          │

02:35:30 #925 [Debug] > │                                                                              │

02:35:30 #926 [Debug] > │ | (9, 232)                                                                   │

02:35:30 #927 [Debug] > │                                                                              │

02:35:30 #928 [Debug] > │ Averages                                                                     │

02:35:30 #929 [Debug] > │ Test case 1. Average Time: 2284L                                             │

02:35:30 #930 [Debug] > │ Test case 2. Average Time: 1965L                                             │

02:35:30 #931 [Debug] > │ Test case 3. Average Time: 1953L                                             │

02:35:30 #932 [Debug] > │ Test case 4. Average Time: 2325L                                             │

02:35:30 #933 [Debug] > │ Test case 5. Average Time: 2477L                                             │

02:35:30 #934 [Debug] > │ Test case 6. Average Time: 3103L                                             │

02:35:30 #935 [Debug] > │ Test case 7. Average Time: 1797L                                             │

02:35:30 #936 [Debug] > │ Test case 8. Average Time: 1551L                                             │

02:35:30 #937 [Debug] > │ Test case 9. Average Time: 1688L                                             │

02:35:30 #938 [Debug] > │ Test case 10. Average Time: 2749L                                            │

02:35:30 #939 [Debug] > │ Test case 11. Average Time: 4136L                                            │

02:35:30 #940 [Debug] > │                                                                              │

02:35:30 #941 [Debug] > │ Ranking                                                                      │

02:35:30 #942 [Debug] > │ Test case 11. Average Time: 4136L                                            │

02:35:30 #943 [Debug] > │ Test case 6. Average Time: 3103L                                             │

02:35:30 #944 [Debug] > │ Test case 10. Average Time: 2749L                                            │

02:35:30 #945 [Debug] > │ Test case 5. Average Time: 2477L                                             │

02:35:30 #946 [Debug] > │ Test case 4. Average Time: 2325L                                             │

02:35:30 #947 [Debug] > │ Test case 1. Average Time: 2284L                                             │

02:35:30 #948 [Debug] > │ Test case 2. Average Time: 1965L                                             │

02:35:30 #949 [Debug] > │ Test case 3. Average Time: 1953L                                             │

02:35:30 #950 [Debug] > │ Test case 7. Average Time: 1797L                                             │

02:35:30 #951 [Debug] > │ Test case 9. Average Time: 1688L                                             │

02:35:30 #952 [Debug] > │ Test case 8. Average Time: 1551L                                             │

02:35:30 #953 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:30 #954 [Debug] >

02:35:30 #955 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:30 #956 [Debug] > //// test

02:35:30 #957 [Debug] >

02:35:30 #958 [Debug] > let solutions = [[

02:35:30 #959 [Debug] >     "A",

02:35:30 #960 [Debug] >     fun (input: string) ->

02:35:30 #961 [Debug] >         let resultList =

02:35:30 #962 [Debug] >             List.fold (fun acc x ->

02:35:30 #963 [Debug] >                 let rotate (text: string) (letter: string) = text.Substring (1,

02:35:30 #964 [Debug] > input.Length - 1) + letter

02:35:30 #965 [Debug] >                 [[ rotate (if acc.IsEmpty then input else acc.Head) (string x)

02:35:30 #966 [Debug] > ]] @ acc

02:35:30 #967 [Debug] >             ) [[]] (Seq.toList input)

02:35:30 #968 [Debug] >

02:35:30 #969 [Debug] >         List.foldBack (fun acc x -> x + acc + " ") resultList ""

02:35:30 #970 [Debug] >         |> fun x -> x.TrimEnd ()

02:35:30 #971 [Debug] >

02:35:30 #972 [Debug] >     "B",

02:35:30 #973 [Debug] >     fun input ->

02:35:30 #974 [Debug] >         input

02:35:30 #975 [Debug] >         |> Seq.toList

02:35:30 #976 [Debug] >         |> List.fold (fun (acc: string list) letter ->

02:35:30 #977 [Debug] >             let last =

02:35:30 #978 [Debug] >                 if acc.IsEmpty

02:35:30 #979 [Debug] >                 then input

02:35:30 #980 [Debug] >                 else acc.Head

02:35:30 #981 [Debug] >

02:35:30 #982 [Debug] >             let item = last.[[1 .. input.Length - 1]] + string letter

02:35:30 #983 [Debug] >

02:35:30 #984 [Debug] >             item :: acc

02:35:30 #985 [Debug] >         ) [[]]

02:35:30 #986 [Debug] >         |> List.rev

02:35:30 #987 [Debug] >         |> String.concat " "

02:35:30 #988 [Debug] >

02:35:30 #989 [Debug] >     "C",

02:35:30 #990 [Debug] >     fun input ->

02:35:30 #991 [Debug] >         input

02:35:30 #992 [Debug] >         |> Seq.toList

02:35:30 #993 [Debug] >         |> List.fold (fun (acc: string list) letter -> acc.Head.[[ 1 ..

02:35:30 #994 [Debug] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

02:35:30 #995 [Debug] >         |> List.rev

02:35:30 #996 [Debug] >         |> List.skip 1

02:35:30 #997 [Debug] >         |> String.concat " "

02:35:30 #998 [Debug] >

02:35:30 #999 [Debug] >     "CA",

02:35:30 #1000 [Debug] >     fun input ->

02:35:30 #1001 [Debug] >         input

02:35:30 #1002 [Debug] >         |> Seq.fold (fun (acc: string list) letter -> acc.Head.[[ 1 ..

02:35:30 #1003 [Debug] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

02:35:30 #1004 [Debug] >         |> Seq.rev

02:35:30 #1005 [Debug] >         |> Seq.skip 1

02:35:30 #1006 [Debug] >         |> String.concat " "

02:35:30 #1007 [Debug] >

02:35:30 #1008 [Debug] >     "CB",

02:35:30 #1009 [Debug] >     fun input ->

02:35:30 #1010 [Debug] >         input

02:35:30 #1011 [Debug] >         |> Seq.toArray

02:35:30 #1012 [Debug] >         |> Array.fold (fun (acc: string[[]]) letter -> acc |> Array.append [[|

02:35:30 #1013 [Debug] > acc.[[0]].[[ 1 .. input.Length - 1 ]] + string letter |]]) [[| input |]]

02:35:30 #1014 [Debug] >         |> Array.rev

02:35:30 #1015 [Debug] >         |> Array.skip 1

02:35:30 #1016 [Debug] >         |> String.concat " "

02:35:30 #1017 [Debug] >

02:35:30 #1018 [Debug] >     "D",

02:35:30 #1019 [Debug] >     fun input ->

02:35:30 #1020 [Debug] >         input

02:35:30 #1021 [Debug] >         |> Seq.toList

02:35:30 #1022 [Debug] >         |> fun list ->

02:35:30 #1023 [Debug] >             let rec loop (acc: char list list) = function

02:35:30 #1024 [Debug] >                 | _ when acc.Length = list.Length -> acc

02:35:30 #1025 [Debug] >                 | head :: tail ->

02:35:30 #1026 [Debug] >                     let item = tail @ [[ head ]]

02:35:30 #1027 [Debug] >                     loop (item :: acc) item

02:35:30 #1028 [Debug] >                 | [[]] -> [[]]

02:35:30 #1029 [Debug] >             loop [[]] list

02:35:30 #1030 [Debug] >         |> List.rev

02:35:30 #1031 [Debug] >         |> List.map (List.toArray >> String)

02:35:30 #1032 [Debug] >         |> String.concat " "

02:35:30 #1033 [Debug] >

02:35:30 #1034 [Debug] >     "E",

02:35:30 #1035 [Debug] >     fun input ->

02:35:30 #1036 [Debug] >         input

02:35:30 #1037 [Debug] >         |> Seq.toList

02:35:30 #1038 [Debug] >         |> fun list ->

02:35:30 #1039 [Debug] >             let rec loop (last: string) = function

02:35:30 #1040 [Debug] >                 | head :: tail ->

02:35:30 #1041 [Debug] >                     let item = last.[[1 .. input.Length - 1]] + string head

02:35:30 #1042 [Debug] >                     item :: loop item tail

02:35:30 #1043 [Debug] >                 | [[]] -> [[]]

02:35:30 #1044 [Debug] >             loop input list

02:35:30 #1045 [Debug] >         |> String.concat " "

02:35:30 #1046 [Debug] >

02:35:30 #1047 [Debug] >     "F",

02:35:30 #1048 [Debug] >     fun input ->

02:35:30 #1049 [Debug] >         Array.singleton 0

02:35:30 #1050 [Debug] >         |> Array.append [[| 1 .. input.Length - 1 |]]

02:35:30 #1051 [Debug] >         |> Array.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:30 #1052 [Debug] >         |> String.concat " "

02:35:30 #1053 [Debug] >

02:35:30 #1054 [Debug] >     "FA",

02:35:30 #1055 [Debug] >     fun input ->

02:35:30 #1056 [Debug] >         List.singleton 0

02:35:30 #1057 [Debug] >         |> List.append [[ 1 .. input.Length - 1 ]]

02:35:30 #1058 [Debug] >         |> List.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:30 #1059 [Debug] >         |> String.concat " "

02:35:30 #1060 [Debug] >

02:35:30 #1061 [Debug] >     "FB",

02:35:30 #1062 [Debug] >     fun input ->

02:35:30 #1063 [Debug] >         Seq.singleton 0

02:35:30 #1064 [Debug] >         |> Seq.append (seq { 1 .. input.Length - 1 })

02:35:30 #1065 [Debug] >         |> Seq.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:30 #1066 [Debug] >         |> String.concat " "

02:35:30 #1067 [Debug] >

02:35:30 #1068 [Debug] >     "FC",

02:35:30 #1069 [Debug] >     fun input ->

02:35:30 #1070 [Debug] >         Array.singleton 0

02:35:30 #1071 [Debug] >         |> Array.append [[| 1 .. input.Length - 1 |]]

02:35:30 #1072 [Debug] >         |> Array.Parallel.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:30 #1073 [Debug] >         |> String.concat " "

02:35:30 #1074 [Debug] > ]]

02:35:30 #1075 [Debug] > let testCases = seq {

02:35:30 #1076 [Debug] >     "abc", "bca cab abc"

02:35:30 #1077 [Debug] >     "abcde", "bcdea cdeab deabc eabcd abcde"

02:35:30 #1078 [Debug] >     "abcdefghi", "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde ghiabcdef

02:35:30 #1079 [Debug] > hiabcdefg iabcdefgh abcdefghi"

02:35:30 #1080 [Debug] >     "abab", "baba abab baba abab"

02:35:30 #1081 [Debug] >     "aa", "aa aa"

02:35:30 #1082 [Debug] >     "z", "z"

02:35:30 #1083 [Debug] > }

02:35:30 #1084 [Debug] > let rec rotateStringsTests = runAll (nameof rotateStringsTests) _count solutions

02:35:30 #1085 [Debug] > testCases

02:35:30 #1086 [Debug] > rotateStringsTests

02:35:30 #1087 [Debug] > |> sortResultList

02:35:39 #1088 [Debug] >

02:35:39 #1089 [Debug] > ╭─[ 9.20s - stdout ]───────────────────────────────────────────────────────────╮

02:35:39 #1090 [Debug] > │                                                                              │

02:35:39 #1091 [Debug] > │                                                                              │

02:35:39 #1092 [Debug] > │ Test: rotateStringsTests                                                     │

02:35:39 #1093 [Debug] > │                                                                              │

02:35:39 #1094 [Debug] > │ Solution: abc                                                                │

02:35:39 #1095 [Debug] > │ Test case 1. A. Time: 2L                                                     │

02:35:39 #1096 [Debug] > │ Test case 2. B. Time: 1L                                                     │

02:35:39 #1097 [Debug] > │ Test case 3. C. Time: 1L                                                     │

02:35:39 #1098 [Debug] > │ Test case 4. CA. Time: 4L                                                    │

02:35:39 #1099 [Debug] > │ Test case 5. CB. Time: 3L                                                    │

02:35:39 #1100 [Debug] > │ Test case 6. D. Time: 3L                                                     │

02:35:39 #1101 [Debug] > │ Test case 7. E. Time: 1L                                                     │

02:35:39 #1102 [Debug] > │ Test case 8. F. Time: 1L                                                     │

02:35:39 #1103 [Debug] > │ Test case 9. FA. Time: 2L                                                    │

02:35:39 #1104 [Debug] > │ Test case 10. FB. Time: 10L                                                  │

02:35:39 #1105 [Debug] > │ Test case 11. FC. Time: 11L                                                  │

02:35:39 #1106 [Debug] > │                                                                              │

02:35:39 #1107 [Debug] > │ Solution: abcde                                                              │

02:35:39 #1108 [Debug] > │ Test case 1. A. Time: 1L                                                     │

02:35:39 #1109 [Debug] > │ Test case 2. B. Time: 0L                                                     │

02:35:39 #1110 [Debug] > │ Test case 3. C. Time: 1L                                                     │

02:35:39 #1111 [Debug] > │ Test case 4. CA. Time: 1L                                                    │

02:35:39 #1112 [Debug] > │ Test case 5. CB. Time: 1L                                                    │

02:35:39 #1113 [Debug] > │ Test case 6. D. Time: 4L                                                     │

02:35:39 #1114 [Debug] > │ Test case 7. E. Time: 1L                                                     │

02:35:39 #1115 [Debug] > │ Test case 8. F. Time: 1L                                                     │

02:35:39 #1116 [Debug] > │ Test case 9. FA. Time: 1L                                                    │

02:35:39 #1117 [Debug] > │ Test case 10. FB. Time: 7L                                                   │

02:35:39 #1118 [Debug] > │ Test case 11. FC. Time: 4L                                                   │

02:35:39 #1119 [Debug] > │                                                                              │

02:35:39 #1120 [Debug] > │ Solution: abcdefghi                                                          │

02:35:39 #1121 [Debug] > │ Test case 1. A. Time: 3L                                                     │

02:35:39 #1122 [Debug] > │ Test case 2. B. Time: 4L                                                     │

02:35:39 #1123 [Debug] > │ Test case 3. C. Time: 1L                                                     │

02:35:39 #1124 [Debug] > │ Test case 4. CA. Time: 3L                                                    │

02:35:39 #1125 [Debug] > │ Test case 5. CB. Time: 2L                                                    │

02:35:39 #1126 [Debug] > │ Test case 6. D. Time: 6L                                                     │

02:35:39 #1127 [Debug] > │ Test case 7. E. Time: 1L                                                     │

02:35:39 #1128 [Debug] > │ Test case 8. F. Time: 2L                                                     │

02:35:39 #1129 [Debug] > │ Test case 9. FA. Time: 4L                                                    │

02:35:39 #1130 [Debug] > │ Test case 10. FB. Time: 4L                                                   │

02:35:39 #1131 [Debug] > │ Test case 11. FC. Time: 7L                                                   │

02:35:39 #1132 [Debug] > │                                                                              │

02:35:39 #1133 [Debug] > │ Solution: abab                                                               │

02:35:39 #1134 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:39 #1135 [Debug] > │ Test case 2. B. Time: 0L                                                     │

02:35:39 #1136 [Debug] > │ Test case 3. C. Time: 0L                                                     │

02:35:39 #1137 [Debug] > │ Test case 4. CA. Time: 1L                                                    │

02:35:39 #1138 [Debug] > │ Test case 5. CB. Time: 1L                                                    │

02:35:39 #1139 [Debug] > │ Test case 6. D. Time: 1L                                                     │

02:35:39 #1140 [Debug] > │ Test case 7. E. Time: 0L                                                     │

02:35:39 #1141 [Debug] > │ Test case 8. F. Time: 0L                                                     │

02:35:39 #1142 [Debug] > │ Test case 9. FA. Time: 0L                                                    │

02:35:39 #1143 [Debug] > │ Test case 10. FB. Time: 1L                                                   │

02:35:39 #1144 [Debug] > │ Test case 11. FC. Time: 5L                                                   │

02:35:39 #1145 [Debug] > │                                                                              │

02:35:39 #1146 [Debug] > │ Solution: aa                                                                 │

02:35:39 #1147 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:39 #1148 [Debug] > │ Test case 2. B. Time: 0L                                                     │

02:35:39 #1149 [Debug] > │ Test case 3. C. Time: 0L                                                     │

02:35:39 #1150 [Debug] > │ Test case 4. CA. Time: 1L                                                    │

02:35:39 #1151 [Debug] > │ Test case 5. CB. Time: 0L                                                    │

02:35:39 #1152 [Debug] > │ Test case 6. D. Time: 0L                                                     │

02:35:39 #1153 [Debug] > │ Test case 7. E. Time: 0L                                                     │

02:35:39 #1154 [Debug] > │ Test case 8. F. Time: 0L                                                     │

02:35:39 #1155 [Debug] > │ Test case 9. FA. Time: 0L                                                    │

02:35:39 #1156 [Debug] > │ Test case 10. FB. Time: 1L                                                   │

02:35:39 #1157 [Debug] > │ Test case 11. FC. Time: 5L                                                   │

02:35:39 #1158 [Debug] > │                                                                              │

02:35:39 #1159 [Debug] > │ Solution: z                                                                  │

02:35:39 #1160 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:39 #1161 [Debug] > │ Test case 2. B. Time: 0L                                                     │

02:35:39 #1162 [Debug] > │ Test case 3. C. Time: 0L                                                     │

02:35:39 #1163 [Debug] > │ Test case 4. CA. Time: 0L                                                    │

02:35:39 #1164 [Debug] > │ Test case 5. CB. Time: 0L                                                    │

02:35:39 #1165 [Debug] > │ Test case 6. D. Time: 0L                                                     │

02:35:39 #1166 [Debug] > │ Test case 7. E. Time: 0L                                                     │

02:35:39 #1167 [Debug] > │ Test case 8. F. Time: 0L                                                     │

02:35:39 #1168 [Debug] > │ Test case 9. FA. Time: 0L                                                    │

02:35:39 #1169 [Debug] > │ Test case 10. FB. Time: 0L                                                   │

02:35:39 #1170 [Debug] > │ Test case 11. FC. Time: 4L                                                   │

02:35:39 #1171 [Debug] > │                                                                              │

02:35:39 #1172 [Debug] > │ Input    	| Expected                                                           │

02:35:39 #1173 [Debug] > │                                                                              │

02:35:39 #1174 [Debug] > │ | Result                                                                     │

02:35:39 #1175 [Debug] > │                                                                              │

02:35:39 #1176 [Debug] > │ | Best                                                                       │

02:35:39 #1177 [Debug] > │ ---      	| ---                                                                │

02:35:39 #1178 [Debug] > │                                                                              │

02:35:39 #1179 [Debug] > │ | ---                                                                        │

02:35:39 #1180 [Debug] > │                                                                              │

02:35:39 #1181 [Debug] > │ | ---                                                                        │

02:35:39 #1182 [Debug] > │ abc      	| bca cab abc                                                        │

02:35:39 #1183 [Debug] > │                                                                              │

02:35:39 #1184 [Debug] > │ | bca cab abc                                                                │

02:35:39 #1185 [Debug] > │                                                                              │

02:35:39 #1186 [Debug] > │ | (2, 1)                                                                     │

02:35:39 #1187 [Debug] > │ abcde    	| bcdea cdeab deabc eabcd abcde                                      │

02:35:39 #1188 [Debug] > │ | bcdea cdeab deabc eabcd abcde                                              │

02:35:39 #1189 [Debug] > │ | (2, 0)                                                                     │

02:35:39 #1190 [Debug] > │ abcdefghi	| bcdefghia cdefghiab defghiabc efghiabcd fghiabcde ghiabcdef        │

02:35:39 #1191 [Debug] > │ hiabcdefg iabcdefgh abcdefghi	| bcdefghia cdefghiab defghiabc efghiabcd        │

02:35:39 #1192 [Debug] > │ fghiabcde ghiabcdef hiabcdefg iabcdefgh abcdefghi	| (3, 1)                     │

02:35:39 #1193 [Debug] > │ abab     	| baba abab baba abab                                                │

02:35:39 #1194 [Debug] > │ | baba abab baba abab                                                        │

02:35:39 #1195 [Debug] > │ | (1, 0)                                                                     │

02:35:39 #1196 [Debug] > │ aa       	| aa aa                                                              │

02:35:39 #1197 [Debug] > │                                                                              │

02:35:39 #1198 [Debug] > │ | aa aa                                                                      │

02:35:39 #1199 [Debug] > │                                                                              │

02:35:39 #1200 [Debug] > │ | (1, 0)                                                                     │

02:35:39 #1201 [Debug] > │ z        	| z                                                                  │

02:35:39 #1202 [Debug] > │                                                                              │

02:35:39 #1203 [Debug] > │ | z                                                                          │

02:35:39 #1204 [Debug] > │                                                                              │

02:35:39 #1205 [Debug] > │ | (1, 0)                                                                     │

02:35:39 #1206 [Debug] > │                                                                              │

02:35:39 #1207 [Debug] > │ Average Ranking                                                              │

02:35:39 #1208 [Debug] > │ Test case 2. Average Time: 0L                                                │

02:35:39 #1209 [Debug] > │ Test case 3. Average Time: 0L                                                │

02:35:39 #1210 [Debug] > │ Test case 7. Average Time: 0L                                                │

02:35:39 #1211 [Debug] > │ Test case 8. Average Time: 0L                                                │

02:35:39 #1212 [Debug] > │ Test case 1. Average Time: 1L                                                │

02:35:39 #1213 [Debug] > │ Test case 4. Average Time: 1L                                                │

02:35:39 #1214 [Debug] > │ Test case 5. Average Time: 1L                                                │

02:35:39 #1215 [Debug] > │ Test case 9. Average Time: 1L                                                │

02:35:39 #1216 [Debug] > │ Test case 6. Average Time: 2L                                                │

02:35:39 #1217 [Debug] > │ Test case 10. Average Time: 3L                                               │

02:35:39 #1218 [Debug] > │ Test case 11. Average Time: 6L                                               │

02:35:39 #1219 [Debug] > │                                                                              │

02:35:39 #1220 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:39 #1221 [Debug] >

02:35:39 #1222 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:39 #1223 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:39 #1224 [Debug] > │ ## rotate_strings_tests                                                      │

02:35:39 #1225 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:39 #1226 [Debug] >

02:35:39 #1227 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:35:39 #1228 [Debug] > // // test

02:35:39 #1229 [Debug] > // // timeout=60000

02:35:39 #1230 [Debug] > // // print_code=true

02:35:39 #1231 [Debug] >

02:35:39 #1232 [Debug] > inl get_solutions () =

02:35:39 #1233 [Debug] >     [[

02:35:39 #1234 [Debug] >         // "A",

02:35:39 #1235 [Debug] >         // fun (input : string) =>

02:35:39 #1236 [Debug] >         //     let resultList =

02:35:39 #1237 [Debug] >         //         List.fold (fun acc x =>

02:35:39 #1238 [Debug] >         //             let rotate (text : string) (letter : string) =

02:35:39 #1239 [Debug] > text.Substring (1, input.Length - 1) + letter

02:35:39 #1240 [Debug] >         //             [[ rotate (if acc.IsEmpty then input else acc.Head)

02:35:39 #1241 [Debug] > (string x) ]] /@ acc

02:35:39 #1242 [Debug] >         //         ) [[]] (Seq.toList input)

02:35:39 #1243 [Debug] >

02:35:39 #1244 [Debug] >         //     List.foldBack (fun acc x => x + acc + " ") resultList ""

02:35:39 #1245 [Debug] >         //     |> fun x => x.TrimEnd ()

02:35:39 #1246 [Debug] >

02:35:39 #1247 [Debug] >         // "B",

02:35:39 #1248 [Debug] >         // fun input =>

02:35:39 #1249 [Debug] >         //     input

02:35:39 #1250 [Debug] >         //     |> Seq.toList

02:35:39 #1251 [Debug] >         //     |> List.fold (fun (acc : string list) letter =>

02:35:39 #1252 [Debug] >         //         let last =

02:35:39 #1253 [Debug] >         //             if acc.IsEmpty

02:35:39 #1254 [Debug] >         //             then input

02:35:39 #1255 [Debug] >         //             else acc.Head

02:35:39 #1256 [Debug] >

02:35:39 #1257 [Debug] >         //         let item = last.[[1 .. input.Length - 1]] + string letter

02:35:39 #1258 [Debug] >

02:35:39 #1259 [Debug] >         //         item :: acc

02:35:39 #1260 [Debug] >         //     ) [[]]

02:35:39 #1261 [Debug] >         //     |> List.rev

02:35:39 #1262 [Debug] >         //     |> String.concat " "

02:35:39 #1263 [Debug] >

02:35:39 #1264 [Debug] >         // "C",

02:35:39 #1265 [Debug] >         // fun input =>

02:35:39 #1266 [Debug] >         //     input

02:35:39 #1267 [Debug] >         //     |> Seq.toList

02:35:39 #1268 [Debug] >         //     |> List.fold (fun (acc : list string) letter => acc.Head.[[ 1 ..

02:35:39 #1269 [Debug] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

02:35:39 #1270 [Debug] >         //     |> List.rev

02:35:39 #1271 [Debug] >         //     |> List.skip 1

02:35:39 #1272 [Debug] >         //     |> String.concat " "

02:35:39 #1273 [Debug] >

02:35:39 #1274 [Debug] >         // "CA",

02:35:39 #1275 [Debug] >         // fun input =>

02:35:39 #1276 [Debug] >         //     input

02:35:39 #1277 [Debug] >         //     |> Seq.fold (fun (acc : list string) letter => acc.Head.[[ 1 ..

02:35:39 #1278 [Debug] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

02:35:39 #1279 [Debug] >         //     |> Seq.rev

02:35:39 #1280 [Debug] >         //     |> Seq.skip 1

02:35:39 #1281 [Debug] >         //     |> String.concat " "

02:35:39 #1282 [Debug] >

02:35:39 #1283 [Debug] >         // "CB",

02:35:39 #1284 [Debug] >         // fun input =>

02:35:39 #1285 [Debug] >         //     input

02:35:39 #1286 [Debug] >         //     |> Seq.toArray

02:35:39 #1287 [Debug] >         //     |> Array.fold (fun (acc : a _ string) letter => acc |>

02:35:39 #1288 [Debug] > Array.append (a ;[[ acc.[[0]].[[ 1 .. input.Length - 1 ]] + string letter ]]))

02:35:39 #1289 [Debug] > (a ;[[ input ]])

02:35:39 #1290 [Debug] >         //     |> Array.rev

02:35:39 #1291 [Debug] >         //     |> Array.skip 1

02:35:39 #1292 [Debug] >         //     |> String.concat " "

02:35:39 #1293 [Debug] >

02:35:39 #1294 [Debug] >         // "D",

02:35:39 #1295 [Debug] >         // fun input =>

02:35:39 #1296 [Debug] >         //     input

02:35:39 #1297 [Debug] >         //     |> Seq.toList

02:35:39 #1298 [Debug] >         //     |> fun list =>

02:35:39 #1299 [Debug] >         //         let rec loop (acc : list (list char)) = function

02:35:39 #1300 [Debug] >         //             | _ when acc.Length = list.Length => acc

02:35:39 #1301 [Debug] >         //             | head :: tail =>

02:35:39 #1302 [Debug] >         //                 let item = tail /@ [[ head ]]

02:35:39 #1303 [Debug] >         //                 loop (item :: acc) item

02:35:39 #1304 [Debug] >         //             | [[]] => [[]]

02:35:39 #1305 [Debug] >         //         loop [[]] list

02:35:39 #1306 [Debug] >         //     |> List.rev

02:35:39 #1307 [Debug] >         //     |> List.map (List.toArray >> String)

02:35:39 #1308 [Debug] >         //     |> String.concat " "

02:35:39 #1309 [Debug] >

02:35:39 #1310 [Debug] >         // "E",

02:35:39 #1311 [Debug] >         // fun input =>

02:35:39 #1312 [Debug] >         //     input

02:35:39 #1313 [Debug] >         //     |> Seq.toList

02:35:39 #1314 [Debug] >         //     |> fun list =>

02:35:39 #1315 [Debug] >         //         let rec loop (last : string) = function

02:35:39 #1316 [Debug] >         //             | head :: tail =>

02:35:39 #1317 [Debug] >         //                 let item = last.[[1 .. input.Length - 1]] + string

02:35:39 #1318 [Debug] > head

02:35:39 #1319 [Debug] >         //                 item :: loop item tail

02:35:39 #1320 [Debug] >         //             | [[]] => [[]]

02:35:39 #1321 [Debug] >         //         loop input list

02:35:39 #1322 [Debug] >         //     |> String.concat " "

02:35:39 #1323 [Debug] >

02:35:39 #1324 [Debug] >         "F",

02:35:39 #1325 [Debug] >         fun input =>

02:35:39 #1326 [Debug] >         // Array.singleton 0

02:35:39 #1327 [Debug] >         // |> Array.append [[| 1 .. input.Length - 1 |]]

02:35:39 #1328 [Debug] >         // |> Array.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:39 #1329 [Debug] >         // |> String.concat " "

02:35:39 #1330 [Debug] >             inl input_length = input |> sm.length

02:35:39 #1331 [Debug] >             am.singleton 0i32

02:35:39 #1332 [Debug] >             |> am.append (am'.init_series 1 (input_length - 1) 1)

02:35:39 #1333 [Debug] >             |> am.map (fun i =>

02:35:39 #1334 [Debug] >                 inl a = sm.slice input { from = i; to = input_length - 1 } :

02:35:39 #1335 [Debug] > string

02:35:39 #1336 [Debug] >                 inl b = sm.slice input { from = 0; to = i - 1 } : string

02:35:39 #1337 [Debug] >                 $"!a + !b" : string

02:35:39 #1338 [Debug] >             )

02:35:39 #1339 [Debug] >             |> string_concat " "

02:35:39 #1340 [Debug] >

02:35:39 #1341 [Debug] >         "FA",

02:35:39 #1342 [Debug] >         fun input =>

02:35:39 #1343 [Debug] >         //     List.singleton 0

02:35:39 #1344 [Debug] >         //     |> List.append [[ 1 .. input.Length - 1 ]]

02:35:39 #1345 [Debug] >         //   //  |> List.map (fun i => input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:39 #1346 [Debug] >         //     |> String.concat " "

02:35:39 #1347 [Debug] >             inl input_length = input |> sm.length

02:35:39 #1348 [Debug] >             listm.singleton 0i32

02:35:39 #1349 [Debug] >             |> listm.append (listm'.init_series 1 (input_length - 1) 1)

02:35:39 #1350 [Debug] >             |> listm.map (fun i =>

02:35:39 #1351 [Debug] >                 inl a = sm.slice input { from = i; to = input_length - 1 } :

02:35:39 #1352 [Debug] > string

02:35:39 #1353 [Debug] >                 inl b = if i = 0 then "" else sm.slice input { from = 0; to = i

02:35:39 #1354 [Debug] > - 1 } : string

02:35:39 #1355 [Debug] >                 $"!a + !b" : string

02:35:39 #1356 [Debug] >             )

02:35:39 #1357 [Debug] >             |> listm.toArray

02:35:39 #1358 [Debug] >             |> fun x => x : a i32 _

02:35:39 #1359 [Debug] >             |> string_concat " "

02:35:39 #1360 [Debug] >

02:35:39 #1361 [Debug] >         // "FB",

02:35:39 #1362 [Debug] >         // fun input =>

02:35:39 #1363 [Debug] >         //     Seq.singleton 0

02:35:39 #1364 [Debug] >         //   //  |> Seq.append (seq { 1 .. input.Length - 1 })

02:35:39 #1365 [Debug] >         //   //  |> Seq.map (fun i => input.[[ i .. ]] + input.[[ .. i - 1 ]])

02:35:39 #1366 [Debug] >         //     |> String.concat " "

02:35:39 #1367 [Debug] >

02:35:39 #1368 [Debug] >         // "FC",

02:35:39 #1369 [Debug] >         // fun input =>

02:35:39 #1370 [Debug] >         //     Array.singleton 0

02:35:39 #1371 [Debug] >         //     |> Array.append (a ;[[ 1 .. input.Length - 1 ]])

02:35:39 #1372 [Debug] >         // //    |> Array.Parallel.map (fun i => input.[[ i .. ]] + input.[[ ..

02:35:39 #1373 [Debug] > i - 1 ]])

02:35:39 #1374 [Debug] >         //     |> String.concat " "

02:35:39 #1375 [Debug] >     ]]

02:35:39 #1376 [Debug] >

02:35:39 #1377 [Debug] > inl rec rotate_strings_tests () =

02:35:39 #1378 [Debug] >     inl test_cases = [[

02:35:39 #1379 [Debug] >         "abc", "bca cab abc"

02:35:39 #1380 [Debug] >         "abcde", "bcdea cdeab deabc eabcd abcde"

02:35:39 #1381 [Debug] >         "abcdefghi", "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde

02:35:39 #1382 [Debug] > ghiabcdef hiabcdefg iabcdefgh abcdefghi"

02:35:39 #1383 [Debug] >         "abab", "baba abab baba abab"

02:35:39 #1384 [Debug] >         "aa", "aa aa"

02:35:39 #1385 [Debug] >         "z", "z"

02:35:39 #1386 [Debug] >     ]]

02:35:39 #1387 [Debug] >

02:35:39 #1388 [Debug] >     inl solutions = get_solutions ()

02:35:39 #1389 [Debug] >

02:35:39 #1390 [Debug] >     run_all (nameof rotate_strings_tests) (get_count ()) solutions test_cases

02:35:39 #1391 [Debug] >     |> sort_result_list

02:35:39 #1392 [Debug] >

02:35:39 #1393 [Debug] > rotate_strings_tests ()

02:35:39 #1394 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0235-3974-7424-7b772d8779be\main.spi

02:35:44 #1395 [Debug] >

02:35:45 #1396 [Debug] > ╭─[ 5.17s - stdout ]───────────────────────────────────────────────────────────╮

02:35:45 #1397 [Debug] > │ type Mut0 = {mutable l0 : int32}                                             │

02:35:45 #1398 [Debug] > │ and UH0 =                                                                    │

02:35:45 #1399 [Debug] > │     | UH0_0 of string * UH0                                                  │

02:35:45 #1400 [Debug] > │     | UH0_1                                                                  │

02:35:45 #1401 [Debug] > │ and UH1 =                                                                    │

02:35:45 #1402 [Debug] > │     | UH1_0 of int64 * int64 * UH1                                           │

02:35:45 #1403 [Debug] > │     | UH1_1                                                                  │

02:35:45 #1404 [Debug] > │ and [<Struct>] US0 =                                                         │

02:35:45 #1405 [Debug] > │     | US0_0                                                                  │

02:35:45 #1406 [Debug] > │     | US0_1 of f1_0 : System.ConsoleColor                                    │

02:35:45 #1407 [Debug] > │ and UH2 =                                                                    │

02:35:45 #1408 [Debug] > │     | UH2_0 of (string []) * UH2                                             │

02:35:45 #1409 [Debug] > │     | UH2_1                                                                  │

02:35:45 #1410 [Debug] > │ and [<Struct>] US1 =                                                         │

02:35:45 #1411 [Debug] > │     | US1_0                                                                  │

02:35:45 #1412 [Debug] > │     | US1_1 of f1_0 : int64                                                  │

02:35:45 #1413 [Debug] > │ and UH3 =                                                                    │

02:35:45 #1414 [Debug] > │     | UH3_0 of int32 * int64 * UH3                                           │

02:35:45 #1415 [Debug] > │     | UH3_1                                                                  │

02:35:45 #1416 [Debug] > │ and Mut1 = {mutable l0 : int32; mutable l1 : UH3; mutable l2 : int32}        │

02:35:45 #1417 [Debug] > │ and UH4 =                                                                    │

02:35:45 #1418 [Debug] > │     | UH4_0 of float * UH4                                                   │

02:35:45 #1419 [Debug] > │     | UH4_1                                                                  │

02:35:45 #1420 [Debug] > │ and UH5 =                                                                    │

02:35:45 #1421 [Debug] > │     | UH5_0 of (float []) * UH5                                              │

02:35:45 #1422 [Debug] > │     | UH5_1                                                                  │

02:35:45 #1423 [Debug] > │ let rec closure1 () () : unit =                                              │

02:35:45 #1424 [Debug] > │     ()                                                                       │

02:35:45 #1425 [Debug] > │ and closure2 () () : unit =                                                  │

02:35:45 #1426 [Debug] > │     System.GC.Collect ()                                                     │

02:35:45 #1427 [Debug] > │     ()                                                                       │

02:35:45 #1428 [Debug] > │ and method1 (v0 : int32, v1 : Mut0) : bool =                                 │

02:35:45 #1429 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:35:45 #1430 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:35:45 #1431 [Debug] > │     v3                                                                       │

02:35:45 #1432 [Debug] > │ and method3 (v0 : UH0, v1 : int32) : int32 =                                 │

02:35:45 #1433 [Debug] > │     match v0 with                                                            │

02:35:45 #1434 [Debug] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

02:35:45 #1435 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:35:45 #1436 [Debug] > │         method3(v3, v4)                                                      │

02:35:45 #1437 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:35:45 #1438 [Debug] > │         v1                                                                   │

02:35:45 #1439 [Debug] > │ and method4 (v0 : (string []), v1 : UH0, v2 : int32) : int32 =               │

02:35:45 #1440 [Debug] > │     match v1 with                                                            │

02:35:45 #1441 [Debug] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

02:35:45 #1442 [Debug] > │         v0.[int v2] <- v3                                                    │

02:35:45 #1443 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:35:45 #1444 [Debug] > │         method4(v0, v4, v5)                                                  │

02:35:45 #1445 [Debug] > │     | UH0_1 -> (* Nil *)                                                     │

02:35:45 #1446 [Debug] > │         v2                                                                   │

02:35:45 #1447 [Debug] > │ and method2 (v0 : UH0) : (string []) =                                       │

02:35:45 #1448 [Debug] > │     let v1 : int32 = 0                                                       │

02:35:45 #1449 [Debug] > │     let v2 : int32 = method3(v0, v1)                                         │

02:35:45 #1450 [Debug] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

02:35:45 #1451 [Debug] > │     let v4 : int32 = 0                                                       │

02:35:45 #1452 [Debug] > │     let v5 : int32 = method4(v3, v0, v4)                                     │

02:35:45 #1453 [Debug] > │     v3                                                                       │

02:35:45 #1454 [Debug] > │ and closure3 () (v0 : int32) : string =                                      │

02:35:45 #1455 [Debug] > │     let v1 : string = "z"                                                    │

02:35:45 #1456 [Debug] > │     let v2 : string = ""                                                     │

02:35:45 #1457 [Debug] > │     let v3 : string = v1 + v2                                                │

02:35:45 #1458 [Debug] > │     let v4 : UH0 = UH0_1                                                     │

02:35:45 #1459 [Debug] > │     let v5 : UH0 = UH0_0(v3, v4)                                             │

02:35:45 #1460 [Debug] > │     let v6 : (string []) = method2(v5)                                       │

02:35:45 #1461 [Debug] > │     let v7 : string = " "                                                    │

02:35:45 #1462 [Debug] > │     let v8 : string = v6 |> String.concat v7                                 │

02:35:45 #1463 [Debug] > │     v8                                                                       │

02:35:45 #1464 [Debug] > │ and method5 (v0 : Mut0) : bool =                                             │

02:35:45 #1465 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:35:45 #1466 [Debug] > │     let v2 : bool = v1 < 0                                                   │

02:35:45 #1467 [Debug] > │     v2                                                                       │

02:35:45 #1468 [Debug] > │ and closure4 () (v0 : int32) : string =                                      │

02:35:45 #1469 [Debug] > │     let v1 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1470 [Debug] > │     v1.[int 0] <- 0                                                          │

02:35:45 #1471 [Debug] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (0)                        │

02:35:45 #1472 [Debug] > │     let v3 : Mut0 = {l0 = 0} : Mut0                                          │

02:35:45 #1473 [Debug] > │     while method5(v3) do                                                     │

02:35:45 #1474 [Debug] > │         let v5 : int32 = v3.l0                                               │

02:35:45 #1475 [Debug] > │         let v6 : int32 = 1 + v5                                              │

02:35:45 #1476 [Debug] > │         v2.[int v5] <- v6                                                    │

02:35:45 #1477 [Debug] > │         let v7 : int32 = v5 + 1                                              │

02:35:45 #1478 [Debug] > │         v3.l0 <- v7                                                          │

02:35:45 #1479 [Debug] > │         ()                                                                   │

02:35:45 #1480 [Debug] > │     let v8 : int32 = v2.Length                                               │

02:35:45 #1481 [Debug] > │     let v9 : int32 = v1.Length                                               │

02:35:45 #1482 [Debug] > │     let v10 : int32 = v8 + v9                                                │

02:35:45 #1483 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (v10)                     │

02:35:45 #1484 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1485 [Debug] > │     while method1(v10, v12) do                                               │

02:35:45 #1486 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:35:45 #1487 [Debug] > │         let v15 : bool = v14 < v8                                            │

02:35:45 #1488 [Debug] > │         let v19 : int32 =                                                    │

02:35:45 #1489 [Debug] > │             if v15 then                                                      │

02:35:45 #1490 [Debug] > │                 let v16 : int32 = v2.[int v14]                               │

02:35:45 #1491 [Debug] > │                 v16                                                          │

02:35:45 #1492 [Debug] > │             else                                                             │

02:35:45 #1493 [Debug] > │                 let v17 : int32 = v14 - v8                                   │

02:35:45 #1494 [Debug] > │                 let v18 : int32 = v1.[int v17]                               │

02:35:45 #1495 [Debug] > │                 v18                                                          │

02:35:45 #1496 [Debug] > │         v11.[int v14] <- v19                                                 │

02:35:45 #1497 [Debug] > │         let v20 : int32 = v14 + 1                                            │

02:35:45 #1498 [Debug] > │         v12.l0 <- v20                                                        │

02:35:45 #1499 [Debug] > │         ()                                                                   │

02:35:45 #1500 [Debug] > │     let v21 : int32 = v11.Length                                             │

02:35:45 #1501 [Debug] > │     let v22 : (string []) = Array.zeroCreate<string> (v21)                   │

02:35:45 #1502 [Debug] > │     let v23 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1503 [Debug] > │     while method1(v21, v23) do                                               │

02:35:45 #1504 [Debug] > │         let v25 : int32 = v23.l0                                             │

02:35:45 #1505 [Debug] > │         let v26 : int32 = v11.[int v25]                                      │

02:35:45 #1506 [Debug] > │         let v27 : string = "z".[int v26..int 0]                              │

02:35:45 #1507 [Debug] > │         let v28 : int32 = v26 - 1                                            │

02:35:45 #1508 [Debug] > │         let v29 : string = "z".[int 0..int v28]                              │

02:35:45 #1509 [Debug] > │         let v30 : string = v27 + v29                                         │

02:35:45 #1510 [Debug] > │         v22.[int v25] <- v30                                                 │

02:35:45 #1511 [Debug] > │         let v31 : int32 = v25 + 1                                            │

02:35:45 #1512 [Debug] > │         v23.l0 <- v31                                                        │

02:35:45 #1513 [Debug] > │         ()                                                                   │

02:35:45 #1514 [Debug] > │     let v32 : string = " "                                                   │

02:35:45 #1515 [Debug] > │     let v33 : string = v22 |> String.concat v32                              │

02:35:45 #1516 [Debug] > │     v33                                                                      │

02:35:45 #1517 [Debug] > │ and closure5 () (v0 : int32) : string =                                      │

02:35:45 #1518 [Debug] > │     let v1 : string = "aa"                                                   │

02:35:45 #1519 [Debug] > │     let v2 : string = ""                                                     │

02:35:45 #1520 [Debug] > │     let v3 : string = v1 + v2                                                │

02:35:45 #1521 [Debug] > │     let v4 : string = "a"                                                    │

02:35:45 #1522 [Debug] > │     let v5 : string = v4 + v4                                                │

02:35:45 #1523 [Debug] > │     let v6 : UH0 = UH0_1                                                     │

02:35:45 #1524 [Debug] > │     let v7 : UH0 = UH0_0(v3, v6)                                             │

02:35:45 #1525 [Debug] > │     let v8 : UH0 = UH0_0(v5, v7)                                             │

02:35:45 #1526 [Debug] > │     let v9 : (string []) = method2(v8)                                       │

02:35:45 #1527 [Debug] > │     let v10 : string = " "                                                   │

02:35:45 #1528 [Debug] > │     let v11 : string = v9 |> String.concat v10                               │

02:35:45 #1529 [Debug] > │     v11                                                                      │

02:35:45 #1530 [Debug] > │ and method6 (v0 : Mut0) : bool =                                             │

02:35:45 #1531 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:35:45 #1532 [Debug] > │     let v2 : bool = v1 < 1                                                   │

02:35:45 #1533 [Debug] > │     v2                                                                       │

02:35:45 #1534 [Debug] > │ and closure6 () (v0 : int32) : string =                                      │

02:35:45 #1535 [Debug] > │     let v1 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1536 [Debug] > │     v1.[int 0] <- 0                                                          │

02:35:45 #1537 [Debug] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1538 [Debug] > │     let v3 : Mut0 = {l0 = 0} : Mut0                                          │

02:35:45 #1539 [Debug] > │     while method6(v3) do                                                     │

02:35:45 #1540 [Debug] > │         let v5 : int32 = v3.l0                                               │

02:35:45 #1541 [Debug] > │         let v6 : int32 = 1 + v5                                              │

02:35:45 #1542 [Debug] > │         v2.[int v5] <- v6                                                    │

02:35:45 #1543 [Debug] > │         let v7 : int32 = v5 + 1                                              │

02:35:45 #1544 [Debug] > │         v3.l0 <- v7                                                          │

02:35:45 #1545 [Debug] > │         ()                                                                   │

02:35:45 #1546 [Debug] > │     let v8 : int32 = v2.Length                                               │

02:35:45 #1547 [Debug] > │     let v9 : int32 = v1.Length                                               │

02:35:45 #1548 [Debug] > │     let v10 : int32 = v8 + v9                                                │

02:35:45 #1549 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (v10)                     │

02:35:45 #1550 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1551 [Debug] > │     while method1(v10, v12) do                                               │

02:35:45 #1552 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:35:45 #1553 [Debug] > │         let v15 : bool = v14 < v8                                            │

02:35:45 #1554 [Debug] > │         let v19 : int32 =                                                    │

02:35:45 #1555 [Debug] > │             if v15 then                                                      │

02:35:45 #1556 [Debug] > │                 let v16 : int32 = v2.[int v14]                               │

02:35:45 #1557 [Debug] > │                 v16                                                          │

02:35:45 #1558 [Debug] > │             else                                                             │

02:35:45 #1559 [Debug] > │                 let v17 : int32 = v14 - v8                                   │

02:35:45 #1560 [Debug] > │                 let v18 : int32 = v1.[int v17]                               │

02:35:45 #1561 [Debug] > │                 v18                                                          │

02:35:45 #1562 [Debug] > │         v11.[int v14] <- v19                                                 │

02:35:45 #1563 [Debug] > │         let v20 : int32 = v14 + 1                                            │

02:35:45 #1564 [Debug] > │         v12.l0 <- v20                                                        │

02:35:45 #1565 [Debug] > │         ()                                                                   │

02:35:45 #1566 [Debug] > │     let v21 : int32 = v11.Length                                             │

02:35:45 #1567 [Debug] > │     let v22 : (string []) = Array.zeroCreate<string> (v21)                   │

02:35:45 #1568 [Debug] > │     let v23 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1569 [Debug] > │     while method1(v21, v23) do                                               │

02:35:45 #1570 [Debug] > │         let v25 : int32 = v23.l0                                             │

02:35:45 #1571 [Debug] > │         let v26 : int32 = v11.[int v25]                                      │

02:35:45 #1572 [Debug] > │         let v27 : string = "aa".[int v26..int 1]                             │

02:35:45 #1573 [Debug] > │         let v28 : int32 = v26 - 1                                            │

02:35:45 #1574 [Debug] > │         let v29 : string = "aa".[int 0..int v28]                             │

02:35:45 #1575 [Debug] > │         let v30 : string = v27 + v29                                         │

02:35:45 #1576 [Debug] > │         v22.[int v25] <- v30                                                 │

02:35:45 #1577 [Debug] > │         let v31 : int32 = v25 + 1                                            │

02:35:45 #1578 [Debug] > │         v23.l0 <- v31                                                        │

02:35:45 #1579 [Debug] > │         ()                                                                   │

02:35:45 #1580 [Debug] > │     let v32 : string = " "                                                   │

02:35:45 #1581 [Debug] > │     let v33 : string = v22 |> String.concat v32                              │

02:35:45 #1582 [Debug] > │     v33                                                                      │

02:35:45 #1583 [Debug] > │ and closure7 () (v0 : int32) : string =                                      │

02:35:45 #1584 [Debug] > │     let v1 : string = "abab"                                                 │

02:35:45 #1585 [Debug] > │     let v2 : string = ""                                                     │

02:35:45 #1586 [Debug] > │     let v3 : string = v1 + v2                                                │

02:35:45 #1587 [Debug] > │     let v4 : string = "b"                                                    │

02:35:45 #1588 [Debug] > │     let v5 : string = "aba"                                                  │

02:35:45 #1589 [Debug] > │     let v6 : string = v4 + v5                                                │

02:35:45 #1590 [Debug] > │     let v7 : string = "ab"                                                   │

02:35:45 #1591 [Debug] > │     let v8 : string = v7 + v7                                                │

02:35:45 #1592 [Debug] > │     let v9 : string = "bab"                                                  │

02:35:45 #1593 [Debug] > │     let v10 : string = "a"                                                   │

02:35:45 #1594 [Debug] > │     let v11 : string = v9 + v10                                              │

02:35:45 #1595 [Debug] > │     let v12 : UH0 = UH0_1                                                    │

02:35:45 #1596 [Debug] > │     let v13 : UH0 = UH0_0(v3, v12)                                           │

02:35:45 #1597 [Debug] > │     let v14 : UH0 = UH0_0(v6, v13)                                           │

02:35:45 #1598 [Debug] > │     let v15 : UH0 = UH0_0(v8, v14)                                           │

02:35:45 #1599 [Debug] > │     let v16 : UH0 = UH0_0(v11, v15)                                          │

02:35:45 #1600 [Debug] > │     let v17 : (string []) = method2(v16)                                     │

02:35:45 #1601 [Debug] > │     let v18 : string = " "                                                   │

02:35:45 #1602 [Debug] > │     let v19 : string = v17 |> String.concat v18                              │

02:35:45 #1603 [Debug] > │     v19                                                                      │

02:35:45 #1604 [Debug] > │ and method7 (v0 : Mut0) : bool =                                             │

02:35:45 #1605 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:35:45 #1606 [Debug] > │     let v2 : bool = v1 < 3                                                   │

02:35:45 #1607 [Debug] > │     v2                                                                       │

02:35:45 #1608 [Debug] > │ and closure8 () (v0 : int32) : string =                                      │

02:35:45 #1609 [Debug] > │     let v1 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1610 [Debug] > │     v1.[int 0] <- 0                                                          │

02:35:45 #1611 [Debug] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (3)                        │

02:35:45 #1612 [Debug] > │     let v3 : Mut0 = {l0 = 0} : Mut0                                          │

02:35:45 #1613 [Debug] > │     while method7(v3) do                                                     │

02:35:45 #1614 [Debug] > │         let v5 : int32 = v3.l0                                               │

02:35:45 #1615 [Debug] > │         let v6 : int32 = 1 + v5                                              │

02:35:45 #1616 [Debug] > │         v2.[int v5] <- v6                                                    │

02:35:45 #1617 [Debug] > │         let v7 : int32 = v5 + 1                                              │

02:35:45 #1618 [Debug] > │         v3.l0 <- v7                                                          │

02:35:45 #1619 [Debug] > │         ()                                                                   │

02:35:45 #1620 [Debug] > │     let v8 : int32 = v2.Length                                               │

02:35:45 #1621 [Debug] > │     let v9 : int32 = v1.Length                                               │

02:35:45 #1622 [Debug] > │     let v10 : int32 = v8 + v9                                                │

02:35:45 #1623 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (v10)                     │

02:35:45 #1624 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1625 [Debug] > │     while method1(v10, v12) do                                               │

02:35:45 #1626 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:35:45 #1627 [Debug] > │         let v15 : bool = v14 < v8                                            │

02:35:45 #1628 [Debug] > │         let v19 : int32 =                                                    │

02:35:45 #1629 [Debug] > │             if v15 then                                                      │

02:35:45 #1630 [Debug] > │                 let v16 : int32 = v2.[int v14]                               │

02:35:45 #1631 [Debug] > │                 v16                                                          │

02:35:45 #1632 [Debug] > │             else                                                             │

02:35:45 #1633 [Debug] > │                 let v17 : int32 = v14 - v8                                   │

02:35:45 #1634 [Debug] > │                 let v18 : int32 = v1.[int v17]                               │

02:35:45 #1635 [Debug] > │                 v18                                                          │

02:35:45 #1636 [Debug] > │         v11.[int v14] <- v19                                                 │

02:35:45 #1637 [Debug] > │         let v20 : int32 = v14 + 1                                            │

02:35:45 #1638 [Debug] > │         v12.l0 <- v20                                                        │

02:35:45 #1639 [Debug] > │         ()                                                                   │

02:35:45 #1640 [Debug] > │     let v21 : int32 = v11.Length                                             │

02:35:45 #1641 [Debug] > │     let v22 : (string []) = Array.zeroCreate<string> (v21)                   │

02:35:45 #1642 [Debug] > │     let v23 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1643 [Debug] > │     while method1(v21, v23) do                                               │

02:35:45 #1644 [Debug] > │         let v25 : int32 = v23.l0                                             │

02:35:45 #1645 [Debug] > │         let v26 : int32 = v11.[int v25]                                      │

02:35:45 #1646 [Debug] > │         let v27 : string = "abab".[int v26..int 3]                           │

02:35:45 #1647 [Debug] > │         let v28 : int32 = v26 - 1                                            │

02:35:45 #1648 [Debug] > │         let v29 : string = "abab".[int 0..int v28]                           │

02:35:45 #1649 [Debug] > │         let v30 : string = v27 + v29                                         │

02:35:45 #1650 [Debug] > │         v22.[int v25] <- v30                                                 │

02:35:45 #1651 [Debug] > │         let v31 : int32 = v25 + 1                                            │

02:35:45 #1652 [Debug] > │         v23.l0 <- v31                                                        │

02:35:45 #1653 [Debug] > │         ()                                                                   │

02:35:45 #1654 [Debug] > │     let v32 : string = " "                                                   │

02:35:45 #1655 [Debug] > │     let v33 : string = v22 |> String.concat v32                              │

02:35:45 #1656 [Debug] > │     v33                                                                      │

02:35:45 #1657 [Debug] > │ and closure9 () (v0 : int32) : string =                                      │

02:35:45 #1658 [Debug] > │     let v1 : string = "abcdefghi"                                            │

02:35:45 #1659 [Debug] > │     let v2 : string = ""                                                     │

02:35:45 #1660 [Debug] > │     let v3 : string = v1 + v2                                                │

02:35:45 #1661 [Debug] > │     let v4 : string = "i"                                                    │

02:35:45 #1662 [Debug] > │     let v5 : string = "abcdefgh"                                             │

02:35:45 #1663 [Debug] > │     let v6 : string = v4 + v5                                                │

02:35:45 #1664 [Debug] > │     let v7 : string = "hi"                                                   │

02:35:45 #1665 [Debug] > │     let v8 : string = "abcdefg"                                              │

02:35:45 #1666 [Debug] > │     let v9 : string = v7 + v8                                                │

02:35:45 #1667 [Debug] > │     let v10 : string = "ghi"                                                 │

02:35:45 #1668 [Debug] > │     let v11 : string = "abcdef"                                              │

02:35:45 #1669 [Debug] > │     let v12 : string = v10 + v11                                             │

02:35:45 #1670 [Debug] > │     let v13 : string = "fghi"                                                │

02:35:45 #1671 [Debug] > │     let v14 : string = "abcde"                                               │

02:35:45 #1672 [Debug] > │     let v15 : string = v13 + v14                                             │

02:35:45 #1673 [Debug] > │     let v16 : string = "efghi"                                               │

02:35:45 #1674 [Debug] > │     let v17 : string = "abcd"                                                │

02:35:45 #1675 [Debug] > │     let v18 : string = v16 + v17                                             │

02:35:45 #1676 [Debug] > │     let v19 : string = "defghi"                                              │

02:35:45 #1677 [Debug] > │     let v20 : string = "abc"                                                 │

02:35:45 #1678 [Debug] > │     let v21 : string = v19 + v20                                             │

02:35:45 #1679 [Debug] > │     let v22 : string = "cdefghi"                                             │

02:35:45 #1680 [Debug] > │     let v23 : string = "ab"                                                  │

02:35:45 #1681 [Debug] > │     let v24 : string = v22 + v23                                             │

02:35:45 #1682 [Debug] > │     let v25 : string = "bcdefghi"                                            │

02:35:45 #1683 [Debug] > │     let v26 : string = "a"                                                   │

02:35:45 #1684 [Debug] > │     let v27 : string = v25 + v26                                             │

02:35:45 #1685 [Debug] > │     let v28 : UH0 = UH0_1                                                    │

02:35:45 #1686 [Debug] > │     let v29 : UH0 = UH0_0(v3, v28)                                           │

02:35:45 #1687 [Debug] > │     let v30 : UH0 = UH0_0(v6, v29)                                           │

02:35:45 #1688 [Debug] > │     let v31 : UH0 = UH0_0(v9, v30)                                           │

02:35:45 #1689 [Debug] > │     let v32 : UH0 = UH0_0(v12, v31)                                          │

02:35:45 #1690 [Debug] > │     let v33 : UH0 = UH0_0(v15, v32)                                          │

02:35:45 #1691 [Debug] > │     let v34 : UH0 = UH0_0(v18, v33)                                          │

02:35:45 #1692 [Debug] > │     let v35 : UH0 = UH0_0(v21, v34)                                          │

02:35:45 #1693 [Debug] > │     let v36 : UH0 = UH0_0(v24, v35)                                          │

02:35:45 #1694 [Debug] > │     let v37 : UH0 = UH0_0(v27, v36)                                          │

02:35:45 #1695 [Debug] > │     let v38 : (string []) = method2(v37)                                     │

02:35:45 #1696 [Debug] > │     let v39 : string = " "                                                   │

02:35:45 #1697 [Debug] > │     let v40 : string = v38 |> String.concat v39                              │

02:35:45 #1698 [Debug] > │     v40                                                                      │

02:35:45 #1699 [Debug] > │ and method8 (v0 : Mut0) : bool =                                             │

02:35:45 #1700 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:35:45 #1701 [Debug] > │     let v2 : bool = v1 < 8                                                   │

02:35:45 #1702 [Debug] > │     v2                                                                       │

02:35:45 #1703 [Debug] > │ and closure10 () (v0 : int32) : string =                                     │

02:35:45 #1704 [Debug] > │     let v1 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1705 [Debug] > │     v1.[int 0] <- 0                                                          │

02:35:45 #1706 [Debug] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (8)                        │

02:35:45 #1707 [Debug] > │     let v3 : Mut0 = {l0 = 0} : Mut0                                          │

02:35:45 #1708 [Debug] > │     while method8(v3) do                                                     │

02:35:45 #1709 [Debug] > │         let v5 : int32 = v3.l0                                               │

02:35:45 #1710 [Debug] > │         let v6 : int32 = 1 + v5                                              │

02:35:45 #1711 [Debug] > │         v2.[int v5] <- v6                                                    │

02:35:45 #1712 [Debug] > │         let v7 : int32 = v5 + 1                                              │

02:35:45 #1713 [Debug] > │         v3.l0 <- v7                                                          │

02:35:45 #1714 [Debug] > │         ()                                                                   │

02:35:45 #1715 [Debug] > │     let v8 : int32 = v2.Length                                               │

02:35:45 #1716 [Debug] > │     let v9 : int32 = v1.Length                                               │

02:35:45 #1717 [Debug] > │     let v10 : int32 = v8 + v9                                                │

02:35:45 #1718 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (v10)                     │

02:35:45 #1719 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1720 [Debug] > │     while method1(v10, v12) do                                               │

02:35:45 #1721 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:35:45 #1722 [Debug] > │         let v15 : bool = v14 < v8                                            │

02:35:45 #1723 [Debug] > │         let v19 : int32 =                                                    │

02:35:45 #1724 [Debug] > │             if v15 then                                                      │

02:35:45 #1725 [Debug] > │                 let v16 : int32 = v2.[int v14]                               │

02:35:45 #1726 [Debug] > │                 v16                                                          │

02:35:45 #1727 [Debug] > │             else                                                             │

02:35:45 #1728 [Debug] > │                 let v17 : int32 = v14 - v8                                   │

02:35:45 #1729 [Debug] > │                 let v18 : int32 = v1.[int v17]                               │

02:35:45 #1730 [Debug] > │                 v18                                                          │

02:35:45 #1731 [Debug] > │         v11.[int v14] <- v19                                                 │

02:35:45 #1732 [Debug] > │         let v20 : int32 = v14 + 1                                            │

02:35:45 #1733 [Debug] > │         v12.l0 <- v20                                                        │

02:35:45 #1734 [Debug] > │         ()                                                                   │

02:35:45 #1735 [Debug] > │     let v21 : int32 = v11.Length                                             │

02:35:45 #1736 [Debug] > │     let v22 : (string []) = Array.zeroCreate<string> (v21)                   │

02:35:45 #1737 [Debug] > │     let v23 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1738 [Debug] > │     while method1(v21, v23) do                                               │

02:35:45 #1739 [Debug] > │         let v25 : int32 = v23.l0                                             │

02:35:45 #1740 [Debug] > │         let v26 : int32 = v11.[int v25]                                      │

02:35:45 #1741 [Debug] > │         let v27 : string = "abcdefghi".[int v26..int 8]                      │

02:35:45 #1742 [Debug] > │         let v28 : int32 = v26 - 1                                            │

02:35:45 #1743 [Debug] > │         let v29 : string = "abcdefghi".[int 0..int v28]                      │

02:35:45 #1744 [Debug] > │         let v30 : string = v27 + v29                                         │

02:35:45 #1745 [Debug] > │         v22.[int v25] <- v30                                                 │

02:35:45 #1746 [Debug] > │         let v31 : int32 = v25 + 1                                            │

02:35:45 #1747 [Debug] > │         v23.l0 <- v31                                                        │

02:35:45 #1748 [Debug] > │         ()                                                                   │

02:35:45 #1749 [Debug] > │     let v32 : string = " "                                                   │

02:35:45 #1750 [Debug] > │     let v33 : string = v22 |> String.concat v32                              │

02:35:45 #1751 [Debug] > │     v33                                                                      │

02:35:45 #1752 [Debug] > │ and closure11 () (v0 : int32) : string =                                     │

02:35:45 #1753 [Debug] > │     let v1 : string = "abcde"                                                │

02:35:45 #1754 [Debug] > │     let v2 : string = ""                                                     │

02:35:45 #1755 [Debug] > │     let v3 : string = v1 + v2                                                │

02:35:45 #1756 [Debug] > │     let v4 : string = "e"                                                    │

02:35:45 #1757 [Debug] > │     let v5 : string = "abcd"                                                 │

02:35:45 #1758 [Debug] > │     let v6 : string = v4 + v5                                                │

02:35:45 #1759 [Debug] > │     let v7 : string = "de"                                                   │

02:35:45 #1760 [Debug] > │     let v8 : string = "abc"                                                  │

02:35:45 #1761 [Debug] > │     let v9 : string = v7 + v8                                                │

02:35:45 #1762 [Debug] > │     let v10 : string = "cde"                                                 │

02:35:45 #1763 [Debug] > │     let v11 : string = "ab"                                                  │

02:35:45 #1764 [Debug] > │     let v12 : string = v10 + v11                                             │

02:35:45 #1765 [Debug] > │     let v13 : string = "bcde"                                                │

02:35:45 #1766 [Debug] > │     let v14 : string = "a"                                                   │

02:35:45 #1767 [Debug] > │     let v15 : string = v13 + v14                                             │

02:35:45 #1768 [Debug] > │     let v16 : UH0 = UH0_1                                                    │

02:35:45 #1769 [Debug] > │     let v17 : UH0 = UH0_0(v3, v16)                                           │

02:35:45 #1770 [Debug] > │     let v18 : UH0 = UH0_0(v6, v17)                                           │

02:35:45 #1771 [Debug] > │     let v19 : UH0 = UH0_0(v9, v18)                                           │

02:35:45 #1772 [Debug] > │     let v20 : UH0 = UH0_0(v12, v19)                                          │

02:35:45 #1773 [Debug] > │     let v21 : UH0 = UH0_0(v15, v20)                                          │

02:35:45 #1774 [Debug] > │     let v22 : (string []) = method2(v21)                                     │

02:35:45 #1775 [Debug] > │     let v23 : string = " "                                                   │

02:35:45 #1776 [Debug] > │     let v24 : string = v22 |> String.concat v23                              │

02:35:45 #1777 [Debug] > │     v24                                                                      │

02:35:45 #1778 [Debug] > │ and method9 (v0 : Mut0) : bool =                                             │

02:35:45 #1779 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:35:45 #1780 [Debug] > │     let v2 : bool = v1 < 4                                                   │

02:35:45 #1781 [Debug] > │     v2                                                                       │

02:35:45 #1782 [Debug] > │ and closure12 () (v0 : int32) : string =                                     │

02:35:45 #1783 [Debug] > │     let v1 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1784 [Debug] > │     v1.[int 0] <- 0                                                          │

02:35:45 #1785 [Debug] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (4)                        │

02:35:45 #1786 [Debug] > │     let v3 : Mut0 = {l0 = 0} : Mut0                                          │

02:35:45 #1787 [Debug] > │     while method9(v3) do                                                     │

02:35:45 #1788 [Debug] > │         let v5 : int32 = v3.l0                                               │

02:35:45 #1789 [Debug] > │         let v6 : int32 = 1 + v5                                              │

02:35:45 #1790 [Debug] > │         v2.[int v5] <- v6                                                    │

02:35:45 #1791 [Debug] > │         let v7 : int32 = v5 + 1                                              │

02:35:45 #1792 [Debug] > │         v3.l0 <- v7                                                          │

02:35:45 #1793 [Debug] > │         ()                                                                   │

02:35:45 #1794 [Debug] > │     let v8 : int32 = v2.Length                                               │

02:35:45 #1795 [Debug] > │     let v9 : int32 = v1.Length                                               │

02:35:45 #1796 [Debug] > │     let v10 : int32 = v8 + v9                                                │

02:35:45 #1797 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (v10)                     │

02:35:45 #1798 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1799 [Debug] > │     while method1(v10, v12) do                                               │

02:35:45 #1800 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:35:45 #1801 [Debug] > │         let v15 : bool = v14 < v8                                            │

02:35:45 #1802 [Debug] > │         let v19 : int32 =                                                    │

02:35:45 #1803 [Debug] > │             if v15 then                                                      │

02:35:45 #1804 [Debug] > │                 let v16 : int32 = v2.[int v14]                               │

02:35:45 #1805 [Debug] > │                 v16                                                          │

02:35:45 #1806 [Debug] > │             else                                                             │

02:35:45 #1807 [Debug] > │                 let v17 : int32 = v14 - v8                                   │

02:35:45 #1808 [Debug] > │                 let v18 : int32 = v1.[int v17]                               │

02:35:45 #1809 [Debug] > │                 v18                                                          │

02:35:45 #1810 [Debug] > │         v11.[int v14] <- v19                                                 │

02:35:45 #1811 [Debug] > │         let v20 : int32 = v14 + 1                                            │

02:35:45 #1812 [Debug] > │         v12.l0 <- v20                                                        │

02:35:45 #1813 [Debug] > │         ()                                                                   │

02:35:45 #1814 [Debug] > │     let v21 : int32 = v11.Length                                             │

02:35:45 #1815 [Debug] > │     let v22 : (string []) = Array.zeroCreate<string> (v21)                   │

02:35:45 #1816 [Debug] > │     let v23 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1817 [Debug] > │     while method1(v21, v23) do                                               │

02:35:45 #1818 [Debug] > │         let v25 : int32 = v23.l0                                             │

02:35:45 #1819 [Debug] > │         let v26 : int32 = v11.[int v25]                                      │

02:35:45 #1820 [Debug] > │         let v27 : string = "abcde".[int v26..int 4]                          │

02:35:45 #1821 [Debug] > │         let v28 : int32 = v26 - 1                                            │

02:35:45 #1822 [Debug] > │         let v29 : string = "abcde".[int 0..int v28]                          │

02:35:45 #1823 [Debug] > │         let v30 : string = v27 + v29                                         │

02:35:45 #1824 [Debug] > │         v22.[int v25] <- v30                                                 │

02:35:45 #1825 [Debug] > │         let v31 : int32 = v25 + 1                                            │

02:35:45 #1826 [Debug] > │         v23.l0 <- v31                                                        │

02:35:45 #1827 [Debug] > │         ()                                                                   │

02:35:45 #1828 [Debug] > │     let v32 : string = " "                                                   │

02:35:45 #1829 [Debug] > │     let v33 : string = v22 |> String.concat v32                              │

02:35:45 #1830 [Debug] > │     v33                                                                      │

02:35:45 #1831 [Debug] > │ and closure13 () (v0 : int32) : string =                                     │

02:35:45 #1832 [Debug] > │     let v1 : string = "abc"                                                  │

02:35:45 #1833 [Debug] > │     let v2 : string = ""                                                     │

02:35:45 #1834 [Debug] > │     let v3 : string = v1 + v2                                                │

02:35:45 #1835 [Debug] > │     let v4 : string = "c"                                                    │

02:35:45 #1836 [Debug] > │     let v5 : string = "ab"                                                   │

02:35:45 #1837 [Debug] > │     let v6 : string = v4 + v5                                                │

02:35:45 #1838 [Debug] > │     let v7 : string = "bc"                                                   │

02:35:45 #1839 [Debug] > │     let v8 : string = "a"                                                    │

02:35:45 #1840 [Debug] > │     let v9 : string = v7 + v8                                                │

02:35:45 #1841 [Debug] > │     let v10 : UH0 = UH0_1                                                    │

02:35:45 #1842 [Debug] > │     let v11 : UH0 = UH0_0(v3, v10)                                           │

02:35:45 #1843 [Debug] > │     let v12 : UH0 = UH0_0(v6, v11)                                           │

02:35:45 #1844 [Debug] > │     let v13 : UH0 = UH0_0(v9, v12)                                           │

02:35:45 #1845 [Debug] > │     let v14 : (string []) = method2(v13)                                     │

02:35:45 #1846 [Debug] > │     let v15 : string = " "                                                   │

02:35:45 #1847 [Debug] > │     let v16 : string = v14 |> String.concat v15                              │

02:35:45 #1848 [Debug] > │     v16                                                                      │

02:35:45 #1849 [Debug] > │ and method10 (v0 : Mut0) : bool =                                            │

02:35:45 #1850 [Debug] > │     let v1 : int32 = v0.l0                                                   │

02:35:45 #1851 [Debug] > │     let v2 : bool = v1 < 2                                                   │

02:35:45 #1852 [Debug] > │     v2                                                                       │

02:35:45 #1853 [Debug] > │ and closure14 () (v0 : int32) : string =                                     │

02:35:45 #1854 [Debug] > │     let v1 : (int32 []) = Array.zeroCreate<int32> (1)                        │

02:35:45 #1855 [Debug] > │     v1.[int 0] <- 0                                                          │

02:35:45 #1856 [Debug] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (2)                        │

02:35:45 #1857 [Debug] > │     let v3 : Mut0 = {l0 = 0} : Mut0                                          │

02:35:45 #1858 [Debug] > │     while method10(v3) do                                                    │

02:35:45 #1859 [Debug] > │         let v5 : int32 = v3.l0                                               │

02:35:45 #1860 [Debug] > │         let v6 : int32 = 1 + v5                                              │

02:35:45 #1861 [Debug] > │         v2.[int v5] <- v6                                                    │

02:35:45 #1862 [Debug] > │         let v7 : int32 = v5 + 1                                              │

02:35:45 #1863 [Debug] > │         v3.l0 <- v7                                                          │

02:35:45 #1864 [Debug] > │         ()                                                                   │

02:35:45 #1865 [Debug] > │     let v8 : int32 = v2.Length                                               │

02:35:45 #1866 [Debug] > │     let v9 : int32 = v1.Length                                               │

02:35:45 #1867 [Debug] > │     let v10 : int32 = v8 + v9                                                │

02:35:45 #1868 [Debug] > │     let v11 : (int32 []) = Array.zeroCreate<int32> (v10)                     │

02:35:45 #1869 [Debug] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1870 [Debug] > │     while method1(v10, v12) do                                               │

02:35:45 #1871 [Debug] > │         let v14 : int32 = v12.l0                                             │

02:35:45 #1872 [Debug] > │         let v15 : bool = v14 < v8                                            │

02:35:45 #1873 [Debug] > │         let v19 : int32 =                                                    │

02:35:45 #1874 [Debug] > │             if v15 then                                                      │

02:35:45 #1875 [Debug] > │                 let v16 : int32 = v2.[int v14]                               │

02:35:45 #1876 [Debug] > │                 v16                                                          │

02:35:45 #1877 [Debug] > │             else                                                             │

02:35:45 #1878 [Debug] > │                 let v17 : int32 = v14 - v8                                   │

02:35:45 #1879 [Debug] > │                 let v18 : int32 = v1.[int v17]                               │

02:35:45 #1880 [Debug] > │                 v18                                                          │

02:35:45 #1881 [Debug] > │         v11.[int v14] <- v19                                                 │

02:35:45 #1882 [Debug] > │         let v20 : int32 = v14 + 1                                            │

02:35:45 #1883 [Debug] > │         v12.l0 <- v20                                                        │

02:35:45 #1884 [Debug] > │         ()                                                                   │

02:35:45 #1885 [Debug] > │     let v21 : int32 = v11.Length                                             │

02:35:45 #1886 [Debug] > │     let v22 : (string []) = Array.zeroCreate<string> (v21)                   │

02:35:45 #1887 [Debug] > │     let v23 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #1888 [Debug] > │     while method1(v21, v23) do                                               │

02:35:45 #1889 [Debug] > │         let v25 : int32 = v23.l0                                             │

02:35:45 #1890 [Debug] > │         let v26 : int32 = v11.[int v25]                                      │

02:35:45 #1891 [Debug] > │         let v27 : string = "abc".[int v26..int 2]                            │

02:35:45 #1892 [Debug] > │         let v28 : int32 = v26 - 1                                            │

02:35:45 #1893 [Debug] > │         let v29 : string = "abc".[int 0..int v28]                            │

02:35:45 #1894 [Debug] > │         let v30 : string = v27 + v29                                         │

02:35:45 #1895 [Debug] > │         v22.[int v25] <- v30                                                 │

02:35:45 #1896 [Debug] > │         let v31 : int32 = v25 + 1                                            │

02:35:45 #1897 [Debug] > │         v23.l0 <- v31                                                        │

02:35:45 #1898 [Debug] > │         ()                                                                   │

02:35:45 #1899 [Debug] > │     let v32 : string = " "                                                   │

02:35:45 #1900 [Debug] > │     let v33 : string = v22 |> String.concat v32                              │

02:35:45 #1901 [Debug] > │     v33                                                                      │

02:35:45 #1902 [Debug] > │ and method12 (v0 : UH1, v1 : int32) : int32 =                                │

02:35:45 #1903 [Debug] > │     match v0 with                                                            │

02:35:45 #1904 [Debug] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

02:35:45 #1905 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:35:45 #1906 [Debug] > │         method12(v4, v5)                                                     │

02:35:45 #1907 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:35:45 #1908 [Debug] > │         v1                                                                   │

02:35:45 #1909 [Debug] > │ and method13 (v0 : (struct (int64 * int64) []), v1 : UH1, v2 : int32) :      │

02:35:45 #1910 [Debug] > │ int32 =                                                                      │

02:35:45 #1911 [Debug] > │     match v1 with                                                            │

02:35:45 #1912 [Debug] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

02:35:45 #1913 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:35:45 #1914 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:35:45 #1915 [Debug] > │         method13(v0, v5, v6)                                                 │

02:35:45 #1916 [Debug] > │     | UH1_1 -> (* Nil *)                                                     │

02:35:45 #1917 [Debug] > │         v2                                                                   │

02:35:45 #1918 [Debug] > │ and method11 (v0 : UH1) : (struct (int64 * int64) []) =                      │

02:35:45 #1919 [Debug] > │     let v1 : int32 = 0                                                       │

02:35:45 #1920 [Debug] > │     let v2 : int32 = method12(v0, v1)                                        │

02:35:45 #1921 [Debug] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

02:35:45 #1922 [Debug] > │ int64)> (v2)                                                                 │

02:35:45 #1923 [Debug] > │     let v4 : int32 = 0                                                       │

02:35:45 #1924 [Debug] > │     let v5 : int32 = method13(v3, v0, v4)                                    │

02:35:45 #1925 [Debug] > │     v3                                                                       │

02:35:45 #1926 [Debug] > │ and closure15 () struct (v0 : int64, v1 : int64) : int64 =                   │

02:35:45 #1927 [Debug] > │     v1                                                                       │

02:35:45 #1928 [Debug] > │ and method15 (v0 : UH2, v1 : int32) : int32 =                                │

02:35:45 #1929 [Debug] > │     match v0 with                                                            │

02:35:45 #1930 [Debug] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

02:35:45 #1931 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:35:45 #1932 [Debug] > │         method15(v3, v4)                                                     │

02:35:45 #1933 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:35:45 #1934 [Debug] > │         v1                                                                   │

02:35:45 #1935 [Debug] > │ and method16 (v0 : ((string []) []), v1 : UH2, v2 : int32) : int32 =         │

02:35:45 #1936 [Debug] > │     match v1 with                                                            │

02:35:45 #1937 [Debug] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

02:35:45 #1938 [Debug] > │         v0.[int v2] <- v3                                                    │

02:35:45 #1939 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:35:45 #1940 [Debug] > │         method16(v0, v4, v5)                                                 │

02:35:45 #1941 [Debug] > │     | UH2_1 -> (* Nil *)                                                     │

02:35:45 #1942 [Debug] > │         v2                                                                   │

02:35:45 #1943 [Debug] > │ and method14 (v0 : UH2) : ((string []) []) =                                 │

02:35:45 #1944 [Debug] > │     let v1 : int32 = 0                                                       │

02:35:45 #1945 [Debug] > │     let v2 : int32 = method15(v0, v1)                                        │

02:35:45 #1946 [Debug] > │     let v3 : ((string []) []) = Array.zeroCreate<(string [])> (v2)           │

02:35:45 #1947 [Debug] > │     let v4 : int32 = 0                                                       │

02:35:45 #1948 [Debug] > │     let v5 : int32 = method16(v3, v0, v4)                                    │

02:35:45 #1949 [Debug] > │     v3                                                                       │

02:35:45 #1950 [Debug] > │ and closure16 () (v0 : int64) : US1 =                                        │

02:35:45 #1951 [Debug] > │     US1_1(v0)                                                                │

02:35:45 #1952 [Debug] > │ and method17 (v0 : int32, v1 : Mut1) : bool =                                │

02:35:45 #1953 [Debug] > │     let v2 : int32 = v1.l0                                                   │

02:35:45 #1954 [Debug] > │     let v3 : bool = v2 < v0                                                  │

02:35:45 #1955 [Debug] > │     v3                                                                       │

02:35:45 #1956 [Debug] > │ and method18 (v0 : UH3, v1 : UH3) : UH3 =                                    │

02:35:45 #1957 [Debug] > │     match v0 with                                                            │

02:35:45 #1958 [Debug] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

02:35:45 #1959 [Debug] > │         let v5 : UH3 = UH3_0(v2, v3, v1)                                     │

02:35:45 #1960 [Debug] > │         method18(v4, v5)                                                     │

02:35:45 #1961 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:35:45 #1962 [Debug] > │         v1                                                                   │

02:35:45 #1963 [Debug] > │ and method20 (v0 : UH3, v1 : int32) : int32 =                                │

02:35:45 #1964 [Debug] > │     match v0 with                                                            │

02:35:45 #1965 [Debug] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

02:35:45 #1966 [Debug] > │         let v5 : int32 = v1 + 1                                              │

02:35:45 #1967 [Debug] > │         method20(v4, v5)                                                     │

02:35:45 #1968 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:35:45 #1969 [Debug] > │         v1                                                                   │

02:35:45 #1970 [Debug] > │ and method21 (v0 : (struct (int32 * int64) []), v1 : UH3, v2 : int32) :      │

02:35:45 #1971 [Debug] > │ int32 =                                                                      │

02:35:45 #1972 [Debug] > │     match v1 with                                                            │

02:35:45 #1973 [Debug] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

02:35:45 #1974 [Debug] > │         v0.[int v2] <- struct (v3, v4)                                       │

02:35:45 #1975 [Debug] > │         let v6 : int32 = v2 + 1                                              │

02:35:45 #1976 [Debug] > │         method21(v0, v5, v6)                                                 │

02:35:45 #1977 [Debug] > │     | UH3_1 -> (* Nil *)                                                     │

02:35:45 #1978 [Debug] > │         v2                                                                   │

02:35:45 #1979 [Debug] > │ and method19 (v0 : UH3) : (struct (int32 * int64) []) =                      │

02:35:45 #1980 [Debug] > │     let v1 : int32 = 0                                                       │

02:35:45 #1981 [Debug] > │     let v2 : int32 = method20(v0, v1)                                        │

02:35:45 #1982 [Debug] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

02:35:45 #1983 [Debug] > │ int64)> (v2)                                                                 │

02:35:45 #1984 [Debug] > │     let v4 : int32 = 0                                                       │

02:35:45 #1985 [Debug] > │     let v5 : int32 = method21(v3, v0, v4)                                    │

02:35:45 #1986 [Debug] > │     v3                                                                       │

02:35:45 #1987 [Debug] > │ and closure17 () () : unit =                                                 │

02:35:45 #1988 [Debug] > │     ()                                                                       │

02:35:45 #1989 [Debug] > │ and closure18 () () : unit =                                                 │

02:35:45 #1990 [Debug] > │     System.Console.ResetColor ()                                             │

02:35:45 #1991 [Debug] > │     ()                                                                       │

02:35:45 #1992 [Debug] > │ and closure19 () () : unit =                                                 │

02:35:45 #1993 [Debug] > │     ()                                                                       │

02:35:45 #1994 [Debug] > │ and closure20 (v0 : System.ConsoleColor) () : unit =                         │

02:35:45 #1995 [Debug] > │     System.Console.ForegroundColor <- v0                                     │

02:35:45 #1996 [Debug] > │     ()                                                                       │

02:35:45 #1997 [Debug] > │ and method23 (v0 : UH4, v1 : int32) : int32 =                                │

02:35:45 #1998 [Debug] > │     match v0 with                                                            │

02:35:45 #1999 [Debug] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

02:35:45 #2000 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:35:45 #2001 [Debug] > │         method23(v3, v4)                                                     │

02:35:45 #2002 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:35:45 #2003 [Debug] > │         v1                                                                   │

02:35:45 #2004 [Debug] > │ and method24 (v0 : (float []), v1 : UH4, v2 : int32) : int32 =               │

02:35:45 #2005 [Debug] > │     match v1 with                                                            │

02:35:45 #2006 [Debug] > │     | UH4_0(v3, v4) -> (* Cons *)                                            │

02:35:45 #2007 [Debug] > │         v0.[int v2] <- v3                                                    │

02:35:45 #2008 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:35:45 #2009 [Debug] > │         method24(v0, v4, v5)                                                 │

02:35:45 #2010 [Debug] > │     | UH4_1 -> (* Nil *)                                                     │

02:35:45 #2011 [Debug] > │         v2                                                                   │

02:35:45 #2012 [Debug] > │ and method22 (v0 : UH4) : (float []) =                                       │

02:35:45 #2013 [Debug] > │     let v1 : int32 = 0                                                       │

02:35:45 #2014 [Debug] > │     let v2 : int32 = method23(v0, v1)                                        │

02:35:45 #2015 [Debug] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

02:35:45 #2016 [Debug] > │     let v4 : int32 = 0                                                       │

02:35:45 #2017 [Debug] > │     let v5 : int32 = method24(v3, v0, v4)                                    │

02:35:45 #2018 [Debug] > │     v3                                                                       │

02:35:45 #2019 [Debug] > │ and method26 (v0 : UH5, v1 : int32) : int32 =                                │

02:35:45 #2020 [Debug] > │     match v0 with                                                            │

02:35:45 #2021 [Debug] > │     | UH5_0(v2, v3) -> (* Cons *)                                            │

02:35:45 #2022 [Debug] > │         let v4 : int32 = v1 + 1                                              │

02:35:45 #2023 [Debug] > │         method26(v3, v4)                                                     │

02:35:45 #2024 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:35:45 #2025 [Debug] > │         v1                                                                   │

02:35:45 #2026 [Debug] > │ and method27 (v0 : ((float []) []), v1 : UH5, v2 : int32) : int32 =          │

02:35:45 #2027 [Debug] > │     match v1 with                                                            │

02:35:45 #2028 [Debug] > │     | UH5_0(v3, v4) -> (* Cons *)                                            │

02:35:45 #2029 [Debug] > │         v0.[int v2] <- v3                                                    │

02:35:45 #2030 [Debug] > │         let v5 : int32 = v2 + 1                                              │

02:35:45 #2031 [Debug] > │         method27(v0, v4, v5)                                                 │

02:35:45 #2032 [Debug] > │     | UH5_1 -> (* Nil *)                                                     │

02:35:45 #2033 [Debug] > │         v2                                                                   │

02:35:45 #2034 [Debug] > │ and method25 (v0 : UH5) : ((float []) []) =                                  │

02:35:45 #2035 [Debug] > │     let v1 : int32 = 0                                                       │

02:35:45 #2036 [Debug] > │     let v2 : int32 = method26(v0, v1)                                        │

02:35:45 #2037 [Debug] > │     let v3 : ((float []) []) = Array.zeroCreate<(float [])> (v2)             │

02:35:45 #2038 [Debug] > │     let v4 : int32 = 0                                                       │

02:35:45 #2039 [Debug] > │     let v5 : int32 = method27(v3, v0, v4)                                    │

02:35:45 #2040 [Debug] > │     v3                                                                       │

02:35:45 #2041 [Debug] > │ and closure21 () struct (v0 : int32, v1 : int64) : int64 =                   │

02:35:45 #2042 [Debug] > │     v1                                                                       │

02:35:45 #2043 [Debug] > │ and closure0 () () : unit =                                                  │

02:35:45 #2044 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:35:45 #2045 [Debug] > │     let v1 : string = nameof v0                                              │

02:35:45 #2046 [Debug] > │     let v2 : string = "CI"                                                   │

02:35:45 #2047 [Debug] > │     let v3 : string = System.Environment.GetEnvironmentVariable v2           │

02:35:45 #2048 [Debug] > │     let v4 : string = $"%A{v3}"                                              │

02:35:45 #2049 [Debug] > │     let v6 : bool = v4 = "<null>"                                            │

02:35:45 #2050 [Debug] > │     let v7 : bool = v6 <> true                                               │

02:35:45 #2051 [Debug] > │     let v8 : int32 =                                                         │

02:35:45 #2052 [Debug] > │         if v7 then                                                           │

02:35:45 #2053 [Debug] > │             2000000                                                          │

02:35:45 #2054 [Debug] > │         else                                                                 │

02:35:45 #2055 [Debug] > │             2000                                                             │

02:35:45 #2056 [Debug] > │     let v9 : string = ""                                                     │

02:35:45 #2057 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2058 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2059 [Debug] > │     let v10 : string = $"Test: {v1}"                                         │

02:35:45 #2060 [Debug] > │     System.Console.WriteLine v10                                             │

02:35:45 #2061 [Debug] > │     let v11 : string = "z"                                                   │

02:35:45 #2062 [Debug] > │     let v12 : string = v11.ToString ()                                       │

02:35:45 #2063 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2064 [Debug] > │     let v13 : string = $"Solution: {v12}  "                                  │

02:35:45 #2065 [Debug] > │     System.Console.WriteLine v13                                             │

02:35:45 #2066 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2067 [Debug] > │     let v14 : (unit -> unit) = closure1()                                    │

02:35:45 #2068 [Debug] > │     v14 ()                                                                   │

02:35:45 #2069 [Debug] > │     #else                                                                    │

02:35:45 #2070 [Debug] > │     let v15 : (unit -> unit) = closure2()                                    │

02:35:45 #2071 [Debug] > │     v15 ()                                                                   │

02:35:45 #2072 [Debug] > │     #endif                                                                   │

02:35:45 #2073 [Debug] > │     let v16 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #2074 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2075 [Debug] > │     let v17 : System.Diagnostics.Stopwatch = v16 ()                          │

02:35:45 #2076 [Debug] > │     v17.Start ()                                                             │

02:35:45 #2077 [Debug] > │     let v18 : int64 = v17.ElapsedMilliseconds                                │

02:35:45 #2078 [Debug] > │     let v19 : int32 = v8 + 1                                                 │

02:35:45 #2079 [Debug] > │     let v20 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #2080 [Debug] > │     let v21 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #2081 [Debug] > │     while method1(v19, v21) do                                               │

02:35:45 #2082 [Debug] > │         let v23 : int32 = v21.l0                                             │

02:35:45 #2083 [Debug] > │         v20.[int v23] <- v23                                                 │

02:35:45 #2084 [Debug] > │         let v24 : int32 = v23 + 1                                            │

02:35:45 #2085 [Debug] > │         v21.l0 <- v24                                                        │

02:35:45 #2086 [Debug] > │         ()                                                                   │

02:35:45 #2087 [Debug] > │     let v25 : (int32 -> string) = closure3()                                 │

02:35:45 #2088 [Debug] > │     let v26 : (string []) = v20 |> Array.Parallel.map v25                    │

02:35:45 #2089 [Debug] > │     let v27 : int32 = v26.Length                                             │

02:35:45 #2090 [Debug] > │     let v28 : int32 = v27 - 1                                                │

02:35:45 #2091 [Debug] > │     let v29 : string = v26.[int v28]                                         │

02:35:45 #2092 [Debug] > │     let v30 : int64 = v17.ElapsedMilliseconds                                │

02:35:45 #2093 [Debug] > │     let v31 : int64 = v30 - v18                                              │

02:35:45 #2094 [Debug] > │     let v32 : string = "FA"                                                  │

02:35:45 #2095 [Debug] > │     let v33 : string = $"Test case {1 + 1}. {v32}. Time: {v31}  "            │

02:35:45 #2096 [Debug] > │     System.Console.WriteLine v33                                             │

02:35:45 #2097 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2098 [Debug] > │     v14 ()                                                                   │

02:35:45 #2099 [Debug] > │     #else                                                                    │

02:35:45 #2100 [Debug] > │     v15 ()                                                                   │

02:35:45 #2101 [Debug] > │     #endif                                                                   │

02:35:45 #2102 [Debug] > │     let v34 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #2103 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2104 [Debug] > │     let v35 : System.Diagnostics.Stopwatch = v34 ()                          │

02:35:45 #2105 [Debug] > │     v35.Start ()                                                             │

02:35:45 #2106 [Debug] > │     let v36 : int64 = v35.ElapsedMilliseconds                                │

02:35:45 #2107 [Debug] > │     let v37 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #2108 [Debug] > │     let v38 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #2109 [Debug] > │     while method1(v19, v38) do                                               │

02:35:45 #2110 [Debug] > │         let v40 : int32 = v38.l0                                             │

02:35:45 #2111 [Debug] > │         v37.[int v40] <- v40                                                 │

02:35:45 #2112 [Debug] > │         let v41 : int32 = v40 + 1                                            │

02:35:45 #2113 [Debug] > │         v38.l0 <- v41                                                        │

02:35:45 #2114 [Debug] > │         ()                                                                   │

02:35:45 #2115 [Debug] > │     let v42 : (int32 -> string) = closure4()                                 │

02:35:45 #2116 [Debug] > │     let v43 : (string []) = v37 |> Array.Parallel.map v42                    │

02:35:45 #2117 [Debug] > │     let v44 : int32 = v43.Length                                             │

02:35:45 #2118 [Debug] > │     let v45 : int32 = v44 - 1                                                │

02:35:45 #2119 [Debug] > │     let v46 : string = v43.[int v45]                                         │

02:35:45 #2120 [Debug] > │     let v47 : int64 = v35.ElapsedMilliseconds                                │

02:35:45 #2121 [Debug] > │     let v48 : int64 = v47 - v36                                              │

02:35:45 #2122 [Debug] > │     let v49 : string = "F"                                                   │

02:35:45 #2123 [Debug] > │     let v50 : string = $"Test case {0 + 1}. {v49}. Time: {v48}  "            │

02:35:45 #2124 [Debug] > │     System.Console.WriteLine v50                                             │

02:35:45 #2125 [Debug] > │     let v51 : string = v11.ToString ()                                       │

02:35:45 #2126 [Debug] > │     let v52 : string = v46.ToString ()                                       │

02:35:45 #2127 [Debug] > │     let v53 : string = "aa"                                                  │

02:35:45 #2128 [Debug] > │     let v54 : string = v53.ToString ()                                       │

02:35:45 #2129 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2130 [Debug] > │     let v55 : string = $"Solution: {v54}  "                                  │

02:35:45 #2131 [Debug] > │     System.Console.WriteLine v55                                             │

02:35:45 #2132 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2133 [Debug] > │     v14 ()                                                                   │

02:35:45 #2134 [Debug] > │     #else                                                                    │

02:35:45 #2135 [Debug] > │     v15 ()                                                                   │

02:35:45 #2136 [Debug] > │     #endif                                                                   │

02:35:45 #2137 [Debug] > │     let v56 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #2138 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2139 [Debug] > │     let v57 : System.Diagnostics.Stopwatch = v56 ()                          │

02:35:45 #2140 [Debug] > │     v57.Start ()                                                             │

02:35:45 #2141 [Debug] > │     let v58 : int64 = v57.ElapsedMilliseconds                                │

02:35:45 #2142 [Debug] > │     let v59 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #2143 [Debug] > │     let v60 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #2144 [Debug] > │     while method1(v19, v60) do                                               │

02:35:45 #2145 [Debug] > │         let v62 : int32 = v60.l0                                             │

02:35:45 #2146 [Debug] > │         v59.[int v62] <- v62                                                 │

02:35:45 #2147 [Debug] > │         let v63 : int32 = v62 + 1                                            │

02:35:45 #2148 [Debug] > │         v60.l0 <- v63                                                        │

02:35:45 #2149 [Debug] > │         ()                                                                   │

02:35:45 #2150 [Debug] > │     let v64 : (int32 -> string) = closure5()                                 │

02:35:45 #2151 [Debug] > │     let v65 : (string []) = v59 |> Array.Parallel.map v64                    │

02:35:45 #2152 [Debug] > │     let v66 : int32 = v65.Length                                             │

02:35:45 #2153 [Debug] > │     let v67 : int32 = v66 - 1                                                │

02:35:45 #2154 [Debug] > │     let v68 : string = v65.[int v67]                                         │

02:35:45 #2155 [Debug] > │     let v69 : int64 = v57.ElapsedMilliseconds                                │

02:35:45 #2156 [Debug] > │     let v70 : int64 = v69 - v58                                              │

02:35:45 #2157 [Debug] > │     let v71 : string = $"Test case {1 + 1}. {v32}. Time: {v70}  "            │

02:35:45 #2158 [Debug] > │     System.Console.WriteLine v71                                             │

02:35:45 #2159 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2160 [Debug] > │     v14 ()                                                                   │

02:35:45 #2161 [Debug] > │     #else                                                                    │

02:35:45 #2162 [Debug] > │     v15 ()                                                                   │

02:35:45 #2163 [Debug] > │     #endif                                                                   │

02:35:45 #2164 [Debug] > │     let v72 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #2165 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2166 [Debug] > │     let v73 : System.Diagnostics.Stopwatch = v72 ()                          │

02:35:45 #2167 [Debug] > │     v73.Start ()                                                             │

02:35:45 #2168 [Debug] > │     let v74 : int64 = v73.ElapsedMilliseconds                                │

02:35:45 #2169 [Debug] > │     let v75 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #2170 [Debug] > │     let v76 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #2171 [Debug] > │     while method1(v19, v76) do                                               │

02:35:45 #2172 [Debug] > │         let v78 : int32 = v76.l0                                             │

02:35:45 #2173 [Debug] > │         v75.[int v78] <- v78                                                 │

02:35:45 #2174 [Debug] > │         let v79 : int32 = v78 + 1                                            │

02:35:45 #2175 [Debug] > │         v76.l0 <- v79                                                        │

02:35:45 #2176 [Debug] > │         ()                                                                   │

02:35:45 #2177 [Debug] > │     let v80 : (int32 -> string) = closure6()                                 │

02:35:45 #2178 [Debug] > │     let v81 : (string []) = v75 |> Array.Parallel.map v80                    │

02:35:45 #2179 [Debug] > │     let v82 : int32 = v81.Length                                             │

02:35:45 #2180 [Debug] > │     let v83 : int32 = v82 - 1                                                │

02:35:45 #2181 [Debug] > │     let v84 : string = v81.[int v83]                                         │

02:35:45 #2182 [Debug] > │     let v85 : int64 = v73.ElapsedMilliseconds                                │

02:35:45 #2183 [Debug] > │     let v86 : int64 = v85 - v74                                              │

02:35:45 #2184 [Debug] > │     let v87 : string = $"Test case {0 + 1}. {v49}. Time: {v86}  "            │

02:35:45 #2185 [Debug] > │     System.Console.WriteLine v87                                             │

02:35:45 #2186 [Debug] > │     let v88 : string = "aa aa"                                               │

02:35:45 #2187 [Debug] > │     let v89 : string = v88.ToString ()                                       │

02:35:45 #2188 [Debug] > │     let v90 : string = v84.ToString ()                                       │

02:35:45 #2189 [Debug] > │     let v91 : string = "abab"                                                │

02:35:45 #2190 [Debug] > │     let v92 : string = v91.ToString ()                                       │

02:35:45 #2191 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2192 [Debug] > │     let v93 : string = $"Solution: {v92}  "                                  │

02:35:45 #2193 [Debug] > │     System.Console.WriteLine v93                                             │

02:35:45 #2194 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2195 [Debug] > │     v14 ()                                                                   │

02:35:45 #2196 [Debug] > │     #else                                                                    │

02:35:45 #2197 [Debug] > │     v15 ()                                                                   │

02:35:45 #2198 [Debug] > │     #endif                                                                   │

02:35:45 #2199 [Debug] > │     let v94 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #2200 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2201 [Debug] > │     let v95 : System.Diagnostics.Stopwatch = v94 ()                          │

02:35:45 #2202 [Debug] > │     v95.Start ()                                                             │

02:35:45 #2203 [Debug] > │     let v96 : int64 = v95.ElapsedMilliseconds                                │

02:35:45 #2204 [Debug] > │     let v97 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #2205 [Debug] > │     let v98 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #2206 [Debug] > │     while method1(v19, v98) do                                               │

02:35:45 #2207 [Debug] > │         let v100 : int32 = v98.l0                                            │

02:35:45 #2208 [Debug] > │         v97.[int v100] <- v100                                               │

02:35:45 #2209 [Debug] > │         let v101 : int32 = v100 + 1                                          │

02:35:45 #2210 [Debug] > │         v98.l0 <- v101                                                       │

02:35:45 #2211 [Debug] > │         ()                                                                   │

02:35:45 #2212 [Debug] > │     let v102 : (int32 -> string) = closure7()                                │

02:35:45 #2213 [Debug] > │     let v103 : (string []) = v97 |> Array.Parallel.map v102                  │

02:35:45 #2214 [Debug] > │     let v104 : int32 = v103.Length                                           │

02:35:45 #2215 [Debug] > │     let v105 : int32 = v104 - 1                                              │

02:35:45 #2216 [Debug] > │     let v106 : string = v103.[int v105]                                      │

02:35:45 #2217 [Debug] > │     let v107 : int64 = v95.ElapsedMilliseconds                               │

02:35:45 #2218 [Debug] > │     let v108 : int64 = v107 - v96                                            │

02:35:45 #2219 [Debug] > │     let v109 : string = $"Test case {1 + 1}. {v32}. Time: {v108}  "          │

02:35:45 #2220 [Debug] > │     System.Console.WriteLine v109                                            │

02:35:45 #2221 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2222 [Debug] > │     v14 ()                                                                   │

02:35:45 #2223 [Debug] > │     #else                                                                    │

02:35:45 #2224 [Debug] > │     v15 ()                                                                   │

02:35:45 #2225 [Debug] > │     #endif                                                                   │

02:35:45 #2226 [Debug] > │     let v110 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2227 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2228 [Debug] > │     let v111 : System.Diagnostics.Stopwatch = v110 ()                        │

02:35:45 #2229 [Debug] > │     v111.Start ()                                                            │

02:35:45 #2230 [Debug] > │     let v112 : int64 = v111.ElapsedMilliseconds                              │

02:35:45 #2231 [Debug] > │     let v113 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2232 [Debug] > │     let v114 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2233 [Debug] > │     while method1(v19, v114) do                                              │

02:35:45 #2234 [Debug] > │         let v116 : int32 = v114.l0                                           │

02:35:45 #2235 [Debug] > │         v113.[int v116] <- v116                                              │

02:35:45 #2236 [Debug] > │         let v117 : int32 = v116 + 1                                          │

02:35:45 #2237 [Debug] > │         v114.l0 <- v117                                                      │

02:35:45 #2238 [Debug] > │         ()                                                                   │

02:35:45 #2239 [Debug] > │     let v118 : (int32 -> string) = closure8()                                │

02:35:45 #2240 [Debug] > │     let v119 : (string []) = v113 |> Array.Parallel.map v118                 │

02:35:45 #2241 [Debug] > │     let v120 : int32 = v119.Length                                           │

02:35:45 #2242 [Debug] > │     let v121 : int32 = v120 - 1                                              │

02:35:45 #2243 [Debug] > │     let v122 : string = v119.[int v121]                                      │

02:35:45 #2244 [Debug] > │     let v123 : int64 = v111.ElapsedMilliseconds                              │

02:35:45 #2245 [Debug] > │     let v124 : int64 = v123 - v112                                           │

02:35:45 #2246 [Debug] > │     let v125 : string = $"Test case {0 + 1}. {v49}. Time: {v124}  "          │

02:35:45 #2247 [Debug] > │     System.Console.WriteLine v125                                            │

02:35:45 #2248 [Debug] > │     let v126 : string = "baba abab baba abab"                                │

02:35:45 #2249 [Debug] > │     let v127 : string = v126.ToString ()                                     │

02:35:45 #2250 [Debug] > │     let v128 : string = v122.ToString ()                                     │

02:35:45 #2251 [Debug] > │     let v129 : string = "abcdefghi"                                          │

02:35:45 #2252 [Debug] > │     let v130 : string = v129.ToString ()                                     │

02:35:45 #2253 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2254 [Debug] > │     let v131 : string = $"Solution: {v130}  "                                │

02:35:45 #2255 [Debug] > │     System.Console.WriteLine v131                                            │

02:35:45 #2256 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2257 [Debug] > │     v14 ()                                                                   │

02:35:45 #2258 [Debug] > │     #else                                                                    │

02:35:45 #2259 [Debug] > │     v15 ()                                                                   │

02:35:45 #2260 [Debug] > │     #endif                                                                   │

02:35:45 #2261 [Debug] > │     let v132 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2262 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2263 [Debug] > │     let v133 : System.Diagnostics.Stopwatch = v132 ()                        │

02:35:45 #2264 [Debug] > │     v133.Start ()                                                            │

02:35:45 #2265 [Debug] > │     let v134 : int64 = v133.ElapsedMilliseconds                              │

02:35:45 #2266 [Debug] > │     let v135 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2267 [Debug] > │     let v136 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2268 [Debug] > │     while method1(v19, v136) do                                              │

02:35:45 #2269 [Debug] > │         let v138 : int32 = v136.l0                                           │

02:35:45 #2270 [Debug] > │         v135.[int v138] <- v138                                              │

02:35:45 #2271 [Debug] > │         let v139 : int32 = v138 + 1                                          │

02:35:45 #2272 [Debug] > │         v136.l0 <- v139                                                      │

02:35:45 #2273 [Debug] > │         ()                                                                   │

02:35:45 #2274 [Debug] > │     let v140 : (int32 -> string) = closure9()                                │

02:35:45 #2275 [Debug] > │     let v141 : (string []) = v135 |> Array.Parallel.map v140                 │

02:35:45 #2276 [Debug] > │     let v142 : int32 = v141.Length                                           │

02:35:45 #2277 [Debug] > │     let v143 : int32 = v142 - 1                                              │

02:35:45 #2278 [Debug] > │     let v144 : string = v141.[int v143]                                      │

02:35:45 #2279 [Debug] > │     let v145 : int64 = v133.ElapsedMilliseconds                              │

02:35:45 #2280 [Debug] > │     let v146 : int64 = v145 - v134                                           │

02:35:45 #2281 [Debug] > │     let v147 : string = $"Test case {1 + 1}. {v32}. Time: {v146}  "          │

02:35:45 #2282 [Debug] > │     System.Console.WriteLine v147                                            │

02:35:45 #2283 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2284 [Debug] > │     v14 ()                                                                   │

02:35:45 #2285 [Debug] > │     #else                                                                    │

02:35:45 #2286 [Debug] > │     v15 ()                                                                   │

02:35:45 #2287 [Debug] > │     #endif                                                                   │

02:35:45 #2288 [Debug] > │     let v148 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2289 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2290 [Debug] > │     let v149 : System.Diagnostics.Stopwatch = v148 ()                        │

02:35:45 #2291 [Debug] > │     v149.Start ()                                                            │

02:35:45 #2292 [Debug] > │     let v150 : int64 = v149.ElapsedMilliseconds                              │

02:35:45 #2293 [Debug] > │     let v151 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2294 [Debug] > │     let v152 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2295 [Debug] > │     while method1(v19, v152) do                                              │

02:35:45 #2296 [Debug] > │         let v154 : int32 = v152.l0                                           │

02:35:45 #2297 [Debug] > │         v151.[int v154] <- v154                                              │

02:35:45 #2298 [Debug] > │         let v155 : int32 = v154 + 1                                          │

02:35:45 #2299 [Debug] > │         v152.l0 <- v155                                                      │

02:35:45 #2300 [Debug] > │         ()                                                                   │

02:35:45 #2301 [Debug] > │     let v156 : (int32 -> string) = closure10()                               │

02:35:45 #2302 [Debug] > │     let v157 : (string []) = v151 |> Array.Parallel.map v156                 │

02:35:45 #2303 [Debug] > │     let v158 : int32 = v157.Length                                           │

02:35:45 #2304 [Debug] > │     let v159 : int32 = v158 - 1                                              │

02:35:45 #2305 [Debug] > │     let v160 : string = v157.[int v159]                                      │

02:35:45 #2306 [Debug] > │     let v161 : int64 = v149.ElapsedMilliseconds                              │

02:35:45 #2307 [Debug] > │     let v162 : int64 = v161 - v150                                           │

02:35:45 #2308 [Debug] > │     let v163 : string = $"Test case {0 + 1}. {v49}. Time: {v162}  "          │

02:35:45 #2309 [Debug] > │     System.Console.WriteLine v163                                            │

02:35:45 #2310 [Debug] > │     let v164 : string = "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde   │

02:35:45 #2311 [Debug] > │ ghiabcdef hiabcdefg iabcdefgh abcdefghi"                                     │

02:35:45 #2312 [Debug] > │     let v165 : string = v164.ToString ()                                     │

02:35:45 #2313 [Debug] > │     let v166 : string = v160.ToString ()                                     │

02:35:45 #2314 [Debug] > │     let v167 : string = "abcde"                                              │

02:35:45 #2315 [Debug] > │     let v168 : string = v167.ToString ()                                     │

02:35:45 #2316 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2317 [Debug] > │     let v169 : string = $"Solution: {v168}  "                                │

02:35:45 #2318 [Debug] > │     System.Console.WriteLine v169                                            │

02:35:45 #2319 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2320 [Debug] > │     v14 ()                                                                   │

02:35:45 #2321 [Debug] > │     #else                                                                    │

02:35:45 #2322 [Debug] > │     v15 ()                                                                   │

02:35:45 #2323 [Debug] > │     #endif                                                                   │

02:35:45 #2324 [Debug] > │     let v170 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2325 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2326 [Debug] > │     let v171 : System.Diagnostics.Stopwatch = v170 ()                        │

02:35:45 #2327 [Debug] > │     v171.Start ()                                                            │

02:35:45 #2328 [Debug] > │     let v172 : int64 = v171.ElapsedMilliseconds                              │

02:35:45 #2329 [Debug] > │     let v173 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2330 [Debug] > │     let v174 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2331 [Debug] > │     while method1(v19, v174) do                                              │

02:35:45 #2332 [Debug] > │         let v176 : int32 = v174.l0                                           │

02:35:45 #2333 [Debug] > │         v173.[int v176] <- v176                                              │

02:35:45 #2334 [Debug] > │         let v177 : int32 = v176 + 1                                          │

02:35:45 #2335 [Debug] > │         v174.l0 <- v177                                                      │

02:35:45 #2336 [Debug] > │         ()                                                                   │

02:35:45 #2337 [Debug] > │     let v178 : (int32 -> string) = closure11()                               │

02:35:45 #2338 [Debug] > │     let v179 : (string []) = v173 |> Array.Parallel.map v178                 │

02:35:45 #2339 [Debug] > │     let v180 : int32 = v179.Length                                           │

02:35:45 #2340 [Debug] > │     let v181 : int32 = v180 - 1                                              │

02:35:45 #2341 [Debug] > │     let v182 : string = v179.[int v181]                                      │

02:35:45 #2342 [Debug] > │     let v183 : int64 = v171.ElapsedMilliseconds                              │

02:35:45 #2343 [Debug] > │     let v184 : int64 = v183 - v172                                           │

02:35:45 #2344 [Debug] > │     let v185 : string = $"Test case {1 + 1}. {v32}. Time: {v184}  "          │

02:35:45 #2345 [Debug] > │     System.Console.WriteLine v185                                            │

02:35:45 #2346 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2347 [Debug] > │     v14 ()                                                                   │

02:35:45 #2348 [Debug] > │     #else                                                                    │

02:35:45 #2349 [Debug] > │     v15 ()                                                                   │

02:35:45 #2350 [Debug] > │     #endif                                                                   │

02:35:45 #2351 [Debug] > │     let v186 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2352 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2353 [Debug] > │     let v187 : System.Diagnostics.Stopwatch = v186 ()                        │

02:35:45 #2354 [Debug] > │     v187.Start ()                                                            │

02:35:45 #2355 [Debug] > │     let v188 : int64 = v187.ElapsedMilliseconds                              │

02:35:45 #2356 [Debug] > │     let v189 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2357 [Debug] > │     let v190 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2358 [Debug] > │     while method1(v19, v190) do                                              │

02:35:45 #2359 [Debug] > │         let v192 : int32 = v190.l0                                           │

02:35:45 #2360 [Debug] > │         v189.[int v192] <- v192                                              │

02:35:45 #2361 [Debug] > │         let v193 : int32 = v192 + 1                                          │

02:35:45 #2362 [Debug] > │         v190.l0 <- v193                                                      │

02:35:45 #2363 [Debug] > │         ()                                                                   │

02:35:45 #2364 [Debug] > │     let v194 : (int32 -> string) = closure12()                               │

02:35:45 #2365 [Debug] > │     let v195 : (string []) = v189 |> Array.Parallel.map v194                 │

02:35:45 #2366 [Debug] > │     let v196 : int32 = v195.Length                                           │

02:35:45 #2367 [Debug] > │     let v197 : int32 = v196 - 1                                              │

02:35:45 #2368 [Debug] > │     let v198 : string = v195.[int v197]                                      │

02:35:45 #2369 [Debug] > │     let v199 : int64 = v187.ElapsedMilliseconds                              │

02:35:45 #2370 [Debug] > │     let v200 : int64 = v199 - v188                                           │

02:35:45 #2371 [Debug] > │     let v201 : string = $"Test case {0 + 1}. {v49}. Time: {v200}  "          │

02:35:45 #2372 [Debug] > │     System.Console.WriteLine v201                                            │

02:35:45 #2373 [Debug] > │     let v202 : string = "bcdea cdeab deabc eabcd abcde"                      │

02:35:45 #2374 [Debug] > │     let v203 : string = v202.ToString ()                                     │

02:35:45 #2375 [Debug] > │     let v204 : string = v198.ToString ()                                     │

02:35:45 #2376 [Debug] > │     let v205 : string = "abc"                                                │

02:35:45 #2377 [Debug] > │     let v206 : string = v205.ToString ()                                     │

02:35:45 #2378 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2379 [Debug] > │     let v207 : string = $"Solution: {v206}  "                                │

02:35:45 #2380 [Debug] > │     System.Console.WriteLine v207                                            │

02:35:45 #2381 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2382 [Debug] > │     v14 ()                                                                   │

02:35:45 #2383 [Debug] > │     #else                                                                    │

02:35:45 #2384 [Debug] > │     v15 ()                                                                   │

02:35:45 #2385 [Debug] > │     #endif                                                                   │

02:35:45 #2386 [Debug] > │     let v208 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2387 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2388 [Debug] > │     let v209 : System.Diagnostics.Stopwatch = v208 ()                        │

02:35:45 #2389 [Debug] > │     v209.Start ()                                                            │

02:35:45 #2390 [Debug] > │     let v210 : int64 = v209.ElapsedMilliseconds                              │

02:35:45 #2391 [Debug] > │     let v211 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2392 [Debug] > │     let v212 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2393 [Debug] > │     while method1(v19, v212) do                                              │

02:35:45 #2394 [Debug] > │         let v214 : int32 = v212.l0                                           │

02:35:45 #2395 [Debug] > │         v211.[int v214] <- v214                                              │

02:35:45 #2396 [Debug] > │         let v215 : int32 = v214 + 1                                          │

02:35:45 #2397 [Debug] > │         v212.l0 <- v215                                                      │

02:35:45 #2398 [Debug] > │         ()                                                                   │

02:35:45 #2399 [Debug] > │     let v216 : (int32 -> string) = closure13()                               │

02:35:45 #2400 [Debug] > │     let v217 : (string []) = v211 |> Array.Parallel.map v216                 │

02:35:45 #2401 [Debug] > │     let v218 : int32 = v217.Length                                           │

02:35:45 #2402 [Debug] > │     let v219 : int32 = v218 - 1                                              │

02:35:45 #2403 [Debug] > │     let v220 : string = v217.[int v219]                                      │

02:35:45 #2404 [Debug] > │     let v221 : int64 = v209.ElapsedMilliseconds                              │

02:35:45 #2405 [Debug] > │     let v222 : int64 = v221 - v210                                           │

02:35:45 #2406 [Debug] > │     let v223 : string = $"Test case {1 + 1}. {v32}. Time: {v222}  "          │

02:35:45 #2407 [Debug] > │     System.Console.WriteLine v223                                            │

02:35:45 #2408 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2409 [Debug] > │     v14 ()                                                                   │

02:35:45 #2410 [Debug] > │     #else                                                                    │

02:35:45 #2411 [Debug] > │     v15 ()                                                                   │

02:35:45 #2412 [Debug] > │     #endif                                                                   │

02:35:45 #2413 [Debug] > │     let v224 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:45 #2414 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #2415 [Debug] > │     let v225 : System.Diagnostics.Stopwatch = v224 ()                        │

02:35:45 #2416 [Debug] > │     v225.Start ()                                                            │

02:35:45 #2417 [Debug] > │     let v226 : int64 = v225.ElapsedMilliseconds                              │

02:35:45 #2418 [Debug] > │     let v227 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:45 #2419 [Debug] > │     let v228 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2420 [Debug] > │     while method1(v19, v228) do                                              │

02:35:45 #2421 [Debug] > │         let v230 : int32 = v228.l0                                           │

02:35:45 #2422 [Debug] > │         v227.[int v230] <- v230                                              │

02:35:45 #2423 [Debug] > │         let v231 : int32 = v230 + 1                                          │

02:35:45 #2424 [Debug] > │         v228.l0 <- v231                                                      │

02:35:45 #2425 [Debug] > │         ()                                                                   │

02:35:45 #2426 [Debug] > │     let v232 : (int32 -> string) = closure14()                               │

02:35:45 #2427 [Debug] > │     let v233 : (string []) = v227 |> Array.Parallel.map v232                 │

02:35:45 #2428 [Debug] > │     let v234 : int32 = v233.Length                                           │

02:35:45 #2429 [Debug] > │     let v235 : int32 = v234 - 1                                              │

02:35:45 #2430 [Debug] > │     let v236 : string = v233.[int v235]                                      │

02:35:45 #2431 [Debug] > │     let v237 : int64 = v225.ElapsedMilliseconds                              │

02:35:45 #2432 [Debug] > │     let v238 : int64 = v237 - v226                                           │

02:35:45 #2433 [Debug] > │     let v239 : string = $"Test case {0 + 1}. {v49}. Time: {v238}  "          │

02:35:45 #2434 [Debug] > │     System.Console.WriteLine v239                                            │

02:35:45 #2435 [Debug] > │     let v240 : string = "bca cab abc"                                        │

02:35:45 #2436 [Debug] > │     let v241 : string = v240.ToString ()                                     │

02:35:45 #2437 [Debug] > │     let v242 : string = v236.ToString ()                                     │

02:35:45 #2438 [Debug] > │     let v243 : int64 = 1L                                                    │

02:35:45 #2439 [Debug] > │     let v244 : int64 = 2L                                                    │

02:35:45 #2440 [Debug] > │     let v245 : UH1 = UH1_1                                                   │

02:35:45 #2441 [Debug] > │     let v246 : UH1 = UH1_0(v244, v31, v245)                                  │

02:35:45 #2442 [Debug] > │     let v247 : UH1 = UH1_0(v243, v48, v246)                                  │

02:35:45 #2443 [Debug] > │     let v248 : (struct (int64 * int64) []) = method11(v247)                  │

02:35:45 #2444 [Debug] > │     let v249 : (struct (int64 * int64) -> int64) = closure15()               │

02:35:45 #2445 [Debug] > │     let v250 : (struct (int64 * int64) []) = v248 |> Array.sortBy v249       │

02:35:45 #2446 [Debug] > │     let struct (v251 : int64, v252 : int64) = v250.[int 0]                   │

02:35:45 #2447 [Debug] > │     let v253 : string = $"%A{struct (v251, v252)}"                           │

02:35:45 #2448 [Debug] > │     let v254 : bool = v51 = v52                                              │

02:35:45 #2449 [Debug] > │     let v259 : US0 =                                                         │

02:35:45 #2450 [Debug] > │         if v254 then                                                         │

02:35:45 #2451 [Debug] > │             let v255 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:45 #2452 [Debug] > │             US0_1(v255)                                                      │

02:35:45 #2453 [Debug] > │         else                                                                 │

02:35:45 #2454 [Debug] > │             let v257 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:45 #2455 [Debug] > │             US0_1(v257)                                                      │

02:35:45 #2456 [Debug] > │     let v260 : int64 = 1L                                                    │

02:35:45 #2457 [Debug] > │     let v261 : int64 = 2L                                                    │

02:35:45 #2458 [Debug] > │     let v262 : UH1 = UH1_1                                                   │

02:35:45 #2459 [Debug] > │     let v263 : UH1 = UH1_0(v261, v70, v262)                                  │

02:35:45 #2460 [Debug] > │     let v264 : UH1 = UH1_0(v260, v86, v263)                                  │

02:35:45 #2461 [Debug] > │     let v265 : (struct (int64 * int64) []) = method11(v264)                  │

02:35:45 #2462 [Debug] > │     let v266 : (struct (int64 * int64) []) = v265 |> Array.sortBy v249       │

02:35:45 #2463 [Debug] > │     let struct (v267 : int64, v268 : int64) = v266.[int 0]                   │

02:35:45 #2464 [Debug] > │     let v269 : string = $"%A{struct (v267, v268)}"                           │

02:35:45 #2465 [Debug] > │     let v270 : bool = v89 = v90                                              │

02:35:45 #2466 [Debug] > │     let v275 : US0 =                                                         │

02:35:45 #2467 [Debug] > │         if v270 then                                                         │

02:35:45 #2468 [Debug] > │             let v271 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:45 #2469 [Debug] > │             US0_1(v271)                                                      │

02:35:45 #2470 [Debug] > │         else                                                                 │

02:35:45 #2471 [Debug] > │             let v273 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:45 #2472 [Debug] > │             US0_1(v273)                                                      │

02:35:45 #2473 [Debug] > │     let v276 : int64 = 1L                                                    │

02:35:45 #2474 [Debug] > │     let v277 : int64 = 2L                                                    │

02:35:45 #2475 [Debug] > │     let v278 : UH1 = UH1_1                                                   │

02:35:45 #2476 [Debug] > │     let v279 : UH1 = UH1_0(v277, v108, v278)                                 │

02:35:45 #2477 [Debug] > │     let v280 : UH1 = UH1_0(v276, v124, v279)                                 │

02:35:45 #2478 [Debug] > │     let v281 : (struct (int64 * int64) []) = method11(v280)                  │

02:35:45 #2479 [Debug] > │     let v282 : (struct (int64 * int64) []) = v281 |> Array.sortBy v249       │

02:35:45 #2480 [Debug] > │     let struct (v283 : int64, v284 : int64) = v282.[int 0]                   │

02:35:45 #2481 [Debug] > │     let v285 : string = $"%A{struct (v283, v284)}"                           │

02:35:45 #2482 [Debug] > │     let v286 : bool = v127 = v128                                            │

02:35:45 #2483 [Debug] > │     let v291 : US0 =                                                         │

02:35:45 #2484 [Debug] > │         if v286 then                                                         │

02:35:45 #2485 [Debug] > │             let v287 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:45 #2486 [Debug] > │             US0_1(v287)                                                      │

02:35:45 #2487 [Debug] > │         else                                                                 │

02:35:45 #2488 [Debug] > │             let v289 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:45 #2489 [Debug] > │             US0_1(v289)                                                      │

02:35:45 #2490 [Debug] > │     let v292 : int64 = 1L                                                    │

02:35:45 #2491 [Debug] > │     let v293 : int64 = 2L                                                    │

02:35:45 #2492 [Debug] > │     let v294 : UH1 = UH1_1                                                   │

02:35:45 #2493 [Debug] > │     let v295 : UH1 = UH1_0(v293, v146, v294)                                 │

02:35:45 #2494 [Debug] > │     let v296 : UH1 = UH1_0(v292, v162, v295)                                 │

02:35:45 #2495 [Debug] > │     let v297 : (struct (int64 * int64) []) = method11(v296)                  │

02:35:45 #2496 [Debug] > │     let v298 : (struct (int64 * int64) []) = v297 |> Array.sortBy v249       │

02:35:45 #2497 [Debug] > │     let struct (v299 : int64, v300 : int64) = v298.[int 0]                   │

02:35:45 #2498 [Debug] > │     let v301 : string = $"%A{struct (v299, v300)}"                           │

02:35:45 #2499 [Debug] > │     let v302 : bool = v165 = v166                                            │

02:35:45 #2500 [Debug] > │     let v307 : US0 =                                                         │

02:35:45 #2501 [Debug] > │         if v302 then                                                         │

02:35:45 #2502 [Debug] > │             let v303 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:45 #2503 [Debug] > │             US0_1(v303)                                                      │

02:35:45 #2504 [Debug] > │         else                                                                 │

02:35:45 #2505 [Debug] > │             let v305 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:45 #2506 [Debug] > │             US0_1(v305)                                                      │

02:35:45 #2507 [Debug] > │     let v308 : int64 = 1L                                                    │

02:35:45 #2508 [Debug] > │     let v309 : int64 = 2L                                                    │

02:35:45 #2509 [Debug] > │     let v310 : UH1 = UH1_1                                                   │

02:35:45 #2510 [Debug] > │     let v311 : UH1 = UH1_0(v309, v184, v310)                                 │

02:35:45 #2511 [Debug] > │     let v312 : UH1 = UH1_0(v308, v200, v311)                                 │

02:35:45 #2512 [Debug] > │     let v313 : (struct (int64 * int64) []) = method11(v312)                  │

02:35:45 #2513 [Debug] > │     let v314 : (struct (int64 * int64) []) = v313 |> Array.sortBy v249       │

02:35:45 #2514 [Debug] > │     let struct (v315 : int64, v316 : int64) = v314.[int 0]                   │

02:35:45 #2515 [Debug] > │     let v317 : string = $"%A{struct (v315, v316)}"                           │

02:35:45 #2516 [Debug] > │     let v318 : bool = v203 = v204                                            │

02:35:45 #2517 [Debug] > │     let v323 : US0 =                                                         │

02:35:45 #2518 [Debug] > │         if v318 then                                                         │

02:35:45 #2519 [Debug] > │             let v319 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:45 #2520 [Debug] > │             US0_1(v319)                                                      │

02:35:45 #2521 [Debug] > │         else                                                                 │

02:35:45 #2522 [Debug] > │             let v321 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:45 #2523 [Debug] > │             US0_1(v321)                                                      │

02:35:45 #2524 [Debug] > │     let v324 : int64 = 1L                                                    │

02:35:45 #2525 [Debug] > │     let v325 : int64 = 2L                                                    │

02:35:45 #2526 [Debug] > │     let v326 : UH1 = UH1_1                                                   │

02:35:45 #2527 [Debug] > │     let v327 : UH1 = UH1_0(v325, v222, v326)                                 │

02:35:45 #2528 [Debug] > │     let v328 : UH1 = UH1_0(v324, v238, v327)                                 │

02:35:45 #2529 [Debug] > │     let v329 : (struct (int64 * int64) []) = method11(v328)                  │

02:35:45 #2530 [Debug] > │     let v330 : (struct (int64 * int64) []) = v329 |> Array.sortBy v249       │

02:35:45 #2531 [Debug] > │     let struct (v331 : int64, v332 : int64) = v330.[int 0]                   │

02:35:45 #2532 [Debug] > │     let v333 : string = $"%A{struct (v331, v332)}"                           │

02:35:45 #2533 [Debug] > │     let v334 : bool = v241 = v242                                            │

02:35:45 #2534 [Debug] > │     let v339 : US0 =                                                         │

02:35:45 #2535 [Debug] > │         if v334 then                                                         │

02:35:45 #2536 [Debug] > │             let v335 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:45 #2537 [Debug] > │             US0_1(v335)                                                      │

02:35:45 #2538 [Debug] > │         else                                                                 │

02:35:45 #2539 [Debug] > │             let v337 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:45 #2540 [Debug] > │             US0_1(v337)                                                      │

02:35:45 #2541 [Debug] > │     let v340 : UH0 = UH0_1                                                   │

02:35:45 #2542 [Debug] > │     let v341 : UH0 = UH0_0(v253, v340)                                       │

02:35:45 #2543 [Debug] > │     let v342 : UH0 = UH0_0(v52, v341)                                        │

02:35:45 #2544 [Debug] > │     let v343 : UH0 = UH0_0(v51, v342)                                        │

02:35:45 #2545 [Debug] > │     let v344 : UH0 = UH0_0(v12, v343)                                        │

02:35:45 #2546 [Debug] > │     let v345 : (string []) = method2(v344)                                   │

02:35:45 #2547 [Debug] > │     let v346 : UH0 = UH0_1                                                   │

02:35:45 #2548 [Debug] > │     let v347 : UH0 = UH0_0(v269, v346)                                       │

02:35:45 #2549 [Debug] > │     let v348 : UH0 = UH0_0(v90, v347)                                        │

02:35:45 #2550 [Debug] > │     let v349 : UH0 = UH0_0(v89, v348)                                        │

02:35:45 #2551 [Debug] > │     let v350 : UH0 = UH0_0(v54, v349)                                        │

02:35:45 #2552 [Debug] > │     let v351 : (string []) = method2(v350)                                   │

02:35:45 #2553 [Debug] > │     let v352 : UH0 = UH0_1                                                   │

02:35:45 #2554 [Debug] > │     let v353 : UH0 = UH0_0(v285, v352)                                       │

02:35:45 #2555 [Debug] > │     let v354 : UH0 = UH0_0(v128, v353)                                       │

02:35:45 #2556 [Debug] > │     let v355 : UH0 = UH0_0(v127, v354)                                       │

02:35:45 #2557 [Debug] > │     let v356 : UH0 = UH0_0(v92, v355)                                        │

02:35:45 #2558 [Debug] > │     let v357 : (string []) = method2(v356)                                   │

02:35:45 #2559 [Debug] > │     let v358 : UH0 = UH0_1                                                   │

02:35:45 #2560 [Debug] > │     let v359 : UH0 = UH0_0(v301, v358)                                       │

02:35:45 #2561 [Debug] > │     let v360 : UH0 = UH0_0(v166, v359)                                       │

02:35:45 #2562 [Debug] > │     let v361 : UH0 = UH0_0(v165, v360)                                       │

02:35:45 #2563 [Debug] > │     let v362 : UH0 = UH0_0(v130, v361)                                       │

02:35:45 #2564 [Debug] > │     let v363 : (string []) = method2(v362)                                   │

02:35:45 #2565 [Debug] > │     let v364 : UH0 = UH0_1                                                   │

02:35:45 #2566 [Debug] > │     let v365 : UH0 = UH0_0(v317, v364)                                       │

02:35:45 #2567 [Debug] > │     let v366 : UH0 = UH0_0(v204, v365)                                       │

02:35:45 #2568 [Debug] > │     let v367 : UH0 = UH0_0(v203, v366)                                       │

02:35:45 #2569 [Debug] > │     let v368 : UH0 = UH0_0(v168, v367)                                       │

02:35:45 #2570 [Debug] > │     let v369 : (string []) = method2(v368)                                   │

02:35:45 #2571 [Debug] > │     let v370 : UH0 = UH0_1                                                   │

02:35:45 #2572 [Debug] > │     let v371 : UH0 = UH0_0(v333, v370)                                       │

02:35:45 #2573 [Debug] > │     let v372 : UH0 = UH0_0(v242, v371)                                       │

02:35:45 #2574 [Debug] > │     let v373 : UH0 = UH0_0(v241, v372)                                       │

02:35:45 #2575 [Debug] > │     let v374 : UH0 = UH0_0(v206, v373)                                       │

02:35:45 #2576 [Debug] > │     let v375 : (string []) = method2(v374)                                   │

02:35:45 #2577 [Debug] > │     let v376 : string = "---"                                                │

02:35:45 #2578 [Debug] > │     let v377 : UH0 = UH0_1                                                   │

02:35:45 #2579 [Debug] > │     let v378 : UH0 = UH0_0(v376, v377)                                       │

02:35:45 #2580 [Debug] > │     let v379 : UH0 = UH0_0(v376, v378)                                       │

02:35:45 #2581 [Debug] > │     let v380 : UH0 = UH0_0(v376, v379)                                       │

02:35:45 #2582 [Debug] > │     let v381 : UH0 = UH0_0(v376, v380)                                       │

02:35:45 #2583 [Debug] > │     let v382 : (string []) = method2(v381)                                   │

02:35:45 #2584 [Debug] > │     let v383 : string = "Input"                                              │

02:35:45 #2585 [Debug] > │     let v384 : string = "Expected"                                           │

02:35:45 #2586 [Debug] > │     let v385 : string = "Result"                                             │

02:35:45 #2587 [Debug] > │     let v386 : string = "Best"                                               │

02:35:45 #2588 [Debug] > │     let v387 : UH0 = UH0_1                                                   │

02:35:45 #2589 [Debug] > │     let v388 : UH0 = UH0_0(v386, v387)                                       │

02:35:45 #2590 [Debug] > │     let v389 : UH0 = UH0_0(v385, v388)                                       │

02:35:45 #2591 [Debug] > │     let v390 : UH0 = UH0_0(v384, v389)                                       │

02:35:45 #2592 [Debug] > │     let v391 : UH0 = UH0_0(v383, v390)                                       │

02:35:45 #2593 [Debug] > │     let v392 : (string []) = method2(v391)                                   │

02:35:45 #2594 [Debug] > │     let v393 : UH2 = UH2_1                                                   │

02:35:45 #2595 [Debug] > │     let v394 : UH2 = UH2_0(v345, v393)                                       │

02:35:45 #2596 [Debug] > │     let v395 : UH2 = UH2_0(v351, v394)                                       │

02:35:45 #2597 [Debug] > │     let v396 : UH2 = UH2_0(v357, v395)                                       │

02:35:45 #2598 [Debug] > │     let v397 : UH2 = UH2_0(v363, v396)                                       │

02:35:45 #2599 [Debug] > │     let v398 : UH2 = UH2_0(v369, v397)                                       │

02:35:45 #2600 [Debug] > │     let v399 : UH2 = UH2_0(v375, v398)                                       │

02:35:45 #2601 [Debug] > │     let v400 : UH2 = UH2_0(v382, v399)                                       │

02:35:45 #2602 [Debug] > │     let v401 : UH2 = UH2_0(v392, v400)                                       │

02:35:45 #2603 [Debug] > │     let v402 : ((string []) []) = method14(v401)                             │

02:35:45 #2604 [Debug] > │     let v403 : ((string []) []) = v402 |> Array.transpose                    │

02:35:45 #2605 [Debug] > │     let v404 : int32 = v403.Length                                           │

02:35:45 #2606 [Debug] > │     let v405 : (int64 []) = Array.zeroCreate<int64> (v404)                   │

02:35:45 #2607 [Debug] > │     let v406 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #2608 [Debug] > │     while method1(v404, v406) do                                             │

02:35:45 #2609 [Debug] > │         let v408 : int32 = v406.l0                                           │

02:35:45 #2610 [Debug] > │         let v409 : (string []) = v403.[int v408]                             │

02:35:45 #2611 [Debug] > │         let v410 : int32 = v409.Length                                       │

02:35:45 #2612 [Debug] > │         let v411 : (int64 []) = Array.zeroCreate<int64> (v410)               │

02:35:45 #2613 [Debug] > │         let v412 : Mut0 = {l0 = 0} : Mut0                                    │

02:35:45 #2614 [Debug] > │         while method1(v410, v412) do                                         │

02:35:45 #2615 [Debug] > │             let v414 : int32 = v412.l0                                       │

02:35:45 #2616 [Debug] > │             let v415 : string = v409.[int v414]                              │

02:35:45 #2617 [Debug] > │             let v416 : int64 = System.Convert.ToInt64 v415.Length            │

02:35:45 #2618 [Debug] > │             v411.[int v414] <- v416                                          │

02:35:45 #2619 [Debug] > │             let v417 : int32 = v414 + 1                                      │

02:35:45 #2620 [Debug] > │             v412.l0 <- v417                                                  │

02:35:45 #2621 [Debug] > │             ()                                                               │

02:35:45 #2622 [Debug] > │         let v418 : (int64 []) = v411 |> Array.sortDescending                 │

02:35:45 #2623 [Debug] > │         let v419 : int64 option = v418 |> Array.tryItem 0                    │

02:35:45 #2624 [Debug] > │         let v420 : (int64 -> US1) = closure16()                              │

02:35:45 #2625 [Debug] > │         let v421 : US1 = US1_0                                               │

02:35:45 #2626 [Debug] > │         let v422 : US1 = v419 |> Option.map v420 |> Option.defaultValue v421 │

02:35:45 #2627 [Debug] > │         let v425 : int64 =                                                   │

02:35:45 #2628 [Debug] > │             match v422 with                                                  │

02:35:45 #2629 [Debug] > │             | US1_0 -> (* None *)                                            │

02:35:45 #2630 [Debug] > │                 0L                                                           │

02:35:45 #2631 [Debug] > │             | US1_1(v423) -> (* Some *)                                      │

02:35:45 #2632 [Debug] > │                 v423                                                         │

02:35:45 #2633 [Debug] > │         v405.[int v408] <- v425                                              │

02:35:45 #2634 [Debug] > │         let v426 : int32 = v408 + 1                                          │

02:35:45 #2635 [Debug] > │         v406.l0 <- v426                                                      │

02:35:45 #2636 [Debug] > │         ()                                                                   │

02:35:45 #2637 [Debug] > │     let v427 : int32 = v405.Length                                           │

02:35:45 #2638 [Debug] > │     let v428 : UH3 = UH3_1                                                   │

02:35:45 #2639 [Debug] > │     let v429 : Mut1 = {l0 = 0; l1 = v428; l2 = 0} : Mut1                     │

02:35:45 #2640 [Debug] > │     while method17(v427, v429) do                                            │

02:35:45 #2641 [Debug] > │         let v431 : int32 = v429.l0                                           │

02:35:45 #2642 [Debug] > │         let struct (v432 : UH3, v433 : int32) = v429.l1, v429.l2             │

02:35:45 #2643 [Debug] > │         let v434 : int64 = v405.[int v431]                                   │

02:35:45 #2644 [Debug] > │         let v435 : int32 = v433 + 1                                          │

02:35:45 #2645 [Debug] > │         let v436 : int32 = v431 + 1                                          │

02:35:45 #2646 [Debug] > │         let v437 : UH3 = UH3_0(v433, v434, v432)                             │

02:35:45 #2647 [Debug] > │         v429.l0 <- v436                                                      │

02:35:45 #2648 [Debug] > │         v429.l1 <- v437                                                      │

02:35:45 #2649 [Debug] > │         v429.l2 <- v435                                                      │

02:35:45 #2650 [Debug] > │         ()                                                                   │

02:35:45 #2651 [Debug] > │     let struct (v438 : UH3, v439 : int32) = v429.l1, v429.l2                 │

02:35:45 #2652 [Debug] > │     let v440 : UH3 = UH3_1                                                   │

02:35:45 #2653 [Debug] > │     let v441 : UH3 = method18(v438, v440)                                    │

02:35:45 #2654 [Debug] > │     let v442 : (struct (int32 * int64) []) = method19(v441)                  │

02:35:45 #2655 [Debug] > │     let v443 : Map<int32, int64> = v442 |> Array.map (fun (struct (a, b)) -> │

02:35:45 #2656 [Debug] > │ a, b) |> Map.ofArray                                                         │

02:35:45 #2657 [Debug] > │     let v444 : int64 = v443.[3]                                              │

02:35:45 #2658 [Debug] > │     let v445 : int32 = int32 v444                                            │

02:35:45 #2659 [Debug] > │     let v446 : string = v253.PadRight v445                                   │

02:35:45 #2660 [Debug] > │     let v447 : int64 = v443.[2]                                              │

02:35:45 #2661 [Debug] > │     let v448 : int32 = int32 v447                                            │

02:35:45 #2662 [Debug] > │     let v449 : string = v52.PadRight v448                                    │

02:35:45 #2663 [Debug] > │     let v450 : int64 = v443.[1]                                              │

02:35:45 #2664 [Debug] > │     let v451 : int32 = int32 v450                                            │

02:35:45 #2665 [Debug] > │     let v452 : string = v51.PadRight v451                                    │

02:35:45 #2666 [Debug] > │     let v453 : int64 = v443.[0]                                              │

02:35:45 #2667 [Debug] > │     let v454 : int32 = int32 v453                                            │

02:35:45 #2668 [Debug] > │     let v455 : string = v12.PadRight v454                                    │

02:35:45 #2669 [Debug] > │     let v456 : UH0 = UH0_1                                                   │

02:35:45 #2670 [Debug] > │     let v457 : UH0 = UH0_0(v446, v456)                                       │

02:35:45 #2671 [Debug] > │     let v458 : UH0 = UH0_0(v449, v457)                                       │

02:35:45 #2672 [Debug] > │     let v459 : UH0 = UH0_0(v452, v458)                                       │

02:35:45 #2673 [Debug] > │     let v460 : UH0 = UH0_0(v455, v459)                                       │

02:35:45 #2674 [Debug] > │     let v461 : (string []) = method2(v460)                                   │

02:35:45 #2675 [Debug] > │     let v462 : int64 = v443.[3]                                              │

02:35:45 #2676 [Debug] > │     let v463 : int32 = int32 v462                                            │

02:35:45 #2677 [Debug] > │     let v464 : string = v269.PadRight v463                                   │

02:35:45 #2678 [Debug] > │     let v465 : int64 = v443.[2]                                              │

02:35:45 #2679 [Debug] > │     let v466 : int32 = int32 v465                                            │

02:35:45 #2680 [Debug] > │     let v467 : string = v90.PadRight v466                                    │

02:35:45 #2681 [Debug] > │     let v468 : int64 = v443.[1]                                              │

02:35:45 #2682 [Debug] > │     let v469 : int32 = int32 v468                                            │

02:35:45 #2683 [Debug] > │     let v470 : string = v89.PadRight v469                                    │

02:35:45 #2684 [Debug] > │     let v471 : int64 = v443.[0]                                              │

02:35:45 #2685 [Debug] > │     let v472 : int32 = int32 v471                                            │

02:35:45 #2686 [Debug] > │     let v473 : string = v54.PadRight v472                                    │

02:35:45 #2687 [Debug] > │     let v474 : UH0 = UH0_1                                                   │

02:35:45 #2688 [Debug] > │     let v475 : UH0 = UH0_0(v464, v474)                                       │

02:35:45 #2689 [Debug] > │     let v476 : UH0 = UH0_0(v467, v475)                                       │

02:35:45 #2690 [Debug] > │     let v477 : UH0 = UH0_0(v470, v476)                                       │

02:35:45 #2691 [Debug] > │     let v478 : UH0 = UH0_0(v473, v477)                                       │

02:35:45 #2692 [Debug] > │     let v479 : (string []) = method2(v478)                                   │

02:35:45 #2693 [Debug] > │     let v480 : int64 = v443.[3]                                              │

02:35:45 #2694 [Debug] > │     let v481 : int32 = int32 v480                                            │

02:35:45 #2695 [Debug] > │     let v482 : string = v285.PadRight v481                                   │

02:35:45 #2696 [Debug] > │     let v483 : int64 = v443.[2]                                              │

02:35:45 #2697 [Debug] > │     let v484 : int32 = int32 v483                                            │

02:35:45 #2698 [Debug] > │     let v485 : string = v128.PadRight v484                                   │

02:35:45 #2699 [Debug] > │     let v486 : int64 = v443.[1]                                              │

02:35:45 #2700 [Debug] > │     let v487 : int32 = int32 v486                                            │

02:35:45 #2701 [Debug] > │     let v488 : string = v127.PadRight v487                                   │

02:35:45 #2702 [Debug] > │     let v489 : int64 = v443.[0]                                              │

02:35:45 #2703 [Debug] > │     let v490 : int32 = int32 v489                                            │

02:35:45 #2704 [Debug] > │     let v491 : string = v92.PadRight v490                                    │

02:35:45 #2705 [Debug] > │     let v492 : UH0 = UH0_1                                                   │

02:35:45 #2706 [Debug] > │     let v493 : UH0 = UH0_0(v482, v492)                                       │

02:35:45 #2707 [Debug] > │     let v494 : UH0 = UH0_0(v485, v493)                                       │

02:35:45 #2708 [Debug] > │     let v495 : UH0 = UH0_0(v488, v494)                                       │

02:35:45 #2709 [Debug] > │     let v496 : UH0 = UH0_0(v491, v495)                                       │

02:35:45 #2710 [Debug] > │     let v497 : (string []) = method2(v496)                                   │

02:35:45 #2711 [Debug] > │     let v498 : int64 = v443.[3]                                              │

02:35:45 #2712 [Debug] > │     let v499 : int32 = int32 v498                                            │

02:35:45 #2713 [Debug] > │     let v500 : string = v301.PadRight v499                                   │

02:35:45 #2714 [Debug] > │     let v501 : int64 = v443.[2]                                              │

02:35:45 #2715 [Debug] > │     let v502 : int32 = int32 v501                                            │

02:35:45 #2716 [Debug] > │     let v503 : string = v166.PadRight v502                                   │

02:35:45 #2717 [Debug] > │     let v504 : int64 = v443.[1]                                              │

02:35:45 #2718 [Debug] > │     let v505 : int32 = int32 v504                                            │

02:35:45 #2719 [Debug] > │     let v506 : string = v165.PadRight v505                                   │

02:35:45 #2720 [Debug] > │     let v507 : int64 = v443.[0]                                              │

02:35:45 #2721 [Debug] > │     let v508 : int32 = int32 v507                                            │

02:35:45 #2722 [Debug] > │     let v509 : string = v130.PadRight v508                                   │

02:35:45 #2723 [Debug] > │     let v510 : UH0 = UH0_1                                                   │

02:35:45 #2724 [Debug] > │     let v511 : UH0 = UH0_0(v500, v510)                                       │

02:35:45 #2725 [Debug] > │     let v512 : UH0 = UH0_0(v503, v511)                                       │

02:35:45 #2726 [Debug] > │     let v513 : UH0 = UH0_0(v506, v512)                                       │

02:35:45 #2727 [Debug] > │     let v514 : UH0 = UH0_0(v509, v513)                                       │

02:35:45 #2728 [Debug] > │     let v515 : (string []) = method2(v514)                                   │

02:35:45 #2729 [Debug] > │     let v516 : int64 = v443.[3]                                              │

02:35:45 #2730 [Debug] > │     let v517 : int32 = int32 v516                                            │

02:35:45 #2731 [Debug] > │     let v518 : string = v317.PadRight v517                                   │

02:35:45 #2732 [Debug] > │     let v519 : int64 = v443.[2]                                              │

02:35:45 #2733 [Debug] > │     let v520 : int32 = int32 v519                                            │

02:35:45 #2734 [Debug] > │     let v521 : string = v204.PadRight v520                                   │

02:35:45 #2735 [Debug] > │     let v522 : int64 = v443.[1]                                              │

02:35:45 #2736 [Debug] > │     let v523 : int32 = int32 v522                                            │

02:35:45 #2737 [Debug] > │     let v524 : string = v203.PadRight v523                                   │

02:35:45 #2738 [Debug] > │     let v525 : int64 = v443.[0]                                              │

02:35:45 #2739 [Debug] > │     let v526 : int32 = int32 v525                                            │

02:35:45 #2740 [Debug] > │     let v527 : string = v168.PadRight v526                                   │

02:35:45 #2741 [Debug] > │     let v528 : UH0 = UH0_1                                                   │

02:35:45 #2742 [Debug] > │     let v529 : UH0 = UH0_0(v518, v528)                                       │

02:35:45 #2743 [Debug] > │     let v530 : UH0 = UH0_0(v521, v529)                                       │

02:35:45 #2744 [Debug] > │     let v531 : UH0 = UH0_0(v524, v530)                                       │

02:35:45 #2745 [Debug] > │     let v532 : UH0 = UH0_0(v527, v531)                                       │

02:35:45 #2746 [Debug] > │     let v533 : (string []) = method2(v532)                                   │

02:35:45 #2747 [Debug] > │     let v534 : int64 = v443.[3]                                              │

02:35:45 #2748 [Debug] > │     let v535 : int32 = int32 v534                                            │

02:35:45 #2749 [Debug] > │     let v536 : string = v333.PadRight v535                                   │

02:35:45 #2750 [Debug] > │     let v537 : int64 = v443.[2]                                              │

02:35:45 #2751 [Debug] > │     let v538 : int32 = int32 v537                                            │

02:35:45 #2752 [Debug] > │     let v539 : string = v242.PadRight v538                                   │

02:35:45 #2753 [Debug] > │     let v540 : int64 = v443.[1]                                              │

02:35:45 #2754 [Debug] > │     let v541 : int32 = int32 v540                                            │

02:35:45 #2755 [Debug] > │     let v542 : string = v241.PadRight v541                                   │

02:35:45 #2756 [Debug] > │     let v543 : int64 = v443.[0]                                              │

02:35:45 #2757 [Debug] > │     let v544 : int32 = int32 v543                                            │

02:35:45 #2758 [Debug] > │     let v545 : string = v206.PadRight v544                                   │

02:35:45 #2759 [Debug] > │     let v546 : UH0 = UH0_1                                                   │

02:35:45 #2760 [Debug] > │     let v547 : UH0 = UH0_0(v536, v546)                                       │

02:35:45 #2761 [Debug] > │     let v548 : UH0 = UH0_0(v539, v547)                                       │

02:35:45 #2762 [Debug] > │     let v549 : UH0 = UH0_0(v542, v548)                                       │

02:35:45 #2763 [Debug] > │     let v550 : UH0 = UH0_0(v545, v549)                                       │

02:35:45 #2764 [Debug] > │     let v551 : (string []) = method2(v550)                                   │

02:35:45 #2765 [Debug] > │     let v552 : int64 = v443.[3]                                              │

02:35:45 #2766 [Debug] > │     let v553 : int32 = int32 v552                                            │

02:35:45 #2767 [Debug] > │     let v554 : string = v376.PadRight v553                                   │

02:35:45 #2768 [Debug] > │     let v555 : int64 = v443.[2]                                              │

02:35:45 #2769 [Debug] > │     let v556 : int32 = int32 v555                                            │

02:35:45 #2770 [Debug] > │     let v557 : string = v376.PadRight v556                                   │

02:35:45 #2771 [Debug] > │     let v558 : int64 = v443.[1]                                              │

02:35:45 #2772 [Debug] > │     let v559 : int32 = int32 v558                                            │

02:35:45 #2773 [Debug] > │     let v560 : string = v376.PadRight v559                                   │

02:35:45 #2774 [Debug] > │     let v561 : int64 = v443.[0]                                              │

02:35:45 #2775 [Debug] > │     let v562 : int32 = int32 v561                                            │

02:35:45 #2776 [Debug] > │     let v563 : string = v376.PadRight v562                                   │

02:35:45 #2777 [Debug] > │     let v564 : UH0 = UH0_1                                                   │

02:35:45 #2778 [Debug] > │     let v565 : UH0 = UH0_0(v554, v564)                                       │

02:35:45 #2779 [Debug] > │     let v566 : UH0 = UH0_0(v557, v565)                                       │

02:35:45 #2780 [Debug] > │     let v567 : UH0 = UH0_0(v560, v566)                                       │

02:35:45 #2781 [Debug] > │     let v568 : UH0 = UH0_0(v563, v567)                                       │

02:35:45 #2782 [Debug] > │     let v569 : (string []) = method2(v568)                                   │

02:35:45 #2783 [Debug] > │     let v570 : int64 = v443.[3]                                              │

02:35:45 #2784 [Debug] > │     let v571 : int32 = int32 v570                                            │

02:35:45 #2785 [Debug] > │     let v572 : string = v386.PadRight v571                                   │

02:35:45 #2786 [Debug] > │     let v573 : int64 = v443.[2]                                              │

02:35:45 #2787 [Debug] > │     let v574 : int32 = int32 v573                                            │

02:35:45 #2788 [Debug] > │     let v575 : string = v385.PadRight v574                                   │

02:35:45 #2789 [Debug] > │     let v576 : int64 = v443.[1]                                              │

02:35:45 #2790 [Debug] > │     let v577 : int32 = int32 v576                                            │

02:35:45 #2791 [Debug] > │     let v578 : string = v384.PadRight v577                                   │

02:35:45 #2792 [Debug] > │     let v579 : int64 = v443.[0]                                              │

02:35:45 #2793 [Debug] > │     let v580 : int32 = int32 v579                                            │

02:35:45 #2794 [Debug] > │     let v581 : string = v383.PadRight v580                                   │

02:35:45 #2795 [Debug] > │     let v582 : UH0 = UH0_1                                                   │

02:35:45 #2796 [Debug] > │     let v583 : UH0 = UH0_0(v572, v582)                                       │

02:35:45 #2797 [Debug] > │     let v584 : UH0 = UH0_0(v575, v583)                                       │

02:35:45 #2798 [Debug] > │     let v585 : UH0 = UH0_0(v578, v584)                                       │

02:35:45 #2799 [Debug] > │     let v586 : UH0 = UH0_0(v581, v585)                                       │

02:35:45 #2800 [Debug] > │     let v587 : (string []) = method2(v586)                                   │

02:35:45 #2801 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #2802 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2803 [Debug] > │     let v588 : (unit -> unit) = closure17()                                  │

02:35:45 #2804 [Debug] > │     v588 ()                                                                  │

02:35:45 #2805 [Debug] > │     #else                                                                    │

02:35:45 #2806 [Debug] > │     let v589 : (unit -> unit) = closure18()                                  │

02:35:45 #2807 [Debug] > │     v589 ()                                                                  │

02:35:45 #2808 [Debug] > │     #endif                                                                   │

02:35:45 #2809 [Debug] > │     let v590 : string = "\t| "                                               │

02:35:45 #2810 [Debug] > │     let v591 : string = System.String.Join (v590, v587)                      │

02:35:45 #2811 [Debug] > │     System.Console.WriteLine v591                                            │

02:35:45 #2812 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2813 [Debug] > │     v588 ()                                                                  │

02:35:45 #2814 [Debug] > │     #else                                                                    │

02:35:45 #2815 [Debug] > │     v589 ()                                                                  │

02:35:45 #2816 [Debug] > │     #endif                                                                   │

02:35:45 #2817 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2818 [Debug] > │     v588 ()                                                                  │

02:35:45 #2819 [Debug] > │     #else                                                                    │

02:35:45 #2820 [Debug] > │     v589 ()                                                                  │

02:35:45 #2821 [Debug] > │     #endif                                                                   │

02:35:45 #2822 [Debug] > │     let v592 : string = System.String.Join (v590, v569)                      │

02:35:45 #2823 [Debug] > │     System.Console.WriteLine v592                                            │

02:35:45 #2824 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2825 [Debug] > │     v588 ()                                                                  │

02:35:45 #2826 [Debug] > │     #else                                                                    │

02:35:45 #2827 [Debug] > │     v589 ()                                                                  │

02:35:45 #2828 [Debug] > │     #endif                                                                   │

02:35:45 #2829 [Debug] > │     match v339 with                                                          │

02:35:45 #2830 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:45 #2831 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2832 [Debug] > │         v588 ()                                                              │

02:35:45 #2833 [Debug] > │         #else                                                                │

02:35:45 #2834 [Debug] > │         v589 ()                                                              │

02:35:45 #2835 [Debug] > │         #endif                                                               │

02:35:45 #2836 [Debug] > │         ()                                                                   │

02:35:45 #2837 [Debug] > │     | US0_1(v593) -> (* Some *)                                              │

02:35:45 #2838 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2839 [Debug] > │         let v594 : (unit -> unit) = closure19()                              │

02:35:45 #2840 [Debug] > │         v594 ()                                                              │

02:35:45 #2841 [Debug] > │         #else                                                                │

02:35:45 #2842 [Debug] > │         let v595 : (unit -> unit) = closure20(v593)                          │

02:35:45 #2843 [Debug] > │         v595 ()                                                              │

02:35:45 #2844 [Debug] > │         #endif                                                               │

02:35:45 #2845 [Debug] > │         ()                                                                   │

02:35:45 #2846 [Debug] > │     let v596 : string = System.String.Join (v590, v551)                      │

02:35:45 #2847 [Debug] > │     System.Console.WriteLine v596                                            │

02:35:45 #2848 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2849 [Debug] > │     v588 ()                                                                  │

02:35:45 #2850 [Debug] > │     #else                                                                    │

02:35:45 #2851 [Debug] > │     v589 ()                                                                  │

02:35:45 #2852 [Debug] > │     #endif                                                                   │

02:35:45 #2853 [Debug] > │     match v323 with                                                          │

02:35:45 #2854 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:45 #2855 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2856 [Debug] > │         v588 ()                                                              │

02:35:45 #2857 [Debug] > │         #else                                                                │

02:35:45 #2858 [Debug] > │         v589 ()                                                              │

02:35:45 #2859 [Debug] > │         #endif                                                               │

02:35:45 #2860 [Debug] > │         ()                                                                   │

02:35:45 #2861 [Debug] > │     | US0_1(v597) -> (* Some *)                                              │

02:35:45 #2862 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2863 [Debug] > │         let v598 : (unit -> unit) = closure19()                              │

02:35:45 #2864 [Debug] > │         v598 ()                                                              │

02:35:45 #2865 [Debug] > │         #else                                                                │

02:35:45 #2866 [Debug] > │         let v599 : (unit -> unit) = closure20(v597)                          │

02:35:45 #2867 [Debug] > │         v599 ()                                                              │

02:35:45 #2868 [Debug] > │         #endif                                                               │

02:35:45 #2869 [Debug] > │         ()                                                                   │

02:35:45 #2870 [Debug] > │     let v600 : string = System.String.Join (v590, v533)                      │

02:35:45 #2871 [Debug] > │     System.Console.WriteLine v600                                            │

02:35:45 #2872 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2873 [Debug] > │     v588 ()                                                                  │

02:35:45 #2874 [Debug] > │     #else                                                                    │

02:35:45 #2875 [Debug] > │     v589 ()                                                                  │

02:35:45 #2876 [Debug] > │     #endif                                                                   │

02:35:45 #2877 [Debug] > │     match v307 with                                                          │

02:35:45 #2878 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:45 #2879 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2880 [Debug] > │         v588 ()                                                              │

02:35:45 #2881 [Debug] > │         #else                                                                │

02:35:45 #2882 [Debug] > │         v589 ()                                                              │

02:35:45 #2883 [Debug] > │         #endif                                                               │

02:35:45 #2884 [Debug] > │         ()                                                                   │

02:35:45 #2885 [Debug] > │     | US0_1(v601) -> (* Some *)                                              │

02:35:45 #2886 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2887 [Debug] > │         let v602 : (unit -> unit) = closure19()                              │

02:35:45 #2888 [Debug] > │         v602 ()                                                              │

02:35:45 #2889 [Debug] > │         #else                                                                │

02:35:45 #2890 [Debug] > │         let v603 : (unit -> unit) = closure20(v601)                          │

02:35:45 #2891 [Debug] > │         v603 ()                                                              │

02:35:45 #2892 [Debug] > │         #endif                                                               │

02:35:45 #2893 [Debug] > │         ()                                                                   │

02:35:45 #2894 [Debug] > │     let v604 : string = System.String.Join (v590, v515)                      │

02:35:45 #2895 [Debug] > │     System.Console.WriteLine v604                                            │

02:35:45 #2896 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2897 [Debug] > │     v588 ()                                                                  │

02:35:45 #2898 [Debug] > │     #else                                                                    │

02:35:45 #2899 [Debug] > │     v589 ()                                                                  │

02:35:45 #2900 [Debug] > │     #endif                                                                   │

02:35:45 #2901 [Debug] > │     match v291 with                                                          │

02:35:45 #2902 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:45 #2903 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2904 [Debug] > │         v588 ()                                                              │

02:35:45 #2905 [Debug] > │         #else                                                                │

02:35:45 #2906 [Debug] > │         v589 ()                                                              │

02:35:45 #2907 [Debug] > │         #endif                                                               │

02:35:45 #2908 [Debug] > │         ()                                                                   │

02:35:45 #2909 [Debug] > │     | US0_1(v605) -> (* Some *)                                              │

02:35:45 #2910 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2911 [Debug] > │         let v606 : (unit -> unit) = closure19()                              │

02:35:45 #2912 [Debug] > │         v606 ()                                                              │

02:35:45 #2913 [Debug] > │         #else                                                                │

02:35:45 #2914 [Debug] > │         let v607 : (unit -> unit) = closure20(v605)                          │

02:35:45 #2915 [Debug] > │         v607 ()                                                              │

02:35:45 #2916 [Debug] > │         #endif                                                               │

02:35:45 #2917 [Debug] > │         ()                                                                   │

02:35:45 #2918 [Debug] > │     let v608 : string = System.String.Join (v590, v497)                      │

02:35:45 #2919 [Debug] > │     System.Console.WriteLine v608                                            │

02:35:45 #2920 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2921 [Debug] > │     v588 ()                                                                  │

02:35:45 #2922 [Debug] > │     #else                                                                    │

02:35:45 #2923 [Debug] > │     v589 ()                                                                  │

02:35:45 #2924 [Debug] > │     #endif                                                                   │

02:35:45 #2925 [Debug] > │     match v275 with                                                          │

02:35:45 #2926 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:45 #2927 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2928 [Debug] > │         v588 ()                                                              │

02:35:45 #2929 [Debug] > │         #else                                                                │

02:35:45 #2930 [Debug] > │         v589 ()                                                              │

02:35:45 #2931 [Debug] > │         #endif                                                               │

02:35:45 #2932 [Debug] > │         ()                                                                   │

02:35:45 #2933 [Debug] > │     | US0_1(v609) -> (* Some *)                                              │

02:35:45 #2934 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2935 [Debug] > │         let v610 : (unit -> unit) = closure19()                              │

02:35:45 #2936 [Debug] > │         v610 ()                                                              │

02:35:45 #2937 [Debug] > │         #else                                                                │

02:35:45 #2938 [Debug] > │         let v611 : (unit -> unit) = closure20(v609)                          │

02:35:45 #2939 [Debug] > │         v611 ()                                                              │

02:35:45 #2940 [Debug] > │         #endif                                                               │

02:35:45 #2941 [Debug] > │         ()                                                                   │

02:35:45 #2942 [Debug] > │     let v612 : string = System.String.Join (v590, v479)                      │

02:35:45 #2943 [Debug] > │     System.Console.WriteLine v612                                            │

02:35:45 #2944 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2945 [Debug] > │     v588 ()                                                                  │

02:35:45 #2946 [Debug] > │     #else                                                                    │

02:35:45 #2947 [Debug] > │     v589 ()                                                                  │

02:35:45 #2948 [Debug] > │     #endif                                                                   │

02:35:45 #2949 [Debug] > │     match v259 with                                                          │

02:35:45 #2950 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:45 #2951 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2952 [Debug] > │         v588 ()                                                              │

02:35:45 #2953 [Debug] > │         #else                                                                │

02:35:45 #2954 [Debug] > │         v589 ()                                                              │

02:35:45 #2955 [Debug] > │         #endif                                                               │

02:35:45 #2956 [Debug] > │         ()                                                                   │

02:35:45 #2957 [Debug] > │     | US0_1(v613) -> (* Some *)                                              │

02:35:45 #2958 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:45 #2959 [Debug] > │         let v614 : (unit -> unit) = closure19()                              │

02:35:45 #2960 [Debug] > │         v614 ()                                                              │

02:35:45 #2961 [Debug] > │         #else                                                                │

02:35:45 #2962 [Debug] > │         let v615 : (unit -> unit) = closure20(v613)                          │

02:35:45 #2963 [Debug] > │         v615 ()                                                              │

02:35:45 #2964 [Debug] > │         #endif                                                               │

02:35:45 #2965 [Debug] > │         ()                                                                   │

02:35:45 #2966 [Debug] > │     let v616 : string = System.String.Join (v590, v461)                      │

02:35:45 #2967 [Debug] > │     System.Console.WriteLine v616                                            │

02:35:45 #2968 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #2969 [Debug] > │     v588 ()                                                                  │

02:35:45 #2970 [Debug] > │     #else                                                                    │

02:35:45 #2971 [Debug] > │     v589 ()                                                                  │

02:35:45 #2972 [Debug] > │     #endif                                                                   │

02:35:45 #2973 [Debug] > │     let v617 : (int64 -> float) = float                                      │

02:35:45 #2974 [Debug] > │     let v618 : float = v617 v31                                              │

02:35:45 #2975 [Debug] > │     let v619 : float = v617 v48                                              │

02:35:45 #2976 [Debug] > │     let v620 : UH4 = UH4_1                                                   │

02:35:45 #2977 [Debug] > │     let v621 : UH4 = UH4_0(v618, v620)                                       │

02:35:45 #2978 [Debug] > │     let v622 : UH4 = UH4_0(v619, v621)                                       │

02:35:45 #2979 [Debug] > │     let v623 : (float []) = method22(v622)                                   │

02:35:45 #2980 [Debug] > │     let v624 : (int64 -> float) = float                                      │

02:35:45 #2981 [Debug] > │     let v625 : float = v624 v70                                              │

02:35:45 #2982 [Debug] > │     let v626 : float = v624 v86                                              │

02:35:45 #2983 [Debug] > │     let v627 : UH4 = UH4_1                                                   │

02:35:45 #2984 [Debug] > │     let v628 : UH4 = UH4_0(v625, v627)                                       │

02:35:45 #2985 [Debug] > │     let v629 : UH4 = UH4_0(v626, v628)                                       │

02:35:45 #2986 [Debug] > │     let v630 : (float []) = method22(v629)                                   │

02:35:45 #2987 [Debug] > │     let v631 : (int64 -> float) = float                                      │

02:35:45 #2988 [Debug] > │     let v632 : float = v631 v108                                             │

02:35:45 #2989 [Debug] > │     let v633 : float = v631 v124                                             │

02:35:45 #2990 [Debug] > │     let v634 : UH4 = UH4_1                                                   │

02:35:45 #2991 [Debug] > │     let v635 : UH4 = UH4_0(v632, v634)                                       │

02:35:45 #2992 [Debug] > │     let v636 : UH4 = UH4_0(v633, v635)                                       │

02:35:45 #2993 [Debug] > │     let v637 : (float []) = method22(v636)                                   │

02:35:45 #2994 [Debug] > │     let v638 : (int64 -> float) = float                                      │

02:35:45 #2995 [Debug] > │     let v639 : float = v638 v146                                             │

02:35:45 #2996 [Debug] > │     let v640 : float = v638 v162                                             │

02:35:45 #2997 [Debug] > │     let v641 : UH4 = UH4_1                                                   │

02:35:45 #2998 [Debug] > │     let v642 : UH4 = UH4_0(v639, v641)                                       │

02:35:45 #2999 [Debug] > │     let v643 : UH4 = UH4_0(v640, v642)                                       │

02:35:45 #3000 [Debug] > │     let v644 : (float []) = method22(v643)                                   │

02:35:45 #3001 [Debug] > │     let v645 : (int64 -> float) = float                                      │

02:35:45 #3002 [Debug] > │     let v646 : float = v645 v184                                             │

02:35:45 #3003 [Debug] > │     let v647 : float = v645 v200                                             │

02:35:45 #3004 [Debug] > │     let v648 : UH4 = UH4_1                                                   │

02:35:45 #3005 [Debug] > │     let v649 : UH4 = UH4_0(v646, v648)                                       │

02:35:45 #3006 [Debug] > │     let v650 : UH4 = UH4_0(v647, v649)                                       │

02:35:45 #3007 [Debug] > │     let v651 : (float []) = method22(v650)                                   │

02:35:45 #3008 [Debug] > │     let v652 : (int64 -> float) = float                                      │

02:35:45 #3009 [Debug] > │     let v653 : float = v652 v222                                             │

02:35:45 #3010 [Debug] > │     let v654 : float = v652 v238                                             │

02:35:45 #3011 [Debug] > │     let v655 : UH4 = UH4_1                                                   │

02:35:45 #3012 [Debug] > │     let v656 : UH4 = UH4_0(v653, v655)                                       │

02:35:45 #3013 [Debug] > │     let v657 : UH4 = UH4_0(v654, v656)                                       │

02:35:45 #3014 [Debug] > │     let v658 : (float []) = method22(v657)                                   │

02:35:45 #3015 [Debug] > │     let v659 : UH5 = UH5_1                                                   │

02:35:45 #3016 [Debug] > │     let v660 : UH5 = UH5_0(v623, v659)                                       │

02:35:45 #3017 [Debug] > │     let v661 : UH5 = UH5_0(v630, v660)                                       │

02:35:45 #3018 [Debug] > │     let v662 : UH5 = UH5_0(v637, v661)                                       │

02:35:45 #3019 [Debug] > │     let v663 : UH5 = UH5_0(v644, v662)                                       │

02:35:45 #3020 [Debug] > │     let v664 : UH5 = UH5_0(v651, v663)                                       │

02:35:45 #3021 [Debug] > │     let v665 : UH5 = UH5_0(v658, v664)                                       │

02:35:45 #3022 [Debug] > │     let v666 : ((float []) []) = method25(v665)                              │

02:35:45 #3023 [Debug] > │     let v667 : ((float []) []) = v666 |> Array.transpose                     │

02:35:45 #3024 [Debug] > │     let v668 : int32 = v667.Length                                           │

02:35:45 #3025 [Debug] > │     let v669 : (float []) = Array.zeroCreate<float> (v668)                   │

02:35:45 #3026 [Debug] > │     let v670 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #3027 [Debug] > │     while method1(v668, v670) do                                             │

02:35:45 #3028 [Debug] > │         let v672 : int32 = v670.l0                                           │

02:35:45 #3029 [Debug] > │         let v673 : (float []) = v667.[int v672]                              │

02:35:45 #3030 [Debug] > │         let v674 : float = v673 |> Array.average                             │

02:35:45 #3031 [Debug] > │         v669.[int v672] <- v674                                              │

02:35:45 #3032 [Debug] > │         let v675 : int32 = v672 + 1                                          │

02:35:45 #3033 [Debug] > │         v670.l0 <- v675                                                      │

02:35:45 #3034 [Debug] > │         ()                                                                   │

02:35:45 #3035 [Debug] > │     let v676 : (float -> int64) = int64                                      │

02:35:45 #3036 [Debug] > │     let v677 : int32 = v669.Length                                           │

02:35:45 #3037 [Debug] > │     let v678 : (int64 []) = Array.zeroCreate<int64> (v677)                   │

02:35:45 #3038 [Debug] > │     let v679 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #3039 [Debug] > │     while method1(v677, v679) do                                             │

02:35:45 #3040 [Debug] > │         let v681 : int32 = v679.l0                                           │

02:35:45 #3041 [Debug] > │         let v682 : float = v669.[int v681]                                   │

02:35:45 #3042 [Debug] > │         let v683 : int64 = v676 v682                                         │

02:35:45 #3043 [Debug] > │         v678.[int v681] <- v683                                              │

02:35:45 #3044 [Debug] > │         let v684 : int32 = v681 + 1                                          │

02:35:45 #3045 [Debug] > │         v679.l0 <- v684                                                      │

02:35:45 #3046 [Debug] > │         ()                                                                   │

02:35:45 #3047 [Debug] > │     let v685 : int32 = v678.Length                                           │

02:35:45 #3048 [Debug] > │     let v686 : UH3 = UH3_1                                                   │

02:35:45 #3049 [Debug] > │     let v687 : Mut1 = {l0 = 0; l1 = v686; l2 = 0} : Mut1                     │

02:35:45 #3050 [Debug] > │     while method17(v685, v687) do                                            │

02:35:45 #3051 [Debug] > │         let v689 : int32 = v687.l0                                           │

02:35:45 #3052 [Debug] > │         let struct (v690 : UH3, v691 : int32) = v687.l1, v687.l2             │

02:35:45 #3053 [Debug] > │         let v692 : int64 = v678.[int v689]                                   │

02:35:45 #3054 [Debug] > │         let v693 : int32 = v691 + 1                                          │

02:35:45 #3055 [Debug] > │         let v694 : int32 = v689 + 1                                          │

02:35:45 #3056 [Debug] > │         let v695 : UH3 = UH3_0(v691, v692, v690)                             │

02:35:45 #3057 [Debug] > │         v687.l0 <- v694                                                      │

02:35:45 #3058 [Debug] > │         v687.l1 <- v695                                                      │

02:35:45 #3059 [Debug] > │         v687.l2 <- v693                                                      │

02:35:45 #3060 [Debug] > │         ()                                                                   │

02:35:45 #3061 [Debug] > │     let struct (v696 : UH3, v697 : int32) = v687.l1, v687.l2                 │

02:35:45 #3062 [Debug] > │     let v698 : UH3 = UH3_1                                                   │

02:35:45 #3063 [Debug] > │     let v699 : UH3 = method18(v696, v698)                                    │

02:35:45 #3064 [Debug] > │     let v700 : (struct (int32 * int64) []) = method19(v699)                  │

02:35:45 #3065 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #3066 [Debug] > │     let v701 : string = "Average Ranking  "                                  │

02:35:45 #3067 [Debug] > │     System.Console.WriteLine v701                                            │

02:35:45 #3068 [Debug] > │     let v702 : (struct (int32 * int64) -> int64) = closure21()               │

02:35:45 #3069 [Debug] > │     let v703 : (struct (int32 * int64) []) = v700 |> Array.sortBy v702       │

02:35:45 #3070 [Debug] > │     let v704 : int32 = v703.Length                                           │

02:35:45 #3071 [Debug] > │     let v705 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:45 #3072 [Debug] > │     while method1(v704, v705) do                                             │

02:35:45 #3073 [Debug] > │         let v707 : int32 = v705.l0                                           │

02:35:45 #3074 [Debug] > │         let struct (v708 : int32, v709 : int64) = v703.[int v707]            │

02:35:45 #3075 [Debug] > │         let v710 : string = $"Test case %d{v708 + 1}. Average Time: %A{v709} │

02:35:45 #3076 [Debug] > │ "                                                                            │

02:35:45 #3077 [Debug] > │         System.Console.WriteLine v710                                        │

02:35:45 #3078 [Debug] > │         let v711 : int32 = v707 + 1                                          │

02:35:45 #3079 [Debug] > │         v705.l0 <- v711                                                      │

02:35:45 #3080 [Debug] > │         ()                                                                   │

02:35:45 #3081 [Debug] > │     ()                                                                       │

02:35:45 #3082 [Debug] > │ and method0 () : unit =                                                      │

02:35:45 #3083 [Debug] > │     let v0 : (unit -> unit) = closure0()                                     │

02:35:45 #3084 [Debug] > │     let v1 : string = nameof v0                                              │

02:35:45 #3085 [Debug] > │     let v2 : string = "CI"                                                   │

02:35:45 #3086 [Debug] > │     let v3 : string = System.Environment.GetEnvironmentVariable v2           │

02:35:45 #3087 [Debug] > │     let v4 : string = $"%A{v3}"                                              │

02:35:45 #3088 [Debug] > │     let v6 : bool = v4 = "<null>"                                            │

02:35:45 #3089 [Debug] > │     let v7 : bool = v6 <> true                                               │

02:35:45 #3090 [Debug] > │     let v8 : int32 =                                                         │

02:35:45 #3091 [Debug] > │         if v7 then                                                           │

02:35:45 #3092 [Debug] > │             2000000                                                          │

02:35:45 #3093 [Debug] > │         else                                                                 │

02:35:45 #3094 [Debug] > │             2000                                                             │

02:35:45 #3095 [Debug] > │     let v9 : string = ""                                                     │

02:35:45 #3096 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #3097 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #3098 [Debug] > │     let v10 : string = $"Test: {v1}"                                         │

02:35:45 #3099 [Debug] > │     System.Console.WriteLine v10                                             │

02:35:45 #3100 [Debug] > │     let v11 : string = "z"                                                   │

02:35:45 #3101 [Debug] > │     let v12 : string = v11.ToString ()                                       │

02:35:45 #3102 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #3103 [Debug] > │     let v13 : string = $"Solution: {v12}  "                                  │

02:35:45 #3104 [Debug] > │     System.Console.WriteLine v13                                             │

02:35:45 #3105 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #3106 [Debug] > │     let v14 : (unit -> unit) = closure1()                                    │

02:35:45 #3107 [Debug] > │     v14 ()                                                                   │

02:35:45 #3108 [Debug] > │     #else                                                                    │

02:35:45 #3109 [Debug] > │     let v15 : (unit -> unit) = closure2()                                    │

02:35:45 #3110 [Debug] > │     v15 ()                                                                   │

02:35:45 #3111 [Debug] > │     #endif                                                                   │

02:35:45 #3112 [Debug] > │     let v16 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #3113 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #3114 [Debug] > │     let v17 : System.Diagnostics.Stopwatch = v16 ()                          │

02:35:45 #3115 [Debug] > │     v17.Start ()                                                             │

02:35:45 #3116 [Debug] > │     let v18 : int64 = v17.ElapsedMilliseconds                                │

02:35:45 #3117 [Debug] > │     let v19 : int32 = v8 + 1                                                 │

02:35:45 #3118 [Debug] > │     let v20 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #3119 [Debug] > │     let v21 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #3120 [Debug] > │     while method1(v19, v21) do                                               │

02:35:45 #3121 [Debug] > │         let v23 : int32 = v21.l0                                             │

02:35:45 #3122 [Debug] > │         v20.[int v23] <- v23                                                 │

02:35:45 #3123 [Debug] > │         let v24 : int32 = v23 + 1                                            │

02:35:45 #3124 [Debug] > │         v21.l0 <- v24                                                        │

02:35:45 #3125 [Debug] > │         ()                                                                   │

02:35:45 #3126 [Debug] > │     let v25 : (int32 -> string) = closure3()                                 │

02:35:45 #3127 [Debug] > │     let v26 : (string []) = v20 |> Array.Parallel.map v25                    │

02:35:45 #3128 [Debug] > │     let v27 : int32 = v26.Length                                             │

02:35:45 #3129 [Debug] > │     let v28 : int32 = v27 - 1                                                │

02:35:45 #3130 [Debug] > │     let v29 : string = v26.[int v28]                                         │

02:35:45 #3131 [Debug] > │     let v30 : int64 = v17.ElapsedMilliseconds                                │

02:35:45 #3132 [Debug] > │     let v31 : int64 = v30 - v18                                              │

02:35:45 #3133 [Debug] > │     let v32 : string = "FA"                                                  │

02:35:45 #3134 [Debug] > │     let v33 : string = $"Test case {1 + 1}. {v32}. Time: {v31}  "            │

02:35:45 #3135 [Debug] > │     System.Console.WriteLine v33                                             │

02:35:45 #3136 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #3137 [Debug] > │     v14 ()                                                                   │

02:35:45 #3138 [Debug] > │     #else                                                                    │

02:35:45 #3139 [Debug] > │     v15 ()                                                                   │

02:35:45 #3140 [Debug] > │     #endif                                                                   │

02:35:45 #3141 [Debug] > │     let v34 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #3142 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #3143 [Debug] > │     let v35 : System.Diagnostics.Stopwatch = v34 ()                          │

02:35:45 #3144 [Debug] > │     v35.Start ()                                                             │

02:35:45 #3145 [Debug] > │     let v36 : int64 = v35.ElapsedMilliseconds                                │

02:35:45 #3146 [Debug] > │     let v37 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #3147 [Debug] > │     let v38 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #3148 [Debug] > │     while method1(v19, v38) do                                               │

02:35:45 #3149 [Debug] > │         let v40 : int32 = v38.l0                                             │

02:35:45 #3150 [Debug] > │         v37.[int v40] <- v40                                                 │

02:35:45 #3151 [Debug] > │         let v41 : int32 = v40 + 1                                            │

02:35:45 #3152 [Debug] > │         v38.l0 <- v41                                                        │

02:35:45 #3153 [Debug] > │         ()                                                                   │

02:35:45 #3154 [Debug] > │     let v42 : (int32 -> string) = closure4()                                 │

02:35:45 #3155 [Debug] > │     let v43 : (string []) = v37 |> Array.Parallel.map v42                    │

02:35:45 #3156 [Debug] > │     let v44 : int32 = v43.Length                                             │

02:35:45 #3157 [Debug] > │     let v45 : int32 = v44 - 1                                                │

02:35:45 #3158 [Debug] > │     let v46 : string = v43.[int v45]                                         │

02:35:45 #3159 [Debug] > │     let v47 : int64 = v35.ElapsedMilliseconds                                │

02:35:45 #3160 [Debug] > │     let v48 : int64 = v47 - v36                                              │

02:35:45 #3161 [Debug] > │     let v49 : string = "F"                                                   │

02:35:45 #3162 [Debug] > │     let v50 : string = $"Test case {0 + 1}. {v49}. Time: {v48}  "            │

02:35:45 #3163 [Debug] > │     System.Console.WriteLine v50                                             │

02:35:45 #3164 [Debug] > │     let v51 : string = v11.ToString ()                                       │

02:35:45 #3165 [Debug] > │     let v52 : string = v46.ToString ()                                       │

02:35:45 #3166 [Debug] > │     let v53 : string = "aa"                                                  │

02:35:45 #3167 [Debug] > │     let v54 : string = v53.ToString ()                                       │

02:35:45 #3168 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #3169 [Debug] > │     let v55 : string = $"Solution: {v54}  "                                  │

02:35:45 #3170 [Debug] > │     System.Console.WriteLine v55                                             │

02:35:45 #3171 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #3172 [Debug] > │     v14 ()                                                                   │

02:35:45 #3173 [Debug] > │     #else                                                                    │

02:35:45 #3174 [Debug] > │     v15 ()                                                                   │

02:35:45 #3175 [Debug] > │     #endif                                                                   │

02:35:45 #3176 [Debug] > │     let v56 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #3177 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #3178 [Debug] > │     let v57 : System.Diagnostics.Stopwatch = v56 ()                          │

02:35:45 #3179 [Debug] > │     v57.Start ()                                                             │

02:35:45 #3180 [Debug] > │     let v58 : int64 = v57.ElapsedMilliseconds                                │

02:35:45 #3181 [Debug] > │     let v59 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #3182 [Debug] > │     let v60 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #3183 [Debug] > │     while method1(v19, v60) do                                               │

02:35:45 #3184 [Debug] > │         let v62 : int32 = v60.l0                                             │

02:35:45 #3185 [Debug] > │         v59.[int v62] <- v62                                                 │

02:35:45 #3186 [Debug] > │         let v63 : int32 = v62 + 1                                            │

02:35:45 #3187 [Debug] > │         v60.l0 <- v63                                                        │

02:35:45 #3188 [Debug] > │         ()                                                                   │

02:35:45 #3189 [Debug] > │     let v64 : (int32 -> string) = closure5()                                 │

02:35:45 #3190 [Debug] > │     let v65 : (string []) = v59 |> Array.Parallel.map v64                    │

02:35:45 #3191 [Debug] > │     let v66 : int32 = v65.Length                                             │

02:35:45 #3192 [Debug] > │     let v67 : int32 = v66 - 1                                                │

02:35:45 #3193 [Debug] > │     let v68 : string = v65.[int v67]                                         │

02:35:45 #3194 [Debug] > │     let v69 : int64 = v57.ElapsedMilliseconds                                │

02:35:45 #3195 [Debug] > │     let v70 : int64 = v69 - v58                                              │

02:35:45 #3196 [Debug] > │     let v71 : string = $"Test case {1 + 1}. {v32}. Time: {v70}  "            │

02:35:45 #3197 [Debug] > │     System.Console.WriteLine v71                                             │

02:35:45 #3198 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #3199 [Debug] > │     v14 ()                                                                   │

02:35:45 #3200 [Debug] > │     #else                                                                    │

02:35:45 #3201 [Debug] > │     v15 ()                                                                   │

02:35:45 #3202 [Debug] > │     #endif                                                                   │

02:35:45 #3203 [Debug] > │     let v72 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #3204 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #3205 [Debug] > │     let v73 : System.Diagnostics.Stopwatch = v72 ()                          │

02:35:45 #3206 [Debug] > │     v73.Start ()                                                             │

02:35:45 #3207 [Debug] > │     let v74 : int64 = v73.ElapsedMilliseconds                                │

02:35:45 #3208 [Debug] > │     let v75 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #3209 [Debug] > │     let v76 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #3210 [Debug] > │     while method1(v19, v76) do                                               │

02:35:45 #3211 [Debug] > │         let v78 : int32 = v76.l0                                             │

02:35:45 #3212 [Debug] > │         v75.[int v78] <- v78                                                 │

02:35:45 #3213 [Debug] > │         let v79 : int32 = v78 + 1                                            │

02:35:45 #3214 [Debug] > │         v76.l0 <- v79                                                        │

02:35:45 #3215 [Debug] > │         ()                                                                   │

02:35:45 #3216 [Debug] > │     let v80 : (int32 -> string) = closure6()                                 │

02:35:45 #3217 [Debug] > │     let v81 : (string []) = v75 |> Array.Parallel.map v80                    │

02:35:45 #3218 [Debug] > │     let v82 : int32 = v81.Length                                             │

02:35:45 #3219 [Debug] > │     let v83 : int32 = v82 - 1                                                │

02:35:45 #3220 [Debug] > │     let v84 : string = v81.[int v83]                                         │

02:35:45 #3221 [Debug] > │     let v85 : int64 = v73.ElapsedMilliseconds                                │

02:35:45 #3222 [Debug] > │     let v86 : int64 = v85 - v74                                              │

02:35:45 #3223 [Debug] > │     let v87 : string = $"Test case {0 + 1}. {v49}. Time: {v86}  "            │

02:35:45 #3224 [Debug] > │     System.Console.WriteLine v87                                             │

02:35:45 #3225 [Debug] > │     let v88 : string = "aa aa"                                               │

02:35:45 #3226 [Debug] > │     let v89 : string = v88.ToString ()                                       │

02:35:45 #3227 [Debug] > │     let v90 : string = v84.ToString ()                                       │

02:35:45 #3228 [Debug] > │     let v91 : string = "abab"                                                │

02:35:45 #3229 [Debug] > │     let v92 : string = v91.ToString ()                                       │

02:35:45 #3230 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:45 #3231 [Debug] > │     let v93 : string = $"Solution: {v92}  "                                  │

02:35:45 #3232 [Debug] > │     System.Console.WriteLine v93                                             │

02:35:45 #3233 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #3234 [Debug] > │     v14 ()                                                                   │

02:35:45 #3235 [Debug] > │     #else                                                                    │

02:35:45 #3236 [Debug] > │     v15 ()                                                                   │

02:35:45 #3237 [Debug] > │     #endif                                                                   │

02:35:45 #3238 [Debug] > │     let v94 : (unit -> System.Diagnostics.Stopwatch) =                       │

02:35:45 #3239 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:45 #3240 [Debug] > │     let v95 : System.Diagnostics.Stopwatch = v94 ()                          │

02:35:45 #3241 [Debug] > │     v95.Start ()                                                             │

02:35:45 #3242 [Debug] > │     let v96 : int64 = v95.ElapsedMilliseconds                                │

02:35:45 #3243 [Debug] > │     let v97 : (int32 []) = Array.zeroCreate<int32> (v19)                     │

02:35:45 #3244 [Debug] > │     let v98 : Mut0 = {l0 = 0} : Mut0                                         │

02:35:45 #3245 [Debug] > │     while method1(v19, v98) do                                               │

02:35:45 #3246 [Debug] > │         let v100 : int32 = v98.l0                                            │

02:35:45 #3247 [Debug] > │         v97.[int v100] <- v100                                               │

02:35:45 #3248 [Debug] > │         let v101 : int32 = v100 + 1                                          │

02:35:45 #3249 [Debug] > │         v98.l0 <- v101                                                       │

02:35:45 #3250 [Debug] > │         ()                                                                   │

02:35:45 #3251 [Debug] > │     let v102 : (int32 -> string) = closure7()                                │

02:35:45 #3252 [Debug] > │     let v103 : (string []) = v97 |> Array.Parallel.map v102                  │

02:35:45 #3253 [Debug] > │     let v104 : int32 = v103.Length                                           │

02:35:45 #3254 [Debug] > │     let v105 : int32 = v104 - 1                                              │

02:35:45 #3255 [Debug] > │     let v106 : string = v103.[int v105]                                      │

02:35:45 #3256 [Debug] > │     let v107 : int64 = v95.ElapsedMilliseconds                               │

02:35:45 #3257 [Debug] > │     let v108 : int64 = v107 - v96                                            │

02:35:45 #3258 [Debug] > │     let v109 : string = $"Test case {1 + 1}. {v32}. Time: {v108}  "          │

02:35:45 #3259 [Debug] > │     System.Console.WriteLine v109                                            │

02:35:45 #3260 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:45 #3261 [Debug] > │     v14 ()                                                                   │

02:35:45 #3262 [Debug] > │     #else                                                                    │

02:35:45 #3263 [Debug] > │     v15 ()                                                                   │

02:35:46 #3264 [Debug] > │     #endif                                                                   │

02:35:46 #3265 [Debug] > │     let v110 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3266 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3267 [Debug] > │     let v111 : System.Diagnostics.Stopwatch = v110 ()                        │

02:35:46 #3268 [Debug] > │     v111.Start ()                                                            │

02:35:46 #3269 [Debug] > │     let v112 : int64 = v111.ElapsedMilliseconds                              │

02:35:46 #3270 [Debug] > │     let v113 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3271 [Debug] > │     let v114 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3272 [Debug] > │     while method1(v19, v114) do                                              │

02:35:46 #3273 [Debug] > │         let v116 : int32 = v114.l0                                           │

02:35:46 #3274 [Debug] > │         v113.[int v116] <- v116                                              │

02:35:46 #3275 [Debug] > │         let v117 : int32 = v116 + 1                                          │

02:35:46 #3276 [Debug] > │         v114.l0 <- v117                                                      │

02:35:46 #3277 [Debug] > │         ()                                                                   │

02:35:46 #3278 [Debug] > │     let v118 : (int32 -> string) = closure8()                                │

02:35:46 #3279 [Debug] > │     let v119 : (string []) = v113 |> Array.Parallel.map v118                 │

02:35:46 #3280 [Debug] > │     let v120 : int32 = v119.Length                                           │

02:35:46 #3281 [Debug] > │     let v121 : int32 = v120 - 1                                              │

02:35:46 #3282 [Debug] > │     let v122 : string = v119.[int v121]                                      │

02:35:46 #3283 [Debug] > │     let v123 : int64 = v111.ElapsedMilliseconds                              │

02:35:46 #3284 [Debug] > │     let v124 : int64 = v123 - v112                                           │

02:35:46 #3285 [Debug] > │     let v125 : string = $"Test case {0 + 1}. {v49}. Time: {v124}  "          │

02:35:46 #3286 [Debug] > │     System.Console.WriteLine v125                                            │

02:35:46 #3287 [Debug] > │     let v126 : string = "baba abab baba abab"                                │

02:35:46 #3288 [Debug] > │     let v127 : string = v126.ToString ()                                     │

02:35:46 #3289 [Debug] > │     let v128 : string = v122.ToString ()                                     │

02:35:46 #3290 [Debug] > │     let v129 : string = "abcdefghi"                                          │

02:35:46 #3291 [Debug] > │     let v130 : string = v129.ToString ()                                     │

02:35:46 #3292 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:46 #3293 [Debug] > │     let v131 : string = $"Solution: {v130}  "                                │

02:35:46 #3294 [Debug] > │     System.Console.WriteLine v131                                            │

02:35:46 #3295 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3296 [Debug] > │     v14 ()                                                                   │

02:35:46 #3297 [Debug] > │     #else                                                                    │

02:35:46 #3298 [Debug] > │     v15 ()                                                                   │

02:35:46 #3299 [Debug] > │     #endif                                                                   │

02:35:46 #3300 [Debug] > │     let v132 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3301 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3302 [Debug] > │     let v133 : System.Diagnostics.Stopwatch = v132 ()                        │

02:35:46 #3303 [Debug] > │     v133.Start ()                                                            │

02:35:46 #3304 [Debug] > │     let v134 : int64 = v133.ElapsedMilliseconds                              │

02:35:46 #3305 [Debug] > │     let v135 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3306 [Debug] > │     let v136 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3307 [Debug] > │     while method1(v19, v136) do                                              │

02:35:46 #3308 [Debug] > │         let v138 : int32 = v136.l0                                           │

02:35:46 #3309 [Debug] > │         v135.[int v138] <- v138                                              │

02:35:46 #3310 [Debug] > │         let v139 : int32 = v138 + 1                                          │

02:35:46 #3311 [Debug] > │         v136.l0 <- v139                                                      │

02:35:46 #3312 [Debug] > │         ()                                                                   │

02:35:46 #3313 [Debug] > │     let v140 : (int32 -> string) = closure9()                                │

02:35:46 #3314 [Debug] > │     let v141 : (string []) = v135 |> Array.Parallel.map v140                 │

02:35:46 #3315 [Debug] > │     let v142 : int32 = v141.Length                                           │

02:35:46 #3316 [Debug] > │     let v143 : int32 = v142 - 1                                              │

02:35:46 #3317 [Debug] > │     let v144 : string = v141.[int v143]                                      │

02:35:46 #3318 [Debug] > │     let v145 : int64 = v133.ElapsedMilliseconds                              │

02:35:46 #3319 [Debug] > │     let v146 : int64 = v145 - v134                                           │

02:35:46 #3320 [Debug] > │     let v147 : string = $"Test case {1 + 1}. {v32}. Time: {v146}  "          │

02:35:46 #3321 [Debug] > │     System.Console.WriteLine v147                                            │

02:35:46 #3322 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3323 [Debug] > │     v14 ()                                                                   │

02:35:46 #3324 [Debug] > │     #else                                                                    │

02:35:46 #3325 [Debug] > │     v15 ()                                                                   │

02:35:46 #3326 [Debug] > │     #endif                                                                   │

02:35:46 #3327 [Debug] > │     let v148 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3328 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3329 [Debug] > │     let v149 : System.Diagnostics.Stopwatch = v148 ()                        │

02:35:46 #3330 [Debug] > │     v149.Start ()                                                            │

02:35:46 #3331 [Debug] > │     let v150 : int64 = v149.ElapsedMilliseconds                              │

02:35:46 #3332 [Debug] > │     let v151 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3333 [Debug] > │     let v152 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3334 [Debug] > │     while method1(v19, v152) do                                              │

02:35:46 #3335 [Debug] > │         let v154 : int32 = v152.l0                                           │

02:35:46 #3336 [Debug] > │         v151.[int v154] <- v154                                              │

02:35:46 #3337 [Debug] > │         let v155 : int32 = v154 + 1                                          │

02:35:46 #3338 [Debug] > │         v152.l0 <- v155                                                      │

02:35:46 #3339 [Debug] > │         ()                                                                   │

02:35:46 #3340 [Debug] > │     let v156 : (int32 -> string) = closure10()                               │

02:35:46 #3341 [Debug] > │     let v157 : (string []) = v151 |> Array.Parallel.map v156                 │

02:35:46 #3342 [Debug] > │     let v158 : int32 = v157.Length                                           │

02:35:46 #3343 [Debug] > │     let v159 : int32 = v158 - 1                                              │

02:35:46 #3344 [Debug] > │     let v160 : string = v157.[int v159]                                      │

02:35:46 #3345 [Debug] > │     let v161 : int64 = v149.ElapsedMilliseconds                              │

02:35:46 #3346 [Debug] > │     let v162 : int64 = v161 - v150                                           │

02:35:46 #3347 [Debug] > │     let v163 : string = $"Test case {0 + 1}. {v49}. Time: {v162}  "          │

02:35:46 #3348 [Debug] > │     System.Console.WriteLine v163                                            │

02:35:46 #3349 [Debug] > │     let v164 : string = "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde   │

02:35:46 #3350 [Debug] > │ ghiabcdef hiabcdefg iabcdefgh abcdefghi"                                     │

02:35:46 #3351 [Debug] > │     let v165 : string = v164.ToString ()                                     │

02:35:46 #3352 [Debug] > │     let v166 : string = v160.ToString ()                                     │

02:35:46 #3353 [Debug] > │     let v167 : string = "abcde"                                              │

02:35:46 #3354 [Debug] > │     let v168 : string = v167.ToString ()                                     │

02:35:46 #3355 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:46 #3356 [Debug] > │     let v169 : string = $"Solution: {v168}  "                                │

02:35:46 #3357 [Debug] > │     System.Console.WriteLine v169                                            │

02:35:46 #3358 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3359 [Debug] > │     v14 ()                                                                   │

02:35:46 #3360 [Debug] > │     #else                                                                    │

02:35:46 #3361 [Debug] > │     v15 ()                                                                   │

02:35:46 #3362 [Debug] > │     #endif                                                                   │

02:35:46 #3363 [Debug] > │     let v170 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3364 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3365 [Debug] > │     let v171 : System.Diagnostics.Stopwatch = v170 ()                        │

02:35:46 #3366 [Debug] > │     v171.Start ()                                                            │

02:35:46 #3367 [Debug] > │     let v172 : int64 = v171.ElapsedMilliseconds                              │

02:35:46 #3368 [Debug] > │     let v173 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3369 [Debug] > │     let v174 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3370 [Debug] > │     while method1(v19, v174) do                                              │

02:35:46 #3371 [Debug] > │         let v176 : int32 = v174.l0                                           │

02:35:46 #3372 [Debug] > │         v173.[int v176] <- v176                                              │

02:35:46 #3373 [Debug] > │         let v177 : int32 = v176 + 1                                          │

02:35:46 #3374 [Debug] > │         v174.l0 <- v177                                                      │

02:35:46 #3375 [Debug] > │         ()                                                                   │

02:35:46 #3376 [Debug] > │     let v178 : (int32 -> string) = closure11()                               │

02:35:46 #3377 [Debug] > │     let v179 : (string []) = v173 |> Array.Parallel.map v178                 │

02:35:46 #3378 [Debug] > │     let v180 : int32 = v179.Length                                           │

02:35:46 #3379 [Debug] > │     let v181 : int32 = v180 - 1                                              │

02:35:46 #3380 [Debug] > │     let v182 : string = v179.[int v181]                                      │

02:35:46 #3381 [Debug] > │     let v183 : int64 = v171.ElapsedMilliseconds                              │

02:35:46 #3382 [Debug] > │     let v184 : int64 = v183 - v172                                           │

02:35:46 #3383 [Debug] > │     let v185 : string = $"Test case {1 + 1}. {v32}. Time: {v184}  "          │

02:35:46 #3384 [Debug] > │     System.Console.WriteLine v185                                            │

02:35:46 #3385 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3386 [Debug] > │     v14 ()                                                                   │

02:35:46 #3387 [Debug] > │     #else                                                                    │

02:35:46 #3388 [Debug] > │     v15 ()                                                                   │

02:35:46 #3389 [Debug] > │     #endif                                                                   │

02:35:46 #3390 [Debug] > │     let v186 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3391 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3392 [Debug] > │     let v187 : System.Diagnostics.Stopwatch = v186 ()                        │

02:35:46 #3393 [Debug] > │     v187.Start ()                                                            │

02:35:46 #3394 [Debug] > │     let v188 : int64 = v187.ElapsedMilliseconds                              │

02:35:46 #3395 [Debug] > │     let v189 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3396 [Debug] > │     let v190 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3397 [Debug] > │     while method1(v19, v190) do                                              │

02:35:46 #3398 [Debug] > │         let v192 : int32 = v190.l0                                           │

02:35:46 #3399 [Debug] > │         v189.[int v192] <- v192                                              │

02:35:46 #3400 [Debug] > │         let v193 : int32 = v192 + 1                                          │

02:35:46 #3401 [Debug] > │         v190.l0 <- v193                                                      │

02:35:46 #3402 [Debug] > │         ()                                                                   │

02:35:46 #3403 [Debug] > │     let v194 : (int32 -> string) = closure12()                               │

02:35:46 #3404 [Debug] > │     let v195 : (string []) = v189 |> Array.Parallel.map v194                 │

02:35:46 #3405 [Debug] > │     let v196 : int32 = v195.Length                                           │

02:35:46 #3406 [Debug] > │     let v197 : int32 = v196 - 1                                              │

02:35:46 #3407 [Debug] > │     let v198 : string = v195.[int v197]                                      │

02:35:46 #3408 [Debug] > │     let v199 : int64 = v187.ElapsedMilliseconds                              │

02:35:46 #3409 [Debug] > │     let v200 : int64 = v199 - v188                                           │

02:35:46 #3410 [Debug] > │     let v201 : string = $"Test case {0 + 1}. {v49}. Time: {v200}  "          │

02:35:46 #3411 [Debug] > │     System.Console.WriteLine v201                                            │

02:35:46 #3412 [Debug] > │     let v202 : string = "bcdea cdeab deabc eabcd abcde"                      │

02:35:46 #3413 [Debug] > │     let v203 : string = v202.ToString ()                                     │

02:35:46 #3414 [Debug] > │     let v204 : string = v198.ToString ()                                     │

02:35:46 #3415 [Debug] > │     let v205 : string = "abc"                                                │

02:35:46 #3416 [Debug] > │     let v206 : string = v205.ToString ()                                     │

02:35:46 #3417 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:46 #3418 [Debug] > │     let v207 : string = $"Solution: {v206}  "                                │

02:35:46 #3419 [Debug] > │     System.Console.WriteLine v207                                            │

02:35:46 #3420 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3421 [Debug] > │     v14 ()                                                                   │

02:35:46 #3422 [Debug] > │     #else                                                                    │

02:35:46 #3423 [Debug] > │     v15 ()                                                                   │

02:35:46 #3424 [Debug] > │     #endif                                                                   │

02:35:46 #3425 [Debug] > │     let v208 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3426 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3427 [Debug] > │     let v209 : System.Diagnostics.Stopwatch = v208 ()                        │

02:35:46 #3428 [Debug] > │     v209.Start ()                                                            │

02:35:46 #3429 [Debug] > │     let v210 : int64 = v209.ElapsedMilliseconds                              │

02:35:46 #3430 [Debug] > │     let v211 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3431 [Debug] > │     let v212 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3432 [Debug] > │     while method1(v19, v212) do                                              │

02:35:46 #3433 [Debug] > │         let v214 : int32 = v212.l0                                           │

02:35:46 #3434 [Debug] > │         v211.[int v214] <- v214                                              │

02:35:46 #3435 [Debug] > │         let v215 : int32 = v214 + 1                                          │

02:35:46 #3436 [Debug] > │         v212.l0 <- v215                                                      │

02:35:46 #3437 [Debug] > │         ()                                                                   │

02:35:46 #3438 [Debug] > │     let v216 : (int32 -> string) = closure13()                               │

02:35:46 #3439 [Debug] > │     let v217 : (string []) = v211 |> Array.Parallel.map v216                 │

02:35:46 #3440 [Debug] > │     let v218 : int32 = v217.Length                                           │

02:35:46 #3441 [Debug] > │     let v219 : int32 = v218 - 1                                              │

02:35:46 #3442 [Debug] > │     let v220 : string = v217.[int v219]                                      │

02:35:46 #3443 [Debug] > │     let v221 : int64 = v209.ElapsedMilliseconds                              │

02:35:46 #3444 [Debug] > │     let v222 : int64 = v221 - v210                                           │

02:35:46 #3445 [Debug] > │     let v223 : string = $"Test case {1 + 1}. {v32}. Time: {v222}  "          │

02:35:46 #3446 [Debug] > │     System.Console.WriteLine v223                                            │

02:35:46 #3447 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3448 [Debug] > │     v14 ()                                                                   │

02:35:46 #3449 [Debug] > │     #else                                                                    │

02:35:46 #3450 [Debug] > │     v15 ()                                                                   │

02:35:46 #3451 [Debug] > │     #endif                                                                   │

02:35:46 #3452 [Debug] > │     let v224 : (unit -> System.Diagnostics.Stopwatch) =                      │

02:35:46 #3453 [Debug] > │ System.Diagnostics.Stopwatch                                                 │

02:35:46 #3454 [Debug] > │     let v225 : System.Diagnostics.Stopwatch = v224 ()                        │

02:35:46 #3455 [Debug] > │     v225.Start ()                                                            │

02:35:46 #3456 [Debug] > │     let v226 : int64 = v225.ElapsedMilliseconds                              │

02:35:46 #3457 [Debug] > │     let v227 : (int32 []) = Array.zeroCreate<int32> (v19)                    │

02:35:46 #3458 [Debug] > │     let v228 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3459 [Debug] > │     while method1(v19, v228) do                                              │

02:35:46 #3460 [Debug] > │         let v230 : int32 = v228.l0                                           │

02:35:46 #3461 [Debug] > │         v227.[int v230] <- v230                                              │

02:35:46 #3462 [Debug] > │         let v231 : int32 = v230 + 1                                          │

02:35:46 #3463 [Debug] > │         v228.l0 <- v231                                                      │

02:35:46 #3464 [Debug] > │         ()                                                                   │

02:35:46 #3465 [Debug] > │     let v232 : (int32 -> string) = closure14()                               │

02:35:46 #3466 [Debug] > │     let v233 : (string []) = v227 |> Array.Parallel.map v232                 │

02:35:46 #3467 [Debug] > │     let v234 : int32 = v233.Length                                           │

02:35:46 #3468 [Debug] > │     let v235 : int32 = v234 - 1                                              │

02:35:46 #3469 [Debug] > │     let v236 : string = v233.[int v235]                                      │

02:35:46 #3470 [Debug] > │     let v237 : int64 = v225.ElapsedMilliseconds                              │

02:35:46 #3471 [Debug] > │     let v238 : int64 = v237 - v226                                           │

02:35:46 #3472 [Debug] > │     let v239 : string = $"Test case {0 + 1}. {v49}. Time: {v238}  "          │

02:35:46 #3473 [Debug] > │     System.Console.WriteLine v239                                            │

02:35:46 #3474 [Debug] > │     let v240 : string = "bca cab abc"                                        │

02:35:46 #3475 [Debug] > │     let v241 : string = v240.ToString ()                                     │

02:35:46 #3476 [Debug] > │     let v242 : string = v236.ToString ()                                     │

02:35:46 #3477 [Debug] > │     let v243 : int64 = 1L                                                    │

02:35:46 #3478 [Debug] > │     let v244 : int64 = 2L                                                    │

02:35:46 #3479 [Debug] > │     let v245 : UH1 = UH1_1                                                   │

02:35:46 #3480 [Debug] > │     let v246 : UH1 = UH1_0(v244, v31, v245)                                  │

02:35:46 #3481 [Debug] > │     let v247 : UH1 = UH1_0(v243, v48, v246)                                  │

02:35:46 #3482 [Debug] > │     let v248 : (struct (int64 * int64) []) = method11(v247)                  │

02:35:46 #3483 [Debug] > │     let v249 : (struct (int64 * int64) -> int64) = closure15()               │

02:35:46 #3484 [Debug] > │     let v250 : (struct (int64 * int64) []) = v248 |> Array.sortBy v249       │

02:35:46 #3485 [Debug] > │     let struct (v251 : int64, v252 : int64) = v250.[int 0]                   │

02:35:46 #3486 [Debug] > │     let v253 : string = $"%A{struct (v251, v252)}"                           │

02:35:46 #3487 [Debug] > │     let v254 : bool = v51 = v52                                              │

02:35:46 #3488 [Debug] > │     let v259 : US0 =                                                         │

02:35:46 #3489 [Debug] > │         if v254 then                                                         │

02:35:46 #3490 [Debug] > │             let v255 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:46 #3491 [Debug] > │             US0_1(v255)                                                      │

02:35:46 #3492 [Debug] > │         else                                                                 │

02:35:46 #3493 [Debug] > │             let v257 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:46 #3494 [Debug] > │             US0_1(v257)                                                      │

02:35:46 #3495 [Debug] > │     let v260 : int64 = 1L                                                    │

02:35:46 #3496 [Debug] > │     let v261 : int64 = 2L                                                    │

02:35:46 #3497 [Debug] > │     let v262 : UH1 = UH1_1                                                   │

02:35:46 #3498 [Debug] > │     let v263 : UH1 = UH1_0(v261, v70, v262)                                  │

02:35:46 #3499 [Debug] > │     let v264 : UH1 = UH1_0(v260, v86, v263)                                  │

02:35:46 #3500 [Debug] > │     let v265 : (struct (int64 * int64) []) = method11(v264)                  │

02:35:46 #3501 [Debug] > │     let v266 : (struct (int64 * int64) []) = v265 |> Array.sortBy v249       │

02:35:46 #3502 [Debug] > │     let struct (v267 : int64, v268 : int64) = v266.[int 0]                   │

02:35:46 #3503 [Debug] > │     let v269 : string = $"%A{struct (v267, v268)}"                           │

02:35:46 #3504 [Debug] > │     let v270 : bool = v89 = v90                                              │

02:35:46 #3505 [Debug] > │     let v275 : US0 =                                                         │

02:35:46 #3506 [Debug] > │         if v270 then                                                         │

02:35:46 #3507 [Debug] > │             let v271 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:46 #3508 [Debug] > │             US0_1(v271)                                                      │

02:35:46 #3509 [Debug] > │         else                                                                 │

02:35:46 #3510 [Debug] > │             let v273 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:46 #3511 [Debug] > │             US0_1(v273)                                                      │

02:35:46 #3512 [Debug] > │     let v276 : int64 = 1L                                                    │

02:35:46 #3513 [Debug] > │     let v277 : int64 = 2L                                                    │

02:35:46 #3514 [Debug] > │     let v278 : UH1 = UH1_1                                                   │

02:35:46 #3515 [Debug] > │     let v279 : UH1 = UH1_0(v277, v108, v278)                                 │

02:35:46 #3516 [Debug] > │     let v280 : UH1 = UH1_0(v276, v124, v279)                                 │

02:35:46 #3517 [Debug] > │     let v281 : (struct (int64 * int64) []) = method11(v280)                  │

02:35:46 #3518 [Debug] > │     let v282 : (struct (int64 * int64) []) = v281 |> Array.sortBy v249       │

02:35:46 #3519 [Debug] > │     let struct (v283 : int64, v284 : int64) = v282.[int 0]                   │

02:35:46 #3520 [Debug] > │     let v285 : string = $"%A{struct (v283, v284)}"                           │

02:35:46 #3521 [Debug] > │     let v286 : bool = v127 = v128                                            │

02:35:46 #3522 [Debug] > │     let v291 : US0 =                                                         │

02:35:46 #3523 [Debug] > │         if v286 then                                                         │

02:35:46 #3524 [Debug] > │             let v287 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:46 #3525 [Debug] > │             US0_1(v287)                                                      │

02:35:46 #3526 [Debug] > │         else                                                                 │

02:35:46 #3527 [Debug] > │             let v289 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:46 #3528 [Debug] > │             US0_1(v289)                                                      │

02:35:46 #3529 [Debug] > │     let v292 : int64 = 1L                                                    │

02:35:46 #3530 [Debug] > │     let v293 : int64 = 2L                                                    │

02:35:46 #3531 [Debug] > │     let v294 : UH1 = UH1_1                                                   │

02:35:46 #3532 [Debug] > │     let v295 : UH1 = UH1_0(v293, v146, v294)                                 │

02:35:46 #3533 [Debug] > │     let v296 : UH1 = UH1_0(v292, v162, v295)                                 │

02:35:46 #3534 [Debug] > │     let v297 : (struct (int64 * int64) []) = method11(v296)                  │

02:35:46 #3535 [Debug] > │     let v298 : (struct (int64 * int64) []) = v297 |> Array.sortBy v249       │

02:35:46 #3536 [Debug] > │     let struct (v299 : int64, v300 : int64) = v298.[int 0]                   │

02:35:46 #3537 [Debug] > │     let v301 : string = $"%A{struct (v299, v300)}"                           │

02:35:46 #3538 [Debug] > │     let v302 : bool = v165 = v166                                            │

02:35:46 #3539 [Debug] > │     let v307 : US0 =                                                         │

02:35:46 #3540 [Debug] > │         if v302 then                                                         │

02:35:46 #3541 [Debug] > │             let v303 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:46 #3542 [Debug] > │             US0_1(v303)                                                      │

02:35:46 #3543 [Debug] > │         else                                                                 │

02:35:46 #3544 [Debug] > │             let v305 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:46 #3545 [Debug] > │             US0_1(v305)                                                      │

02:35:46 #3546 [Debug] > │     let v308 : int64 = 1L                                                    │

02:35:46 #3547 [Debug] > │     let v309 : int64 = 2L                                                    │

02:35:46 #3548 [Debug] > │     let v310 : UH1 = UH1_1                                                   │

02:35:46 #3549 [Debug] > │     let v311 : UH1 = UH1_0(v309, v184, v310)                                 │

02:35:46 #3550 [Debug] > │     let v312 : UH1 = UH1_0(v308, v200, v311)                                 │

02:35:46 #3551 [Debug] > │     let v313 : (struct (int64 * int64) []) = method11(v312)                  │

02:35:46 #3552 [Debug] > │     let v314 : (struct (int64 * int64) []) = v313 |> Array.sortBy v249       │

02:35:46 #3553 [Debug] > │     let struct (v315 : int64, v316 : int64) = v314.[int 0]                   │

02:35:46 #3554 [Debug] > │     let v317 : string = $"%A{struct (v315, v316)}"                           │

02:35:46 #3555 [Debug] > │     let v318 : bool = v203 = v204                                            │

02:35:46 #3556 [Debug] > │     let v323 : US0 =                                                         │

02:35:46 #3557 [Debug] > │         if v318 then                                                         │

02:35:46 #3558 [Debug] > │             let v319 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:46 #3559 [Debug] > │             US0_1(v319)                                                      │

02:35:46 #3560 [Debug] > │         else                                                                 │

02:35:46 #3561 [Debug] > │             let v321 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:46 #3562 [Debug] > │             US0_1(v321)                                                      │

02:35:46 #3563 [Debug] > │     let v324 : int64 = 1L                                                    │

02:35:46 #3564 [Debug] > │     let v325 : int64 = 2L                                                    │

02:35:46 #3565 [Debug] > │     let v326 : UH1 = UH1_1                                                   │

02:35:46 #3566 [Debug] > │     let v327 : UH1 = UH1_0(v325, v222, v326)                                 │

02:35:46 #3567 [Debug] > │     let v328 : UH1 = UH1_0(v324, v238, v327)                                 │

02:35:46 #3568 [Debug] > │     let v329 : (struct (int64 * int64) []) = method11(v328)                  │

02:35:46 #3569 [Debug] > │     let v330 : (struct (int64 * int64) []) = v329 |> Array.sortBy v249       │

02:35:46 #3570 [Debug] > │     let struct (v331 : int64, v332 : int64) = v330.[int 0]                   │

02:35:46 #3571 [Debug] > │     let v333 : string = $"%A{struct (v331, v332)}"                           │

02:35:46 #3572 [Debug] > │     let v334 : bool = v241 = v242                                            │

02:35:46 #3573 [Debug] > │     let v339 : US0 =                                                         │

02:35:46 #3574 [Debug] > │         if v334 then                                                         │

02:35:46 #3575 [Debug] > │             let v335 : System.ConsoleColor = System.ConsoleColor.DarkGreen   │

02:35:46 #3576 [Debug] > │             US0_1(v335)                                                      │

02:35:46 #3577 [Debug] > │         else                                                                 │

02:35:46 #3578 [Debug] > │             let v337 : System.ConsoleColor = System.ConsoleColor.DarkRed     │

02:35:46 #3579 [Debug] > │             US0_1(v337)                                                      │

02:35:46 #3580 [Debug] > │     let v340 : UH0 = UH0_1                                                   │

02:35:46 #3581 [Debug] > │     let v341 : UH0 = UH0_0(v253, v340)                                       │

02:35:46 #3582 [Debug] > │     let v342 : UH0 = UH0_0(v52, v341)                                        │

02:35:46 #3583 [Debug] > │     let v343 : UH0 = UH0_0(v51, v342)                                        │

02:35:46 #3584 [Debug] > │     let v344 : UH0 = UH0_0(v12, v343)                                        │

02:35:46 #3585 [Debug] > │     let v345 : (string []) = method2(v344)                                   │

02:35:46 #3586 [Debug] > │     let v346 : UH0 = UH0_1                                                   │

02:35:46 #3587 [Debug] > │     let v347 : UH0 = UH0_0(v269, v346)                                       │

02:35:46 #3588 [Debug] > │     let v348 : UH0 = UH0_0(v90, v347)                                        │

02:35:46 #3589 [Debug] > │     let v349 : UH0 = UH0_0(v89, v348)                                        │

02:35:46 #3590 [Debug] > │     let v350 : UH0 = UH0_0(v54, v349)                                        │

02:35:46 #3591 [Debug] > │     let v351 : (string []) = method2(v350)                                   │

02:35:46 #3592 [Debug] > │     let v352 : UH0 = UH0_1                                                   │

02:35:46 #3593 [Debug] > │     let v353 : UH0 = UH0_0(v285, v352)                                       │

02:35:46 #3594 [Debug] > │     let v354 : UH0 = UH0_0(v128, v353)                                       │

02:35:46 #3595 [Debug] > │     let v355 : UH0 = UH0_0(v127, v354)                                       │

02:35:46 #3596 [Debug] > │     let v356 : UH0 = UH0_0(v92, v355)                                        │

02:35:46 #3597 [Debug] > │     let v357 : (string []) = method2(v356)                                   │

02:35:46 #3598 [Debug] > │     let v358 : UH0 = UH0_1                                                   │

02:35:46 #3599 [Debug] > │     let v359 : UH0 = UH0_0(v301, v358)                                       │

02:35:46 #3600 [Debug] > │     let v360 : UH0 = UH0_0(v166, v359)                                       │

02:35:46 #3601 [Debug] > │     let v361 : UH0 = UH0_0(v165, v360)                                       │

02:35:46 #3602 [Debug] > │     let v362 : UH0 = UH0_0(v130, v361)                                       │

02:35:46 #3603 [Debug] > │     let v363 : (string []) = method2(v362)                                   │

02:35:46 #3604 [Debug] > │     let v364 : UH0 = UH0_1                                                   │

02:35:46 #3605 [Debug] > │     let v365 : UH0 = UH0_0(v317, v364)                                       │

02:35:46 #3606 [Debug] > │     let v366 : UH0 = UH0_0(v204, v365)                                       │

02:35:46 #3607 [Debug] > │     let v367 : UH0 = UH0_0(v203, v366)                                       │

02:35:46 #3608 [Debug] > │     let v368 : UH0 = UH0_0(v168, v367)                                       │

02:35:46 #3609 [Debug] > │     let v369 : (string []) = method2(v368)                                   │

02:35:46 #3610 [Debug] > │     let v370 : UH0 = UH0_1                                                   │

02:35:46 #3611 [Debug] > │     let v371 : UH0 = UH0_0(v333, v370)                                       │

02:35:46 #3612 [Debug] > │     let v372 : UH0 = UH0_0(v242, v371)                                       │

02:35:46 #3613 [Debug] > │     let v373 : UH0 = UH0_0(v241, v372)                                       │

02:35:46 #3614 [Debug] > │     let v374 : UH0 = UH0_0(v206, v373)                                       │

02:35:46 #3615 [Debug] > │     let v375 : (string []) = method2(v374)                                   │

02:35:46 #3616 [Debug] > │     let v376 : string = "---"                                                │

02:35:46 #3617 [Debug] > │     let v377 : UH0 = UH0_1                                                   │

02:35:46 #3618 [Debug] > │     let v378 : UH0 = UH0_0(v376, v377)                                       │

02:35:46 #3619 [Debug] > │     let v379 : UH0 = UH0_0(v376, v378)                                       │

02:35:46 #3620 [Debug] > │     let v380 : UH0 = UH0_0(v376, v379)                                       │

02:35:46 #3621 [Debug] > │     let v381 : UH0 = UH0_0(v376, v380)                                       │

02:35:46 #3622 [Debug] > │     let v382 : (string []) = method2(v381)                                   │

02:35:46 #3623 [Debug] > │     let v383 : string = "Input"                                              │

02:35:46 #3624 [Debug] > │     let v384 : string = "Expected"                                           │

02:35:46 #3625 [Debug] > │     let v385 : string = "Result"                                             │

02:35:46 #3626 [Debug] > │     let v386 : string = "Best"                                               │

02:35:46 #3627 [Debug] > │     let v387 : UH0 = UH0_1                                                   │

02:35:46 #3628 [Debug] > │     let v388 : UH0 = UH0_0(v386, v387)                                       │

02:35:46 #3629 [Debug] > │     let v389 : UH0 = UH0_0(v385, v388)                                       │

02:35:46 #3630 [Debug] > │     let v390 : UH0 = UH0_0(v384, v389)                                       │

02:35:46 #3631 [Debug] > │     let v391 : UH0 = UH0_0(v383, v390)                                       │

02:35:46 #3632 [Debug] > │     let v392 : (string []) = method2(v391)                                   │

02:35:46 #3633 [Debug] > │     let v393 : UH2 = UH2_1                                                   │

02:35:46 #3634 [Debug] > │     let v394 : UH2 = UH2_0(v345, v393)                                       │

02:35:46 #3635 [Debug] > │     let v395 : UH2 = UH2_0(v351, v394)                                       │

02:35:46 #3636 [Debug] > │     let v396 : UH2 = UH2_0(v357, v395)                                       │

02:35:46 #3637 [Debug] > │     let v397 : UH2 = UH2_0(v363, v396)                                       │

02:35:46 #3638 [Debug] > │     let v398 : UH2 = UH2_0(v369, v397)                                       │

02:35:46 #3639 [Debug] > │     let v399 : UH2 = UH2_0(v375, v398)                                       │

02:35:46 #3640 [Debug] > │     let v400 : UH2 = UH2_0(v382, v399)                                       │

02:35:46 #3641 [Debug] > │     let v401 : UH2 = UH2_0(v392, v400)                                       │

02:35:46 #3642 [Debug] > │     let v402 : ((string []) []) = method14(v401)                             │

02:35:46 #3643 [Debug] > │     let v403 : ((string []) []) = v402 |> Array.transpose                    │

02:35:46 #3644 [Debug] > │     let v404 : int32 = v403.Length                                           │

02:35:46 #3645 [Debug] > │     let v405 : (int64 []) = Array.zeroCreate<int64> (v404)                   │

02:35:46 #3646 [Debug] > │     let v406 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #3647 [Debug] > │     while method1(v404, v406) do                                             │

02:35:46 #3648 [Debug] > │         let v408 : int32 = v406.l0                                           │

02:35:46 #3649 [Debug] > │         let v409 : (string []) = v403.[int v408]                             │

02:35:46 #3650 [Debug] > │         let v410 : int32 = v409.Length                                       │

02:35:46 #3651 [Debug] > │         let v411 : (int64 []) = Array.zeroCreate<int64> (v410)               │

02:35:46 #3652 [Debug] > │         let v412 : Mut0 = {l0 = 0} : Mut0                                    │

02:35:46 #3653 [Debug] > │         while method1(v410, v412) do                                         │

02:35:46 #3654 [Debug] > │             let v414 : int32 = v412.l0                                       │

02:35:46 #3655 [Debug] > │             let v415 : string = v409.[int v414]                              │

02:35:46 #3656 [Debug] > │             let v416 : int64 = System.Convert.ToInt64 v415.Length            │

02:35:46 #3657 [Debug] > │             v411.[int v414] <- v416                                          │

02:35:46 #3658 [Debug] > │             let v417 : int32 = v414 + 1                                      │

02:35:46 #3659 [Debug] > │             v412.l0 <- v417                                                  │

02:35:46 #3660 [Debug] > │             ()                                                               │

02:35:46 #3661 [Debug] > │         let v418 : (int64 []) = v411 |> Array.sortDescending                 │

02:35:46 #3662 [Debug] > │         let v419 : int64 option = v418 |> Array.tryItem 0                    │

02:35:46 #3663 [Debug] > │         let v420 : (int64 -> US1) = closure16()                              │

02:35:46 #3664 [Debug] > │         let v421 : US1 = US1_0                                               │

02:35:46 #3665 [Debug] > │         let v422 : US1 = v419 |> Option.map v420 |> Option.defaultValue v421 │

02:35:46 #3666 [Debug] > │         let v425 : int64 =                                                   │

02:35:46 #3667 [Debug] > │             match v422 with                                                  │

02:35:46 #3668 [Debug] > │             | US1_0 -> (* None *)                                            │

02:35:46 #3669 [Debug] > │                 0L                                                           │

02:35:46 #3670 [Debug] > │             | US1_1(v423) -> (* Some *)                                      │

02:35:46 #3671 [Debug] > │                 v423                                                         │

02:35:46 #3672 [Debug] > │         v405.[int v408] <- v425                                              │

02:35:46 #3673 [Debug] > │         let v426 : int32 = v408 + 1                                          │

02:35:46 #3674 [Debug] > │         v406.l0 <- v426                                                      │

02:35:46 #3675 [Debug] > │         ()                                                                   │

02:35:46 #3676 [Debug] > │     let v427 : int32 = v405.Length                                           │

02:35:46 #3677 [Debug] > │     let v428 : UH3 = UH3_1                                                   │

02:35:46 #3678 [Debug] > │     let v429 : Mut1 = {l0 = 0; l1 = v428; l2 = 0} : Mut1                     │

02:35:46 #3679 [Debug] > │     while method17(v427, v429) do                                            │

02:35:46 #3680 [Debug] > │         let v431 : int32 = v429.l0                                           │

02:35:46 #3681 [Debug] > │         let struct (v432 : UH3, v433 : int32) = v429.l1, v429.l2             │

02:35:46 #3682 [Debug] > │         let v434 : int64 = v405.[int v431]                                   │

02:35:46 #3683 [Debug] > │         let v435 : int32 = v433 + 1                                          │

02:35:46 #3684 [Debug] > │         let v436 : int32 = v431 + 1                                          │

02:35:46 #3685 [Debug] > │         let v437 : UH3 = UH3_0(v433, v434, v432)                             │

02:35:46 #3686 [Debug] > │         v429.l0 <- v436                                                      │

02:35:46 #3687 [Debug] > │         v429.l1 <- v437                                                      │

02:35:46 #3688 [Debug] > │         v429.l2 <- v435                                                      │

02:35:46 #3689 [Debug] > │         ()                                                                   │

02:35:46 #3690 [Debug] > │     let struct (v438 : UH3, v439 : int32) = v429.l1, v429.l2                 │

02:35:46 #3691 [Debug] > │     let v440 : UH3 = UH3_1                                                   │

02:35:46 #3692 [Debug] > │     let v441 : UH3 = method18(v438, v440)                                    │

02:35:46 #3693 [Debug] > │     let v442 : (struct (int32 * int64) []) = method19(v441)                  │

02:35:46 #3694 [Debug] > │     let v443 : Map<int32, int64> = v442 |> Array.map (fun (struct (a, b)) -> │

02:35:46 #3695 [Debug] > │ a, b) |> Map.ofArray                                                         │

02:35:46 #3696 [Debug] > │     let v444 : int64 = v443.[3]                                              │

02:35:46 #3697 [Debug] > │     let v445 : int32 = int32 v444                                            │

02:35:46 #3698 [Debug] > │     let v446 : string = v253.PadRight v445                                   │

02:35:46 #3699 [Debug] > │     let v447 : int64 = v443.[2]                                              │

02:35:46 #3700 [Debug] > │     let v448 : int32 = int32 v447                                            │

02:35:46 #3701 [Debug] > │     let v449 : string = v52.PadRight v448                                    │

02:35:46 #3702 [Debug] > │     let v450 : int64 = v443.[1]                                              │

02:35:46 #3703 [Debug] > │     let v451 : int32 = int32 v450                                            │

02:35:46 #3704 [Debug] > │     let v452 : string = v51.PadRight v451                                    │

02:35:46 #3705 [Debug] > │     let v453 : int64 = v443.[0]                                              │

02:35:46 #3706 [Debug] > │     let v454 : int32 = int32 v453                                            │

02:35:46 #3707 [Debug] > │     let v455 : string = v12.PadRight v454                                    │

02:35:46 #3708 [Debug] > │     let v456 : UH0 = UH0_1                                                   │

02:35:46 #3709 [Debug] > │     let v457 : UH0 = UH0_0(v446, v456)                                       │

02:35:46 #3710 [Debug] > │     let v458 : UH0 = UH0_0(v449, v457)                                       │

02:35:46 #3711 [Debug] > │     let v459 : UH0 = UH0_0(v452, v458)                                       │

02:35:46 #3712 [Debug] > │     let v460 : UH0 = UH0_0(v455, v459)                                       │

02:35:46 #3713 [Debug] > │     let v461 : (string []) = method2(v460)                                   │

02:35:46 #3714 [Debug] > │     let v462 : int64 = v443.[3]                                              │

02:35:46 #3715 [Debug] > │     let v463 : int32 = int32 v462                                            │

02:35:46 #3716 [Debug] > │     let v464 : string = v269.PadRight v463                                   │

02:35:46 #3717 [Debug] > │     let v465 : int64 = v443.[2]                                              │

02:35:46 #3718 [Debug] > │     let v466 : int32 = int32 v465                                            │

02:35:46 #3719 [Debug] > │     let v467 : string = v90.PadRight v466                                    │

02:35:46 #3720 [Debug] > │     let v468 : int64 = v443.[1]                                              │

02:35:46 #3721 [Debug] > │     let v469 : int32 = int32 v468                                            │

02:35:46 #3722 [Debug] > │     let v470 : string = v89.PadRight v469                                    │

02:35:46 #3723 [Debug] > │     let v471 : int64 = v443.[0]                                              │

02:35:46 #3724 [Debug] > │     let v472 : int32 = int32 v471                                            │

02:35:46 #3725 [Debug] > │     let v473 : string = v54.PadRight v472                                    │

02:35:46 #3726 [Debug] > │     let v474 : UH0 = UH0_1                                                   │

02:35:46 #3727 [Debug] > │     let v475 : UH0 = UH0_0(v464, v474)                                       │

02:35:46 #3728 [Debug] > │     let v476 : UH0 = UH0_0(v467, v475)                                       │

02:35:46 #3729 [Debug] > │     let v477 : UH0 = UH0_0(v470, v476)                                       │

02:35:46 #3730 [Debug] > │     let v478 : UH0 = UH0_0(v473, v477)                                       │

02:35:46 #3731 [Debug] > │     let v479 : (string []) = method2(v478)                                   │

02:35:46 #3732 [Debug] > │     let v480 : int64 = v443.[3]                                              │

02:35:46 #3733 [Debug] > │     let v481 : int32 = int32 v480                                            │

02:35:46 #3734 [Debug] > │     let v482 : string = v285.PadRight v481                                   │

02:35:46 #3735 [Debug] > │     let v483 : int64 = v443.[2]                                              │

02:35:46 #3736 [Debug] > │     let v484 : int32 = int32 v483                                            │

02:35:46 #3737 [Debug] > │     let v485 : string = v128.PadRight v484                                   │

02:35:46 #3738 [Debug] > │     let v486 : int64 = v443.[1]                                              │

02:35:46 #3739 [Debug] > │     let v487 : int32 = int32 v486                                            │

02:35:46 #3740 [Debug] > │     let v488 : string = v127.PadRight v487                                   │

02:35:46 #3741 [Debug] > │     let v489 : int64 = v443.[0]                                              │

02:35:46 #3742 [Debug] > │     let v490 : int32 = int32 v489                                            │

02:35:46 #3743 [Debug] > │     let v491 : string = v92.PadRight v490                                    │

02:35:46 #3744 [Debug] > │     let v492 : UH0 = UH0_1                                                   │

02:35:46 #3745 [Debug] > │     let v493 : UH0 = UH0_0(v482, v492)                                       │

02:35:46 #3746 [Debug] > │     let v494 : UH0 = UH0_0(v485, v493)                                       │

02:35:46 #3747 [Debug] > │     let v495 : UH0 = UH0_0(v488, v494)                                       │

02:35:46 #3748 [Debug] > │     let v496 : UH0 = UH0_0(v491, v495)                                       │

02:35:46 #3749 [Debug] > │     let v497 : (string []) = method2(v496)                                   │

02:35:46 #3750 [Debug] > │     let v498 : int64 = v443.[3]                                              │

02:35:46 #3751 [Debug] > │     let v499 : int32 = int32 v498                                            │

02:35:46 #3752 [Debug] > │     let v500 : string = v301.PadRight v499                                   │

02:35:46 #3753 [Debug] > │     let v501 : int64 = v443.[2]                                              │

02:35:46 #3754 [Debug] > │     let v502 : int32 = int32 v501                                            │

02:35:46 #3755 [Debug] > │     let v503 : string = v166.PadRight v502                                   │

02:35:46 #3756 [Debug] > │     let v504 : int64 = v443.[1]                                              │

02:35:46 #3757 [Debug] > │     let v505 : int32 = int32 v504                                            │

02:35:46 #3758 [Debug] > │     let v506 : string = v165.PadRight v505                                   │

02:35:46 #3759 [Debug] > │     let v507 : int64 = v443.[0]                                              │

02:35:46 #3760 [Debug] > │     let v508 : int32 = int32 v507                                            │

02:35:46 #3761 [Debug] > │     let v509 : string = v130.PadRight v508                                   │

02:35:46 #3762 [Debug] > │     let v510 : UH0 = UH0_1                                                   │

02:35:46 #3763 [Debug] > │     let v511 : UH0 = UH0_0(v500, v510)                                       │

02:35:46 #3764 [Debug] > │     let v512 : UH0 = UH0_0(v503, v511)                                       │

02:35:46 #3765 [Debug] > │     let v513 : UH0 = UH0_0(v506, v512)                                       │

02:35:46 #3766 [Debug] > │     let v514 : UH0 = UH0_0(v509, v513)                                       │

02:35:46 #3767 [Debug] > │     let v515 : (string []) = method2(v514)                                   │

02:35:46 #3768 [Debug] > │     let v516 : int64 = v443.[3]                                              │

02:35:46 #3769 [Debug] > │     let v517 : int32 = int32 v516                                            │

02:35:46 #3770 [Debug] > │     let v518 : string = v317.PadRight v517                                   │

02:35:46 #3771 [Debug] > │     let v519 : int64 = v443.[2]                                              │

02:35:46 #3772 [Debug] > │     let v520 : int32 = int32 v519                                            │

02:35:46 #3773 [Debug] > │     let v521 : string = v204.PadRight v520                                   │

02:35:46 #3774 [Debug] > │     let v522 : int64 = v443.[1]                                              │

02:35:46 #3775 [Debug] > │     let v523 : int32 = int32 v522                                            │

02:35:46 #3776 [Debug] > │     let v524 : string = v203.PadRight v523                                   │

02:35:46 #3777 [Debug] > │     let v525 : int64 = v443.[0]                                              │

02:35:46 #3778 [Debug] > │     let v526 : int32 = int32 v525                                            │

02:35:46 #3779 [Debug] > │     let v527 : string = v168.PadRight v526                                   │

02:35:46 #3780 [Debug] > │     let v528 : UH0 = UH0_1                                                   │

02:35:46 #3781 [Debug] > │     let v529 : UH0 = UH0_0(v518, v528)                                       │

02:35:46 #3782 [Debug] > │     let v530 : UH0 = UH0_0(v521, v529)                                       │

02:35:46 #3783 [Debug] > │     let v531 : UH0 = UH0_0(v524, v530)                                       │

02:35:46 #3784 [Debug] > │     let v532 : UH0 = UH0_0(v527, v531)                                       │

02:35:46 #3785 [Debug] > │     let v533 : (string []) = method2(v532)                                   │

02:35:46 #3786 [Debug] > │     let v534 : int64 = v443.[3]                                              │

02:35:46 #3787 [Debug] > │     let v535 : int32 = int32 v534                                            │

02:35:46 #3788 [Debug] > │     let v536 : string = v333.PadRight v535                                   │

02:35:46 #3789 [Debug] > │     let v537 : int64 = v443.[2]                                              │

02:35:46 #3790 [Debug] > │     let v538 : int32 = int32 v537                                            │

02:35:46 #3791 [Debug] > │     let v539 : string = v242.PadRight v538                                   │

02:35:46 #3792 [Debug] > │     let v540 : int64 = v443.[1]                                              │

02:35:46 #3793 [Debug] > │     let v541 : int32 = int32 v540                                            │

02:35:46 #3794 [Debug] > │     let v542 : string = v241.PadRight v541                                   │

02:35:46 #3795 [Debug] > │     let v543 : int64 = v443.[0]                                              │

02:35:46 #3796 [Debug] > │     let v544 : int32 = int32 v543                                            │

02:35:46 #3797 [Debug] > │     let v545 : string = v206.PadRight v544                                   │

02:35:46 #3798 [Debug] > │     let v546 : UH0 = UH0_1                                                   │

02:35:46 #3799 [Debug] > │     let v547 : UH0 = UH0_0(v536, v546)                                       │

02:35:46 #3800 [Debug] > │     let v548 : UH0 = UH0_0(v539, v547)                                       │

02:35:46 #3801 [Debug] > │     let v549 : UH0 = UH0_0(v542, v548)                                       │

02:35:46 #3802 [Debug] > │     let v550 : UH0 = UH0_0(v545, v549)                                       │

02:35:46 #3803 [Debug] > │     let v551 : (string []) = method2(v550)                                   │

02:35:46 #3804 [Debug] > │     let v552 : int64 = v443.[3]                                              │

02:35:46 #3805 [Debug] > │     let v553 : int32 = int32 v552                                            │

02:35:46 #3806 [Debug] > │     let v554 : string = v376.PadRight v553                                   │

02:35:46 #3807 [Debug] > │     let v555 : int64 = v443.[2]                                              │

02:35:46 #3808 [Debug] > │     let v556 : int32 = int32 v555                                            │

02:35:46 #3809 [Debug] > │     let v557 : string = v376.PadRight v556                                   │

02:35:46 #3810 [Debug] > │     let v558 : int64 = v443.[1]                                              │

02:35:46 #3811 [Debug] > │     let v559 : int32 = int32 v558                                            │

02:35:46 #3812 [Debug] > │     let v560 : string = v376.PadRight v559                                   │

02:35:46 #3813 [Debug] > │     let v561 : int64 = v443.[0]                                              │

02:35:46 #3814 [Debug] > │     let v562 : int32 = int32 v561                                            │

02:35:46 #3815 [Debug] > │     let v563 : string = v376.PadRight v562                                   │

02:35:46 #3816 [Debug] > │     let v564 : UH0 = UH0_1                                                   │

02:35:46 #3817 [Debug] > │     let v565 : UH0 = UH0_0(v554, v564)                                       │

02:35:46 #3818 [Debug] > │     let v566 : UH0 = UH0_0(v557, v565)                                       │

02:35:46 #3819 [Debug] > │     let v567 : UH0 = UH0_0(v560, v566)                                       │

02:35:46 #3820 [Debug] > │     let v568 : UH0 = UH0_0(v563, v567)                                       │

02:35:46 #3821 [Debug] > │     let v569 : (string []) = method2(v568)                                   │

02:35:46 #3822 [Debug] > │     let v570 : int64 = v443.[3]                                              │

02:35:46 #3823 [Debug] > │     let v571 : int32 = int32 v570                                            │

02:35:46 #3824 [Debug] > │     let v572 : string = v386.PadRight v571                                   │

02:35:46 #3825 [Debug] > │     let v573 : int64 = v443.[2]                                              │

02:35:46 #3826 [Debug] > │     let v574 : int32 = int32 v573                                            │

02:35:46 #3827 [Debug] > │     let v575 : string = v385.PadRight v574                                   │

02:35:46 #3828 [Debug] > │     let v576 : int64 = v443.[1]                                              │

02:35:46 #3829 [Debug] > │     let v577 : int32 = int32 v576                                            │

02:35:46 #3830 [Debug] > │     let v578 : string = v384.PadRight v577                                   │

02:35:46 #3831 [Debug] > │     let v579 : int64 = v443.[0]                                              │

02:35:46 #3832 [Debug] > │     let v580 : int32 = int32 v579                                            │

02:35:46 #3833 [Debug] > │     let v581 : string = v383.PadRight v580                                   │

02:35:46 #3834 [Debug] > │     let v582 : UH0 = UH0_1                                                   │

02:35:46 #3835 [Debug] > │     let v583 : UH0 = UH0_0(v572, v582)                                       │

02:35:46 #3836 [Debug] > │     let v584 : UH0 = UH0_0(v575, v583)                                       │

02:35:46 #3837 [Debug] > │     let v585 : UH0 = UH0_0(v578, v584)                                       │

02:35:46 #3838 [Debug] > │     let v586 : UH0 = UH0_0(v581, v585)                                       │

02:35:46 #3839 [Debug] > │     let v587 : (string []) = method2(v586)                                   │

02:35:46 #3840 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:46 #3841 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3842 [Debug] > │     let v588 : (unit -> unit) = closure17()                                  │

02:35:46 #3843 [Debug] > │     v588 ()                                                                  │

02:35:46 #3844 [Debug] > │     #else                                                                    │

02:35:46 #3845 [Debug] > │     let v589 : (unit -> unit) = closure18()                                  │

02:35:46 #3846 [Debug] > │     v589 ()                                                                  │

02:35:46 #3847 [Debug] > │     #endif                                                                   │

02:35:46 #3848 [Debug] > │     let v590 : string = "\t| "                                               │

02:35:46 #3849 [Debug] > │     let v591 : string = System.String.Join (v590, v587)                      │

02:35:46 #3850 [Debug] > │     System.Console.WriteLine v591                                            │

02:35:46 #3851 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3852 [Debug] > │     v588 ()                                                                  │

02:35:46 #3853 [Debug] > │     #else                                                                    │

02:35:46 #3854 [Debug] > │     v589 ()                                                                  │

02:35:46 #3855 [Debug] > │     #endif                                                                   │

02:35:46 #3856 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3857 [Debug] > │     v588 ()                                                                  │

02:35:46 #3858 [Debug] > │     #else                                                                    │

02:35:46 #3859 [Debug] > │     v589 ()                                                                  │

02:35:46 #3860 [Debug] > │     #endif                                                                   │

02:35:46 #3861 [Debug] > │     let v592 : string = System.String.Join (v590, v569)                      │

02:35:46 #3862 [Debug] > │     System.Console.WriteLine v592                                            │

02:35:46 #3863 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3864 [Debug] > │     v588 ()                                                                  │

02:35:46 #3865 [Debug] > │     #else                                                                    │

02:35:46 #3866 [Debug] > │     v589 ()                                                                  │

02:35:46 #3867 [Debug] > │     #endif                                                                   │

02:35:46 #3868 [Debug] > │     match v339 with                                                          │

02:35:46 #3869 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:46 #3870 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3871 [Debug] > │         v588 ()                                                              │

02:35:46 #3872 [Debug] > │         #else                                                                │

02:35:46 #3873 [Debug] > │         v589 ()                                                              │

02:35:46 #3874 [Debug] > │         #endif                                                               │

02:35:46 #3875 [Debug] > │         ()                                                                   │

02:35:46 #3876 [Debug] > │     | US0_1(v593) -> (* Some *)                                              │

02:35:46 #3877 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3878 [Debug] > │         let v594 : (unit -> unit) = closure19()                              │

02:35:46 #3879 [Debug] > │         v594 ()                                                              │

02:35:46 #3880 [Debug] > │         #else                                                                │

02:35:46 #3881 [Debug] > │         let v595 : (unit -> unit) = closure20(v593)                          │

02:35:46 #3882 [Debug] > │         v595 ()                                                              │

02:35:46 #3883 [Debug] > │         #endif                                                               │

02:35:46 #3884 [Debug] > │         ()                                                                   │

02:35:46 #3885 [Debug] > │     let v596 : string = System.String.Join (v590, v551)                      │

02:35:46 #3886 [Debug] > │     System.Console.WriteLine v596                                            │

02:35:46 #3887 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3888 [Debug] > │     v588 ()                                                                  │

02:35:46 #3889 [Debug] > │     #else                                                                    │

02:35:46 #3890 [Debug] > │     v589 ()                                                                  │

02:35:46 #3891 [Debug] > │     #endif                                                                   │

02:35:46 #3892 [Debug] > │     match v323 with                                                          │

02:35:46 #3893 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:46 #3894 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3895 [Debug] > │         v588 ()                                                              │

02:35:46 #3896 [Debug] > │         #else                                                                │

02:35:46 #3897 [Debug] > │         v589 ()                                                              │

02:35:46 #3898 [Debug] > │         #endif                                                               │

02:35:46 #3899 [Debug] > │         ()                                                                   │

02:35:46 #3900 [Debug] > │     | US0_1(v597) -> (* Some *)                                              │

02:35:46 #3901 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3902 [Debug] > │         let v598 : (unit -> unit) = closure19()                              │

02:35:46 #3903 [Debug] > │         v598 ()                                                              │

02:35:46 #3904 [Debug] > │         #else                                                                │

02:35:46 #3905 [Debug] > │         let v599 : (unit -> unit) = closure20(v597)                          │

02:35:46 #3906 [Debug] > │         v599 ()                                                              │

02:35:46 #3907 [Debug] > │         #endif                                                               │

02:35:46 #3908 [Debug] > │         ()                                                                   │

02:35:46 #3909 [Debug] > │     let v600 : string = System.String.Join (v590, v533)                      │

02:35:46 #3910 [Debug] > │     System.Console.WriteLine v600                                            │

02:35:46 #3911 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3912 [Debug] > │     v588 ()                                                                  │

02:35:46 #3913 [Debug] > │     #else                                                                    │

02:35:46 #3914 [Debug] > │     v589 ()                                                                  │

02:35:46 #3915 [Debug] > │     #endif                                                                   │

02:35:46 #3916 [Debug] > │     match v307 with                                                          │

02:35:46 #3917 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:46 #3918 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3919 [Debug] > │         v588 ()                                                              │

02:35:46 #3920 [Debug] > │         #else                                                                │

02:35:46 #3921 [Debug] > │         v589 ()                                                              │

02:35:46 #3922 [Debug] > │         #endif                                                               │

02:35:46 #3923 [Debug] > │         ()                                                                   │

02:35:46 #3924 [Debug] > │     | US0_1(v601) -> (* Some *)                                              │

02:35:46 #3925 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3926 [Debug] > │         let v602 : (unit -> unit) = closure19()                              │

02:35:46 #3927 [Debug] > │         v602 ()                                                              │

02:35:46 #3928 [Debug] > │         #else                                                                │

02:35:46 #3929 [Debug] > │         let v603 : (unit -> unit) = closure20(v601)                          │

02:35:46 #3930 [Debug] > │         v603 ()                                                              │

02:35:46 #3931 [Debug] > │         #endif                                                               │

02:35:46 #3932 [Debug] > │         ()                                                                   │

02:35:46 #3933 [Debug] > │     let v604 : string = System.String.Join (v590, v515)                      │

02:35:46 #3934 [Debug] > │     System.Console.WriteLine v604                                            │

02:35:46 #3935 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3936 [Debug] > │     v588 ()                                                                  │

02:35:46 #3937 [Debug] > │     #else                                                                    │

02:35:46 #3938 [Debug] > │     v589 ()                                                                  │

02:35:46 #3939 [Debug] > │     #endif                                                                   │

02:35:46 #3940 [Debug] > │     match v291 with                                                          │

02:35:46 #3941 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:46 #3942 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3943 [Debug] > │         v588 ()                                                              │

02:35:46 #3944 [Debug] > │         #else                                                                │

02:35:46 #3945 [Debug] > │         v589 ()                                                              │

02:35:46 #3946 [Debug] > │         #endif                                                               │

02:35:46 #3947 [Debug] > │         ()                                                                   │

02:35:46 #3948 [Debug] > │     | US0_1(v605) -> (* Some *)                                              │

02:35:46 #3949 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3950 [Debug] > │         let v606 : (unit -> unit) = closure19()                              │

02:35:46 #3951 [Debug] > │         v606 ()                                                              │

02:35:46 #3952 [Debug] > │         #else                                                                │

02:35:46 #3953 [Debug] > │         let v607 : (unit -> unit) = closure20(v605)                          │

02:35:46 #3954 [Debug] > │         v607 ()                                                              │

02:35:46 #3955 [Debug] > │         #endif                                                               │

02:35:46 #3956 [Debug] > │         ()                                                                   │

02:35:46 #3957 [Debug] > │     let v608 : string = System.String.Join (v590, v497)                      │

02:35:46 #3958 [Debug] > │     System.Console.WriteLine v608                                            │

02:35:46 #3959 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3960 [Debug] > │     v588 ()                                                                  │

02:35:46 #3961 [Debug] > │     #else                                                                    │

02:35:46 #3962 [Debug] > │     v589 ()                                                                  │

02:35:46 #3963 [Debug] > │     #endif                                                                   │

02:35:46 #3964 [Debug] > │     match v275 with                                                          │

02:35:46 #3965 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:46 #3966 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3967 [Debug] > │         v588 ()                                                              │

02:35:46 #3968 [Debug] > │         #else                                                                │

02:35:46 #3969 [Debug] > │         v589 ()                                                              │

02:35:46 #3970 [Debug] > │         #endif                                                               │

02:35:46 #3971 [Debug] > │         ()                                                                   │

02:35:46 #3972 [Debug] > │     | US0_1(v609) -> (* Some *)                                              │

02:35:46 #3973 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3974 [Debug] > │         let v610 : (unit -> unit) = closure19()                              │

02:35:46 #3975 [Debug] > │         v610 ()                                                              │

02:35:46 #3976 [Debug] > │         #else                                                                │

02:35:46 #3977 [Debug] > │         let v611 : (unit -> unit) = closure20(v609)                          │

02:35:46 #3978 [Debug] > │         v611 ()                                                              │

02:35:46 #3979 [Debug] > │         #endif                                                               │

02:35:46 #3980 [Debug] > │         ()                                                                   │

02:35:46 #3981 [Debug] > │     let v612 : string = System.String.Join (v590, v479)                      │

02:35:46 #3982 [Debug] > │     System.Console.WriteLine v612                                            │

02:35:46 #3983 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #3984 [Debug] > │     v588 ()                                                                  │

02:35:46 #3985 [Debug] > │     #else                                                                    │

02:35:46 #3986 [Debug] > │     v589 ()                                                                  │

02:35:46 #3987 [Debug] > │     #endif                                                                   │

02:35:46 #3988 [Debug] > │     match v259 with                                                          │

02:35:46 #3989 [Debug] > │     | US0_0 -> (* None *)                                                    │

02:35:46 #3990 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3991 [Debug] > │         v588 ()                                                              │

02:35:46 #3992 [Debug] > │         #else                                                                │

02:35:46 #3993 [Debug] > │         v589 ()                                                              │

02:35:46 #3994 [Debug] > │         #endif                                                               │

02:35:46 #3995 [Debug] > │         ()                                                                   │

02:35:46 #3996 [Debug] > │     | US0_1(v613) -> (* Some *)                                              │

02:35:46 #3997 [Debug] > │         #if FABLE_COMPILER_RUST                                              │

02:35:46 #3998 [Debug] > │         let v614 : (unit -> unit) = closure19()                              │

02:35:46 #3999 [Debug] > │         v614 ()                                                              │

02:35:46 #4000 [Debug] > │         #else                                                                │

02:35:46 #4001 [Debug] > │         let v615 : (unit -> unit) = closure20(v613)                          │

02:35:46 #4002 [Debug] > │         v615 ()                                                              │

02:35:46 #4003 [Debug] > │         #endif                                                               │

02:35:46 #4004 [Debug] > │         ()                                                                   │

02:35:46 #4005 [Debug] > │     let v616 : string = System.String.Join (v590, v461)                      │

02:35:46 #4006 [Debug] > │     System.Console.WriteLine v616                                            │

02:35:46 #4007 [Debug] > │     #if FABLE_COMPILER_RUST                                                  │

02:35:46 #4008 [Debug] > │     v588 ()                                                                  │

02:35:46 #4009 [Debug] > │     #else                                                                    │

02:35:46 #4010 [Debug] > │     v589 ()                                                                  │

02:35:46 #4011 [Debug] > │     #endif                                                                   │

02:35:46 #4012 [Debug] > │     let v617 : (int64 -> float) = float                                      │

02:35:46 #4013 [Debug] > │     let v618 : float = v617 v31                                              │

02:35:46 #4014 [Debug] > │     let v619 : float = v617 v48                                              │

02:35:46 #4015 [Debug] > │     let v620 : UH4 = UH4_1                                                   │

02:35:46 #4016 [Debug] > │     let v621 : UH4 = UH4_0(v618, v620)                                       │

02:35:46 #4017 [Debug] > │     let v622 : UH4 = UH4_0(v619, v621)                                       │

02:35:46 #4018 [Debug] > │     let v623 : (float []) = method22(v622)                                   │

02:35:46 #4019 [Debug] > │     let v624 : (int64 -> float) = float                                      │

02:35:46 #4020 [Debug] > │     let v625 : float = v624 v70                                              │

02:35:46 #4021 [Debug] > │     let v626 : float = v624 v86                                              │

02:35:46 #4022 [Debug] > │     let v627 : UH4 = UH4_1                                                   │

02:35:46 #4023 [Debug] > │     let v628 : UH4 = UH4_0(v625, v627)                                       │

02:35:46 #4024 [Debug] > │     let v629 : UH4 = UH4_0(v626, v628)                                       │

02:35:46 #4025 [Debug] > │     let v630 : (float []) = method22(v629)                                   │

02:35:46 #4026 [Debug] > │     let v631 : (int64 -> float) = float                                      │

02:35:46 #4027 [Debug] > │     let v632 : float = v631 v108                                             │

02:35:46 #4028 [Debug] > │     let v633 : float = v631 v124                                             │

02:35:46 #4029 [Debug] > │     let v634 : UH4 = UH4_1                                                   │

02:35:46 #4030 [Debug] > │     let v635 : UH4 = UH4_0(v632, v634)                                       │

02:35:46 #4031 [Debug] > │     let v636 : UH4 = UH4_0(v633, v635)                                       │

02:35:46 #4032 [Debug] > │     let v637 : (float []) = method22(v636)                                   │

02:35:46 #4033 [Debug] > │     let v638 : (int64 -> float) = float                                      │

02:35:46 #4034 [Debug] > │     let v639 : float = v638 v146                                             │

02:35:46 #4035 [Debug] > │     let v640 : float = v638 v162                                             │

02:35:46 #4036 [Debug] > │     let v641 : UH4 = UH4_1                                                   │

02:35:46 #4037 [Debug] > │     let v642 : UH4 = UH4_0(v639, v641)                                       │

02:35:46 #4038 [Debug] > │     let v643 : UH4 = UH4_0(v640, v642)                                       │

02:35:46 #4039 [Debug] > │     let v644 : (float []) = method22(v643)                                   │

02:35:46 #4040 [Debug] > │     let v645 : (int64 -> float) = float                                      │

02:35:46 #4041 [Debug] > │     let v646 : float = v645 v184                                             │

02:35:46 #4042 [Debug] > │     let v647 : float = v645 v200                                             │

02:35:46 #4043 [Debug] > │     let v648 : UH4 = UH4_1                                                   │

02:35:46 #4044 [Debug] > │     let v649 : UH4 = UH4_0(v646, v648)                                       │

02:35:46 #4045 [Debug] > │     let v650 : UH4 = UH4_0(v647, v649)                                       │

02:35:46 #4046 [Debug] > │     let v651 : (float []) = method22(v650)                                   │

02:35:46 #4047 [Debug] > │     let v652 : (int64 -> float) = float                                      │

02:35:46 #4048 [Debug] > │     let v653 : float = v652 v222                                             │

02:35:46 #4049 [Debug] > │     let v654 : float = v652 v238                                             │

02:35:46 #4050 [Debug] > │     let v655 : UH4 = UH4_1                                                   │

02:35:46 #4051 [Debug] > │     let v656 : UH4 = UH4_0(v653, v655)                                       │

02:35:46 #4052 [Debug] > │     let v657 : UH4 = UH4_0(v654, v656)                                       │

02:35:46 #4053 [Debug] > │     let v658 : (float []) = method22(v657)                                   │

02:35:46 #4054 [Debug] > │     let v659 : UH5 = UH5_1                                                   │

02:35:46 #4055 [Debug] > │     let v660 : UH5 = UH5_0(v623, v659)                                       │

02:35:46 #4056 [Debug] > │     let v661 : UH5 = UH5_0(v630, v660)                                       │

02:35:46 #4057 [Debug] > │     let v662 : UH5 = UH5_0(v637, v661)                                       │

02:35:46 #4058 [Debug] > │     let v663 : UH5 = UH5_0(v644, v662)                                       │

02:35:46 #4059 [Debug] > │     let v664 : UH5 = UH5_0(v651, v663)                                       │

02:35:46 #4060 [Debug] > │     let v665 : UH5 = UH5_0(v658, v664)                                       │

02:35:46 #4061 [Debug] > │     let v666 : ((float []) []) = method25(v665)                              │

02:35:46 #4062 [Debug] > │     let v667 : ((float []) []) = v666 |> Array.transpose                     │

02:35:46 #4063 [Debug] > │     let v668 : int32 = v667.Length                                           │

02:35:46 #4064 [Debug] > │     let v669 : (float []) = Array.zeroCreate<float> (v668)                   │

02:35:46 #4065 [Debug] > │     let v670 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #4066 [Debug] > │     while method1(v668, v670) do                                             │

02:35:46 #4067 [Debug] > │         let v672 : int32 = v670.l0                                           │

02:35:46 #4068 [Debug] > │         let v673 : (float []) = v667.[int v672]                              │

02:35:46 #4069 [Debug] > │         let v674 : float = v673 |> Array.average                             │

02:35:46 #4070 [Debug] > │         v669.[int v672] <- v674                                              │

02:35:46 #4071 [Debug] > │         let v675 : int32 = v672 + 1                                          │

02:35:46 #4072 [Debug] > │         v670.l0 <- v675                                                      │

02:35:46 #4073 [Debug] > │         ()                                                                   │

02:35:46 #4074 [Debug] > │     let v676 : (float -> int64) = int64                                      │

02:35:46 #4075 [Debug] > │     let v677 : int32 = v669.Length                                           │

02:35:46 #4076 [Debug] > │     let v678 : (int64 []) = Array.zeroCreate<int64> (v677)                   │

02:35:46 #4077 [Debug] > │     let v679 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #4078 [Debug] > │     while method1(v677, v679) do                                             │

02:35:46 #4079 [Debug] > │         let v681 : int32 = v679.l0                                           │

02:35:46 #4080 [Debug] > │         let v682 : float = v669.[int v681]                                   │

02:35:46 #4081 [Debug] > │         let v683 : int64 = v676 v682                                         │

02:35:46 #4082 [Debug] > │         v678.[int v681] <- v683                                              │

02:35:46 #4083 [Debug] > │         let v684 : int32 = v681 + 1                                          │

02:35:46 #4084 [Debug] > │         v679.l0 <- v684                                                      │

02:35:46 #4085 [Debug] > │         ()                                                                   │

02:35:46 #4086 [Debug] > │     let v685 : int32 = v678.Length                                           │

02:35:46 #4087 [Debug] > │     let v686 : UH3 = UH3_1                                                   │

02:35:46 #4088 [Debug] > │     let v687 : Mut1 = {l0 = 0; l1 = v686; l2 = 0} : Mut1                     │

02:35:46 #4089 [Debug] > │     while method17(v685, v687) do                                            │

02:35:46 #4090 [Debug] > │         let v689 : int32 = v687.l0                                           │

02:35:46 #4091 [Debug] > │         let struct (v690 : UH3, v691 : int32) = v687.l1, v687.l2             │

02:35:46 #4092 [Debug] > │         let v692 : int64 = v678.[int v689]                                   │

02:35:46 #4093 [Debug] > │         let v693 : int32 = v691 + 1                                          │

02:35:46 #4094 [Debug] > │         let v694 : int32 = v689 + 1                                          │

02:35:46 #4095 [Debug] > │         let v695 : UH3 = UH3_0(v691, v692, v690)                             │

02:35:46 #4096 [Debug] > │         v687.l0 <- v694                                                      │

02:35:46 #4097 [Debug] > │         v687.l1 <- v695                                                      │

02:35:46 #4098 [Debug] > │         v687.l2 <- v693                                                      │

02:35:46 #4099 [Debug] > │         ()                                                                   │

02:35:46 #4100 [Debug] > │     let struct (v696 : UH3, v697 : int32) = v687.l1, v687.l2                 │

02:35:46 #4101 [Debug] > │     let v698 : UH3 = UH3_1                                                   │

02:35:46 #4102 [Debug] > │     let v699 : UH3 = method18(v696, v698)                                    │

02:35:46 #4103 [Debug] > │     let v700 : (struct (int32 * int64) []) = method19(v699)                  │

02:35:46 #4104 [Debug] > │     System.Console.WriteLine v9                                              │

02:35:46 #4105 [Debug] > │     let v701 : string = "Average Ranking  "                                  │

02:35:46 #4106 [Debug] > │     System.Console.WriteLine v701                                            │

02:35:46 #4107 [Debug] > │     let v702 : (struct (int32 * int64) -> int64) = closure21()               │

02:35:46 #4108 [Debug] > │     let v703 : (struct (int32 * int64) []) = v700 |> Array.sortBy v702       │

02:35:46 #4109 [Debug] > │     let v704 : int32 = v703.Length                                           │

02:35:46 #4110 [Debug] > │     let v705 : Mut0 = {l0 = 0} : Mut0                                        │

02:35:46 #4111 [Debug] > │     while method1(v704, v705) do                                             │

02:35:46 #4112 [Debug] > │         let v707 : int32 = v705.l0                                           │

02:35:46 #4113 [Debug] > │         let struct (v708 : int32, v709 : int64) = v703.[int v707]            │

02:35:46 #4114 [Debug] > │         let v710 : string = $"Test case %d{v708 + 1}. Average Time: %A{v709} │

02:35:46 #4115 [Debug] > │ "                                                                            │

02:35:46 #4116 [Debug] > │         System.Console.WriteLine v710                                        │

02:35:46 #4117 [Debug] > │         let v711 : int32 = v707 + 1                                          │

02:35:46 #4118 [Debug] > │         v705.l0 <- v711                                                      │

02:35:46 #4119 [Debug] > │         ()                                                                   │

02:35:46 #4120 [Debug] > │     ()                                                                       │

02:35:46 #4121 [Debug] > │ method0()                                                                    │

02:35:46 #4122 [Debug] > │                                                                              │

02:35:46 #4123 [Debug] > │                                                                              │

02:35:46 #4124 [Debug] > │                                                                              │

02:35:46 #4125 [Debug] > │ Test: v0                                                                     │

02:35:46 #4126 [Debug] > │                                                                              │

02:35:46 #4127 [Debug] > │ Solution: z                                                                  │

02:35:46 #4128 [Debug] > │ Test case 2. FA. Time: 1                                                     │

02:35:46 #4129 [Debug] > │ Test case 1. F. Time: 2                                                      │

02:35:46 #4130 [Debug] > │                                                                              │

02:35:46 #4131 [Debug] > │ Solution: aa                                                                 │

02:35:46 #4132 [Debug] > │ Test case 2. FA. Time: 1                                                     │

02:35:46 #4133 [Debug] > │ Test case 1. F. Time: 3                                                      │

02:35:46 #4134 [Debug] > │                                                                              │

02:35:46 #4135 [Debug] > │ Solution: abab                                                               │

02:35:46 #4136 [Debug] > │ Test case 2. FA. Time: 1                                                     │

02:35:46 #4137 [Debug] > │ Test case 1. F. Time: 2                                                      │

02:35:46 #4138 [Debug] > │                                                                              │

02:35:46 #4139 [Debug] > │ Solution: abcdefghi                                                          │

02:35:46 #4140 [Debug] > │ Test case 2. FA. Time: 1                                                     │

02:35:46 #4141 [Debug] > │ Test case 1. F. Time: 2                                                      │

02:35:46 #4142 [Debug] > │                                                                              │

02:35:46 #4143 [Debug] > │ Solution: abcde                                                              │

02:35:46 #4144 [Debug] > │ Test case 2. FA. Time: 1                                                     │

02:35:46 #4145 [Debug] > │ Test case 1. F. Time: 2                                                      │

02:35:46 #4146 [Debug] > │                                                                              │

02:35:46 #4147 [Debug] > │ Solution: abc                                                                │

02:35:46 #4148 [Debug] > │ Test case 2. FA. Time: 1                                                     │

02:35:46 #4149 [Debug] > │ Test case 1. F. Time: 2                                                      │

02:35:46 #4150 [Debug] > │                                                                              │

02:35:46 #4151 [Debug] > │ Input    	| Expected                                                           │

02:35:46 #4152 [Debug] > │                                                                              │

02:35:46 #4153 [Debug] > │ | Result                                                                     │

02:35:46 #4154 [Debug] > │                                                                              │

02:35:46 #4155 [Debug] > │ | Best                                                                       │

02:35:46 #4156 [Debug] > │ ---      	| ---                                                                │

02:35:46 #4157 [Debug] > │                                                                              │

02:35:46 #4158 [Debug] > │ | ---                                                                        │

02:35:46 #4159 [Debug] > │                                                                              │

02:35:46 #4160 [Debug] > │ | ---                                                                        │

02:35:46 #4161 [Debug] > │ abc      	| bca cab abc                                                        │

02:35:46 #4162 [Debug] > │                                                                              │

02:35:46 #4163 [Debug] > │ | bca cab abc                                                                │

02:35:46 #4164 [Debug] > │                                                                              │

02:35:46 #4165 [Debug] > │ | struct (2L, 1L)                                                            │

02:35:46 #4166 [Debug] > │ abcde    	| bcdea cdeab deabc eabcd abcde                                      │

02:35:46 #4167 [Debug] > │ | bcdea cdeab deabc eabcd abcde                                              │

02:35:46 #4168 [Debug] > │ | struct (2L, 1L)                                                            │

02:35:46 #4169 [Debug] > │ abcdefghi	| bcdefghia cdefghiab defghiabc efghiabcd fghiabcde ghiabcdef        │

02:35:46 #4170 [Debug] > │ hiabcdefg iabcdefgh abcdefghi	| bcdefghia cdefghiab defghiabc efghiabcd        │

02:35:46 #4171 [Debug] > │ fghiabcde ghiabcdef hiabcdefg iabcdefgh abcdefghi	| struct (2L, 1L)            │

02:35:46 #4172 [Debug] > │ abab     	| baba abab baba abab                                                │

02:35:46 #4173 [Debug] > │ | baba abab baba abab                                                        │

02:35:46 #4174 [Debug] > │ | struct (2L, 1L)                                                            │

02:35:46 #4175 [Debug] > │ aa       	| aa aa                                                              │

02:35:46 #4176 [Debug] > │                                                                              │

02:35:46 #4177 [Debug] > │ | aa aa                                                                      │

02:35:46 #4178 [Debug] > │                                                                              │

02:35:46 #4179 [Debug] > │ | struct (2L, 1L)                                                            │

02:35:46 #4180 [Debug] > │ z        	| z                                                                  │

02:35:46 #4181 [Debug] > │                                                                              │

02:35:46 #4182 [Debug] > │ | z                                                                          │

02:35:46 #4183 [Debug] > │                                                                              │

02:35:46 #4184 [Debug] > │ | struct (2L, 1L)                                                            │

02:35:46 #4185 [Debug] > │                                                                              │

02:35:46 #4186 [Debug] > │ Average Ranking                                                              │

02:35:46 #4187 [Debug] > │ Test case 2. Average Time: 1L                                                │

02:35:46 #4188 [Debug] > │ Test case 1. Average Time: 2L                                                │

02:35:46 #4189 [Debug] > │                                                                              │

02:35:46 #4190 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:46 #4191 [Debug] >

02:35:46 #4192 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:35:46 #4193 [Debug] > // // test

02:35:46 #4194 [Debug] > // // rust=

02:35:46 #4195 [Debug] > // // print_code=false

02:35:46 #4196 [Debug] >

02:35:46 #4197 [Debug] > // rotate_strings_tests ()

02:35:46 #4198 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0235-4646-4661-4fd28e9ff432\main.spi

02:35:46 #4199 [Debug] >

02:35:46 #4200 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:46 #4201 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:46 #4202 [Debug] > │ ## returnLettersWithOddCountTests                                            │

02:35:46 #4203 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:46 #4204 [Debug] >

02:35:46 #4205 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:46 #4206 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:46 #4207 [Debug] > │ Test: ReturnLettersWithOddCount                                              │

02:35:46 #4208 [Debug] > │                                                                              │

02:35:46 #4209 [Debug] > │ Solution: 1                                                                  │

02:35:46 #4210 [Debug] > │ Test case 1. A. Time: 645L                                                   │

02:35:46 #4211 [Debug] > │                                                                              │

02:35:46 #4212 [Debug] > │ Solution: 2                                                                  │

02:35:46 #4213 [Debug] > │ Test case 1. A. Time: 663L                                                   │

02:35:46 #4214 [Debug] > │                                                                              │

02:35:46 #4215 [Debug] > │ Solution: 3                                                                  │

02:35:46 #4216 [Debug] > │ Test case 1. A. Time: 680L                                                   │

02:35:46 #4217 [Debug] > │                                                                              │

02:35:46 #4218 [Debug] > │ Solution: 9                                                                  │

02:35:46 #4219 [Debug] > │ Test case 1. A. Time: 730L                                                   │

02:35:46 #4220 [Debug] > │                                                                              │

02:35:46 #4221 [Debug] > │ Solution: 10                                                                 │

02:35:46 #4222 [Debug] > │ Test case 1. A. Time: 815L                                                   │

02:35:46 #4223 [Debug] > │                                                                              │

02:35:46 #4224 [Debug] > │ Input   | Expected        | Result          | Best                           │

02:35:46 #4225 [Debug] > │ ---     | ---             | ---             | ---                            │

02:35:46 #4226 [Debug] > │ 1       | a               | a               | (1, 645)                       │

02:35:46 #4227 [Debug] > │ 2       | ba              | ba              | (1, 663)                       │

02:35:46 #4228 [Debug] > │ 3       | aaa             | aaa             | (1, 680)                       │

02:35:46 #4229 [Debug] > │ 9       | aaaaaaaaa       | aaaaaaaaa       | (1, 730)                       │

02:35:46 #4230 [Debug] > │ 10      | baaaaaaaaa      | baaaaaaaaa      | (1, 815)                       │

02:35:46 #4231 [Debug] > │                                                                              │

02:35:46 #4232 [Debug] > │ Averages                                                                     │

02:35:46 #4233 [Debug] > │ Test case 1. Average Time: 706L                                              │

02:35:46 #4234 [Debug] > │                                                                              │

02:35:46 #4235 [Debug] > │ Ranking                                                                      │

02:35:46 #4236 [Debug] > │ Test case 1. Average Time: 706L                                              │

02:35:46 #4237 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:46 #4238 [Debug] >

02:35:46 #4239 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:46 #4240 [Debug] > //// test

02:35:46 #4241 [Debug] >

02:35:46 #4242 [Debug] > let solutions = [[

02:35:46 #4243 [Debug] >     "A",

02:35:46 #4244 [Debug] >     fun n ->

02:35:46 #4245 [Debug] >         let mutable _builder = StringBuilder (new string('a', n))

02:35:46 #4246 [Debug] >         if n % 2 = 0 then

02:35:46 #4247 [Debug] >             _builder.[[0]] <- 'b'

02:35:46 #4248 [Debug] >

02:35:46 #4249 [Debug] >         _builder.ToString ()

02:35:46 #4250 [Debug] > ]]

02:35:46 #4251 [Debug] > let testCases = seq {

02:35:46 #4252 [Debug] >     1, "a"

02:35:46 #4253 [Debug] >     2, "ba"

02:35:46 #4254 [Debug] >     3, "aaa"

02:35:46 #4255 [Debug] >     9, "aaaaaaaaa"

02:35:46 #4256 [Debug] >     10, "baaaaaaaaa"

02:35:46 #4257 [Debug] > }

02:35:46 #4258 [Debug] > let rec returnLettersWithOddCountTests =

02:35:46 #4259 [Debug] >     runAll (nameof returnLettersWithOddCountTests) _count solutions testCases

02:35:46 #4260 [Debug] > returnLettersWithOddCountTests

02:35:46 #4261 [Debug] > |> sortResultList

02:35:47 #4262 [Debug] >

02:35:47 #4263 [Debug] > ╭─[ 847.55ms - stdout ]────────────────────────────────────────────────────────╮

02:35:47 #4264 [Debug] > │                                                                              │

02:35:47 #4265 [Debug] > │                                                                              │

02:35:47 #4266 [Debug] > │ Test: returnLettersWithOddCountTests                                         │

02:35:47 #4267 [Debug] > │                                                                              │

02:35:47 #4268 [Debug] > │ Solution: 1                                                                  │

02:35:47 #4269 [Debug] > │ Test case 1. A. Time: 1L                                                     │

02:35:47 #4270 [Debug] > │                                                                              │

02:35:47 #4271 [Debug] > │ Solution: 2                                                                  │

02:35:47 #4272 [Debug] > │ Test case 1. A. Time: 3L                                                     │

02:35:47 #4273 [Debug] > │                                                                              │

02:35:47 #4274 [Debug] > │ Solution: 3                                                                  │

02:35:47 #4275 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:47 #4276 [Debug] > │                                                                              │

02:35:47 #4277 [Debug] > │ Solution: 9                                                                  │

02:35:47 #4278 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:47 #4279 [Debug] > │                                                                              │

02:35:47 #4280 [Debug] > │ Solution: 10                                                                 │

02:35:47 #4281 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:47 #4282 [Debug] > │                                                                              │

02:35:47 #4283 [Debug] > │ Input	| Expected  	| Result    	| Best                                             │

02:35:47 #4284 [Debug] > │ ---  	| ---       	| ---       	| ---                                              │

02:35:47 #4285 [Debug] > │ 1    	| a         	| a         	| (1, 1)                                           │

02:35:47 #4286 [Debug] > │ 2    	| ba        	| ba        	| (1, 3)                                           │

02:35:47 #4287 [Debug] > │ 3    	| aaa       	| aaa       	| (1, 0)                                           │

02:35:47 #4288 [Debug] > │ 9    	| aaaaaaaaa 	| aaaaaaaaa 	| (1, 0)                                           │

02:35:47 #4289 [Debug] > │ 10   	| baaaaaaaaa	| baaaaaaaaa	| (1, 0)                                           │

02:35:47 #4290 [Debug] > │                                                                              │

02:35:47 #4291 [Debug] > │ Average Ranking                                                              │

02:35:47 #4292 [Debug] > │ Test case 1. Average Time: 0L                                                │

02:35:47 #4293 [Debug] > │                                                                              │

02:35:47 #4294 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:47 #4295 [Debug] >

02:35:47 #4296 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:47 #4297 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:47 #4298 [Debug] > │ ## hasAnyPairCloseToEachotherTests                                           │

02:35:47 #4299 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:47 #4300 [Debug] >

02:35:47 #4301 [Debug] > ── markdown ────────────────────────────────────────────────────────────────────

02:35:47 #4302 [Debug] > ╭──────────────────────────────────────────────────────────────────────────────╮

02:35:47 #4303 [Debug] > │ Test: HasAnyPairCloseToEachother                                             │

02:35:47 #4304 [Debug] > │                                                                              │

02:35:47 #4305 [Debug] > │ Solution: 0                                                                  │

02:35:47 #4306 [Debug] > │ Test case 1. A. Time: 137L                                                   │

02:35:47 #4307 [Debug] > │                                                                              │

02:35:47 #4308 [Debug] > │ Solution: 1,2                                                                │

02:35:47 #4309 [Debug] > │ Test case 1. A. Time: 186L                                                   │

02:35:47 #4310 [Debug] > │                                                                              │

02:35:47 #4311 [Debug] > │ Solution: 3,5                                                                │

02:35:47 #4312 [Debug] > │ Test case 1. A. Time: 206L                                                   │

02:35:47 #4313 [Debug] > │                                                                              │

02:35:47 #4314 [Debug] > │ Solution: 3,4,6                                                              │

02:35:47 #4315 [Debug] > │ Test case 1. A. Time: 149L                                                   │

02:35:47 #4316 [Debug] > │                                                                              │

02:35:47 #4317 [Debug] > │ Solution: 2,4,6                                                              │

02:35:47 #4318 [Debug] > │ Test case 1. A. Time: 150L                                                   │

02:35:47 #4319 [Debug] > │                                                                              │

02:35:47 #4320 [Debug] > │ Input   | Expected        | Result  | Best                                   │

02:35:47 #4321 [Debug] > │ ---     | ---             | ---     | ---                                    │

02:35:47 #4322 [Debug] > │ 0       | False           | False   | (1, 137)                               │

02:35:47 #4323 [Debug] > │ 1,2     | True            | True    | (1, 186)                               │

02:35:47 #4324 [Debug] > │ 3,5     | False           | False   | (1, 206)                               │

02:35:47 #4325 [Debug] > │ 3,4,6   | True            | True    | (1, 149)                               │

02:35:47 #4326 [Debug] > │ 2,4,6   | False           | False   | (1, 150)                               │

02:35:47 #4327 [Debug] > │                                                                              │

02:35:47 #4328 [Debug] > │ Averages                                                                     │

02:35:47 #4329 [Debug] > │ Test case 1. Average Time: 165L                                              │

02:35:47 #4330 [Debug] > │                                                                              │

02:35:47 #4331 [Debug] > │ Ranking                                                                      │

02:35:47 #4332 [Debug] > │ Test case 1. Average Time: 165L                                              │

02:35:47 #4333 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:47 #4334 [Debug] >

02:35:47 #4335 [Debug] > ── fsharp ──────────────────────────────────────────────────────────────────────

02:35:47 #4336 [Debug] > //// test

02:35:47 #4337 [Debug] >

02:35:47 #4338 [Debug] > let solutions = [[

02:35:47 #4339 [Debug] >     "A",

02:35:47 #4340 [Debug] >     fun (a: int[[]]) ->

02:35:47 #4341 [Debug] >         let indices = System.Linq.Enumerable.Range(0, a.Length) |>

02:35:47 #4342 [Debug] > System.Linq.Enumerable.ToArray

02:35:47 #4343 [Debug] >         System.Array.Sort (a, indices)

02:35:47 #4344 [Debug] >

02:35:47 #4345 [Debug] >         indices

02:35:47 #4346 [Debug] >         |> Array.take (a.Length - 1)

02:35:47 #4347 [Debug] >         |> Array.exists (fun i -> a.[[i + 1]] - a.[[i]] = 1)

02:35:47 #4348 [Debug] > ]]

02:35:47 #4349 [Debug] > let testCases = seq {

02:35:47 #4350 [Debug] >     [[| 0 |]], false

02:35:47 #4351 [Debug] >     [[| 1; 2 |]], true

02:35:47 #4352 [Debug] >     [[| 3; 5 |]], false

02:35:47 #4353 [Debug] >     [[| 3; 4; 6 |]], true

02:35:47 #4354 [Debug] >     [[| 2; 4; 6 |]], false

02:35:47 #4355 [Debug] > }

02:35:47 #4356 [Debug] > let rec hasAnyPairCloseToEachotherTests =

02:35:47 #4357 [Debug] >     runAll (nameof hasAnyPairCloseToEachotherTests) _count solutions testCases

02:35:47 #4358 [Debug] > hasAnyPairCloseToEachotherTests

02:35:47 #4359 [Debug] > |> sortResultList

02:35:48 #4360 [Debug] >

02:35:48 #4361 [Debug] > ╭─[ 743.31ms - stdout ]────────────────────────────────────────────────────────╮

02:35:48 #4362 [Debug] > │                                                                              │

02:35:48 #4363 [Debug] > │                                                                              │

02:35:48 #4364 [Debug] > │ Test: hasAnyPairCloseToEachotherTests                                        │

02:35:48 #4365 [Debug] > │                                                                              │

02:35:48 #4366 [Debug] > │ Solution: 0                                                                  │

02:35:48 #4367 [Debug] > │ Test case 1. A. Time: 2L                                                     │

02:35:48 #4368 [Debug] > │                                                                              │

02:35:48 #4369 [Debug] > │ Solution: 1,2                                                                │

02:35:48 #4370 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:48 #4371 [Debug] > │                                                                              │

02:35:48 #4372 [Debug] > │ Solution: 3,5                                                                │

02:35:48 #4373 [Debug] > │ Test case 1. A. Time: 1L                                                     │

02:35:48 #4374 [Debug] > │                                                                              │

02:35:48 #4375 [Debug] > │ Solution: 3,4,6                                                              │

02:35:48 #4376 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:48 #4377 [Debug] > │                                                                              │

02:35:48 #4378 [Debug] > │ Solution: 2,4,6                                                              │

02:35:48 #4379 [Debug] > │ Test case 1. A. Time: 0L                                                     │

02:35:48 #4380 [Debug] > │                                                                              │

02:35:48 #4381 [Debug] > │ Input	| Expected	| Result	| Best                                                   │

02:35:48 #4382 [Debug] > │ ---  	| ---     	| ---   	| ---                                                    │

02:35:48 #4383 [Debug] > │ 0    	| False   	| False 	| (1, 2)                                                 │

02:35:48 #4384 [Debug] > │ 1,2  	| True    	| True  	| (1, 0)                                                 │

02:35:48 #4385 [Debug] > │ 3,5  	| False   	| False 	| (1, 1)                                                 │

02:35:48 #4386 [Debug] > │ 3,4,6	| True    	| True  	| (1, 0)                                                 │

02:35:48 #4387 [Debug] > │ 2,4,6	| False   	| False 	| (1, 0)                                                 │

02:35:48 #4388 [Debug] > │                                                                              │

02:35:48 #4389 [Debug] > │ Average Ranking                                                              │

02:35:48 #4390 [Debug] > │ Test case 1. Average Time: 0L                                                │

02:35:48 #4391 [Debug] > │                                                                              │

02:35:48 #4392 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:48 #4393 [Debug] >

02:35:48 #4394 [Debug] > ── spiral ──────────────────────────────────────────────────────────────────────

02:35:48 #4395 [Debug] > // // test

02:35:48 #4396 [Debug] >

02:35:48 #4397 [Debug] > ()

02:35:48 #4398 [Debug] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20231021-0235-4833-3379-326253603335\main.spi

02:35:48 #4399 [Debug] >

02:35:48 #4400 [Debug] > ╭─[ 180.76ms - stdout ]────────────────────────────────────────────────────────╮

02:35:48 #4401 [Debug] > │ let rec method0 () : unit =                                                  │

02:35:48 #4402 [Debug] > │     ()                                                                       │

02:35:48 #4403 [Debug] > │ method0()                                                                    │

02:35:48 #4404 [Debug] > │                                                                              │

02:35:48 #4405 [Debug] > │                                                                              │

02:35:48 #4406 [Debug] > ╰──────────────────────────────────────────────────────────────────────────────╯

02:35:50 #4407 [Debug] > [NbConvertApp] Converting notebook Perf.dib.ipynb to html

02:35:50 #4408 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

02:35:50 #4409 [Debug] >   validate(nb)

02:35:51 #4410 [Debug] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:72: UserWarning: IPython3 lexer unavailable, falling back on Python 3

02:35:51 #4411 [Debug] >   return _pygments_highlight(

02:35:52 #4412 [Debug] > [NbConvertApp] Writing 509827 bytes to Perf.dib.html

02:35:53 #4413 [Debug] executeAsync / exitCode: 0 / proc.Id: 77908 / output.Length: 313967

02:35:53 #4414 [Debug] main / executeCommand / exitCode: 0

02:35:53 #1 [Debug] writeDibCode / output: Fs / path: Perf.dib

02:35:53 #2 [Debug] parseDibCode / output: Fs / file: Perf.dib

In [ ]:
{ . "$ScriptDir/../apps/ipfs/build.ps1" } | Invoke-Block
Lockfile is up to date, resolution step is skipped

Already up to date



Done in 2.4s

In [ ]:
{ . "$ScriptDir/outdated.ps1" } | Invoke-Block
Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

Resolving dependency graph...

Outdated packages found:

  Group: Main

    * Expecto.FsCheck 10.1.0-fscheck3 -> 10.1.0

    * FsCheck 3.0.0-rc1 -> 2.16.6

    * Microsoft.AspNetCore.Connections.Abstractions 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.AspNetCore.Http.Connections.Client 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.AspNetCore.Http.Connections.Common 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.AspNetCore.SignalR.Client 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.AspNetCore.SignalR.Client.Core 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.AspNetCore.SignalR.Common 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.AspNetCore.SignalR.Protocols.Json 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.Extensions.DependencyInjection 7.0 -> 8.0.0-rc.2.23479.6

    * Microsoft.Extensions.DependencyInjection.Abstractions 7.0 -> 8.0.0-rc.2.23479.6

    * Microsoft.Extensions.Features 7.0 -> 8.0.0-rc.2.23480.2

    * Microsoft.Extensions.Logging 7.0 -> 8.0.0-rc.2.23479.6

    * Microsoft.Extensions.Logging.Abstractions 7.0.1 -> 8.0.0-rc.2.23479.6

    * Microsoft.Extensions.Options 7.0.1 -> 8.0.0-rc.2.23479.6

    * Microsoft.Extensions.Primitives 7.0 -> 8.0.0-rc.2.23479.6

    * System.IO.Pipelines 7.0 -> 8.0.0-rc.2.23479.6

    * System.Threading.Channels 7.0 -> 8.0.0-rc.2.23479.6

Total time taken: 44 seconds

All dependencies are up to date, yay!


C:\home\git\polyglot\apps\chat\contract\Cargo.toml

All dependencies are up to date, yay!


C:\home\git\polyglot\apps\chat\tests\Cargo.toml

chat

================

Name        Project  Compat   Latest   Kind    Platform

----        -------  ------   ------   ----    --------

autocfg     1.1.0    Removed  ---      Build   ---

equivalent  1.0.1    ---      Removed  Normal  ---

hashbrown   0.12.3   0.14.1   ---      Normal  ---

hashbrown   0.14.1   ---      0.12.3   Normal  ---

indexmap    1.9.3    2.0.2    ---      Normal  ---

indexmap    2.0.2    ---      1.9.3    Normal  ---


C:\home\git\polyglot\apps\chat\ui\Cargo.toml

All dependencies are up to date, yay!


C:\home\git\polyglot\apps\dice\Cargo.toml

All dependencies are up to date, yay!


C:\home\git\polyglot\apps\dice\contract\Cargo.toml

All dependencies are up to date, yay!


C:\home\git\polyglot\apps\dice\tests\Cargo.toml

dice

================

Name        Project  Compat   Latest   Kind    Platform

----        -------  ------   ------   ----    --------

autocfg     1.1.0    ---      Removed  Build   ---

equivalent  1.0.1    Removed  ---      Normal  ---

hashbrown   0.12.3   ---      0.14.1   Normal  ---

hashbrown   0.14.1   0.12.3   ---      Normal  ---

indexmap    1.9.3    ---      2.0.2    Normal  ---

indexmap    2.0.2    1.9.3    ---      Normal  ---


C:\home\git\polyglot\apps\plot\Cargo.toml

    Updating git repository `https://github.com/plotters-rs/plotters.git`

    Updating git repository `https://github.com/plotters-rs/plotters.git`

All dependencies are up to date, yay!


C:\home\git\polyglot\spiral\extension



> polyglot@ outdated-pre C:\home\git\polyglot\spiral\extension

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\spiral\extension\package.json





 @playwright/test  1.38.0-beta-1691778350000  →  1.40.0-alpha-oct-21-2023

 @types/chrome                      ~0.0.246  →                  ~0.0.248



Run ncu --target greatest -u to upgrade package.json


C:\home\git\polyglot\apps\ipfs



> ipfs@ outdated-pre C:\home\git\polyglot\apps\ipfs

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\apps\ipfs\package.json





 tsx  ~3.13  →  ~3.14



Run ncu --target greatest -u to upgrade package.json


C:\home\git\polyglot



> polyglot@ outdated-pre C:\home\git\polyglot

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\package.json





All dependencies match the greatest package versions :)